ipld-schema-describer 3.0.23 → 3.0.25
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.
- package/.github/dependabot.yml +9 -3
- package/.github/workflows/test-and-release.yml +2 -2
- package/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/types/ipld-schema-describer.d.ts +5 -5
- package/types/ipld-schema-describer.d.ts.map +1 -1
- package/types/kind.d.ts +2 -2
- package/types/kind.d.ts.map +1 -1
package/.github/dependabot.yml
CHANGED
|
@@ -3,21 +3,27 @@ updates:
|
|
|
3
3
|
- package-ecosystem: 'github-actions'
|
|
4
4
|
directory: '/'
|
|
5
5
|
schedule:
|
|
6
|
-
interval: '
|
|
6
|
+
interval: 'monthly'
|
|
7
|
+
cooldown:
|
|
8
|
+
default-days: 5
|
|
7
9
|
commit-message:
|
|
8
10
|
prefix: 'chore'
|
|
9
11
|
include: 'scope'
|
|
10
12
|
- package-ecosystem: 'npm'
|
|
11
13
|
directory: '/'
|
|
12
14
|
schedule:
|
|
13
|
-
interval: '
|
|
15
|
+
interval: 'monthly'
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 5
|
|
14
18
|
commit-message:
|
|
15
19
|
prefix: 'chore'
|
|
16
20
|
include: 'scope'
|
|
17
21
|
- package-ecosystem: 'npm'
|
|
18
22
|
directory: '/examples/'
|
|
19
23
|
schedule:
|
|
20
|
-
interval: '
|
|
24
|
+
interval: 'monthly'
|
|
25
|
+
cooldown:
|
|
26
|
+
default-days: 5
|
|
21
27
|
ignore:
|
|
22
28
|
- dependency-name: "@ipld/car"
|
|
23
29
|
commit-message:
|
|
@@ -10,7 +10,7 @@ jobs:
|
|
|
10
10
|
runs-on: ${{ matrix.os }}
|
|
11
11
|
steps:
|
|
12
12
|
- name: Checkout Repository
|
|
13
|
-
uses: actions/checkout@
|
|
13
|
+
uses: actions/checkout@v7
|
|
14
14
|
- name: Use Node.js ${{ matrix.node }}
|
|
15
15
|
uses: actions/setup-node@v6.4.0
|
|
16
16
|
with:
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
id-token: write
|
|
32
32
|
steps:
|
|
33
33
|
- name: Checkout
|
|
34
|
-
uses: actions/checkout@
|
|
34
|
+
uses: actions/checkout@v7
|
|
35
35
|
with:
|
|
36
36
|
fetch-depth: 0
|
|
37
37
|
- name: Setup Node.js
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [3.0.25](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.24...v3.0.25) (2026-07-09)
|
|
2
|
+
|
|
3
|
+
## [3.0.24](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.23...v3.0.24) (2026-06-22)
|
|
4
|
+
|
|
5
|
+
### Trivial Changes
|
|
6
|
+
|
|
7
|
+
* **deps:** bump actions/checkout from 6 to 7 ([#67](https://github.com/rvagg/js-ipld-schema-describer/issues/67)) ([de4515c](https://github.com/rvagg/js-ipld-schema-describer/commit/de4515c6fc0b20451e443efec2a90be0ce9e2c69))
|
|
8
|
+
|
|
1
9
|
## [3.0.23](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.22...v3.0.23) (2026-04-28)
|
|
2
10
|
|
|
3
11
|
### Trivial Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ipld-schema-describer",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.25",
|
|
4
4
|
"description": "IPLD Schema Describer",
|
|
5
5
|
"main": "ipld-schema-describer.js",
|
|
6
6
|
"type": "module",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"mocha": "^11.7.5",
|
|
40
40
|
"polendina": "^3.2.20",
|
|
41
41
|
"standard": "^17.1.2",
|
|
42
|
-
"typescript": "^
|
|
42
|
+
"typescript": "^7.0.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@ipld/schema": "^7.0.11"
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export type Schema = import('@ipld/schema/schema-schema.js').Schema;
|
|
2
|
+
export type TypeDefnLink = import('@ipld/schema/schema-schema.js').TypeDefnLink;
|
|
3
|
+
export type TypeDefnList = import('@ipld/schema/schema-schema.js').TypeDefnList;
|
|
4
|
+
export type TypeDefnMap = import('@ipld/schema/schema-schema.js').TypeDefnMap;
|
|
1
5
|
/**
|
|
2
6
|
* @typedef {import('@ipld/schema/schema-schema.js').Schema} Schema
|
|
3
7
|
* @typedef {import('@ipld/schema/schema-schema.js').TypeDefnLink} TypeDefnLink
|
|
@@ -8,12 +12,8 @@
|
|
|
8
12
|
* @param {any} obj
|
|
9
13
|
* @returns {{ schema: Schema, root: string }}
|
|
10
14
|
*/
|
|
11
|
-
export function describe(obj: any): {
|
|
15
|
+
export declare function describe(obj: any): {
|
|
12
16
|
schema: Schema;
|
|
13
17
|
root: string;
|
|
14
18
|
};
|
|
15
|
-
export type Schema = import("@ipld/schema/schema-schema.js").Schema;
|
|
16
|
-
export type TypeDefnLink = import("@ipld/schema/schema-schema.js").TypeDefnLink;
|
|
17
|
-
export type TypeDefnList = import("@ipld/schema/schema-schema.js").TypeDefnList;
|
|
18
|
-
export type TypeDefnMap = import("@ipld/schema/schema-schema.js").TypeDefnMap;
|
|
19
19
|
//# sourceMappingURL=ipld-schema-describer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ipld-schema-describer.d.ts","sourceRoot":"","sources":["../ipld-schema-describer.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ipld-schema-describer.d.ts","sourceRoot":"","sources":["../ipld-schema-describer.js"],"names":[],"mappings":"AAGG,YAA0D,MAAM,GAAtD,OAAO,+BAA+B,EAAE,MAAM,CAAQ;AAChE,YAAgE,YAAY,GAAlE,OAAO,+BAA+B,EAAE,YAAY,CAAc;AAC5E,YAAgE,YAAY,GAAlE,OAAO,+BAA+B,EAAE,YAAY,CAAc;AAC5E,YAA+D,WAAW,GAAhE,OAAO,+BAA+B,EAAE,WAAW,CAAa;AAJ7E;;;;;GAKG;AAEH;;;GAGG;AACH,wBAAgB,QAAQ,CAAE,GAAG,EAHlB,GAGkB,GAFhB;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CA4B5C"}
|
package/types/kind.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @typedef {'bool'|'string'|'bytes'|'int'|'float'|'list'|'map'|'null'|'link'} RepresentationKindString
|
|
3
3
|
*/
|
|
4
|
+
export type RepresentationKindString = 'bool' | 'string' | 'bytes' | 'int' | 'float' | 'list' | 'map' | 'null' | 'link';
|
|
4
5
|
/**
|
|
5
6
|
* @param {any} obj
|
|
6
7
|
* @returns {RepresentationKindString}
|
|
7
8
|
*/
|
|
8
|
-
export function kind(obj: any): RepresentationKindString;
|
|
9
|
-
export type RepresentationKindString = "bool" | "string" | "bytes" | "int" | "float" | "list" | "map" | "null" | "link";
|
|
9
|
+
export declare function kind(obj: any): RepresentationKindString;
|
|
10
10
|
//# sourceMappingURL=kind.d.ts.map
|
package/types/kind.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kind.d.ts","sourceRoot":"","sources":["../kind.js"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"kind.d.ts","sourceRoot":"","sources":["../kind.js"],"names":[],"mappings":"AAAA;;GAEG;AADA,YAA4E,wBAAwB,GAA1F,MAAM,GAAC,QAAQ,GAAC,OAAO,GAAC,KAAK,GAAC,OAAO,GAAC,MAAM,GAAC,KAAK,GAAC,MAAM,GAAC,MAAM,CAA0B;AAGvG;;;GAGG;AACH,wBAAgB,IAAI,CAAE,GAAG,EAHd,GAGc,GAFZ,wBAAwB,CA+BpC"}
|