@elevasis/sdk 1.25.0 → 1.26.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/cli.cjs +18 -116
- package/dist/index.d.ts +165 -48
- package/dist/index.js +4 -435
- package/dist/node/index.d.ts +36 -36
- package/dist/test-utils/index.d.ts +99 -38
- 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/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/cli-management.mdx +539 -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/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";
|
|
@@ -1895,8 +1895,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1895
1895
|
description: z.ZodOptional<z.ZodString>;
|
|
1896
1896
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1897
1897
|
status: z.ZodEnum<{
|
|
1898
|
-
deprecated: "deprecated";
|
|
1899
1898
|
active: "active";
|
|
1899
|
+
deprecated: "deprecated";
|
|
1900
1900
|
archived: "archived";
|
|
1901
1901
|
}>;
|
|
1902
1902
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1914,12 +1914,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1914
1914
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1915
1915
|
path: z.ZodString;
|
|
1916
1916
|
role: z.ZodEnum<{
|
|
1917
|
-
config: "config";
|
|
1918
1917
|
entrypoint: "entrypoint";
|
|
1919
1918
|
handler: "handler";
|
|
1920
1919
|
schema: "schema";
|
|
1921
1920
|
test: "test";
|
|
1922
1921
|
docs: "docs";
|
|
1922
|
+
config: "config";
|
|
1923
1923
|
}>;
|
|
1924
1924
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1925
1925
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1930,10 +1930,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1930
1930
|
label: z.ZodString;
|
|
1931
1931
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
1932
1932
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
1933
|
+
active: "active";
|
|
1933
1934
|
deprecated: "deprecated";
|
|
1934
1935
|
draft: "draft";
|
|
1935
1936
|
beta: "beta";
|
|
1936
|
-
active: "active";
|
|
1937
1937
|
archived: "archived";
|
|
1938
1938
|
}>>;
|
|
1939
1939
|
}, z.core.$strip>>>;
|
|
@@ -1945,8 +1945,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1945
1945
|
description: z.ZodOptional<z.ZodString>;
|
|
1946
1946
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1947
1947
|
status: z.ZodEnum<{
|
|
1948
|
-
deprecated: "deprecated";
|
|
1949
1948
|
active: "active";
|
|
1949
|
+
deprecated: "deprecated";
|
|
1950
1950
|
archived: "archived";
|
|
1951
1951
|
}>;
|
|
1952
1952
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1964,12 +1964,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
1964
1964
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1965
1965
|
path: z.ZodString;
|
|
1966
1966
|
role: z.ZodEnum<{
|
|
1967
|
-
config: "config";
|
|
1968
1967
|
entrypoint: "entrypoint";
|
|
1969
1968
|
handler: "handler";
|
|
1970
1969
|
schema: "schema";
|
|
1971
1970
|
test: "test";
|
|
1972
1971
|
docs: "docs";
|
|
1972
|
+
config: "config";
|
|
1973
1973
|
}>;
|
|
1974
1974
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1975
1975
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2011,10 +2011,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2011
2011
|
label: z.ZodString;
|
|
2012
2012
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
2013
2013
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
2014
|
+
active: "active";
|
|
2014
2015
|
deprecated: "deprecated";
|
|
2015
2016
|
draft: "draft";
|
|
2016
2017
|
beta: "beta";
|
|
2017
|
-
active: "active";
|
|
2018
2018
|
archived: "archived";
|
|
2019
2019
|
}>>;
|
|
2020
2020
|
}, z.core.$strip>>>;
|
|
@@ -2026,8 +2026,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2026
2026
|
description: z.ZodOptional<z.ZodString>;
|
|
2027
2027
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
2028
2028
|
status: z.ZodEnum<{
|
|
2029
|
-
deprecated: "deprecated";
|
|
2030
2029
|
active: "active";
|
|
2030
|
+
deprecated: "deprecated";
|
|
2031
2031
|
archived: "archived";
|
|
2032
2032
|
}>;
|
|
2033
2033
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -2045,12 +2045,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2045
2045
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2046
2046
|
path: z.ZodString;
|
|
2047
2047
|
role: z.ZodEnum<{
|
|
2048
|
-
config: "config";
|
|
2049
2048
|
entrypoint: "entrypoint";
|
|
2050
2049
|
handler: "handler";
|
|
2051
2050
|
schema: "schema";
|
|
2052
2051
|
test: "test";
|
|
2053
2052
|
docs: "docs";
|
|
2053
|
+
config: "config";
|
|
2054
2054
|
}>;
|
|
2055
2055
|
symbol: z.ZodOptional<z.ZodString>;
|
|
2056
2056
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2065,8 +2065,8 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2065
2065
|
description: z.ZodOptional<z.ZodString>;
|
|
2066
2066
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
2067
2067
|
status: z.ZodEnum<{
|
|
2068
|
-
deprecated: "deprecated";
|
|
2069
2068
|
active: "active";
|
|
2069
|
+
deprecated: "deprecated";
|
|
2070
2070
|
archived: "archived";
|
|
2071
2071
|
}>;
|
|
2072
2072
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -2084,12 +2084,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2084
2084
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2085
2085
|
path: z.ZodString;
|
|
2086
2086
|
role: z.ZodEnum<{
|
|
2087
|
-
config: "config";
|
|
2088
2087
|
entrypoint: "entrypoint";
|
|
2089
2088
|
handler: "handler";
|
|
2090
2089
|
schema: "schema";
|
|
2091
2090
|
test: "test";
|
|
2092
2091
|
docs: "docs";
|
|
2092
|
+
config: "config";
|
|
2093
2093
|
}>;
|
|
2094
2094
|
symbol: z.ZodOptional<z.ZodString>;
|
|
2095
2095
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2203,10 +2203,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2203
2203
|
}, z.core.$strip>], "kind">>>;
|
|
2204
2204
|
knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2205
2205
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
2206
|
+
active: "active";
|
|
2206
2207
|
deprecated: "deprecated";
|
|
2207
2208
|
draft: "draft";
|
|
2208
2209
|
beta: "beta";
|
|
2209
|
-
active: "active";
|
|
2210
2210
|
archived: "archived";
|
|
2211
2211
|
}>>;
|
|
2212
2212
|
}, z.core.$strip>>>>;
|
|
@@ -2284,10 +2284,10 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2284
2284
|
roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2285
2285
|
}, z.core.$strip>>;
|
|
2286
2286
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
2287
|
+
active: "active";
|
|
2287
2288
|
deprecated: "deprecated";
|
|
2288
2289
|
draft: "draft";
|
|
2289
2290
|
beta: "beta";
|
|
2290
|
-
active: "active";
|
|
2291
2291
|
archived: "archived";
|
|
2292
2292
|
}>>;
|
|
2293
2293
|
}, z.core.$strip>>>>;
|
|
@@ -2370,12 +2370,12 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2370
2370
|
kind: z.ZodEnum<{
|
|
2371
2371
|
knowledge: "knowledge";
|
|
2372
2372
|
system: "system";
|
|
2373
|
+
resource: "resource";
|
|
2373
2374
|
action: "action";
|
|
2374
2375
|
ontology: "ontology";
|
|
2375
2376
|
role: "role";
|
|
2376
|
-
goal: "goal";
|
|
2377
|
-
resource: "resource";
|
|
2378
2377
|
stage: "stage";
|
|
2378
|
+
goal: "goal";
|
|
2379
2379
|
"customer-segment": "customer-segment";
|
|
2380
2380
|
offering: "offering";
|
|
2381
2381
|
}>;
|
|
@@ -2385,7 +2385,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2385
2385
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
2386
2386
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
2387
2387
|
target: {
|
|
2388
|
-
kind: "knowledge" | "system" | "
|
|
2388
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
2389
2389
|
id: string;
|
|
2390
2390
|
};
|
|
2391
2391
|
nodeId: string;
|
|
@@ -2393,7 +2393,7 @@ declare const OrganizationModelSchema$1: z.ZodObject<{
|
|
|
2393
2393
|
nodeId: string;
|
|
2394
2394
|
} | {
|
|
2395
2395
|
target: {
|
|
2396
|
-
kind: "knowledge" | "system" | "
|
|
2396
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
2397
2397
|
id: string;
|
|
2398
2398
|
};
|
|
2399
2399
|
}>>>>;
|