├── .github ├── dependabot.yml └── workflows │ ├── generated-pr.yml │ ├── stale.yml │ └── test-and-release.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── README.md ├── bin ├── cli.js ├── collect-input.js ├── json-to-schema.js ├── to-js.js ├── to-json.js ├── to-schema.js ├── to-tsdefs.js ├── util.js └── validate.js ├── example-typed.js ├── ipld-schema.pegjs ├── lib ├── from-dsl.js ├── gen.js ├── gen │ ├── go.js │ ├── rust.js │ └── typescript.js ├── parser.cjs ├── schema-schema.js ├── to-dsl.js ├── typed.js └── util.js ├── package.json ├── schema-schema.ts ├── test ├── _split-schema-schema.js ├── fixtures │ ├── bulk │ │ ├── advanced.yml │ │ ├── any.yml │ │ ├── bytes.yml │ │ ├── copy.yml │ │ ├── enum-int.yml │ │ ├── enum.yml │ │ ├── float.yml │ │ ├── garbage-case-names.yml │ │ ├── int.yml │ │ ├── link-inline.yml │ │ ├── link-keyed-union.yml │ │ ├── link-kinded-union.yml │ │ ├── link-typed.yml │ │ ├── link.yml │ │ ├── list-inline.yml │ │ ├── list.yml │ │ ├── map-inline.yml │ │ ├── map-listpairs.yml │ │ ├── map-stringpairs.yml │ │ ├── map-with-nullable.yml │ │ ├── map.yml │ │ ├── null.yml │ │ ├── struct-empty.yml │ │ ├── struct-listpairs.yml │ │ ├── struct-map-with-implicits.yml │ │ ├── struct-map-with-renames.yml │ │ ├── struct-stringjoin-custom-fieldorder.yml │ │ ├── struct-stringjoin.yml │ │ ├── struct-stringpairs.yml │ │ ├── struct-tuple-custom-fieldorder.yml │ │ ├── struct-tuple.yml │ │ ├── struct-with-anonymous-types.yml │ │ ├── struct.yml │ │ ├── union-bytesprefix.yml │ │ ├── union-envelope.yml │ │ ├── union-inline.yml │ │ ├── union-keyed.yml │ │ ├── union-kinded.yml │ │ └── union-stringprefix.yml │ ├── examples-adl.ipldsch │ ├── examples-adl.ipldsch.json │ ├── examples-all.ipldsch.json │ ├── examples.ipldsch │ ├── examples.ipldsch.json │ ├── examples.ipldsch.md │ ├── gen │ │ ├── copy-types.md │ │ ├── enums.md │ │ ├── filecoin_miner_types.md │ │ ├── implicits.md │ │ ├── lists.md │ │ ├── map-renames.md │ │ ├── maps.md │ │ ├── optionals.md │ │ ├── rustserde.md │ │ ├── unions-keyed.md │ │ └── unions-kinded.md │ ├── hashmap │ │ └── hashmap.ipldsch │ ├── schema-schema.ipldsch │ ├── schema-schema.ipldsch.json │ └── schema-schema │ │ ├── AdvancedDataLayout.md │ │ ├── AdvancedDataLayoutMap.md │ │ ├── AdvancedDataLayoutName.md │ │ ├── AnyScalar.md │ │ ├── BytesRepresentation.md │ │ ├── BytesRepresentation_Bytes.md │ │ ├── EnumMember.md │ │ ├── EnumRepresentation.md │ │ ├── EnumRepresentation_Int.md │ │ ├── EnumRepresentation_String.md │ │ ├── FieldName.md │ │ ├── HexString.md │ │ ├── InlineDefn.md │ │ ├── ListRepresentation.md │ │ ├── MapRepresentation.md │ │ ├── MapRepresentation_ListPairs.md │ │ ├── MapRepresentation_StringPairs.md │ │ ├── RepresentationKind.md │ │ ├── Schema.md │ │ ├── StructField.md │ │ ├── StructRepresentation.md │ │ ├── StructRepresentation_ListPairs.md │ │ ├── StructRepresentation_Map.md │ │ ├── StructRepresentation_Map_FieldDetails.md │ │ ├── StructRepresentation_StringJoin.md │ │ ├── StructRepresentation_StringPairs.md │ │ ├── StructRepresentation_Tuple.md │ │ ├── TypeDefn.md │ │ ├── TypeDefnAny.md │ │ ├── TypeDefnBool.md │ │ ├── TypeDefnBytes.md │ │ ├── TypeDefnCopy.md │ │ ├── TypeDefnEnum.md │ │ ├── TypeDefnFloat.md │ │ ├── TypeDefnInt.md │ │ ├── TypeDefnLink.md │ │ ├── TypeDefnList.md │ │ ├── TypeDefnMap.md │ │ ├── TypeDefnString.md │ │ ├── TypeDefnStruct.md │ │ ├── TypeDefnUnion.md │ │ ├── TypeDefnUnit.md │ │ ├── TypeKind.md │ │ ├── TypeName.md │ │ ├── TypeNameOrInlineDefn.md │ │ ├── UnionMember.md │ │ ├── UnionMemberInlineDefn.md │ │ ├── UnionRepresentation.md │ │ ├── UnionRepresentation_BytesPrefix.md │ │ ├── UnionRepresentation_Envelope.md │ │ ├── UnionRepresentation_Inline.md │ │ ├── UnionRepresentation_Keyed.md │ │ ├── UnionRepresentation_Kinded.md │ │ ├── UnionRepresentation_StringPrefix.md │ │ └── UnitRepresentation.md ├── test-bulk-fixtures.js ├── test-cli.js ├── test-examples.js ├── test-gen.js ├── test-schema-schema.js ├── test-typed-any.js ├── test-typed-basics.js ├── test-typed-copy.js ├── test-typed-custom-transforms.js ├── test-typed-enum.js ├── test-typed-errors.js ├── test-typed-struct.js ├── test-typed-union.js ├── typed-util.js └── webpack.config.js ├── tsconfig.json ├── types.d.ts └── types ├── bin ├── cli.d.ts ├── cli.d.ts.map ├── collect-input.d.ts ├── collect-input.d.ts.map ├── json-to-schema.d.ts ├── json-to-schema.d.ts.map ├── to-js.d.ts ├── to-js.d.ts.map ├── to-json.d.ts ├── to-json.d.ts.map ├── to-schema.d.ts ├── to-schema.d.ts.map ├── to-tsdefs.d.ts ├── to-tsdefs.d.ts.map ├── util.d.ts ├── util.d.ts.map ├── validate.d.ts └── validate.d.ts.map ├── lib ├── from-dsl.d.ts ├── from-dsl.d.ts.map ├── gen.d.ts ├── gen.d.ts.map ├── gen │ ├── go.d.ts │ ├── go.d.ts.map │ ├── rust.d.ts │ ├── rust.d.ts.map │ ├── typescript.d.ts │ └── typescript.d.ts.map ├── parser.d.cts ├── parser.d.cts.map ├── schema-schema.d.ts ├── schema-schema.d.ts.map ├── to-dsl.d.ts ├── to-dsl.d.ts.map ├── typed.d.ts ├── typed.d.ts.map ├── util.d.ts └── util.d.ts.map ├── schema-schema.d.ts ├── schema-schema.d.ts.map └── tsconfig.tsbuildinfo /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generated-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/.github/workflows/generated-pr.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | AGENTS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/cli.js -------------------------------------------------------------------------------- /bin/collect-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/collect-input.js -------------------------------------------------------------------------------- /bin/json-to-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/json-to-schema.js -------------------------------------------------------------------------------- /bin/to-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/to-js.js -------------------------------------------------------------------------------- /bin/to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/to-json.js -------------------------------------------------------------------------------- /bin/to-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/to-schema.js -------------------------------------------------------------------------------- /bin/to-tsdefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/to-tsdefs.js -------------------------------------------------------------------------------- /bin/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/util.js -------------------------------------------------------------------------------- /bin/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/bin/validate.js -------------------------------------------------------------------------------- /example-typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/example-typed.js -------------------------------------------------------------------------------- /ipld-schema.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/ipld-schema.pegjs -------------------------------------------------------------------------------- /lib/from-dsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/from-dsl.js -------------------------------------------------------------------------------- /lib/gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/gen.js -------------------------------------------------------------------------------- /lib/gen/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/gen/go.js -------------------------------------------------------------------------------- /lib/gen/rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/gen/rust.js -------------------------------------------------------------------------------- /lib/gen/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/gen/typescript.js -------------------------------------------------------------------------------- /lib/parser.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/parser.cjs -------------------------------------------------------------------------------- /lib/schema-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/schema-schema.js -------------------------------------------------------------------------------- /lib/to-dsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/to-dsl.js -------------------------------------------------------------------------------- /lib/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/typed.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/package.json -------------------------------------------------------------------------------- /schema-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/schema-schema.ts -------------------------------------------------------------------------------- /test/_split-schema-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/_split-schema-schema.js -------------------------------------------------------------------------------- /test/fixtures/bulk/advanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/advanced.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/any.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/any.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/bytes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/bytes.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/copy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/copy.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/enum-int.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/enum-int.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/enum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/enum.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/float.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/float.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/garbage-case-names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/garbage-case-names.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/int.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/int.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/link-inline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/link-inline.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/link-keyed-union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/link-keyed-union.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/link-kinded-union.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/link-kinded-union.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/link-typed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/link-typed.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/link.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/list-inline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/list-inline.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/list.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/list.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/map-inline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/map-inline.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/map-listpairs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/map-listpairs.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/map-stringpairs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/map-stringpairs.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/map-with-nullable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/map-with-nullable.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/map.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/null.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-empty.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-listpairs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-listpairs.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-map-with-implicits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-map-with-implicits.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-map-with-renames.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-map-with-renames.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-stringjoin-custom-fieldorder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-stringjoin-custom-fieldorder.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-stringjoin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-stringjoin.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-stringpairs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-stringpairs.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-tuple-custom-fieldorder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-tuple-custom-fieldorder.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-tuple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-tuple.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct-with-anonymous-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct-with-anonymous-types.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/struct.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-bytesprefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-bytesprefix.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-envelope.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-envelope.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-inline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-inline.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-keyed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-keyed.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-kinded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-kinded.yml -------------------------------------------------------------------------------- /test/fixtures/bulk/union-stringprefix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/bulk/union-stringprefix.yml -------------------------------------------------------------------------------- /test/fixtures/examples-adl.ipldsch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples-adl.ipldsch -------------------------------------------------------------------------------- /test/fixtures/examples-adl.ipldsch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples-adl.ipldsch.json -------------------------------------------------------------------------------- /test/fixtures/examples-all.ipldsch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples-all.ipldsch.json -------------------------------------------------------------------------------- /test/fixtures/examples.ipldsch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples.ipldsch -------------------------------------------------------------------------------- /test/fixtures/examples.ipldsch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples.ipldsch.json -------------------------------------------------------------------------------- /test/fixtures/examples.ipldsch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/examples.ipldsch.md -------------------------------------------------------------------------------- /test/fixtures/gen/copy-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/copy-types.md -------------------------------------------------------------------------------- /test/fixtures/gen/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/enums.md -------------------------------------------------------------------------------- /test/fixtures/gen/filecoin_miner_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/filecoin_miner_types.md -------------------------------------------------------------------------------- /test/fixtures/gen/implicits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/implicits.md -------------------------------------------------------------------------------- /test/fixtures/gen/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/lists.md -------------------------------------------------------------------------------- /test/fixtures/gen/map-renames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/map-renames.md -------------------------------------------------------------------------------- /test/fixtures/gen/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/maps.md -------------------------------------------------------------------------------- /test/fixtures/gen/optionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/optionals.md -------------------------------------------------------------------------------- /test/fixtures/gen/rustserde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/rustserde.md -------------------------------------------------------------------------------- /test/fixtures/gen/unions-keyed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/unions-keyed.md -------------------------------------------------------------------------------- /test/fixtures/gen/unions-kinded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/gen/unions-kinded.md -------------------------------------------------------------------------------- /test/fixtures/hashmap/hashmap.ipldsch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/hashmap/hashmap.ipldsch -------------------------------------------------------------------------------- /test/fixtures/schema-schema.ipldsch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema.ipldsch -------------------------------------------------------------------------------- /test/fixtures/schema-schema.ipldsch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema.ipldsch.json -------------------------------------------------------------------------------- /test/fixtures/schema-schema/AdvancedDataLayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/AdvancedDataLayout.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/AdvancedDataLayoutMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/AdvancedDataLayoutMap.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/AdvancedDataLayoutName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/AdvancedDataLayoutName.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/AnyScalar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/AnyScalar.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/BytesRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/BytesRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/BytesRepresentation_Bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/BytesRepresentation_Bytes.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/EnumMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/EnumMember.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/EnumRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/EnumRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/EnumRepresentation_Int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/EnumRepresentation_Int.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/EnumRepresentation_String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/EnumRepresentation_String.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/FieldName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/FieldName.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/HexString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/HexString.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/InlineDefn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/InlineDefn.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/ListRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/ListRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/MapRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/MapRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/MapRepresentation_ListPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/MapRepresentation_ListPairs.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/MapRepresentation_StringPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/MapRepresentation_StringPairs.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/RepresentationKind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/RepresentationKind.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/Schema.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructField.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_ListPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_ListPairs.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_Map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_Map.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_Map_FieldDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_Map_FieldDetails.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_StringJoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_StringJoin.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_StringPairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_StringPairs.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/StructRepresentation_Tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/StructRepresentation_Tuple.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefn.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnAny.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnAny.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnBool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnBool.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnBytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnBytes.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnCopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnCopy.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnEnum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnEnum.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnFloat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnFloat.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnInt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnInt.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnLink.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnList.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnMap.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnString.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnStruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnStruct.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnUnion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnUnion.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeDefnUnit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeDefnUnit.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeKind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeKind.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeName.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/TypeNameOrInlineDefn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/TypeNameOrInlineDefn.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionMember.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionMember.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionMemberInlineDefn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionMemberInlineDefn.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_BytesPrefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_BytesPrefix.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_Envelope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_Envelope.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_Inline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_Inline.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_Keyed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_Keyed.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_Kinded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_Kinded.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnionRepresentation_StringPrefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnionRepresentation_StringPrefix.md -------------------------------------------------------------------------------- /test/fixtures/schema-schema/UnitRepresentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/fixtures/schema-schema/UnitRepresentation.md -------------------------------------------------------------------------------- /test/test-bulk-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-bulk-fixtures.js -------------------------------------------------------------------------------- /test/test-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-cli.js -------------------------------------------------------------------------------- /test/test-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-examples.js -------------------------------------------------------------------------------- /test/test-gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-gen.js -------------------------------------------------------------------------------- /test/test-schema-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-schema-schema.js -------------------------------------------------------------------------------- /test/test-typed-any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-any.js -------------------------------------------------------------------------------- /test/test-typed-basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-basics.js -------------------------------------------------------------------------------- /test/test-typed-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-copy.js -------------------------------------------------------------------------------- /test/test-typed-custom-transforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-custom-transforms.js -------------------------------------------------------------------------------- /test/test-typed-enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-enum.js -------------------------------------------------------------------------------- /test/test-typed-errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-errors.js -------------------------------------------------------------------------------- /test/test-typed-struct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-struct.js -------------------------------------------------------------------------------- /test/test-typed-union.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/test-typed-union.js -------------------------------------------------------------------------------- /test/typed-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/typed-util.js -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/test/webpack.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types.d.ts -------------------------------------------------------------------------------- /types/bin/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | //# sourceMappingURL=cli.d.ts.map -------------------------------------------------------------------------------- /types/bin/cli.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/cli.d.ts.map -------------------------------------------------------------------------------- /types/bin/collect-input.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/collect-input.d.ts -------------------------------------------------------------------------------- /types/bin/collect-input.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/collect-input.d.ts.map -------------------------------------------------------------------------------- /types/bin/json-to-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/json-to-schema.d.ts -------------------------------------------------------------------------------- /types/bin/json-to-schema.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/json-to-schema.d.ts.map -------------------------------------------------------------------------------- /types/bin/to-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-js.d.ts -------------------------------------------------------------------------------- /types/bin/to-js.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-js.d.ts.map -------------------------------------------------------------------------------- /types/bin/to-json.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-json.d.ts -------------------------------------------------------------------------------- /types/bin/to-json.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-json.d.ts.map -------------------------------------------------------------------------------- /types/bin/to-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-schema.d.ts -------------------------------------------------------------------------------- /types/bin/to-schema.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-schema.d.ts.map -------------------------------------------------------------------------------- /types/bin/to-tsdefs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-tsdefs.d.ts -------------------------------------------------------------------------------- /types/bin/to-tsdefs.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/to-tsdefs.d.ts.map -------------------------------------------------------------------------------- /types/bin/util.d.ts: -------------------------------------------------------------------------------- 1 | export function pkgDecjsor(): Promise; 2 | //# sourceMappingURL=util.d.ts.map -------------------------------------------------------------------------------- /types/bin/util.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/util.d.ts.map -------------------------------------------------------------------------------- /types/bin/validate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/validate.d.ts -------------------------------------------------------------------------------- /types/bin/validate.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/bin/validate.d.ts.map -------------------------------------------------------------------------------- /types/lib/from-dsl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/from-dsl.d.ts -------------------------------------------------------------------------------- /types/lib/from-dsl.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/from-dsl.d.ts.map -------------------------------------------------------------------------------- /types/lib/gen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen.d.ts -------------------------------------------------------------------------------- /types/lib/gen.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen.d.ts.map -------------------------------------------------------------------------------- /types/lib/gen/go.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/go.d.ts -------------------------------------------------------------------------------- /types/lib/gen/go.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/go.d.ts.map -------------------------------------------------------------------------------- /types/lib/gen/rust.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/rust.d.ts -------------------------------------------------------------------------------- /types/lib/gen/rust.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/rust.d.ts.map -------------------------------------------------------------------------------- /types/lib/gen/typescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/typescript.d.ts -------------------------------------------------------------------------------- /types/lib/gen/typescript.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/gen/typescript.d.ts.map -------------------------------------------------------------------------------- /types/lib/parser.d.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/parser.d.cts -------------------------------------------------------------------------------- /types/lib/parser.d.cts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/parser.d.cts.map -------------------------------------------------------------------------------- /types/lib/schema-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/schema-schema.d.ts -------------------------------------------------------------------------------- /types/lib/schema-schema.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/schema-schema.d.ts.map -------------------------------------------------------------------------------- /types/lib/to-dsl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/to-dsl.d.ts -------------------------------------------------------------------------------- /types/lib/to-dsl.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/to-dsl.d.ts.map -------------------------------------------------------------------------------- /types/lib/typed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/typed.d.ts -------------------------------------------------------------------------------- /types/lib/typed.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/typed.d.ts.map -------------------------------------------------------------------------------- /types/lib/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/util.d.ts -------------------------------------------------------------------------------- /types/lib/util.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/lib/util.d.ts.map -------------------------------------------------------------------------------- /types/schema-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/schema-schema.d.ts -------------------------------------------------------------------------------- /types/schema-schema.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/schema-schema.d.ts.map -------------------------------------------------------------------------------- /types/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipld/js-ipld-schema/HEAD/types/tsconfig.tsbuildinfo --------------------------------------------------------------------------------