entropic-bond 1.53.13 → 1.53.15

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.
@@ -55,7 +55,7 @@ export declare class Persistent {
55
55
  * @param factory the constructor of the registered class
56
56
  * @param annotation an annotation associated with the class
57
57
  */
58
- static registerFactory(className: string, factory: PersistentConstructor, annotation?: unknown): void;
58
+ static registerFactory(className: string, factory: PersistentConstructor, annotation?: unknown, isLegacy?: boolean): void;
59
59
  /**
60
60
  * Returns the constructor of a registered class
61
61
  * @param className the name of the class to be retrieved
@@ -74,6 +74,13 @@ export declare class Persistent {
74
74
  * @see classFactory
75
75
  */
76
76
  static registeredClasses(): string[];
77
+ /**
78
+ * Returns the names of all registered classes, including legacy names
79
+ * @returns the names of all registered classes, including legacy names
80
+ * @see registerFactory
81
+ * @see classFactory
82
+ */
83
+ static registeredClassesAndLegacyNames(): string[];
77
84
  /**
78
85
  * Returns the names of all registered classes that extend a given class
79
86
  * @param derivedFrom the class to be extended
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "entropic-bond",
3
3
  "type": "module",
4
- "version": "1.53.13",
4
+ "version": "1.53.15",
5
5
  "description": "Tidy up your messy components",
6
6
  "main": "./lib/entropic-bond.umd.cjs",
7
7
  "module": "./lib/entropic-bond.js",
@@ -18,6 +18,9 @@
18
18
  ],
19
19
  "publishConfig": {
20
20
  "access": "public",
21
+ "registry": "https://registry.npmjs.org/",
22
+ "tag": "latest",
23
+ "provenance": true,
21
24
  "branches": [
22
25
  "master"
23
26
  ]
@@ -56,19 +59,19 @@
56
59
  "@semantic-release/changelog": "^6.0.3",
57
60
  "@semantic-release/git": "^10.0.1",
58
61
  "@type-challenges/utils": "^0.1.1",
59
- "@types/node": "^22.13.9",
62
+ "@types/node": "^24.10.2",
60
63
  "@types/uuid": "^10.0.0",
61
64
  "git-branch-is": "^4.0.0",
62
65
  "husky": "^9.1.7",
63
- "semantic-release": "^24.2.3",
64
- "typedoc": "^0.27.9",
65
- "typedoc-plugin-markdown": "^4.4.2",
66
- "typescript": "^5.8.2",
67
- "vite-plugin-dts": "^4.5.3",
68
- "vitest": "^3.0.7"
66
+ "semantic-release": "^25.0.2",
67
+ "typedoc": "^0.28.15",
68
+ "typedoc-plugin-markdown": "^4.9.0",
69
+ "typescript": "^5.9.3",
70
+ "vite-plugin-dts": "^4.5.4",
71
+ "vitest": "^4.0.15"
69
72
  },
70
73
  "dependencies": {
71
- "uuid": "^11.1.0"
74
+ "uuid": "^13.0.0"
72
75
  },
73
76
  "husky": {
74
77
  "hooks": {