@automate.ax/api-contract 0.80.0 → 0.82.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/execution-data.d.ts +3 -3
- package/dist/execution-data.js +1 -1
- package/dist/index.d.ts +562 -72
- package/dist/org.d.ts +10 -1
- package/dist/org.js +14 -3
- package/dist/runtime.d.ts +718 -88
- package/dist/runtime.js +64 -35
- package/package.json +2 -2
- package/src/execution-data.ts +1 -1
- package/src/org.ts +19 -4
- package/src/runtime.ts +71 -41
package/dist/execution-data.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const EXECUTION_DATASET_VERSION =
|
|
2
|
+
export declare const EXECUTION_DATASET_VERSION = 5;
|
|
3
3
|
export declare const executionDatasetResourceSchema: z.ZodEnum<{
|
|
4
4
|
automations: "automations";
|
|
5
5
|
projects: "projects";
|
|
@@ -43,7 +43,7 @@ export declare const executionDatasetManifestSchema: z.ZodObject<{
|
|
|
43
43
|
}>;
|
|
44
44
|
url: z.ZodURL;
|
|
45
45
|
}, z.core.$strip>>;
|
|
46
|
-
schemaVersion: z.ZodLiteral<
|
|
46
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
47
47
|
scope: z.ZodObject<{
|
|
48
48
|
organizationId: z.ZodNullable<z.ZodString>;
|
|
49
49
|
projectId: z.ZodNullable<z.ZodString>;
|
|
@@ -80,7 +80,7 @@ export declare const executionDataContract: {
|
|
|
80
80
|
}>;
|
|
81
81
|
url: z.ZodURL;
|
|
82
82
|
}, z.core.$strip>>;
|
|
83
|
-
schemaVersion: z.ZodLiteral<
|
|
83
|
+
schemaVersion: z.ZodLiteral<5>;
|
|
84
84
|
scope: z.ZodObject<{
|
|
85
85
|
organizationId: z.ZodNullable<z.ZodString>;
|
|
86
86
|
projectId: z.ZodNullable<z.ZodString>;
|
package/dist/execution-data.js
CHANGED