ipld-schema-describer 3.0.24 → 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.
@@ -3,21 +3,27 @@ updates:
3
3
  - package-ecosystem: 'github-actions'
4
4
  directory: '/'
5
5
  schedule:
6
- interval: 'daily'
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: 'daily'
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: 'daily'
24
+ interval: 'monthly'
25
+ cooldown:
26
+ default-days: 5
21
27
  ignore:
22
28
  - dependency-name: "@ipld/car"
23
29
  commit-message:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ ## [3.0.25](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.24...v3.0.25) (2026-07-09)
2
+
1
3
  ## [3.0.24](https://github.com/rvagg/js-ipld-schema-describer/compare/v3.0.23...v3.0.24) (2026-06-22)
2
4
 
3
5
  ### Trivial Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ipld-schema-describer",
3
- "version": "3.0.24",
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": "^6.0.2"
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":"AAEA;;;;;GAKG;AAEH;;;GAGG;AACH,8BAHW,GAAG,GACD;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,CA4B5C;qBApCY,OAAO,+BAA+B,EAAE,MAAM;2BAC9C,OAAO,+BAA+B,EAAE,YAAY;2BACpD,OAAO,+BAA+B,EAAE,YAAY;0BACpD,OAAO,+BAA+B,EAAE,WAAW"}
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
@@ -1 +1 @@
1
- {"version":3,"file":"kind.d.ts","sourceRoot":"","sources":["../kind.js"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AACH,0BAHW,GAAG,GACD,wBAAwB,CA+BpC;uCApCY,MAAM,GAAC,QAAQ,GAAC,OAAO,GAAC,KAAK,GAAC,OAAO,GAAC,MAAM,GAAC,KAAK,GAAC,MAAM,GAAC,MAAM"}
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"}