@elevasis/sdk 1.25.0 → 1.26.1
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/cli.cjs +87 -120
- package/dist/index.d.ts +220 -50
- package/dist/index.js +4 -435
- package/dist/node/index.d.ts +46 -38
- package/dist/test-utils/index.d.ts +154 -40
- package/dist/test-utils/index.js +27 -355
- package/dist/types/worker/adapters/clickup.d.ts +22 -0
- package/dist/types/worker/adapters/index.d.ts +1 -0
- package/dist/worker/index.js +32 -354
- package/package.json +2 -2
- package/reference/_navigation.md +11 -1
- package/reference/_reference-manifest.json +70 -0
- package/reference/claude-config/rules/organization-model.md +12 -1
- package/reference/claude-config/rules/organization-os.md +12 -1
- package/reference/claude-config/skills/om/SKILL.md +13 -5
- package/reference/claude-config/skills/om/operations/codify-level-a.md +109 -100
- package/reference/claude-config/skills/om/operations/customers.md +10 -6
- package/reference/claude-config/skills/om/operations/features.md +7 -3
- package/reference/claude-config/skills/om/operations/goals.md +10 -6
- package/reference/claude-config/skills/om/operations/identity.md +8 -5
- package/reference/claude-config/skills/om/operations/labels.md +17 -1
- package/reference/claude-config/skills/om/operations/offerings.md +11 -7
- package/reference/claude-config/skills/om/operations/roles.md +11 -7
- package/reference/claude-config/skills/om/operations/techStack.md +10 -2
- package/reference/claude-config/skills/setup/SKILL.md +2 -2
- package/reference/claude-config/sync-notes/2026-05-20-om-define-helpers.md +32 -0
- package/reference/claude-config/sync-notes/2026-05-22-access-model-and-right-panel.md +43 -0
- package/reference/claude-config/sync-notes/2026-05-22-lead-gen-tenant-config.md +40 -0
- package/reference/claude-config/sync-notes/2026-05-22-org-model-multi-file-split.md +61 -0
- package/reference/claude-config/sync-notes/2026-05-23-branding-names-to-identity.md +49 -0
- package/reference/claude-config/sync-notes/2026-05-23-om-deployment-drift-detection.md +42 -0
- package/reference/cli-management.mdx +541 -0
- package/reference/cli.mdx +4 -532
- package/reference/concepts.mdx +134 -146
- package/reference/deployment/api.mdx +296 -297
- package/reference/deployment/command-center.mdx +208 -209
- package/reference/deployment/index.mdx +194 -195
- package/reference/deployment/provided-features.mdx +110 -107
- package/reference/deployment/ui-execution.mdx +249 -250
- package/reference/examples/organization-model.ts +14 -4
- package/reference/framework/index.mdx +111 -195
- package/reference/framework/resource-documentation.mdx +90 -0
- package/reference/framework/tutorial-system.mdx +135 -135
- package/reference/getting-started.mdx +141 -142
- package/reference/index.mdx +95 -106
- package/reference/packages/ui/src/auth/README.md +6 -6
- package/reference/platform-tools/adapters-integration.mdx +300 -301
- package/reference/platform-tools/adapters-platform.mdx +552 -553
- package/reference/platform-tools/index.mdx +216 -217
- package/reference/platform-tools/type-safety.mdx +82 -82
- package/reference/resources/index.mdx +348 -349
- package/reference/resources/patterns.mdx +446 -449
- package/reference/resources/types.mdx +115 -116
- package/reference/roadmap.mdx +164 -165
- package/reference/rules/organization-model.md +14 -0
- package/reference/runtime.mdx +172 -173
- package/reference/scaffold/operations/propagation-pipeline.md +1 -1
- package/reference/scaffold/recipes/extend-lead-gen.md +130 -77
- package/reference/scaffold/reference/contracts.md +376 -446
- package/reference/scaffold/reference/glossary.md +8 -6
- package/reference/scaffold/ui/feature-flags-and-gating.md +59 -46
- package/reference/scaffold/ui/feature-shell.mdx +11 -11
- package/reference/scaffold/ui/recipes.md +24 -24
- package/reference/troubleshooting.mdx +222 -223
package/dist/node/index.d.ts
CHANGED
|
@@ -373,8 +373,8 @@ interface ModelConfig {
|
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
376
|
-
deprecated: "deprecated";
|
|
377
376
|
active: "active";
|
|
377
|
+
deprecated: "deprecated";
|
|
378
378
|
archived: "archived";
|
|
379
379
|
}>;
|
|
380
380
|
declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
@@ -385,8 +385,8 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
385
385
|
description: z.ZodOptional<z.ZodString>;
|
|
386
386
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
387
387
|
status: z.ZodEnum<{
|
|
388
|
-
deprecated: "deprecated";
|
|
389
388
|
active: "active";
|
|
389
|
+
deprecated: "deprecated";
|
|
390
390
|
archived: "archived";
|
|
391
391
|
}>;
|
|
392
392
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -404,12 +404,12 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
404
404
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
405
405
|
path: z.ZodString;
|
|
406
406
|
role: z.ZodEnum<{
|
|
407
|
-
config: "config";
|
|
408
407
|
entrypoint: "entrypoint";
|
|
409
408
|
handler: "handler";
|
|
410
409
|
schema: "schema";
|
|
411
410
|
test: "test";
|
|
412
411
|
docs: "docs";
|
|
412
|
+
config: "config";
|
|
413
413
|
}>;
|
|
414
414
|
symbol: z.ZodOptional<z.ZodString>;
|
|
415
415
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -420,10 +420,10 @@ declare const WorkflowResourceEntrySchema$1: z.ZodObject<{
|
|
|
420
420
|
label: z.ZodString;
|
|
421
421
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
422
422
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
423
|
+
active: "active";
|
|
423
424
|
deprecated: "deprecated";
|
|
424
425
|
draft: "draft";
|
|
425
426
|
beta: "beta";
|
|
426
|
-
active: "active";
|
|
427
427
|
archived: "archived";
|
|
428
428
|
}>>;
|
|
429
429
|
}, z.core.$strip>>>;
|
|
@@ -436,8 +436,8 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
436
436
|
description: z.ZodOptional<z.ZodString>;
|
|
437
437
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
438
438
|
status: z.ZodEnum<{
|
|
439
|
-
deprecated: "deprecated";
|
|
440
439
|
active: "active";
|
|
440
|
+
deprecated: "deprecated";
|
|
441
441
|
archived: "archived";
|
|
442
442
|
}>;
|
|
443
443
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -455,12 +455,12 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
455
455
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
456
456
|
path: z.ZodString;
|
|
457
457
|
role: z.ZodEnum<{
|
|
458
|
-
config: "config";
|
|
459
458
|
entrypoint: "entrypoint";
|
|
460
459
|
handler: "handler";
|
|
461
460
|
schema: "schema";
|
|
462
461
|
test: "test";
|
|
463
462
|
docs: "docs";
|
|
463
|
+
config: "config";
|
|
464
464
|
}>;
|
|
465
465
|
symbol: z.ZodOptional<z.ZodString>;
|
|
466
466
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -502,10 +502,10 @@ declare const AgentResourceEntrySchema: z.ZodObject<{
|
|
|
502
502
|
label: z.ZodString;
|
|
503
503
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
504
504
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
505
|
+
active: "active";
|
|
505
506
|
deprecated: "deprecated";
|
|
506
507
|
draft: "draft";
|
|
507
508
|
beta: "beta";
|
|
508
|
-
active: "active";
|
|
509
509
|
archived: "archived";
|
|
510
510
|
}>>;
|
|
511
511
|
}, z.core.$strip>>>;
|
|
@@ -518,8 +518,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
518
518
|
description: z.ZodOptional<z.ZodString>;
|
|
519
519
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
520
520
|
status: z.ZodEnum<{
|
|
521
|
-
deprecated: "deprecated";
|
|
522
521
|
active: "active";
|
|
522
|
+
deprecated: "deprecated";
|
|
523
523
|
archived: "archived";
|
|
524
524
|
}>;
|
|
525
525
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -537,12 +537,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
537
537
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
538
538
|
path: z.ZodString;
|
|
539
539
|
role: z.ZodEnum<{
|
|
540
|
-
config: "config";
|
|
541
540
|
entrypoint: "entrypoint";
|
|
542
541
|
handler: "handler";
|
|
543
542
|
schema: "schema";
|
|
544
543
|
test: "test";
|
|
545
544
|
docs: "docs";
|
|
545
|
+
config: "config";
|
|
546
546
|
}>;
|
|
547
547
|
symbol: z.ZodOptional<z.ZodString>;
|
|
548
548
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -553,10 +553,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
553
553
|
label: z.ZodString;
|
|
554
554
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
555
555
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
556
|
+
active: "active";
|
|
556
557
|
deprecated: "deprecated";
|
|
557
558
|
draft: "draft";
|
|
558
559
|
beta: "beta";
|
|
559
|
-
active: "active";
|
|
560
560
|
archived: "archived";
|
|
561
561
|
}>>;
|
|
562
562
|
}, z.core.$strip>>>;
|
|
@@ -568,8 +568,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
568
568
|
description: z.ZodOptional<z.ZodString>;
|
|
569
569
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
570
570
|
status: z.ZodEnum<{
|
|
571
|
-
deprecated: "deprecated";
|
|
572
571
|
active: "active";
|
|
572
|
+
deprecated: "deprecated";
|
|
573
573
|
archived: "archived";
|
|
574
574
|
}>;
|
|
575
575
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -587,12 +587,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
587
587
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
588
588
|
path: z.ZodString;
|
|
589
589
|
role: z.ZodEnum<{
|
|
590
|
-
config: "config";
|
|
591
590
|
entrypoint: "entrypoint";
|
|
592
591
|
handler: "handler";
|
|
593
592
|
schema: "schema";
|
|
594
593
|
test: "test";
|
|
595
594
|
docs: "docs";
|
|
595
|
+
config: "config";
|
|
596
596
|
}>;
|
|
597
597
|
symbol: z.ZodOptional<z.ZodString>;
|
|
598
598
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -634,10 +634,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
634
634
|
label: z.ZodString;
|
|
635
635
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
636
636
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
637
|
+
active: "active";
|
|
637
638
|
deprecated: "deprecated";
|
|
638
639
|
draft: "draft";
|
|
639
640
|
beta: "beta";
|
|
640
|
-
active: "active";
|
|
641
641
|
archived: "archived";
|
|
642
642
|
}>>;
|
|
643
643
|
}, z.core.$strip>>>;
|
|
@@ -649,8 +649,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
649
649
|
description: z.ZodOptional<z.ZodString>;
|
|
650
650
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
651
651
|
status: z.ZodEnum<{
|
|
652
|
-
deprecated: "deprecated";
|
|
653
652
|
active: "active";
|
|
653
|
+
deprecated: "deprecated";
|
|
654
654
|
archived: "archived";
|
|
655
655
|
}>;
|
|
656
656
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -668,12 +668,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
668
668
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
669
669
|
path: z.ZodString;
|
|
670
670
|
role: z.ZodEnum<{
|
|
671
|
-
config: "config";
|
|
672
671
|
entrypoint: "entrypoint";
|
|
673
672
|
handler: "handler";
|
|
674
673
|
schema: "schema";
|
|
675
674
|
test: "test";
|
|
676
675
|
docs: "docs";
|
|
676
|
+
config: "config";
|
|
677
677
|
}>;
|
|
678
678
|
symbol: z.ZodOptional<z.ZodString>;
|
|
679
679
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -688,8 +688,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
688
688
|
description: z.ZodOptional<z.ZodString>;
|
|
689
689
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
690
690
|
status: z.ZodEnum<{
|
|
691
|
-
deprecated: "deprecated";
|
|
692
691
|
active: "active";
|
|
692
|
+
deprecated: "deprecated";
|
|
693
693
|
archived: "archived";
|
|
694
694
|
}>;
|
|
695
695
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -707,12 +707,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
707
707
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
708
708
|
path: z.ZodString;
|
|
709
709
|
role: z.ZodEnum<{
|
|
710
|
-
config: "config";
|
|
711
710
|
entrypoint: "entrypoint";
|
|
712
711
|
handler: "handler";
|
|
713
712
|
schema: "schema";
|
|
714
713
|
test: "test";
|
|
715
714
|
docs: "docs";
|
|
715
|
+
config: "config";
|
|
716
716
|
}>;
|
|
717
717
|
symbol: z.ZodOptional<z.ZodString>;
|
|
718
718
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1436,9 +1436,9 @@ declare const SurfaceTypeSchema: z.ZodEnum<{
|
|
|
1436
1436
|
dashboard: "dashboard";
|
|
1437
1437
|
settings: "settings";
|
|
1438
1438
|
graph: "graph";
|
|
1439
|
-
list: "list";
|
|
1440
1439
|
page: "page";
|
|
1441
1440
|
detail: "detail";
|
|
1441
|
+
list: "list";
|
|
1442
1442
|
}>;
|
|
1443
1443
|
interface SidebarSurfaceNode {
|
|
1444
1444
|
type: 'surface';
|
|
@@ -1470,10 +1470,10 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
|
1470
1470
|
declare const LinkSchema: z.ZodObject<{
|
|
1471
1471
|
nodeId: z.ZodString;
|
|
1472
1472
|
kind: z.ZodEnum<{
|
|
1473
|
-
links: "links";
|
|
1474
1473
|
affects: "affects";
|
|
1475
|
-
effects: "effects";
|
|
1476
1474
|
actions: "actions";
|
|
1475
|
+
effects: "effects";
|
|
1476
|
+
links: "links";
|
|
1477
1477
|
reads: "reads";
|
|
1478
1478
|
writes: "writes";
|
|
1479
1479
|
emits: "emits";
|
|
@@ -1674,7 +1674,11 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1674
1674
|
light: z.ZodOptional<z.ZodString>;
|
|
1675
1675
|
dark: z.ZodOptional<z.ZodString>;
|
|
1676
1676
|
}, z.core.$strip>>;
|
|
1677
|
-
|
|
1677
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
1678
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
1679
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1680
|
+
themePresetId: z.ZodOptional<z.ZodString>;
|
|
1681
|
+
}, z.core.$loose>>;
|
|
1678
1682
|
navigation: z.ZodDefault<z.ZodObject<{
|
|
1679
1683
|
sidebar: z.ZodDefault<z.ZodObject<{
|
|
1680
1684
|
primary: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<SidebarNode, unknown, z.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
@@ -1721,7 +1725,11 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1721
1725
|
}, z.core.$strip>>;
|
|
1722
1726
|
}, z.core.$strip>>;
|
|
1723
1727
|
clientBrief: z.ZodDefault<z.ZodString>;
|
|
1724
|
-
|
|
1728
|
+
organizationName: z.ZodOptional<z.ZodString>;
|
|
1729
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
1730
|
+
shortName: z.ZodOptional<z.ZodString>;
|
|
1731
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1732
|
+
}, z.core.$loose>>;
|
|
1725
1733
|
customers: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1726
1734
|
id: z.ZodString;
|
|
1727
1735
|
order: z.ZodNumber;
|
|
@@ -1895,8 +1903,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1895
1903
|
description: z.ZodOptional<z.ZodString>;
|
|
1896
1904
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1897
1905
|
status: z.ZodEnum<{
|
|
1898
|
-
deprecated: "deprecated";
|
|
1899
1906
|
active: "active";
|
|
1907
|
+
deprecated: "deprecated";
|
|
1900
1908
|
archived: "archived";
|
|
1901
1909
|
}>;
|
|
1902
1910
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1914,12 +1922,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1914
1922
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1915
1923
|
path: z.ZodString;
|
|
1916
1924
|
role: z.ZodEnum<{
|
|
1917
|
-
config: "config";
|
|
1918
1925
|
entrypoint: "entrypoint";
|
|
1919
1926
|
handler: "handler";
|
|
1920
1927
|
schema: "schema";
|
|
1921
1928
|
test: "test";
|
|
1922
1929
|
docs: "docs";
|
|
1930
|
+
config: "config";
|
|
1923
1931
|
}>;
|
|
1924
1932
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1925
1933
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1930,10 +1938,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1930
1938
|
label: z.ZodString;
|
|
1931
1939
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
1932
1940
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
1941
|
+
active: "active";
|
|
1933
1942
|
deprecated: "deprecated";
|
|
1934
1943
|
draft: "draft";
|
|
1935
1944
|
beta: "beta";
|
|
1936
|
-
active: "active";
|
|
1937
1945
|
archived: "archived";
|
|
1938
1946
|
}>>;
|
|
1939
1947
|
}, z.core.$strip>>>;
|
|
@@ -1945,8 +1953,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1945
1953
|
description: z.ZodOptional<z.ZodString>;
|
|
1946
1954
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1947
1955
|
status: z.ZodEnum<{
|
|
1948
|
-
deprecated: "deprecated";
|
|
1949
1956
|
active: "active";
|
|
1957
|
+
deprecated: "deprecated";
|
|
1950
1958
|
archived: "archived";
|
|
1951
1959
|
}>;
|
|
1952
1960
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1964,12 +1972,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1964
1972
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1965
1973
|
path: z.ZodString;
|
|
1966
1974
|
role: z.ZodEnum<{
|
|
1967
|
-
config: "config";
|
|
1968
1975
|
entrypoint: "entrypoint";
|
|
1969
1976
|
handler: "handler";
|
|
1970
1977
|
schema: "schema";
|
|
1971
1978
|
test: "test";
|
|
1972
1979
|
docs: "docs";
|
|
1980
|
+
config: "config";
|
|
1973
1981
|
}>;
|
|
1974
1982
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1975
1983
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2011,10 +2019,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2011
2019
|
label: z.ZodString;
|
|
2012
2020
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
2013
2021
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
2022
|
+
active: "active";
|
|
2014
2023
|
deprecated: "deprecated";
|
|
2015
2024
|
draft: "draft";
|
|
2016
2025
|
beta: "beta";
|
|
2017
|
-
active: "active";
|
|
2018
2026
|
archived: "archived";
|
|
2019
2027
|
}>>;
|
|
2020
2028
|
}, z.core.$strip>>>;
|
|
@@ -2026,8 +2034,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2026
2034
|
description: z.ZodOptional<z.ZodString>;
|
|
2027
2035
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
2028
2036
|
status: z.ZodEnum<{
|
|
2029
|
-
deprecated: "deprecated";
|
|
2030
2037
|
active: "active";
|
|
2038
|
+
deprecated: "deprecated";
|
|
2031
2039
|
archived: "archived";
|
|
2032
2040
|
}>;
|
|
2033
2041
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -2045,12 +2053,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2045
2053
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2046
2054
|
path: z.ZodString;
|
|
2047
2055
|
role: z.ZodEnum<{
|
|
2048
|
-
config: "config";
|
|
2049
2056
|
entrypoint: "entrypoint";
|
|
2050
2057
|
handler: "handler";
|
|
2051
2058
|
schema: "schema";
|
|
2052
2059
|
test: "test";
|
|
2053
2060
|
docs: "docs";
|
|
2061
|
+
config: "config";
|
|
2054
2062
|
}>;
|
|
2055
2063
|
symbol: z.ZodOptional<z.ZodString>;
|
|
2056
2064
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2065,8 +2073,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2065
2073
|
description: z.ZodOptional<z.ZodString>;
|
|
2066
2074
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
2067
2075
|
status: z.ZodEnum<{
|
|
2068
|
-
deprecated: "deprecated";
|
|
2069
2076
|
active: "active";
|
|
2077
|
+
deprecated: "deprecated";
|
|
2070
2078
|
archived: "archived";
|
|
2071
2079
|
}>;
|
|
2072
2080
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -2084,12 +2092,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2084
2092
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2085
2093
|
path: z.ZodString;
|
|
2086
2094
|
role: z.ZodEnum<{
|
|
2087
|
-
config: "config";
|
|
2088
2095
|
entrypoint: "entrypoint";
|
|
2089
2096
|
handler: "handler";
|
|
2090
2097
|
schema: "schema";
|
|
2091
2098
|
test: "test";
|
|
2092
2099
|
docs: "docs";
|
|
2100
|
+
config: "config";
|
|
2093
2101
|
}>;
|
|
2094
2102
|
symbol: z.ZodOptional<z.ZodString>;
|
|
2095
2103
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2203,10 +2211,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2203
2211
|
}, z.core.$strip>], "kind">>>;
|
|
2204
2212
|
knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2205
2213
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
2214
|
+
active: "active";
|
|
2206
2215
|
deprecated: "deprecated";
|
|
2207
2216
|
draft: "draft";
|
|
2208
2217
|
beta: "beta";
|
|
2209
|
-
active: "active";
|
|
2210
2218
|
archived: "archived";
|
|
2211
2219
|
}>>;
|
|
2212
2220
|
}, z.core.$strip>>>>;
|
|
@@ -2284,10 +2292,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2284
2292
|
roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2285
2293
|
}, z.core.$strip>>;
|
|
2286
2294
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
2295
|
+
active: "active";
|
|
2287
2296
|
deprecated: "deprecated";
|
|
2288
2297
|
draft: "draft";
|
|
2289
2298
|
beta: "beta";
|
|
2290
|
-
active: "active";
|
|
2291
2299
|
archived: "archived";
|
|
2292
2300
|
}>>;
|
|
2293
2301
|
}, z.core.$strip>>>>;
|
|
@@ -2370,12 +2378,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2370
2378
|
kind: z.ZodEnum<{
|
|
2371
2379
|
knowledge: "knowledge";
|
|
2372
2380
|
system: "system";
|
|
2381
|
+
resource: "resource";
|
|
2373
2382
|
action: "action";
|
|
2374
2383
|
ontology: "ontology";
|
|
2375
2384
|
role: "role";
|
|
2376
|
-
goal: "goal";
|
|
2377
|
-
resource: "resource";
|
|
2378
2385
|
stage: "stage";
|
|
2386
|
+
goal: "goal";
|
|
2379
2387
|
"customer-segment": "customer-segment";
|
|
2380
2388
|
offering: "offering";
|
|
2381
2389
|
}>;
|
|
@@ -2385,7 +2393,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2385
2393
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
2386
2394
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
2387
2395
|
target: {
|
|
2388
|
-
kind: "knowledge" | "system" | "
|
|
2396
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
2389
2397
|
id: string;
|
|
2390
2398
|
};
|
|
2391
2399
|
nodeId: string;
|
|
@@ -2393,7 +2401,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2393
2401
|
nodeId: string;
|
|
2394
2402
|
} | {
|
|
2395
2403
|
target: {
|
|
2396
|
-
kind: "knowledge" | "system" | "
|
|
2404
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
2397
2405
|
id: string;
|
|
2398
2406
|
};
|
|
2399
2407
|
}>>>>;
|