@contractspec/module.examples 3.8.2 → 3.8.4
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/index.js +3 -1
- package/dist/node/index.js +3 -1
- package/dist/runtime/context.d.ts +1 -1
- package/dist/runtime/engine.d.ts +1 -1
- package/package.json +62 -60
package/dist/index.js
CHANGED
|
@@ -12,6 +12,7 @@ import ContentGeneration from "@contractspec/example.content-generation/example"
|
|
|
12
12
|
import CrmPipeline from "@contractspec/example.crm-pipeline/example";
|
|
13
13
|
import DataGridShowcase from "@contractspec/example.data-grid-showcase/example";
|
|
14
14
|
import EmailGmail from "@contractspec/example.email-gmail/example";
|
|
15
|
+
import HarnessLab from "@contractspec/example.harness-lab/example";
|
|
15
16
|
import InAppDocs from "@contractspec/example.in-app-docs/example";
|
|
16
17
|
import IntegrationHub from "@contractspec/example.integration-hub/example";
|
|
17
18
|
import IntegrationPosthog from "@contractspec/example.integration-posthog/example";
|
|
@@ -66,6 +67,7 @@ var EXAMPLE_REGISTRY = [
|
|
|
66
67
|
CrmPipeline,
|
|
67
68
|
DataGridShowcase,
|
|
68
69
|
EmailGmail,
|
|
70
|
+
HarnessLab,
|
|
69
71
|
InAppDocs,
|
|
70
72
|
IntegrationHub,
|
|
71
73
|
IntegrationPosthog,
|
|
@@ -208,7 +210,7 @@ import {
|
|
|
208
210
|
createDefaultTransformEngine,
|
|
209
211
|
registerBasicValidation,
|
|
210
212
|
registerDefaultReactRenderer
|
|
211
|
-
} from "@contractspec/lib.contracts-
|
|
213
|
+
} from "@contractspec/lib.contracts-runtime-client-react/transform-engine";
|
|
212
214
|
function createTemplateTransformEngine() {
|
|
213
215
|
const engine = createDefaultTransformEngine();
|
|
214
216
|
registerDefaultReactRenderer(engine);
|
package/dist/node/index.js
CHANGED
|
@@ -11,6 +11,7 @@ import ContentGeneration from "@contractspec/example.content-generation/example"
|
|
|
11
11
|
import CrmPipeline from "@contractspec/example.crm-pipeline/example";
|
|
12
12
|
import DataGridShowcase from "@contractspec/example.data-grid-showcase/example";
|
|
13
13
|
import EmailGmail from "@contractspec/example.email-gmail/example";
|
|
14
|
+
import HarnessLab from "@contractspec/example.harness-lab/example";
|
|
14
15
|
import InAppDocs from "@contractspec/example.in-app-docs/example";
|
|
15
16
|
import IntegrationHub from "@contractspec/example.integration-hub/example";
|
|
16
17
|
import IntegrationPosthog from "@contractspec/example.integration-posthog/example";
|
|
@@ -65,6 +66,7 @@ var EXAMPLE_REGISTRY = [
|
|
|
65
66
|
CrmPipeline,
|
|
66
67
|
DataGridShowcase,
|
|
67
68
|
EmailGmail,
|
|
69
|
+
HarnessLab,
|
|
68
70
|
InAppDocs,
|
|
69
71
|
IntegrationHub,
|
|
70
72
|
IntegrationPosthog,
|
|
@@ -207,7 +209,7 @@ import {
|
|
|
207
209
|
createDefaultTransformEngine,
|
|
208
210
|
registerBasicValidation,
|
|
209
211
|
registerDefaultReactRenderer
|
|
210
|
-
} from "@contractspec/lib.contracts-
|
|
212
|
+
} from "@contractspec/lib.contracts-runtime-client-react/transform-engine";
|
|
211
213
|
function createTemplateTransformEngine() {
|
|
212
214
|
const engine = createDefaultTransformEngine();
|
|
213
215
|
registerDefaultReactRenderer(engine);
|
|
@@ -7,8 +7,8 @@ import { type MarketplaceHandlers } from '@contractspec/example.marketplace';
|
|
|
7
7
|
import { type PolicySafeKnowledgeAssistantHandlers } from '@contractspec/example.policy-safe-knowledge-assistant';
|
|
8
8
|
import { type SaasHandlers } from '@contractspec/example.saas-boilerplate';
|
|
9
9
|
import { type WorkflowHandlers } from '@contractspec/example.workflow-system';
|
|
10
|
-
import type { TransformEngine } from '@contractspec/lib.contracts-spec/presentations/transform-engine';
|
|
11
10
|
import { type TemplateRuntimeProviderProps } from '@contractspec/lib.example-shared-ui';
|
|
11
|
+
import type { TransformEngine } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
12
12
|
/**
|
|
13
13
|
* Template-specific handlers created from the runtime database
|
|
14
14
|
*/
|
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-
|
|
7
|
+
import { type TransformEngine } from '@contractspec/lib.contracts-runtime-client-react/transform-engine';
|
|
8
8
|
/**
|
|
9
9
|
* Create a TransformEngine configured for template rendering
|
|
10
10
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.examples",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.4",
|
|
4
4
|
"description": "Example contract specifications collection",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -33,68 +33,70 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@apollo/client": "^4.1.6",
|
|
36
|
-
"@contractspec/example.agent-console": "3.8.
|
|
37
|
-
"@contractspec/example.ai-chat-assistant": "3.8.
|
|
38
|
-
"@contractspec/example.ai-support-bot": "3.7.
|
|
39
|
-
"@contractspec/example.analytics-dashboard": "3.9.
|
|
40
|
-
"@contractspec/example.calendar-google": "3.7.
|
|
41
|
-
"@contractspec/example.content-generation": "3.7.
|
|
42
|
-
"@contractspec/example.crm-pipeline": "3.7.
|
|
43
|
-
"@contractspec/example.data-grid-showcase": "3.8.
|
|
44
|
-
"@contractspec/example.email-gmail": "3.7.
|
|
45
|
-
"@contractspec/example.in-app-docs": "3.7.
|
|
46
|
-
"@contractspec/example.integration-hub": "3.8.
|
|
47
|
-
"@contractspec/example.integration-posthog": "3.7.
|
|
48
|
-
"@contractspec/example.integration-stripe": "3.7.
|
|
49
|
-
"@contractspec/example.integration-supabase": "3.7.
|
|
50
|
-
"@contractspec/example.voice-providers": "3.7.
|
|
51
|
-
"@contractspec/example.kb-update-pipeline": "3.7.
|
|
52
|
-
"@contractspec/example.knowledge-canon": "3.7.
|
|
53
|
-
"@contractspec/example.learning-journey-ambient-coach": "3.7.
|
|
54
|
-
"@contractspec/example.learning-journey-crm-onboarding": "3.7.
|
|
55
|
-
"@contractspec/example.learning-journey-duo-drills": "3.7.
|
|
56
|
-
"@contractspec/example.learning-journey-platform-tour": "3.7.
|
|
57
|
-
"@contractspec/example.learning-journey-quest-challenges": "3.7.
|
|
58
|
-
"@contractspec/example.learning-journey-registry": "3.7.
|
|
59
|
-
"@contractspec/example.learning-journey-studio-onboarding": "3.7.
|
|
60
|
-
"@contractspec/example.learning-journey-ui-coaching": "3.7.
|
|
61
|
-
"@contractspec/example.learning-journey-ui-gamified": "3.7.
|
|
62
|
-
"@contractspec/example.learning-journey-ui-onboarding": "3.7.
|
|
63
|
-
"@contractspec/example.learning-journey-ui-shared": "3.7.
|
|
64
|
-
"@contractspec/example.learning-patterns": "3.7.
|
|
65
|
-
"@contractspec/example.lifecycle-cli": "3.7.
|
|
66
|
-
"@contractspec/example.lifecycle-dashboard": "3.7.
|
|
67
|
-
"@contractspec/example.locale-jurisdiction-gate": "3.7.
|
|
68
|
-
"@contractspec/example.marketplace": "3.8.
|
|
69
|
-
"@contractspec/example.meeting-recorder-providers": "3.7.
|
|
70
|
-
"@contractspec/example.messaging-agent-actions": "3.8.
|
|
71
|
-
"@contractspec/example.minimal": "2.8.
|
|
72
|
-
"@contractspec/example.openbanking-powens": "3.7.
|
|
73
|
-
"@contractspec/example.opencode-cli": "2.8.
|
|
74
|
-
"@contractspec/example.personalization": "3.7.
|
|
75
|
-
"@contractspec/example.pocket-family-office": "3.7.
|
|
76
|
-
"@contractspec/example.policy-safe-knowledge-assistant": "3.7.
|
|
77
|
-
"@contractspec/example.product-intent": "3.7.
|
|
78
|
-
"@contractspec/example.project-management-sync": "3.7.
|
|
79
|
-
"@contractspec/example.saas-boilerplate": "3.8.
|
|
80
|
-
"@contractspec/example.service-business-os": "3.7.
|
|
81
|
-
"@contractspec/example.team-hub": "3.7.
|
|
82
|
-
"@contractspec/example.versioned-knowledge-base": "3.7.
|
|
83
|
-
"@contractspec/example.video-api-showcase": "3.7.
|
|
84
|
-
"@contractspec/example.video-docs-terminal": "3.7.
|
|
85
|
-
"@contractspec/example.video-marketing-clip": "3.7.
|
|
86
|
-
"@contractspec/example.visualization-showcase": "3.9.
|
|
87
|
-
"@contractspec/example.wealth-snapshot": "3.7.
|
|
88
|
-
"@contractspec/example.workflow-system": "3.8.
|
|
89
|
-
"@contractspec/lib.contracts-spec": "
|
|
90
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
91
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
92
|
-
"zod": "^4.3.5"
|
|
36
|
+
"@contractspec/example.agent-console": "3.8.4",
|
|
37
|
+
"@contractspec/example.ai-chat-assistant": "3.8.4",
|
|
38
|
+
"@contractspec/example.ai-support-bot": "3.7.12",
|
|
39
|
+
"@contractspec/example.analytics-dashboard": "3.9.4",
|
|
40
|
+
"@contractspec/example.calendar-google": "3.7.12",
|
|
41
|
+
"@contractspec/example.content-generation": "3.7.12",
|
|
42
|
+
"@contractspec/example.crm-pipeline": "3.7.12",
|
|
43
|
+
"@contractspec/example.data-grid-showcase": "3.8.4",
|
|
44
|
+
"@contractspec/example.email-gmail": "3.7.12",
|
|
45
|
+
"@contractspec/example.in-app-docs": "3.7.12",
|
|
46
|
+
"@contractspec/example.integration-hub": "3.8.4",
|
|
47
|
+
"@contractspec/example.integration-posthog": "3.7.12",
|
|
48
|
+
"@contractspec/example.integration-stripe": "3.7.12",
|
|
49
|
+
"@contractspec/example.integration-supabase": "3.7.12",
|
|
50
|
+
"@contractspec/example.voice-providers": "3.7.12",
|
|
51
|
+
"@contractspec/example.kb-update-pipeline": "3.7.12",
|
|
52
|
+
"@contractspec/example.knowledge-canon": "3.7.12",
|
|
53
|
+
"@contractspec/example.learning-journey-ambient-coach": "3.7.12",
|
|
54
|
+
"@contractspec/example.learning-journey-crm-onboarding": "3.7.12",
|
|
55
|
+
"@contractspec/example.learning-journey-duo-drills": "3.7.12",
|
|
56
|
+
"@contractspec/example.learning-journey-platform-tour": "3.7.12",
|
|
57
|
+
"@contractspec/example.learning-journey-quest-challenges": "3.7.12",
|
|
58
|
+
"@contractspec/example.learning-journey-registry": "3.7.12",
|
|
59
|
+
"@contractspec/example.learning-journey-studio-onboarding": "3.7.12",
|
|
60
|
+
"@contractspec/example.learning-journey-ui-coaching": "3.7.12",
|
|
61
|
+
"@contractspec/example.learning-journey-ui-gamified": "3.7.12",
|
|
62
|
+
"@contractspec/example.learning-journey-ui-onboarding": "3.7.12",
|
|
63
|
+
"@contractspec/example.learning-journey-ui-shared": "3.7.12",
|
|
64
|
+
"@contractspec/example.learning-patterns": "3.7.12",
|
|
65
|
+
"@contractspec/example.lifecycle-cli": "3.7.12",
|
|
66
|
+
"@contractspec/example.lifecycle-dashboard": "3.7.12",
|
|
67
|
+
"@contractspec/example.locale-jurisdiction-gate": "3.7.12",
|
|
68
|
+
"@contractspec/example.marketplace": "3.8.4",
|
|
69
|
+
"@contractspec/example.meeting-recorder-providers": "3.7.12",
|
|
70
|
+
"@contractspec/example.messaging-agent-actions": "3.8.4",
|
|
71
|
+
"@contractspec/example.minimal": "2.8.4",
|
|
72
|
+
"@contractspec/example.openbanking-powens": "3.7.12",
|
|
73
|
+
"@contractspec/example.opencode-cli": "2.8.4",
|
|
74
|
+
"@contractspec/example.personalization": "3.7.12",
|
|
75
|
+
"@contractspec/example.pocket-family-office": "3.7.12",
|
|
76
|
+
"@contractspec/example.policy-safe-knowledge-assistant": "3.7.12",
|
|
77
|
+
"@contractspec/example.product-intent": "3.7.12",
|
|
78
|
+
"@contractspec/example.project-management-sync": "3.7.12",
|
|
79
|
+
"@contractspec/example.saas-boilerplate": "3.8.4",
|
|
80
|
+
"@contractspec/example.service-business-os": "3.7.12",
|
|
81
|
+
"@contractspec/example.team-hub": "3.7.12",
|
|
82
|
+
"@contractspec/example.versioned-knowledge-base": "3.7.12",
|
|
83
|
+
"@contractspec/example.video-api-showcase": "3.7.12",
|
|
84
|
+
"@contractspec/example.video-docs-terminal": "3.7.12",
|
|
85
|
+
"@contractspec/example.video-marketing-clip": "3.7.12",
|
|
86
|
+
"@contractspec/example.visualization-showcase": "3.9.4",
|
|
87
|
+
"@contractspec/example.wealth-snapshot": "3.7.12",
|
|
88
|
+
"@contractspec/example.workflow-system": "3.8.4",
|
|
89
|
+
"@contractspec/lib.contracts-spec": "5.0.0",
|
|
90
|
+
"@contractspec/lib.example-shared-ui": "6.0.12",
|
|
91
|
+
"@contractspec/lib.runtime-sandbox": "2.7.10",
|
|
92
|
+
"zod": "^4.3.5",
|
|
93
|
+
"@contractspec/lib.contracts-runtime-client-react": "3.8.0",
|
|
94
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.0"
|
|
93
95
|
},
|
|
94
96
|
"devDependencies": {
|
|
95
|
-
"@contractspec/tool.typescript": "3.7.
|
|
97
|
+
"@contractspec/tool.typescript": "3.7.9",
|
|
96
98
|
"typescript": "^5.9.3",
|
|
97
|
-
"@contractspec/tool.bun": "3.7.
|
|
99
|
+
"@contractspec/tool.bun": "3.7.9"
|
|
98
100
|
},
|
|
99
101
|
"exports": {
|
|
100
102
|
".": {
|