@automate.ax/api-contract 0.92.1 → 0.93.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/deployment.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ export declare const deploymentContract: {
|
|
|
113
113
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
114
114
|
readonly data: z.ZodObject<{
|
|
115
115
|
receivedVersion: z.ZodNullable<z.ZodNumber>;
|
|
116
|
-
supportedVersion: z.ZodLiteral<
|
|
116
|
+
supportedVersion: z.ZodLiteral<3>;
|
|
117
117
|
}, z.core.$strip>;
|
|
118
118
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
119
119
|
readonly status: 400;
|
|
@@ -289,7 +289,7 @@ export declare const deploymentContract: {
|
|
|
289
289
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
290
290
|
readonly data: z.ZodObject<{
|
|
291
291
|
receivedVersion: z.ZodNullable<z.ZodNumber>;
|
|
292
|
-
supportedVersion: z.ZodLiteral<
|
|
292
|
+
supportedVersion: z.ZodLiteral<3>;
|
|
293
293
|
}, z.core.$strip>;
|
|
294
294
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
295
295
|
readonly status: 400;
|
package/dist/index.d.ts
CHANGED
|
@@ -654,7 +654,7 @@ export declare const publicContract: {
|
|
|
654
654
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
655
655
|
readonly data: import("zod").ZodObject<{
|
|
656
656
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
657
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
657
|
+
supportedVersion: import("zod").ZodLiteral<3>;
|
|
658
658
|
}, import("zod/v4/core").$strip>;
|
|
659
659
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
660
660
|
readonly status: 400;
|
|
@@ -1252,7 +1252,7 @@ export declare const firstPartyContract: {
|
|
|
1252
1252
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
1253
1253
|
readonly data: import("zod").ZodObject<{
|
|
1254
1254
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1255
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
1255
|
+
supportedVersion: import("zod").ZodLiteral<3>;
|
|
1256
1256
|
}, import("zod/v4/core").$strip>;
|
|
1257
1257
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
1258
1258
|
readonly status: 400;
|
|
@@ -1428,7 +1428,7 @@ export declare const firstPartyContract: {
|
|
|
1428
1428
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
1429
1429
|
readonly data: import("zod").ZodObject<{
|
|
1430
1430
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1431
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
1431
|
+
supportedVersion: import("zod").ZodLiteral<3>;
|
|
1432
1432
|
}, import("zod/v4/core").$strip>;
|
|
1433
1433
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
1434
1434
|
readonly status: 400;
|
|
@@ -5196,7 +5196,7 @@ export declare const contract: {
|
|
|
5196
5196
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
5197
5197
|
readonly data: import("zod").ZodObject<{
|
|
5198
5198
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5199
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
5199
|
+
supportedVersion: import("zod").ZodLiteral<3>;
|
|
5200
5200
|
}, import("zod/v4/core").$strip>;
|
|
5201
5201
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
5202
5202
|
readonly status: 400;
|
|
@@ -5372,7 +5372,7 @@ export declare const contract: {
|
|
|
5372
5372
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
5373
5373
|
readonly data: import("zod").ZodObject<{
|
|
5374
5374
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5375
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
5375
|
+
supportedVersion: import("zod").ZodLiteral<3>;
|
|
5376
5376
|
}, import("zod/v4/core").$strip>;
|
|
5377
5377
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
5378
5378
|
readonly status: 400;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Runtime protocol required by newly built automation bundles. */
|
|
2
|
-
export declare const AUTOMATION_RUNTIME_PROTOCOL_VERSION =
|
|
2
|
+
export declare const AUTOMATION_RUNTIME_PROTOCOL_VERSION = 3;
|
package/dist/runtime-protocol.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Runtime protocol required by newly built automation bundles. */
|
|
2
|
-
export const AUTOMATION_RUNTIME_PROTOCOL_VERSION =
|
|
2
|
+
export const AUTOMATION_RUNTIME_PROTOCOL_VERSION = 3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/api-contract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.93.1",
|
|
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.
|
|
35
|
-
"@automate.ax/integration-contracts": "0.
|
|
34
|
+
"@automate.ax/codec": "0.93.1",
|
|
35
|
+
"@automate.ax/integration-contracts": "0.93.1",
|
|
36
36
|
"@orpc/contract": "1.15.0",
|
|
37
37
|
"fast-json-stable-stringify": "^2.1.0",
|
|
38
38
|
"zod": "^4.3.6"
|
package/src/runtime-protocol.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Runtime protocol required by newly built automation bundles. */
|
|
2
|
-
export const AUTOMATION_RUNTIME_PROTOCOL_VERSION =
|
|
2
|
+
export const AUTOMATION_RUNTIME_PROTOCOL_VERSION = 3
|