@elevasis/sdk 1.27.1 → 1.28.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 +586 -3
- package/dist/index.d.ts +55 -7
- package/dist/index.js +704 -129
- package/dist/node/index.d.ts +12 -0
- package/dist/test-utils/index.d.ts +12 -0
- package/dist/test-utils/index.js +605 -4
- package/package.json +2 -2
- package/reference/claude-config/sync-notes/2026-05-24-system-interface-readiness.md +43 -0
- package/reference/concepts.mdx +1 -1
- package/reference/resources/patterns.mdx +1 -1
- package/reference/runtime.mdx +8 -9
- package/reference/scaffold/recipes/customize-crm-actions.md +6 -2
- package/reference/scaffold/recipes/extend-crm.md +5 -3
- package/reference/scaffold/recipes/extend-lead-gen.md +9 -6
- package/reference/scaffold/reference/contracts.md +44 -0
- package/reference/troubleshooting.mdx +3 -3
package/dist/node/index.d.ts
CHANGED
|
@@ -1388,6 +1388,17 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
1388
1388
|
}, z.core.$strip>>;
|
|
1389
1389
|
type OntologyScope = z.infer<typeof OntologyScopeSchema>;
|
|
1390
1390
|
|
|
1391
|
+
declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
1392
|
+
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
1393
|
+
active: "active";
|
|
1394
|
+
deprecated: "deprecated";
|
|
1395
|
+
draft: "draft";
|
|
1396
|
+
archived: "archived";
|
|
1397
|
+
disabled: "disabled";
|
|
1398
|
+
}>>;
|
|
1399
|
+
readinessProfile: z.ZodOptional<z.ZodString>;
|
|
1400
|
+
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
1401
|
+
}, z.core.$strict>;
|
|
1391
1402
|
type JsonPrimitive = string | number | boolean | null;
|
|
1392
1403
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
1393
1404
|
[key: string]: JsonValue;
|
|
@@ -1416,6 +1427,7 @@ interface SystemEntry {
|
|
|
1416
1427
|
}[];
|
|
1417
1428
|
policies?: string[];
|
|
1418
1429
|
drivesGoals?: string[];
|
|
1430
|
+
apiInterface?: z.infer<typeof SystemApiInterfaceSchema>;
|
|
1419
1431
|
/** @deprecated Use lifecycle. Accepted for one publish cycle. */
|
|
1420
1432
|
status?: 'active' | 'deprecated' | 'archived';
|
|
1421
1433
|
path?: string;
|
|
@@ -5854,6 +5854,17 @@ declare const OntologyScopeSchema: z.ZodDefault<z.ZodObject<{
|
|
|
5854
5854
|
}, z.core.$strip>>;
|
|
5855
5855
|
type OntologyScope = z.infer<typeof OntologyScopeSchema>;
|
|
5856
5856
|
|
|
5857
|
+
declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
5858
|
+
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
5859
|
+
active: "active";
|
|
5860
|
+
deprecated: "deprecated";
|
|
5861
|
+
draft: "draft";
|
|
5862
|
+
archived: "archived";
|
|
5863
|
+
disabled: "disabled";
|
|
5864
|
+
}>>;
|
|
5865
|
+
readinessProfile: z.ZodOptional<z.ZodString>;
|
|
5866
|
+
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
5867
|
+
}, z.core.$strict>;
|
|
5857
5868
|
type JsonPrimitive = string | number | boolean | null;
|
|
5858
5869
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
5859
5870
|
[key: string]: JsonValue;
|
|
@@ -5882,6 +5893,7 @@ interface SystemEntry {
|
|
|
5882
5893
|
}[];
|
|
5883
5894
|
policies?: string[];
|
|
5884
5895
|
drivesGoals?: string[];
|
|
5896
|
+
apiInterface?: z.infer<typeof SystemApiInterfaceSchema>;
|
|
5885
5897
|
/** @deprecated Use lifecycle. Accepted for one publish cycle. */
|
|
5886
5898
|
status?: 'active' | 'deprecated' | 'archived';
|
|
5887
5899
|
path?: string;
|