@contractspec/module.examples 1.62.0 → 2.0.0
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/dist/browser/index.js +3 -3
- package/dist/builtins.d.ts +1 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.js +3 -3
- package/dist/node/index.js +3 -3
- package/dist/registry.d.ts +2 -3
- package/dist/registry.test.d.ts +0 -1
- package/dist/runtime/context.d.ts +1 -2
- package/dist/runtime/engine.d.ts +1 -2
- package/dist/runtime/installer.d.ts +0 -1
- package/dist/runtime/registry-client.d.ts +1 -2
- package/dist/runtime/registry.d.ts +0 -1
- package/package.json +41 -41
- package/dist/builtins.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/registry.d.ts.map +0 -1
- package/dist/registry.test.d.ts.map +0 -1
- package/dist/runtime/context.d.ts.map +0 -1
- package/dist/runtime/engine.d.ts.map +0 -1
- package/dist/runtime/installer.d.ts.map +0 -1
- package/dist/runtime/registry-client.d.ts.map +0 -1
- package/dist/runtime/registry.d.ts.map +0 -1
package/dist/browser/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/registry.ts
|
|
2
|
-
import { ExampleRegistry } from "@contractspec/lib.contracts";
|
|
2
|
+
import { ExampleRegistry } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
3
3
|
|
|
4
4
|
// src/builtins.ts
|
|
5
5
|
import AgentConsole from "@contractspec/example.agent-console/example";
|
|
@@ -76,7 +76,7 @@ var EXAMPLE_REGISTRY = [
|
|
|
76
76
|
];
|
|
77
77
|
|
|
78
78
|
// src/registry.ts
|
|
79
|
-
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts";
|
|
79
|
+
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
80
80
|
var globalRegistry = new ExampleRegistry;
|
|
81
81
|
for (const example of EXAMPLE_REGISTRY) {
|
|
82
82
|
globalRegistry.register(example);
|
|
@@ -96,7 +96,7 @@ import {
|
|
|
96
96
|
createDefaultTransformEngine,
|
|
97
97
|
registerBasicValidation,
|
|
98
98
|
registerDefaultReactRenderer
|
|
99
|
-
} from "@contractspec/lib.contracts/presentations";
|
|
99
|
+
} from "@contractspec/lib.contracts-spec/presentations/transform-engine";
|
|
100
100
|
import {
|
|
101
101
|
agentDashboardMarkdownRenderer,
|
|
102
102
|
agentListMarkdownRenderer,
|
package/dist/builtins.d.ts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/registry.ts
|
|
3
|
-
import { ExampleRegistry } from "@contractspec/lib.contracts";
|
|
3
|
+
import { ExampleRegistry } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
4
4
|
|
|
5
5
|
// src/builtins.ts
|
|
6
6
|
import AgentConsole from "@contractspec/example.agent-console/example";
|
|
@@ -77,7 +77,7 @@ var EXAMPLE_REGISTRY = [
|
|
|
77
77
|
];
|
|
78
78
|
|
|
79
79
|
// src/registry.ts
|
|
80
|
-
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts";
|
|
80
|
+
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
81
81
|
var globalRegistry = new ExampleRegistry;
|
|
82
82
|
for (const example of EXAMPLE_REGISTRY) {
|
|
83
83
|
globalRegistry.register(example);
|
|
@@ -97,7 +97,7 @@ import {
|
|
|
97
97
|
createDefaultTransformEngine,
|
|
98
98
|
registerBasicValidation,
|
|
99
99
|
registerDefaultReactRenderer
|
|
100
|
-
} from "@contractspec/lib.contracts/presentations";
|
|
100
|
+
} from "@contractspec/lib.contracts-spec/presentations/transform-engine";
|
|
101
101
|
import {
|
|
102
102
|
agentDashboardMarkdownRenderer,
|
|
103
103
|
agentListMarkdownRenderer,
|
package/dist/node/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/registry.ts
|
|
2
|
-
import { ExampleRegistry } from "@contractspec/lib.contracts";
|
|
2
|
+
import { ExampleRegistry } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
3
3
|
|
|
4
4
|
// src/builtins.ts
|
|
5
5
|
import AgentConsole from "@contractspec/example.agent-console/example";
|
|
@@ -76,7 +76,7 @@ var EXAMPLE_REGISTRY = [
|
|
|
76
76
|
];
|
|
77
77
|
|
|
78
78
|
// src/registry.ts
|
|
79
|
-
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts";
|
|
79
|
+
import { ExampleRegistry as ExampleRegistry2 } from "@contractspec/lib.contracts-spec/examples/registry";
|
|
80
80
|
var globalRegistry = new ExampleRegistry;
|
|
81
81
|
for (const example of EXAMPLE_REGISTRY) {
|
|
82
82
|
globalRegistry.register(example);
|
|
@@ -96,7 +96,7 @@ import {
|
|
|
96
96
|
createDefaultTransformEngine,
|
|
97
97
|
registerBasicValidation,
|
|
98
98
|
registerDefaultReactRenderer
|
|
99
|
-
} from "@contractspec/lib.contracts/presentations";
|
|
99
|
+
} from "@contractspec/lib.contracts-spec/presentations/transform-engine";
|
|
100
100
|
import {
|
|
101
101
|
agentDashboardMarkdownRenderer,
|
|
102
102
|
agentListMarkdownRenderer,
|
package/dist/registry.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { ExampleSpec } from '@contractspec/lib.contracts';
|
|
2
|
-
export { ExampleRegistry } from '@contractspec/lib.contracts';
|
|
1
|
+
import type { ExampleSpec } from '@contractspec/lib.contracts-spec/examples/types';
|
|
2
|
+
export { ExampleRegistry } from '@contractspec/lib.contracts-spec/examples/registry';
|
|
3
3
|
/**
|
|
4
4
|
* Global registry containing all builtin ContractSpec examples.
|
|
5
5
|
* @deprecated Prefer using ExampleRegistry directly for custom registrations.
|
|
@@ -17,4 +17,3 @@ export declare function getExample(key: string): ExampleSpec | undefined;
|
|
|
17
17
|
* Search examples by query (matches key, title, description, tags).
|
|
18
18
|
*/
|
|
19
19
|
export declare function searchExamples(query: string): ExampleSpec[];
|
|
20
|
-
//# sourceMappingURL=registry.d.ts.map
|
package/dist/registry.test.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type PropsWithChildren } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import type { TransformEngine } from '@contractspec/lib.contracts-spec/presentations/transform-engine';
|
|
3
3
|
import { type CrmHandlers } from '@contractspec/example.crm-pipeline';
|
|
4
4
|
import { type SaasHandlers } from '@contractspec/example.saas-boilerplate';
|
|
5
5
|
import { type AgentHandlers } from '@contractspec/example.agent-console';
|
|
@@ -32,4 +32,3 @@ export declare function useWorkflowHandlers(): WorkflowHandlers;
|
|
|
32
32
|
export declare function useMarketplaceHandlers(): MarketplaceHandlers;
|
|
33
33
|
export declare function useIntegrationHandlers(): IntegrationHandlers;
|
|
34
34
|
export declare function useAnalyticsHandlers(): AnalyticsHandlers;
|
|
35
|
-
//# sourceMappingURL=context.d.ts.map
|
package/dist/runtime/engine.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Creates and configures a TransformEngine instance with all template-specific
|
|
5
5
|
* renderers for React and Markdown targets.
|
|
6
6
|
*/
|
|
7
|
-
import { type TransformEngine } from '@contractspec/lib.contracts/presentations';
|
|
7
|
+
import { type TransformEngine } from '@contractspec/lib.contracts-spec/presentations/transform-engine';
|
|
8
8
|
/**
|
|
9
9
|
* Create a TransformEngine configured for template rendering
|
|
10
10
|
*/
|
|
@@ -17,4 +17,3 @@ export declare function getTemplateEngine(): TransformEngine;
|
|
|
17
17
|
* Reset the shared engine (useful for testing)
|
|
18
18
|
*/
|
|
19
19
|
export declare function resetTemplateEngine(): void;
|
|
20
|
-
//# sourceMappingURL=engine.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ContractRegistryItem, ContractRegistryItemType, ContractRegistryManifest } from '@contractspec/lib.contracts';
|
|
1
|
+
import type { ContractRegistryItem, ContractRegistryItemType, ContractRegistryManifest } from '@contractspec/lib.contracts-spec';
|
|
2
2
|
export interface RegistryTemplateSummary {
|
|
3
3
|
id: string;
|
|
4
4
|
title: string;
|
|
@@ -20,4 +20,3 @@ export declare class ContractSpecRegistryClient {
|
|
|
20
20
|
listTemplateSummaries(): Promise<RegistryTemplateSummary[]>;
|
|
21
21
|
getItem(typeSegment: string, name: string): Promise<ContractRegistryItem>;
|
|
22
22
|
}
|
|
23
|
-
//# sourceMappingURL=registry-client.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.examples",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Example contract specifications collection",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -32,50 +32,50 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@apollo/client": "^4.1.4",
|
|
35
|
-
"@contractspec/example.agent-console": "
|
|
36
|
-
"@contractspec/example.ai-support-bot": "
|
|
37
|
-
"@contractspec/example.analytics-dashboard": "
|
|
38
|
-
"@contractspec/example.content-generation": "
|
|
39
|
-
"@contractspec/example.crm-pipeline": "
|
|
40
|
-
"@contractspec/example.integration-hub": "
|
|
41
|
-
"@contractspec/example.integration-stripe": "
|
|
42
|
-
"@contractspec/example.voice-providers": "
|
|
43
|
-
"@contractspec/example.kb-update-pipeline": "
|
|
44
|
-
"@contractspec/example.knowledge-canon": "
|
|
45
|
-
"@contractspec/example.learning-journey-ambient-coach": "
|
|
46
|
-
"@contractspec/example.learning-journey-crm-onboarding": "
|
|
47
|
-
"@contractspec/example.learning-journey-duo-drills": "
|
|
48
|
-
"@contractspec/example.learning-journey-platform-tour": "
|
|
49
|
-
"@contractspec/example.learning-journey-quest-challenges": "
|
|
50
|
-
"@contractspec/example.learning-journey-registry": "
|
|
51
|
-
"@contractspec/example.learning-journey-studio-onboarding": "
|
|
52
|
-
"@contractspec/example.learning-journey-ui-coaching": "
|
|
53
|
-
"@contractspec/example.learning-journey-ui-gamified": "
|
|
54
|
-
"@contractspec/example.learning-journey-ui-onboarding": "
|
|
55
|
-
"@contractspec/example.learning-journey-ui-shared": "
|
|
56
|
-
"@contractspec/example.learning-patterns": "
|
|
57
|
-
"@contractspec/example.lifecycle-cli": "
|
|
58
|
-
"@contractspec/example.lifecycle-dashboard": "
|
|
59
|
-
"@contractspec/example.locale-jurisdiction-gate": "
|
|
60
|
-
"@contractspec/example.marketplace": "
|
|
61
|
-
"@contractspec/example.openbanking-powens": "
|
|
62
|
-
"@contractspec/example.personalization": "
|
|
63
|
-
"@contractspec/example.policy-safe-knowledge-assistant": "
|
|
64
|
-
"@contractspec/example.saas-boilerplate": "
|
|
65
|
-
"@contractspec/example.service-business-os": "
|
|
66
|
-
"@contractspec/example.team-hub": "
|
|
67
|
-
"@contractspec/example.versioned-knowledge-base": "
|
|
68
|
-
"@contractspec/example.wealth-snapshot": "
|
|
69
|
-
"@contractspec/example.workflow-system": "
|
|
70
|
-
"@contractspec/lib.contracts": "
|
|
71
|
-
"@contractspec/lib.example-shared-ui": "
|
|
72
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
35
|
+
"@contractspec/example.agent-console": "2.0.0",
|
|
36
|
+
"@contractspec/example.ai-support-bot": "2.0.0",
|
|
37
|
+
"@contractspec/example.analytics-dashboard": "2.0.0",
|
|
38
|
+
"@contractspec/example.content-generation": "2.0.0",
|
|
39
|
+
"@contractspec/example.crm-pipeline": "2.0.0",
|
|
40
|
+
"@contractspec/example.integration-hub": "2.0.0",
|
|
41
|
+
"@contractspec/example.integration-stripe": "2.0.0",
|
|
42
|
+
"@contractspec/example.voice-providers": "2.0.0",
|
|
43
|
+
"@contractspec/example.kb-update-pipeline": "2.0.0",
|
|
44
|
+
"@contractspec/example.knowledge-canon": "2.0.0",
|
|
45
|
+
"@contractspec/example.learning-journey-ambient-coach": "2.0.0",
|
|
46
|
+
"@contractspec/example.learning-journey-crm-onboarding": "2.0.0",
|
|
47
|
+
"@contractspec/example.learning-journey-duo-drills": "2.0.0",
|
|
48
|
+
"@contractspec/example.learning-journey-platform-tour": "2.0.0",
|
|
49
|
+
"@contractspec/example.learning-journey-quest-challenges": "2.0.0",
|
|
50
|
+
"@contractspec/example.learning-journey-registry": "2.0.0",
|
|
51
|
+
"@contractspec/example.learning-journey-studio-onboarding": "2.0.0",
|
|
52
|
+
"@contractspec/example.learning-journey-ui-coaching": "2.0.0",
|
|
53
|
+
"@contractspec/example.learning-journey-ui-gamified": "2.0.0",
|
|
54
|
+
"@contractspec/example.learning-journey-ui-onboarding": "2.0.0",
|
|
55
|
+
"@contractspec/example.learning-journey-ui-shared": "2.0.0",
|
|
56
|
+
"@contractspec/example.learning-patterns": "2.0.0",
|
|
57
|
+
"@contractspec/example.lifecycle-cli": "2.0.0",
|
|
58
|
+
"@contractspec/example.lifecycle-dashboard": "2.0.0",
|
|
59
|
+
"@contractspec/example.locale-jurisdiction-gate": "2.0.0",
|
|
60
|
+
"@contractspec/example.marketplace": "2.0.0",
|
|
61
|
+
"@contractspec/example.openbanking-powens": "2.0.0",
|
|
62
|
+
"@contractspec/example.personalization": "2.0.0",
|
|
63
|
+
"@contractspec/example.policy-safe-knowledge-assistant": "2.0.0",
|
|
64
|
+
"@contractspec/example.saas-boilerplate": "2.0.0",
|
|
65
|
+
"@contractspec/example.service-business-os": "2.0.0",
|
|
66
|
+
"@contractspec/example.team-hub": "2.0.0",
|
|
67
|
+
"@contractspec/example.versioned-knowledge-base": "2.0.0",
|
|
68
|
+
"@contractspec/example.wealth-snapshot": "2.0.0",
|
|
69
|
+
"@contractspec/example.workflow-system": "2.0.0",
|
|
70
|
+
"@contractspec/lib.contracts-spec": "2.0.0",
|
|
71
|
+
"@contractspec/lib.example-shared-ui": "2.0.0",
|
|
72
|
+
"@contractspec/lib.runtime-sandbox": "1.0.0",
|
|
73
73
|
"zod": "^4.3.5"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@contractspec/tool.typescript": "
|
|
76
|
+
"@contractspec/tool.typescript": "2.0.0",
|
|
77
77
|
"typescript": "^5.9.3",
|
|
78
|
-
"@contractspec/tool.bun": "
|
|
78
|
+
"@contractspec/tool.bun": "2.0.0"
|
|
79
79
|
},
|
|
80
80
|
"exports": {
|
|
81
81
|
".": {
|
package/dist/builtins.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"builtins.d.ts","sourceRoot":"","sources":["../src/builtins.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAuC/D,eAAO,MAAM,gBAAgB,EAAE,SAAS,WAAW,EAoClD,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,cAAc,YAAY,CAAC;AAG3B,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC"}
|
package/dist/registry.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../src/registry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAC;AAI/D,OAAO,EAAE,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAU9D;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,SAAS,WAAW,EAA0B,CAAC;AAE9E;;GAEG;AACH,wBAAgB,YAAY,IAAI,SAAS,WAAW,EAAE,CAErD;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS,CAE/D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW,EAAE,CAE3D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registry.test.d.ts","sourceRoot":"","sources":["../src/registry.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/runtime/context.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,iBAAiB,EAAgC,MAAM,OAAO,CAAC;AAM7E,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,2CAA2C,CAAC;AAGjF,OAAO,EAEL,KAAK,WAAW,EACjB,MAAM,oCAAoC,CAAC;AAC5C,OAAO,EAEL,KAAK,YAAY,EAClB,MAAM,wCAAwC,CAAC;AAChD,OAAO,EAEL,KAAK,aAAa,EACnB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAEL,KAAK,gBAAgB,EACtB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAEL,KAAK,mBAAmB,EACzB,MAAM,mCAAmC,CAAC;AAC3C,OAAO,EAEL,KAAK,mBAAmB,EACzB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,EAEL,KAAK,iBAAiB,EACvB,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAEL,KAAK,oCAAoC,EAC1C,MAAM,uDAAuD,CAAC;AAM/D,OAAO,EAGL,KAAK,4BAA4B,EAGlC,MAAM,qCAAqC,CAAC;AAmB7C;;GAEG;AACH,qBAAa,gBAAgB;IAC3B,GAAG,EAAG,WAAW,CAAC;IAClB,IAAI,EAAG,YAAY,CAAC;IACpB,KAAK,EAAG,aAAa,CAAC;IACtB,QAAQ,EAAG,gBAAgB,CAAC;IAC5B,WAAW,EAAG,mBAAmB,CAAC;IAClC,WAAW,EAAG,mBAAmB,CAAC;IAClC,SAAS,EAAG,iBAAiB,CAAC;IAC9B,4BAA4B,EAAG,oCAAoC,CAAC;CACrE;AAED,wBAAgB,uBAAuB,CAAC,EACtC,UAAU,EACV,SAA6B,EAC7B,IAAY,EACZ,QAAQ,GACT,EAAE,iBAAiB,CAAC,4BAA4B,CAAC,2CAsSjD;AAGD,wBAAgB,iBAAiB,IAAI,eAAe,CAEnD;AAGD,wBAAgB,mBAAmB,IAAI,gBAAgB,CAEtD;AAGD,wBAAgB,cAAc,IAAI,WAAW,CAE5C;AAGD,wBAAgB,eAAe,IAAI,YAAY,CAE9C;AAGD,wBAAgB,gBAAgB,IAAI,aAAa,CAEhD;AAGD,wBAAgB,mBAAmB,IAAI,gBAAgB,CAEtD;AAGD,wBAAgB,sBAAsB,IAAI,mBAAmB,CAE5D;AAGD,wBAAgB,sBAAsB,IAAI,mBAAmB,CAE5D;AAGD,wBAAgB,oBAAoB,IAAI,iBAAiB,CAExD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"engine.d.ts","sourceRoot":"","sources":["../../src/runtime/engine.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAIL,KAAK,eAAe,EACrB,MAAM,2CAA2C,CAAC;AAgDnD;;GAEG;AACH,wBAAgB,6BAA6B,IAAI,eAAe,CAW/D;AAuDD;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,eAAe,CAKnD;AAED;;GAEG;AACH,wBAAgB,mBAAmB,IAAI,IAAI,CAE1C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"installer.d.ts","sourceRoot":"","sources":["../../src/runtime/installer.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,kBAAkB,EAClB,cAAc,EACd,UAAU,EACV,sBAAsB,EACtB,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,qCAAqC,CAAC;AAC7C,OAAO,EAEL,KAAK,uBAAuB,EAC7B,MAAM,mBAAmB,CAAC;AAC3B,OAAO,EAAE,GAAG,EAAE,MAAM,mCAAmC,CAAC;AAExD,QAAA,MAAQ,oBAAoB,iCAAQ,CAAC;AACrC,KAAK,oBAAoB,GAAG,YAAY,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAWtE,MAAM,WAAW,wBAAwB;IACvC,OAAO,CAAC,EAAE,oBAAoB,CAAC;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,qFAAqF;IACrF,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,KAAK,CAAC;CAC1B;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAuB;IAC/C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAS;IAClC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAgB;IAC5C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAe;gBAE7B,OAAO,GAAE,wBAA6B;IAS5C,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAI3B,IAAI,CAAC,MAAM,CAAC,EAAE,cAAc,GAAG,kBAAkB,EAAE;IAiBnD;;;;;OAKG;IACG,mBAAmB,IAAI,OAAO,CAAC,uBAAuB,EAAE,CAAC;IAS/D;;OAEG;IACH,sBAAsB,CAAC,EAAE,EAAE,MAAM,GAAG,UAAU,GAAG,IAAI;IAKrD,GAAG,CAAC,UAAU,EAAE,UAAU,GAAG,kBAAkB,GAAG,SAAS;IAIrD,OAAO,CACX,UAAU,EAAE,UAAU,EACtB,OAAO,GAAE,sBAA2B,GACnC,OAAO,CAAC,IAAI,CAAC;IAOV,YAAY,CAChB,OAAO,EAAE,mBAAmB,GAC3B,OAAO,CAAC,kBAAkB,CAAC;CA6C/B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registry-client.d.ts","sourceRoot":"","sources":["../../src/runtime/registry-client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,oBAAoB,EACpB,wBAAwB,EACxB,wBAAwB,EACzB,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,uBAAuB;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,MAAM,EAAE,UAAU,CAAC;CACpB;AAED,MAAM,WAAW,qBAAqB;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,KAAK,CAAC;CAC1B;AAED,qBAAa,0BAA0B;IACrC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAS;IACjC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAe;gBAE7B,OAAO,EAAE,qBAAqB;IAKpC,WAAW,IAAI,OAAO,CAAC,wBAAwB,CAAC;IAahD,UAAU,CACd,IAAI,EAAE,wBAAwB,GAC7B,OAAO,CAAC,oBAAoB,EAAE,CAAC;IAK5B,qBAAqB,IAAI,OAAO,CAAC,uBAAuB,EAAE,CAAC;IAY3D,OAAO,CACX,WAAW,EAAE,MAAM,EACnB,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,oBAAoB,CAAC;CAejC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/runtime/registry.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAGV,kBAAkB,EAClB,UAAU,EACV,cAAc,EACf,MAAM,qCAAqC,CAAC;AAoE7C,eAAO,MAAM,iBAAiB,EAAE,kBAAkB,EA0HjD,CAAC;AAEF,wBAAgB,aAAa,CAAC,MAAM,CAAC,EAAE,cAAc,GAAG,kBAAkB,EAAE,CAmB3E;AAED,wBAAgB,WAAW,CAAC,EAAE,EAAE,UAAU,GAAG,kBAAkB,GAAG,SAAS,CAE1E;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,MAAM,GACpB,kBAAkB,EAAE,CAItB;AAED;;GAEG;AACH,wBAAgB,oBAAoB,IAAI,kBAAkB,EAAE,CAE3D"}
|