@automate.ax/api-contract 0.109.1 → 0.111.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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export declare const EXECUTION_DATASET_VERSION = 9;
2
+ export declare const EXECUTION_DATASET_VERSION = 10;
3
3
  export declare const executionDatasetResourceSchema: z.ZodEnum<{
4
4
  automations: "automations";
5
5
  projects: "projects";
@@ -46,7 +46,7 @@ export declare const executionDatasetManifestSchema: z.ZodObject<{
46
46
  }>;
47
47
  url: z.ZodURL;
48
48
  }, z.core.$strip>>;
49
- schemaVersion: z.ZodLiteral<9>;
49
+ schemaVersion: z.ZodLiteral<10>;
50
50
  scope: z.ZodObject<{
51
51
  organizationId: z.ZodNullable<z.ZodString>;
52
52
  projectId: z.ZodNullable<z.ZodString>;
@@ -84,7 +84,7 @@ export declare const executionDataContract: {
84
84
  }>;
85
85
  url: z.ZodURL;
86
86
  }, z.core.$strip>>;
87
- schemaVersion: z.ZodLiteral<9>;
87
+ schemaVersion: z.ZodLiteral<10>;
88
88
  scope: z.ZodObject<{
89
89
  organizationId: z.ZodNullable<z.ZodString>;
90
90
  projectId: z.ZodNullable<z.ZodString>;
@@ -1,6 +1,6 @@
1
1
  import { oc } from "@orpc/contract";
2
2
  import { z } from "zod";
3
- export const EXECUTION_DATASET_VERSION = 9;
3
+ export const EXECUTION_DATASET_VERSION = 10;
4
4
  export const executionDatasetResourceSchema = z.enum([
5
5
  "projects",
6
6
  "automations",
package/dist/index.d.ts CHANGED
@@ -789,7 +789,7 @@ export declare const publicContract: {
789
789
  }>;
790
790
  url: import("zod").ZodURL;
791
791
  }, import("zod/v4/core").$strip>>;
792
- schemaVersion: import("zod").ZodLiteral<9>;
792
+ schemaVersion: import("zod").ZodLiteral<10>;
793
793
  scope: import("zod").ZodObject<{
794
794
  organizationId: import("zod").ZodNullable<import("zod").ZodString>;
795
795
  projectId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -2182,7 +2182,7 @@ export declare const firstPartyContract: {
2182
2182
  }>;
2183
2183
  url: import("zod").ZodURL;
2184
2184
  }, import("zod/v4/core").$strip>>;
2185
- schemaVersion: import("zod").ZodLiteral<9>;
2185
+ schemaVersion: import("zod").ZodLiteral<10>;
2186
2186
  scope: import("zod").ZodObject<{
2187
2187
  organizationId: import("zod").ZodNullable<import("zod").ZodString>;
2188
2188
  projectId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -6282,6 +6282,7 @@ export declare const contract: {
6282
6282
  boundaryCount: import("zod").ZodNumber;
6283
6283
  outcomeSeq: import("zod").ZodNumber;
6284
6284
  }, import("zod/v4/core").$strip>>;
6285
+ significant: import("zod").ZodDefault<import("zod").ZodBoolean>;
6285
6286
  settled: import("zod").ZodBoolean;
6286
6287
  signalInvocations: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
6287
6288
  actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
@@ -8258,7 +8259,7 @@ export declare const contract: {
8258
8259
  }>;
8259
8260
  url: import("zod").ZodURL;
8260
8261
  }, import("zod/v4/core").$strip>>;
8261
- schemaVersion: import("zod").ZodLiteral<9>;
8262
+ schemaVersion: import("zod").ZodLiteral<10>;
8262
8263
  scope: import("zod").ZodObject<{
8263
8264
  organizationId: import("zod").ZodNullable<import("zod").ZodString>;
8264
8265
  projectId: import("zod").ZodNullable<import("zod").ZodString>;
package/dist/runtime.d.ts CHANGED
@@ -1574,6 +1574,7 @@ export declare const runtimeContract: {
1574
1574
  boundaryCount: z.ZodNumber;
1575
1575
  outcomeSeq: z.ZodNumber;
1576
1576
  }, z.core.$strip>>;
1577
+ significant: z.ZodDefault<z.ZodBoolean>;
1577
1578
  settled: z.ZodBoolean;
1578
1579
  signalInvocations: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1579
1580
  actionDependencyIds: z.ZodArray<z.ZodString>;
package/dist/runtime.js CHANGED
@@ -881,6 +881,7 @@ export const runtimeContract = {
881
881
  actionInvocations: ACTION_INVOCATION_SCHEMA.array(),
882
882
  coordinationOffers: COORDINATION_OFFER_TRANSPORT_SCHEMA.array(),
883
883
  observedFrontier: RUNTIME_FRONTIER_SCHEMA.optional(),
884
+ significant: z.boolean().default(false),
884
885
  settled: z.boolean(),
885
886
  signalInvocations: SIGNAL_INVOCATION_SCHEMA.array(),
886
887
  }))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/api-contract",
3
- "version": "0.109.1",
3
+ "version": "0.111.0",
4
4
  "description": "Public oRPC contract for the Automate.ax API.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -31,8 +31,8 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@ai-sdk/gateway": "4.0.46",
34
- "@automate.ax/codec": "0.109.1",
35
- "@automate.ax/integration-contracts": "0.109.1",
34
+ "@automate.ax/codec": "0.111.0",
35
+ "@automate.ax/integration-contracts": "0.111.0",
36
36
  "@orpc/contract": "1.15.0",
37
37
  "fast-json-stable-stringify": "^2.1.0",
38
38
  "zod": "^4.3.6"
@@ -1,7 +1,7 @@
1
1
  import { oc } from "@orpc/contract"
2
2
  import { z } from "zod"
3
3
 
4
- export const EXECUTION_DATASET_VERSION = 9
4
+ export const EXECUTION_DATASET_VERSION = 10
5
5
 
6
6
  export const executionDatasetResourceSchema = z.enum([
7
7
  "projects",
package/src/runtime.ts CHANGED
@@ -1070,6 +1070,7 @@ export const runtimeContract = {
1070
1070
  actionInvocations: ACTION_INVOCATION_SCHEMA.array(),
1071
1071
  coordinationOffers: COORDINATION_OFFER_TRANSPORT_SCHEMA.array(),
1072
1072
  observedFrontier: RUNTIME_FRONTIER_SCHEMA.optional(),
1073
+ significant: z.boolean().default(false),
1073
1074
  settled: z.boolean(),
1074
1075
  signalInvocations: SIGNAL_INVOCATION_SCHEMA.array(),
1075
1076
  }),