@automate.ax/api-contract 0.99.5 → 0.101.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<4>;
|
|
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<4>;
|
|
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<4>;
|
|
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<4>;
|
|
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<4>;
|
|
1432
1432
|
}, import("zod/v4/core").$strip>;
|
|
1433
1433
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
1434
1434
|
readonly status: 400;
|
|
@@ -5216,7 +5216,7 @@ export declare const contract: {
|
|
|
5216
5216
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
5217
5217
|
readonly data: import("zod").ZodObject<{
|
|
5218
5218
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5219
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
5219
|
+
supportedVersion: import("zod").ZodLiteral<4>;
|
|
5220
5220
|
}, import("zod/v4/core").$strip>;
|
|
5221
5221
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
5222
5222
|
readonly status: 400;
|
|
@@ -5392,7 +5392,7 @@ export declare const contract: {
|
|
|
5392
5392
|
UNSUPPORTED_RUNTIME_PROTOCOL: {
|
|
5393
5393
|
readonly data: import("zod").ZodObject<{
|
|
5394
5394
|
receivedVersion: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
5395
|
-
supportedVersion: import("zod").ZodLiteral<
|
|
5395
|
+
supportedVersion: import("zod").ZodLiteral<4>;
|
|
5396
5396
|
}, import("zod/v4/core").$strip>;
|
|
5397
5397
|
readonly message: "The automation bundle uses an unsupported runtime protocol.";
|
|
5398
5398
|
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 = 4;
|
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 = 4;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/api-contract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.101.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.101.1",
|
|
35
|
+
"@automate.ax/integration-contracts": "0.101.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 = 4
|