@elevasis/sdk 1.48.0 → 1.49.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 +742 -231
- package/dist/index.d.ts +685 -47
- package/dist/index.js +274 -40
- package/dist/node/index.d.ts +108 -24
- package/dist/test-utils/index.d.ts +647 -34
- package/dist/test-utils/index.js +240 -38
- package/dist/worker/index.d.ts +663 -39
- package/dist/worker/index.js +115 -6
- package/package.json +4 -4
- package/reference/_navigation.md +4 -4
- package/reference/_reference-manifest.json +1 -1
- package/reference/core/index.mdx +6 -4
- package/reference/index.mdx +11 -5
- package/reference/packages/core/src/README.md +46 -44
- package/reference/packages/core/src/content/README.md +13 -12
- package/reference/rules/ui.md +1 -1
- package/reference/rules/vibe-intents.md +2 -2
- package/reference/rules/vibe.md +30 -10
- package/reference/scaffold/recipes/extend-content.md +82 -3
- package/reference/sdk/cli-management.mdx +184 -41
- package/reference/sdk/cli.mdx +103 -64
- package/reference/sdk/define-builders.mdx +1 -1
- package/reference/sdk/deployment/command-center.mdx +2 -2
- package/reference/sdk/deployment/index.mdx +1 -1
- package/reference/sdk/exports.mdx +4 -4
- package/reference/sdk/framework/agent.mdx +4 -3
- package/reference/sdk/framework/index.mdx +1 -1
- package/reference/sdk/framework/project-structure.mdx +34 -23
- package/reference/sdk/framework/tutorial-system.mdx +1 -1
- package/reference/sdk/getting-started.mdx +25 -52
- package/reference/sdk/index.mdx +3 -3
- package/reference/sdk/platform-tools/adapters-integration.mdx +1 -1
- package/reference/sdk/platform-tools/adapters-platform.mdx +1 -1
- package/reference/sdk/platform-tools/type-safety.mdx +1 -1
- package/reference/sdk/resources/patterns.mdx +10 -11
- package/reference/sdk/resources/types.mdx +15 -9
- package/reference/sdk/templates/data-enrichment.mdx +1 -1
- package/reference/sdk/templates/email-sender.mdx +1 -1
- package/reference/sdk/templates/index.mdx +47 -47
- package/reference/sdk/templates/lead-scorer.mdx +1 -1
- package/reference/sdk/templates/pdf-generator.mdx +42 -24
- package/reference/sdk/templates/recurring-job.mdx +20 -15
- package/reference/sdk/templates/text-classifier.mdx +1 -1
- package/reference/sdk/templates/web-scraper.mdx +9 -5
- package/reference/ui/exports.mdx +1 -1
- package/reference/ui/index.mdx +2 -2
package/dist/node/index.d.ts
CHANGED
|
@@ -901,13 +901,52 @@ interface JsonSchema {
|
|
|
901
901
|
* Universal interfaces for LLM interaction across all resource types
|
|
902
902
|
*/
|
|
903
903
|
|
|
904
|
+
/**
|
|
905
|
+
* One piece of a multipart `LLMMessage.content`. Modeled close to OpenAI's shape (a single `url`
|
|
906
|
+
* field covers both a hosted URL and a `data:` base64 URL) rather than Anthropic's three-way
|
|
907
|
+
* `source` split, because OpenAI's shape is the one every provider's translation layer can derive
|
|
908
|
+
* the other from -- the Anthropic adapter is the side that branches on the `data:` prefix to
|
|
909
|
+
* recover the split its wire format wants (see `adapters/server/anthropic.ts`).
|
|
910
|
+
*/
|
|
911
|
+
type LLMContentPart = {
|
|
912
|
+
type: 'text';
|
|
913
|
+
text: string;
|
|
914
|
+
} | {
|
|
915
|
+
type: 'image';
|
|
916
|
+
/**
|
|
917
|
+
* A `data:<mediaType>;base64,<data>` URL, or an `https://...` URL the provider fetches
|
|
918
|
+
* itself. Base64 is the recommended default: a hosted `url` means the PROVIDER fetches it
|
|
919
|
+
* at call time, so a signed org-storage URL must still be public and unexpired when the
|
|
920
|
+
* provider reaches it, an extra failure mode a caller must manage. Base64 removes that
|
|
921
|
+
* dependency at the cost of payload size -- Anthropic caps a single image at 10 MB.
|
|
922
|
+
*/
|
|
923
|
+
url: string;
|
|
924
|
+
/** Overrides the media type parsed off a `data:` URL prefix. Required when `url` is a
|
|
925
|
+
* hosted (non-`data:`) URL and the provider needs it -- Anthropic's `url` source infers
|
|
926
|
+
* the type itself, but callers on a stricter provider should not assume that. */
|
|
927
|
+
mediaType?: string;
|
|
928
|
+
/** OpenAI-only hint for how much detail to preserve when downsampling. Ignored by
|
|
929
|
+
* providers (Anthropic, OpenRouter-as-Anthropic) that do not read it. */
|
|
930
|
+
detail?: 'auto' | 'low' | 'high';
|
|
931
|
+
};
|
|
904
932
|
/**
|
|
905
933
|
* Standard chat message format
|
|
906
934
|
* Compatible with OpenAI, Anthropic, and other providers
|
|
907
935
|
*/
|
|
908
936
|
interface LLMMessage {
|
|
909
937
|
role: 'system' | 'user' | 'assistant';
|
|
910
|
-
|
|
938
|
+
/**
|
|
939
|
+
* A plain string for the common unstructured case, or a parts array to attach an image
|
|
940
|
+
* alongside (or instead of) text -- see `LLMContentPart`. This is a WIDENING, not a
|
|
941
|
+
* replacement: every existing caller passing a bare string keeps compiling and behaving
|
|
942
|
+
* identically.
|
|
943
|
+
*
|
|
944
|
+
* Not every model/adapter can accept an `image` part -- `MockAdapter` throws
|
|
945
|
+
* `LLMUnsupportedContentError` rather than silently ignoring it, and a caller sending an image
|
|
946
|
+
* to a text-only integration should expect the same rather than a plausible-looking
|
|
947
|
+
* text-degraded response. See `llm/errors.ts`.
|
|
948
|
+
*/
|
|
949
|
+
content: string | LLMContentPart[];
|
|
911
950
|
/**
|
|
912
951
|
* Marks this message as the end of a byte-stable prefix worth an Anthropic cache breakpoint,
|
|
913
952
|
* beyond the one the system prompt already gets. Anthropic's rule is "everything up to and
|
|
@@ -1106,8 +1145,13 @@ interface LLMAdapter {
|
|
|
1106
1145
|
|
|
1107
1146
|
/**
|
|
1108
1147
|
* Supported Open AI models (direct SDK access)
|
|
1148
|
+
*
|
|
1149
|
+
* The GPT-5.6 tiers are three separate ids rather than the bare `gpt-5.6` alias. Upstream that
|
|
1150
|
+
* alias routes to Sol, so registering it would put two keys with identical pricing in `MODEL_INFO`
|
|
1151
|
+
* and hide which tier actually ran in `ai_calls`. Leaving it out means a caller who writes
|
|
1152
|
+
* `'gpt-5.6'` is rejected by the dispatcher rather than silently billed at Sol rates.
|
|
1109
1153
|
*/
|
|
1110
|
-
type OpenAIModel = 'gpt-5' | 'gpt-5.4-mini' | 'gpt-5.4-nano';
|
|
1154
|
+
type OpenAIModel = 'gpt-5' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'gpt-5.6-sol' | 'gpt-5.6-terra' | 'gpt-5.6-luna';
|
|
1111
1155
|
/**
|
|
1112
1156
|
* Supported OpenRouter models (explicit union for type safety)
|
|
1113
1157
|
*/
|
|
@@ -1123,15 +1167,36 @@ type LLMModel = OpenAIModel | OpenRouterModel | AnthropicModel | 'mock';
|
|
|
1123
1167
|
*/
|
|
1124
1168
|
declare const GPT5OptionsSchema: z.ZodObject<{
|
|
1125
1169
|
reasoning_effort: z.ZodOptional<z.ZodEnum<{
|
|
1170
|
+
low: "low";
|
|
1171
|
+
high: "high";
|
|
1126
1172
|
minimal: "minimal";
|
|
1173
|
+
medium: "medium";
|
|
1174
|
+
}>>;
|
|
1175
|
+
verbosity: z.ZodOptional<z.ZodEnum<{
|
|
1127
1176
|
low: "low";
|
|
1177
|
+
high: "high";
|
|
1128
1178
|
medium: "medium";
|
|
1179
|
+
}>>;
|
|
1180
|
+
}, z.core.$strip>;
|
|
1181
|
+
/**
|
|
1182
|
+
* GPT-5.6 model options schema
|
|
1183
|
+
*
|
|
1184
|
+
* NOT the GPT-5 enum. 5.6 removed `minimal` and added `none`, `xhigh`, and `max`, so reusing
|
|
1185
|
+
* `GPT5OptionsSchema` would accept one value 5.6 rejects and reject three it accepts.
|
|
1186
|
+
*/
|
|
1187
|
+
declare const GPT56OptionsSchema: z.ZodObject<{
|
|
1188
|
+
reasoning_effort: z.ZodOptional<z.ZodEnum<{
|
|
1189
|
+
none: "none";
|
|
1190
|
+
low: "low";
|
|
1129
1191
|
high: "high";
|
|
1192
|
+
medium: "medium";
|
|
1193
|
+
xhigh: "xhigh";
|
|
1194
|
+
max: "max";
|
|
1130
1195
|
}>>;
|
|
1131
1196
|
verbosity: z.ZodOptional<z.ZodEnum<{
|
|
1132
1197
|
low: "low";
|
|
1133
|
-
medium: "medium";
|
|
1134
1198
|
high: "high";
|
|
1199
|
+
medium: "medium";
|
|
1135
1200
|
}>>;
|
|
1136
1201
|
}, z.core.$strip>;
|
|
1137
1202
|
/**
|
|
@@ -1153,10 +1218,11 @@ declare const AnthropicOptionsSchema: z.ZodObject<{}, z.core.$strict>;
|
|
|
1153
1218
|
* Infer TypeScript types from schemas
|
|
1154
1219
|
*/
|
|
1155
1220
|
type GPT5Options = z.infer<typeof GPT5OptionsSchema>;
|
|
1221
|
+
type GPT56Options = z.infer<typeof GPT56OptionsSchema>;
|
|
1156
1222
|
type MockOptions = Record<string, never>;
|
|
1157
1223
|
type OpenRouterOptions = z.infer<typeof OpenRouterOptionsSchema>;
|
|
1158
1224
|
type AnthropicOptions = z.infer<typeof AnthropicOptionsSchema>;
|
|
1159
|
-
type ModelSpecificOptions = GPT5Options | MockOptions | OpenRouterOptions | AnthropicOptions;
|
|
1225
|
+
type ModelSpecificOptions = GPT5Options | GPT56Options | MockOptions | OpenRouterOptions | AnthropicOptions;
|
|
1160
1226
|
/**
|
|
1161
1227
|
* Model configuration for LLM execution
|
|
1162
1228
|
* Belongs in resource definition (AgentDefinition, WorkflowDefinition, etc.)
|
|
@@ -1540,7 +1606,9 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1540
1606
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1541
1607
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1542
1608
|
storage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1543
|
-
|
|
1609
|
+
rowSchema: z.ZodOptional<z.ZodString>;
|
|
1610
|
+
stateCatalogId: z.ZodOptional<z.ZodString>;
|
|
1611
|
+
}, z.core.$strict>>>>;
|
|
1544
1612
|
linkTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1545
1613
|
id: z.ZodString;
|
|
1546
1614
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1551,7 +1619,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1551
1619
|
to: z.ZodString;
|
|
1552
1620
|
cardinality: z.ZodOptional<z.ZodString>;
|
|
1553
1621
|
via: z.ZodOptional<z.ZodString>;
|
|
1554
|
-
}, z.core.$
|
|
1622
|
+
}, z.core.$strict>>>>;
|
|
1555
1623
|
actionTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1556
1624
|
id: z.ZodString;
|
|
1557
1625
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1561,7 +1629,11 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1561
1629
|
actsOn: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
1562
1630
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1563
1631
|
effects: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
1564
|
-
|
|
1632
|
+
resourceId: z.ZodOptional<z.ZodString>;
|
|
1633
|
+
invocations: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
1634
|
+
lifecycle: z.ZodOptional<z.ZodString>;
|
|
1635
|
+
legacyActionId: z.ZodOptional<z.ZodString>;
|
|
1636
|
+
}, z.core.$strict>>>>;
|
|
1565
1637
|
catalogTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1566
1638
|
id: z.ZodString;
|
|
1567
1639
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1571,7 +1643,10 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1571
1643
|
kind: z.ZodOptional<z.ZodString>;
|
|
1572
1644
|
appliesTo: z.ZodOptional<z.ZodString>;
|
|
1573
1645
|
entries: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1574
|
-
|
|
1646
|
+
legacyCatalogKey: z.ZodOptional<z.ZodString>;
|
|
1647
|
+
legacyPipelineKey: z.ZodOptional<z.ZodString>;
|
|
1648
|
+
legacyEntityKey: z.ZodOptional<z.ZodString>;
|
|
1649
|
+
}, z.core.$strict>>>>;
|
|
1575
1650
|
eventTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1576
1651
|
id: z.ZodString;
|
|
1577
1652
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1579,7 +1654,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1579
1654
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
1580
1655
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1581
1656
|
payload: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1582
|
-
}, z.core.$
|
|
1657
|
+
}, z.core.$strict>>>>;
|
|
1583
1658
|
interfaceTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1584
1659
|
id: z.ZodString;
|
|
1585
1660
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1587,7 +1662,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1587
1662
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
1588
1663
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1589
1664
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1590
|
-
}, z.core.$
|
|
1665
|
+
}, z.core.$strict>>>>;
|
|
1591
1666
|
valueTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1592
1667
|
id: z.ZodString;
|
|
1593
1668
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1595,7 +1670,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1595
1670
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
1596
1671
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1597
1672
|
primitive: z.ZodOptional<z.ZodString>;
|
|
1598
|
-
}, z.core.$
|
|
1673
|
+
}, z.core.$strict>>>>;
|
|
1599
1674
|
sharedProperties: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1600
1675
|
id: z.ZodString;
|
|
1601
1676
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1605,7 +1680,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1605
1680
|
valueType: z.ZodOptional<z.ZodString>;
|
|
1606
1681
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1607
1682
|
pii: z.ZodOptional<z.ZodBoolean>;
|
|
1608
|
-
}, z.core.$
|
|
1683
|
+
}, z.core.$strict>>>>;
|
|
1609
1684
|
groups: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1610
1685
|
id: z.ZodString;
|
|
1611
1686
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1613,7 +1688,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1613
1688
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
1614
1689
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1615
1690
|
members: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
1616
|
-
}, z.core.$
|
|
1691
|
+
}, z.core.$strict>>>>;
|
|
1617
1692
|
endpoints: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1618
1693
|
id: z.ZodString;
|
|
1619
1694
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1621,7 +1696,7 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1621
1696
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
1622
1697
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1623
1698
|
route: z.ZodOptional<z.ZodString>;
|
|
1624
|
-
}, z.core.$
|
|
1699
|
+
}, z.core.$strict>>>>;
|
|
1625
1700
|
}, z.core.$strict>>;
|
|
1626
1701
|
type OntologyScope = z.infer<typeof OntologyScopeSchema>;
|
|
1627
1702
|
|
|
@@ -2187,7 +2262,9 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2187
2262
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2188
2263
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2189
2264
|
storage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2190
|
-
|
|
2265
|
+
rowSchema: z.ZodOptional<z.ZodString>;
|
|
2266
|
+
stateCatalogId: z.ZodOptional<z.ZodString>;
|
|
2267
|
+
}, z.core.$strict>>>>;
|
|
2191
2268
|
linkTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2192
2269
|
id: z.ZodString;
|
|
2193
2270
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2198,7 +2275,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2198
2275
|
to: z.ZodString;
|
|
2199
2276
|
cardinality: z.ZodOptional<z.ZodString>;
|
|
2200
2277
|
via: z.ZodOptional<z.ZodString>;
|
|
2201
|
-
}, z.core.$
|
|
2278
|
+
}, z.core.$strict>>>>;
|
|
2202
2279
|
actionTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2203
2280
|
id: z.ZodString;
|
|
2204
2281
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2208,7 +2285,11 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2208
2285
|
actsOn: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2209
2286
|
input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2210
2287
|
effects: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
2211
|
-
|
|
2288
|
+
resourceId: z.ZodOptional<z.ZodString>;
|
|
2289
|
+
invocations: z.ZodOptional<z.ZodArray<z.ZodUnknown>>;
|
|
2290
|
+
lifecycle: z.ZodOptional<z.ZodString>;
|
|
2291
|
+
legacyActionId: z.ZodOptional<z.ZodString>;
|
|
2292
|
+
}, z.core.$strict>>>>;
|
|
2212
2293
|
catalogTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2213
2294
|
id: z.ZodString;
|
|
2214
2295
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2218,7 +2299,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2218
2299
|
kind: z.ZodOptional<z.ZodString>;
|
|
2219
2300
|
appliesTo: z.ZodOptional<z.ZodString>;
|
|
2220
2301
|
entries: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2221
|
-
|
|
2302
|
+
legacyCatalogKey: z.ZodOptional<z.ZodString>;
|
|
2303
|
+
legacyPipelineKey: z.ZodOptional<z.ZodString>;
|
|
2304
|
+
legacyEntityKey: z.ZodOptional<z.ZodString>;
|
|
2305
|
+
}, z.core.$strict>>>>;
|
|
2222
2306
|
eventTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2223
2307
|
id: z.ZodString;
|
|
2224
2308
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2226,7 +2310,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2226
2310
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
2227
2311
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2228
2312
|
payload: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2229
|
-
}, z.core.$
|
|
2313
|
+
}, z.core.$strict>>>>;
|
|
2230
2314
|
interfaceTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2231
2315
|
id: z.ZodString;
|
|
2232
2316
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2234,7 +2318,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2234
2318
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
2235
2319
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2236
2320
|
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2237
|
-
}, z.core.$
|
|
2321
|
+
}, z.core.$strict>>>>;
|
|
2238
2322
|
valueTypes: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2239
2323
|
id: z.ZodString;
|
|
2240
2324
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2242,7 +2326,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2242
2326
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
2243
2327
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2244
2328
|
primitive: z.ZodOptional<z.ZodString>;
|
|
2245
|
-
}, z.core.$
|
|
2329
|
+
}, z.core.$strict>>>>;
|
|
2246
2330
|
sharedProperties: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2247
2331
|
id: z.ZodString;
|
|
2248
2332
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2252,7 +2336,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2252
2336
|
valueType: z.ZodOptional<z.ZodString>;
|
|
2253
2337
|
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
2254
2338
|
pii: z.ZodOptional<z.ZodBoolean>;
|
|
2255
|
-
}, z.core.$
|
|
2339
|
+
}, z.core.$strict>>>>;
|
|
2256
2340
|
groups: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2257
2341
|
id: z.ZodString;
|
|
2258
2342
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2260,7 +2344,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2260
2344
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
2261
2345
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2262
2346
|
members: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
2263
|
-
}, z.core.$
|
|
2347
|
+
}, z.core.$strict>>>>;
|
|
2264
2348
|
endpoints: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2265
2349
|
id: z.ZodString;
|
|
2266
2350
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -2268,7 +2352,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
2268
2352
|
ownerSystemId: z.ZodOptional<z.ZodString>;
|
|
2269
2353
|
aliases: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2270
2354
|
route: z.ZodOptional<z.ZodString>;
|
|
2271
|
-
}, z.core.$
|
|
2355
|
+
}, z.core.$strict>>>>;
|
|
2272
2356
|
}, z.core.$strict>>>;
|
|
2273
2357
|
resources: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2274
2358
|
id: z.ZodString;
|