@automate.ax/api-contract 0.67.1 → 0.68.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/index.d.ts +0 -2
- package/dist/runtime.d.ts +0 -2
- package/dist/runtime.js +0 -1
- package/package.json +2 -2
- package/src/runtime.ts +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1595,7 +1595,6 @@ export declare const contract: {
|
|
|
1595
1595
|
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1596
1596
|
automationEventId: import("zod").ZodString;
|
|
1597
1597
|
contextId: import("zod").ZodString;
|
|
1598
|
-
eventId: import("zod").ZodString;
|
|
1599
1598
|
outcomeSeq: import("zod").ZodNumber;
|
|
1600
1599
|
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1601
1600
|
scopePath: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodNumber>>;
|
|
@@ -1716,7 +1715,6 @@ export declare const contract: {
|
|
|
1716
1715
|
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1717
1716
|
automationEventId: import("zod").ZodString;
|
|
1718
1717
|
contextId: import("zod").ZodString;
|
|
1719
|
-
eventId: import("zod").ZodString;
|
|
1720
1718
|
outcomeSeq: import("zod").ZodNumber;
|
|
1721
1719
|
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1722
1720
|
scopePath: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodNumber>>;
|
package/dist/runtime.d.ts
CHANGED
|
@@ -834,7 +834,6 @@ export declare const runtimeContract: {
|
|
|
834
834
|
events: z.ZodArray<z.ZodObject<{
|
|
835
835
|
automationEventId: z.ZodString;
|
|
836
836
|
contextId: z.ZodString;
|
|
837
|
-
eventId: z.ZodString;
|
|
838
837
|
outcomeSeq: z.ZodNumber;
|
|
839
838
|
payload: z.ZodOptional<z.ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
840
839
|
scopePath: z.ZodDefault<z.ZodArray<z.ZodNumber>>;
|
|
@@ -955,7 +954,6 @@ export declare const runtimeContract: {
|
|
|
955
954
|
events: z.ZodArray<z.ZodObject<{
|
|
956
955
|
automationEventId: z.ZodString;
|
|
957
956
|
contextId: z.ZodString;
|
|
958
|
-
eventId: z.ZodString;
|
|
959
957
|
outcomeSeq: z.ZodNumber;
|
|
960
958
|
payload: z.ZodOptional<z.ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
961
959
|
scopePath: z.ZodDefault<z.ZodArray<z.ZodNumber>>;
|
package/dist/runtime.js
CHANGED
|
@@ -360,7 +360,6 @@ const RUNTIME_VALUE_CONTEXT_SCHEMA = z.object({
|
|
|
360
360
|
.object({
|
|
361
361
|
automationEventId: z.string(),
|
|
362
362
|
contextId: z.string(),
|
|
363
|
-
eventId: z.string(),
|
|
364
363
|
outcomeSeq: OUTCOME_SEQUENCE_SCHEMA,
|
|
365
364
|
payload: encodableSchema,
|
|
366
365
|
scopePath: HOOK_SCOPE_PATH_SCHEMA,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/api-contract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "Public oRPC contract for the Automate.ax API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@ai-sdk/gateway": "^4.0.46",
|
|
31
|
-
"@automate.ax/codec": "0.
|
|
31
|
+
"@automate.ax/codec": "0.68.0",
|
|
32
32
|
"@orpc/contract": "1.15.0",
|
|
33
33
|
"fast-json-stable-stringify": "^2.1.0",
|
|
34
34
|
"zod": "^4.3.6"
|
package/src/runtime.ts
CHANGED
|
@@ -406,7 +406,6 @@ const RUNTIME_VALUE_CONTEXT_SCHEMA = z.object({
|
|
|
406
406
|
.object({
|
|
407
407
|
automationEventId: z.string(),
|
|
408
408
|
contextId: z.string(),
|
|
409
|
-
eventId: z.string(),
|
|
410
409
|
outcomeSeq: OUTCOME_SEQUENCE_SCHEMA,
|
|
411
410
|
payload: encodableSchema,
|
|
412
411
|
scopePath: HOOK_SCOPE_PATH_SCHEMA,
|