@xyo-network/module-factory-locator 7.0.8 → 7.0.10

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.
@@ -1,3 +1,2 @@
1
- export * from './ModuleFactoryLocator.ts';
2
- export * from './standardCreatableFactories.ts';
1
+ export * from '@xyo-network/sdk/module-factory-locator';
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2BAA2B,CAAA;AACzC,cAAc,iCAAiC,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,cAAc,yCAAyC,CAAA"}
@@ -1,121 +1,3 @@
1
- // src/ModuleFactoryLocator.ts
2
- import { assertEx } from "@ariestools/sdk";
3
- import {
4
- hasAllLabels,
5
- hasLabels,
6
- registerCreatableModuleFactory
7
- } from "@xyo-network/module-model";
8
- import { asSchema } from "@xyo-network/sdk-protocol";
9
-
10
- // src/standardCreatableFactories.ts
11
- import { MemoryArchivist } from "@xyo-network/archivist-memory";
12
- import { ViewArchivist } from "@xyo-network/archivist-view";
13
- import { HttpBridge } from "@xyo-network/bridge-http";
14
- import { MemoryBoundWitnessDiviner } from "@xyo-network/diviner-boundwitness/memory";
15
- import { IdentityDiviner } from "@xyo-network/diviner-identity";
16
- import { GenericPayloadDiviner } from "@xyo-network/diviner-payload-generic";
17
- import { registerCreatableModuleFactories } from "@xyo-network/module-model";
18
- import { MemoryNode } from "@xyo-network/node-memory";
19
- import { ViewNode } from "@xyo-network/node-view";
20
- import { MemorySentinel } from "@xyo-network/sentinel-memory";
21
- import { AdhocWitness } from "@xyo-network/witness-adhoc";
22
- var standardCreatableModulesList = [
23
- HttpBridge.factory(),
24
- ViewArchivist.factory(),
25
- ViewNode.factory(),
26
- AdhocWitness.factory(),
27
- GenericPayloadDiviner.factory(),
28
- MemoryBoundWitnessDiviner.factory(),
29
- IdentityDiviner.factory(),
30
- MemoryArchivist.factory(),
31
- MemoryArchivist.factory(),
32
- MemoryNode.factory(),
33
- MemorySentinel.factory(),
34
- GenericPayloadDiviner.factory()
35
- ];
36
- var standardCreatableFactories = () => {
37
- return registerCreatableModuleFactories(standardCreatableModulesList, {}, true);
38
- };
39
-
40
- // src/ModuleFactoryLocator.ts
41
- var ModuleFactoryLocator = class _ModuleFactoryLocator {
42
- _registry;
43
- _frozen = false;
44
- constructor(_registry = standardCreatableFactories()) {
45
- this._registry = _registry;
46
- }
47
- /**
48
- * The current registry for the module factory
49
- */
50
- get registry() {
51
- return this._registry;
52
- }
53
- static empty() {
54
- return new _ModuleFactoryLocator({});
55
- }
56
- static standard() {
57
- return new _ModuleFactoryLocator(standardCreatableFactories());
58
- }
59
- freeze() {
60
- this._frozen = true;
61
- }
62
- /**
63
- * Locates a module factory that matches the supplied schema and labels
64
- * @param schema The config schema for the module
65
- * @param labels The labels for the module factory
66
- * @returns A module factory that matches the supplied schema and labels or throws if one is not found
67
- */
68
- locate(schema, labels) {
69
- return assertEx(
70
- this.tryLocate(schema, labels),
71
- () => `No module factory for the supplied config schema [${schema}]${labels ? ` & labels [${JSON.stringify(labels)}]` : ""} registered`
72
- );
73
- }
74
- merge(locator) {
75
- const registry = { ...this.registry };
76
- for (const schema in locator.registry) {
77
- const typedSchema = asSchema(schema, true);
78
- if (registry[typedSchema]) {
79
- registry[typedSchema].push(...locator.registry[typedSchema] ?? []);
80
- } else {
81
- registry[typedSchema] = locator.registry[typedSchema];
82
- }
83
- }
84
- return new _ModuleFactoryLocator(registry);
85
- }
86
- /**
87
- * Registers a single module factory (with optional tags) with the locator
88
- * @param factory The factory to register
89
- * @param labels The labels for the module factory
90
- */
91
- register(factory, labels, primary = false) {
92
- assertEx(!this._frozen, () => "Cannot register a module factory after the locator has been frozen");
93
- registerCreatableModuleFactory(this._registry, factory, labels, primary);
94
- return this;
95
- }
96
- /**
97
- * Registers multiple module factories with the locator
98
- * @param factories The factories to register
99
- */
100
- registerMany(factories) {
101
- for (const factory of factories) {
102
- this.register(factory);
103
- }
104
- return this;
105
- }
106
- /**
107
- * Tries to locate a module factory that matches the supplied schema and labels
108
- * @param schema The config schema for the module
109
- * @param labels The labels for the module factory
110
- * @returns A module factory that matches the supplied schema and labels or undefined
111
- */
112
- tryLocate(schema, labels) {
113
- return labels ? this._registry[schema]?.filter(hasLabels).find((factory) => hasAllLabels(factory?.labels, labels)) ?? this._registry[schema]?.[0] : this._registry[schema]?.[0];
114
- }
115
- };
116
- export {
117
- ModuleFactoryLocator,
118
- standardCreatableFactories,
119
- standardCreatableModulesList
120
- };
1
+ // src/index.ts
2
+ export * from "@xyo-network/sdk/module-factory-locator";
121
3
  //# sourceMappingURL=index.mjs.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../src/ModuleFactoryLocator.ts", "../../src/standardCreatableFactories.ts"],
4
- "sourcesContent": ["import { assertEx } from '@ariestools/sdk'\nimport type {\n CreatableModuleFactory,\n CreatableModuleRegistry,\n LabeledCreatableModuleFactory,\n Labels,\n ModuleFactoryLocatorInstance,\n} from '@xyo-network/module-model'\nimport {\n hasAllLabels,\n hasLabels,\n registerCreatableModuleFactory,\n} from '@xyo-network/module-model'\nimport { asSchema, type Schema } from '@xyo-network/sdk-protocol'\n\nimport { standardCreatableFactories } from './standardCreatableFactories.ts'\n\n/**\n * A class which encapsulates the Service Locator Pattern for Module Factories\n */\nexport class ModuleFactoryLocator implements ModuleFactoryLocatorInstance {\n protected readonly _registry: CreatableModuleRegistry\n\n private _frozen = false\n\n constructor(_registry: CreatableModuleRegistry = standardCreatableFactories()) {\n this._registry = _registry\n }\n\n /**\n * The current registry for the module factory\n */\n get registry(): Readonly<CreatableModuleRegistry> {\n return this._registry\n }\n\n static empty(): ModuleFactoryLocator {\n return new ModuleFactoryLocator({})\n }\n\n static standard(): ModuleFactoryLocator {\n return new ModuleFactoryLocator(standardCreatableFactories())\n }\n\n freeze(): void {\n this._frozen = true\n }\n\n /**\n * Locates a module factory that matches the supplied schema and labels\n * @param schema The config schema for the module\n * @param labels The labels for the module factory\n * @returns A module factory that matches the supplied schema and labels or throws if one is not found\n */\n locate(schema: Schema, labels?: Labels): CreatableModuleFactory | LabeledCreatableModuleFactory {\n return assertEx(\n this.tryLocate(schema, labels),\n\n () => `No module factory for the supplied config schema [${schema}]${labels ? ` & labels [${JSON.stringify(labels)}]` : ''} registered`,\n )\n }\n\n merge(locator: ModuleFactoryLocatorInstance): ModuleFactoryLocatorInstance {\n const registry = { ...this.registry }\n for (const schema in locator.registry) {\n const typedSchema = asSchema(schema, true)\n if (registry[typedSchema]) {\n registry[typedSchema].push(...(locator.registry[typedSchema] ?? []))\n } else {\n registry[typedSchema] = locator.registry[typedSchema]\n }\n }\n return new ModuleFactoryLocator(registry)\n }\n\n /**\n * Registers a single module factory (with optional tags) with the locator\n * @param factory The factory to register\n * @param labels The labels for the module factory\n */\n register(factory: CreatableModuleFactory, labels?: Labels, primary: boolean | Schema | Schema[] = false): this {\n assertEx(!this._frozen, () => 'Cannot register a module factory after the locator has been frozen')\n registerCreatableModuleFactory(this._registry, factory, labels, primary)\n return this\n }\n\n /**\n * Registers multiple module factories with the locator\n * @param factories The factories to register\n */\n registerMany(factories: CreatableModuleFactory[]): this {\n for (const factory of factories) {\n this.register(factory)\n }\n return this\n }\n\n /**\n * Tries to locate a module factory that matches the supplied schema and labels\n * @param schema The config schema for the module\n * @param labels The labels for the module factory\n * @returns A module factory that matches the supplied schema and labels or undefined\n */\n tryLocate(schema: Schema, labels?: Labels): CreatableModuleFactory | LabeledCreatableModuleFactory | undefined {\n return labels\n // Find the first factory that has labels and has all the labels provided\n ? (this._registry[schema]?.filter(hasLabels).find(factory => hasAllLabels(factory?.labels, labels)) ?? this._registry[schema]?.[0])\n // Otherwise, return the first factory\n : this._registry[schema]?.[0]\n }\n}\n", "import { MemoryArchivist } from '@xyo-network/archivist-memory'\nimport { ViewArchivist } from '@xyo-network/archivist-view'\nimport { HttpBridge } from '@xyo-network/bridge-http'\nimport { MemoryBoundWitnessDiviner } from '@xyo-network/diviner-boundwitness/memory'\nimport { IdentityDiviner } from '@xyo-network/diviner-identity'\nimport { GenericPayloadDiviner } from '@xyo-network/diviner-payload-generic'\nimport type {\n CreatableModuleFactory, CreatableModuleRegistry, LabeledCreatableModuleFactory,\n} from '@xyo-network/module-model'\nimport { registerCreatableModuleFactories } from '@xyo-network/module-model'\nimport { MemoryNode } from '@xyo-network/node-memory'\nimport { ViewNode } from '@xyo-network/node-view'\nimport { MemorySentinel } from '@xyo-network/sentinel-memory'\nimport { AdhocWitness } from '@xyo-network/witness-adhoc'\n\n// order matters in this array. later items will register themselves as primary for schemas shared with earlier items\nexport const standardCreatableModulesList: (CreatableModuleFactory | LabeledCreatableModuleFactory)[] = [\n HttpBridge.factory(),\n ViewArchivist.factory(),\n ViewNode.factory(),\n AdhocWitness.factory(),\n GenericPayloadDiviner.factory(),\n MemoryBoundWitnessDiviner.factory(),\n IdentityDiviner.factory(),\n MemoryArchivist.factory(),\n MemoryArchivist.factory(),\n MemoryNode.factory(),\n MemorySentinel.factory(),\n GenericPayloadDiviner.factory(),\n]\n\nexport const standardCreatableFactories = (): CreatableModuleRegistry => {\n return registerCreatableModuleFactories(standardCreatableModulesList, {}, true)\n}\n"],
5
- "mappings": ";AAAA,SAAS,gBAAgB;AAQzB;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAS,gBAA6B;;;ACbtC,SAAS,uBAAuB;AAChC,SAAS,qBAAqB;AAC9B,SAAS,kBAAkB;AAC3B,SAAS,iCAAiC;AAC1C,SAAS,uBAAuB;AAChC,SAAS,6BAA6B;AAItC,SAAS,wCAAwC;AACjD,SAAS,kBAAkB;AAC3B,SAAS,gBAAgB;AACzB,SAAS,sBAAsB;AAC/B,SAAS,oBAAoB;AAGtB,IAAM,+BAA2F;AAAA,EACtG,WAAW,QAAQ;AAAA,EACnB,cAAc,QAAQ;AAAA,EACtB,SAAS,QAAQ;AAAA,EACjB,aAAa,QAAQ;AAAA,EACrB,sBAAsB,QAAQ;AAAA,EAC9B,0BAA0B,QAAQ;AAAA,EAClC,gBAAgB,QAAQ;AAAA,EACxB,gBAAgB,QAAQ;AAAA,EACxB,gBAAgB,QAAQ;AAAA,EACxB,WAAW,QAAQ;AAAA,EACnB,eAAe,QAAQ;AAAA,EACvB,sBAAsB,QAAQ;AAChC;AAEO,IAAM,6BAA6B,MAA+B;AACvE,SAAO,iCAAiC,8BAA8B,CAAC,GAAG,IAAI;AAChF;;;ADbO,IAAM,uBAAN,MAAM,sBAA6D;AAAA,EACrD;AAAA,EAEX,UAAU;AAAA,EAElB,YAAY,YAAqC,2BAA2B,GAAG;AAC7E,SAAK,YAAY;AAAA,EACnB;AAAA;AAAA;AAAA;AAAA,EAKA,IAAI,WAA8C;AAChD,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,OAAO,QAA8B;AACnC,WAAO,IAAI,sBAAqB,CAAC,CAAC;AAAA,EACpC;AAAA,EAEA,OAAO,WAAiC;AACtC,WAAO,IAAI,sBAAqB,2BAA2B,CAAC;AAAA,EAC9D;AAAA,EAEA,SAAe;AACb,SAAK,UAAU;AAAA,EACjB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,OAAO,QAAgB,QAAyE;AAC9F,WAAO;AAAA,MACL,KAAK,UAAU,QAAQ,MAAM;AAAA,MAE7B,MAAM,qDAAqD,MAAM,IAAI,SAAS,cAAc,KAAK,UAAU,MAAM,CAAC,MAAM,EAAE;AAAA,IAC5H;AAAA,EACF;AAAA,EAEA,MAAM,SAAqE;AACzE,UAAM,WAAW,EAAE,GAAG,KAAK,SAAS;AACpC,eAAW,UAAU,QAAQ,UAAU;AACrC,YAAM,cAAc,SAAS,QAAQ,IAAI;AACzC,UAAI,SAAS,WAAW,GAAG;AACzB,iBAAS,WAAW,EAAE,KAAK,GAAI,QAAQ,SAAS,WAAW,KAAK,CAAC,CAAE;AAAA,MACrE,OAAO;AACL,iBAAS,WAAW,IAAI,QAAQ,SAAS,WAAW;AAAA,MACtD;AAAA,IACF;AACA,WAAO,IAAI,sBAAqB,QAAQ;AAAA,EAC1C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAOA,SAAS,SAAiC,QAAiB,UAAuC,OAAa;AAC7G,aAAS,CAAC,KAAK,SAAS,MAAM,oEAAoE;AAClG,mCAA+B,KAAK,WAAW,SAAS,QAAQ,OAAO;AACvE,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,aAAa,WAA2C;AACtD,eAAW,WAAW,WAAW;AAC/B,WAAK,SAAS,OAAO;AAAA,IACvB;AACA,WAAO;AAAA,EACT;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAQA,UAAU,QAAgB,QAAqF;AAC7G,WAAO,SAEF,KAAK,UAAU,MAAM,GAAG,OAAO,SAAS,EAAE,KAAK,aAAW,aAAa,SAAS,QAAQ,MAAM,CAAC,KAAK,KAAK,UAAU,MAAM,IAAI,CAAC,IAE/H,KAAK,UAAU,MAAM,IAAI,CAAC;AAAA,EAChC;AACF;",
3
+ "sources": ["../../src/index.ts"],
4
+ "sourcesContent": ["// Compatibility shim: this package re-exports from @xyo-network/sdk.\nexport * from '@xyo-network/sdk/module-factory-locator'\n"],
5
+ "mappings": ";AACA,cAAc;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/module-factory-locator",
3
- "version": "7.0.8",
3
+ "version": "7.0.10",
4
4
  "description": "Primary SDK for using XYO Protocol 2.0",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -34,20 +34,11 @@
34
34
  "README.md"
35
35
  ],
36
36
  "dependencies": {
37
- "@xyo-network/archivist-view": "~7.0.8",
38
- "@xyo-network/bridge-http": "~7.0.8",
39
- "@xyo-network/diviner-boundwitness": "~7.0.8",
40
- "@xyo-network/diviner-payload-generic": "~7.0.8",
41
- "@xyo-network/diviner-identity": "~7.0.8",
42
- "@xyo-network/node-memory": "~7.0.8",
43
- "@xyo-network/node-view": "~7.0.8",
44
- "@xyo-network/sentinel-memory": "~7.0.8",
45
- "@xyo-network/witness-adhoc": "~7.0.8",
46
- "@xyo-network/module-model": "~7.0.8",
47
- "@xyo-network/archivist-memory": "~7.0.8"
37
+ "@xyo-network/sdk": "~7.0.10"
48
38
  },
49
39
  "devDependencies": {
50
- "@ariestools/sdk": "~7.0.8",
40
+ "@ariestools/sdk": "~8.0.2",
41
+ "@ariestools/threads": "~8.0.2",
51
42
  "@bitauth/libauth": "~3.0.0",
52
43
  "@metamask/providers": "~22.1.1",
53
44
  "@noble/post-quantum": "~0.6.1",
@@ -55,14 +46,11 @@
55
46
  "@opentelemetry/sdk-trace-base": "~2.9.0",
56
47
  "@scure/base": "~2.2.0",
57
48
  "@scure/bip39": "~2.2.0",
58
- "@xylabs/geo": "~7.0.8",
59
- "@xylabs/threads": "~7.0.8",
60
- "@xylabs/toolchain": "~8.6.2",
61
- "@xylabs/tsconfig": "~8.6.2",
62
- "@xyo-network/sdk-protocol": "~7.0.13",
49
+ "@xylabs/toolchain": "~8.6.8",
50
+ "@xylabs/tsconfig": "~8.6.8",
51
+ "@xyo-network/sdk-protocol": "~7.0.15",
63
52
  "ajv": "~8.20.0",
64
53
  "async-mutex": "~0.5.0",
65
- "browserslist": "~4.28.4",
66
54
  "debug": "~4.4.3",
67
55
  "eslint": "~10.6.0",
68
56
  "eslint-import-resolver-typescript": "~4.4.5",
@@ -76,7 +64,8 @@
76
64
  "zod": "~4.4.3"
77
65
  },
78
66
  "peerDependencies": {
79
- "@ariestools/sdk": "^7.0.8",
67
+ "@ariestools/sdk": "^8.0.2",
68
+ "@ariestools/threads": "^8.0.2",
80
69
  "@bitauth/libauth": "^3.0.0",
81
70
  "@metamask/providers": "^22.1.1",
82
71
  "@noble/post-quantum": "^0.6.1",
@@ -84,9 +73,7 @@
84
73
  "@opentelemetry/sdk-trace-base": "^2.9.0",
85
74
  "@scure/base": "^2.2.0",
86
75
  "@scure/bip39": "^2.2.0",
87
- "@xylabs/geo": "^7.0.8",
88
- "@xylabs/threads": "^7.0.8",
89
- "@xyo-network/sdk-protocol": "^7.0.13",
76
+ "@xyo-network/sdk-protocol": "^7.0.15",
90
77
  "ajv": "^8.20.0",
91
78
  "async-mutex": "^0.5.0",
92
79
  "debug": "^4.4.3",
@@ -103,5 +90,6 @@
103
90
  },
104
91
  "publishConfig": {
105
92
  "access": "public"
106
- }
93
+ },
94
+ "deprecated": "Use @xyo-network/sdk/module-factory-locator instead. Replace @xyo-network/module-factory-locator with @xyo-network/sdk/module-factory-locator. This package is a compatibility shim only and will not receive further updates."
107
95
  }
@@ -1,44 +0,0 @@
1
- import type { CreatableModuleFactory, CreatableModuleRegistry, LabeledCreatableModuleFactory, Labels, ModuleFactoryLocatorInstance } from '@xyo-network/module-model';
2
- import { type Schema } from '@xyo-network/sdk-protocol';
3
- /**
4
- * A class which encapsulates the Service Locator Pattern for Module Factories
5
- */
6
- export declare class ModuleFactoryLocator implements ModuleFactoryLocatorInstance {
7
- protected readonly _registry: CreatableModuleRegistry;
8
- private _frozen;
9
- constructor(_registry?: CreatableModuleRegistry);
10
- /**
11
- * The current registry for the module factory
12
- */
13
- get registry(): Readonly<CreatableModuleRegistry>;
14
- static empty(): ModuleFactoryLocator;
15
- static standard(): ModuleFactoryLocator;
16
- freeze(): void;
17
- /**
18
- * Locates a module factory that matches the supplied schema and labels
19
- * @param schema The config schema for the module
20
- * @param labels The labels for the module factory
21
- * @returns A module factory that matches the supplied schema and labels or throws if one is not found
22
- */
23
- locate(schema: Schema, labels?: Labels): CreatableModuleFactory | LabeledCreatableModuleFactory;
24
- merge(locator: ModuleFactoryLocatorInstance): ModuleFactoryLocatorInstance;
25
- /**
26
- * Registers a single module factory (with optional tags) with the locator
27
- * @param factory The factory to register
28
- * @param labels The labels for the module factory
29
- */
30
- register(factory: CreatableModuleFactory, labels?: Labels, primary?: boolean | Schema | Schema[]): this;
31
- /**
32
- * Registers multiple module factories with the locator
33
- * @param factories The factories to register
34
- */
35
- registerMany(factories: CreatableModuleFactory[]): this;
36
- /**
37
- * Tries to locate a module factory that matches the supplied schema and labels
38
- * @param schema The config schema for the module
39
- * @param labels The labels for the module factory
40
- * @returns A module factory that matches the supplied schema and labels or undefined
41
- */
42
- tryLocate(schema: Schema, labels?: Labels): CreatableModuleFactory | LabeledCreatableModuleFactory | undefined;
43
- }
44
- //# sourceMappingURL=ModuleFactoryLocator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ModuleFactoryLocator.d.ts","sourceRoot":"","sources":["../../src/ModuleFactoryLocator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,sBAAsB,EACtB,uBAAuB,EACvB,6BAA6B,EAC7B,MAAM,EACN,4BAA4B,EAC7B,MAAM,2BAA2B,CAAA;AAMlC,OAAO,EAAY,KAAK,MAAM,EAAE,MAAM,2BAA2B,CAAA;AAIjE;;GAEG;AACH,qBAAa,oBAAqB,YAAW,4BAA4B;IACvE,SAAS,CAAC,QAAQ,CAAC,SAAS,EAAE,uBAAuB,CAAA;IAErD,OAAO,CAAC,OAAO,CAAQ;gBAEX,SAAS,GAAE,uBAAsD;IAI7E;;OAEG;IACH,IAAI,QAAQ,IAAI,QAAQ,CAAC,uBAAuB,CAAC,CAEhD;IAED,MAAM,CAAC,KAAK,IAAI,oBAAoB;IAIpC,MAAM,CAAC,QAAQ,IAAI,oBAAoB;IAIvC,MAAM,IAAI,IAAI;IAId;;;;;OAKG;IACH,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,sBAAsB,GAAG,6BAA6B;IAQ/F,KAAK,CAAC,OAAO,EAAE,4BAA4B,GAAG,4BAA4B;IAa1E;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,sBAAsB,EAAE,MAAM,CAAC,EAAE,MAAM,EAAE,OAAO,GAAE,OAAO,GAAG,MAAM,GAAG,MAAM,EAAU,GAAG,IAAI;IAM9G;;;OAGG;IACH,YAAY,CAAC,SAAS,EAAE,sBAAsB,EAAE,GAAG,IAAI;IAOvD;;;;;OAKG;IACH,SAAS,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,sBAAsB,GAAG,6BAA6B,GAAG,SAAS;CAO/G"}
@@ -1,4 +0,0 @@
1
- import type { CreatableModuleFactory, CreatableModuleRegistry, LabeledCreatableModuleFactory } from '@xyo-network/module-model';
2
- export declare const standardCreatableModulesList: (CreatableModuleFactory | LabeledCreatableModuleFactory)[];
3
- export declare const standardCreatableFactories: () => CreatableModuleRegistry;
4
- //# sourceMappingURL=standardCreatableFactories.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"standardCreatableFactories.d.ts","sourceRoot":"","sources":["../../src/standardCreatableFactories.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EACV,sBAAsB,EAAE,uBAAuB,EAAE,6BAA6B,EAC/E,MAAM,2BAA2B,CAAA;AAQlC,eAAO,MAAM,4BAA4B,EAAE,CAAC,sBAAsB,GAAG,6BAA6B,CAAC,EAalG,CAAA;AAED,eAAO,MAAM,0BAA0B,QAAO,uBAE7C,CAAA"}