ipld-schema-describer 3.0.10 → 3.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
- name: Checkout Repository
|
|
13
13
|
uses: actions/checkout@v4
|
|
14
14
|
- name: Use Node.js ${{ matrix.node }}
|
|
15
|
-
uses: actions/setup-node@v4.0
|
|
15
|
+
uses: actions/setup-node@v4.1.0
|
|
16
16
|
with:
|
|
17
17
|
node-version: ${{ matrix.node }}
|
|
18
18
|
- name: Install Dependencies
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
with:
|
|
33
33
|
fetch-depth: 0
|
|
34
34
|
- name: Setup Node.js
|
|
35
|
-
uses: actions/setup-node@v4.0
|
|
35
|
+
uses: actions/setup-node@v4.1.0
|
|
36
36
|
with:
|
|
37
37
|
node-version: lts/*
|
|
38
38
|
- name: Install dependencies
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.0.12](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.11...v3.0.12) (2024-10-25)
|
|
2
|
+
|
|
3
|
+
### Trivial Changes
|
|
4
|
+
|
|
5
|
+
* **deps:** bump actions/setup-node from 4.0.4 to 4.1.0 ([644773d](https://github.com/rvagg/js-ipld-schema-describer/commit/644773da5df55cfb75341826704329e9487aa481))
|
|
6
|
+
|
|
7
|
+
## [3.0.11](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.10...v3.0.11) (2024-09-25)
|
|
8
|
+
|
|
9
|
+
### Trivial Changes
|
|
10
|
+
|
|
11
|
+
* **deps:** bump actions/setup-node from 4.0.3 to 4.0.4 ([701b324](https://github.com/rvagg/js-ipld-schema-describer/commit/701b324183662d1351b14a2e879ea15b81a1859b))
|
|
12
|
+
|
|
1
13
|
## [3.0.10](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.9...v3.0.10) (2024-07-10)
|
|
2
14
|
|
|
3
15
|
### Trivial Changes
|
package/package.json
CHANGED
|
@@ -12,8 +12,8 @@ export function describe(obj: any): {
|
|
|
12
12
|
schema: Schema;
|
|
13
13
|
root: string;
|
|
14
14
|
};
|
|
15
|
-
export type Schema = import(
|
|
16
|
-
export type TypeDefnLink = import(
|
|
17
|
-
export type TypeDefnList = import(
|
|
18
|
-
export type TypeDefnMap = import(
|
|
15
|
+
export type Schema = import("ipld-schema/schema-schema").Schema;
|
|
16
|
+
export type TypeDefnLink = import("ipld-schema/schema-schema").TypeDefnLink;
|
|
17
|
+
export type TypeDefnList = import("ipld-schema/schema-schema").TypeDefnList;
|
|
18
|
+
export type TypeDefnMap = import("ipld-schema/schema-schema").TypeDefnMap;
|
|
19
19
|
//# sourceMappingURL=ipld-schema-describer.d.ts.map
|
package/types/kind.d.ts
CHANGED
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* @returns {RepresentationKindString}
|
|
7
7
|
*/
|
|
8
8
|
export function kind(obj: any): RepresentationKindString;
|
|
9
|
-
export type RepresentationKindString =
|
|
9
|
+
export type RepresentationKindString = "bool" | "string" | "bytes" | "int" | "float" | "list" | "map" | "null" | "link";
|
|
10
10
|
//# sourceMappingURL=kind.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../example.js","../ipld-schema-describer.js","../kind.js"],"version":"5.6.3"}
|