@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/index.d.ts
CHANGED
|
@@ -679,7 +679,7 @@ export declare const publicContract: {
|
|
|
679
679
|
}>;
|
|
680
680
|
url: import("zod").ZodURL;
|
|
681
681
|
}, import("zod/v4/core").$strip>>;
|
|
682
|
-
schemaVersion: import("zod").ZodLiteral<
|
|
682
|
+
schemaVersion: import("zod").ZodLiteral<5>;
|
|
683
683
|
scope: import("zod").ZodObject<{
|
|
684
684
|
organizationId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
685
685
|
projectId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -723,6 +723,7 @@ export declare const publicContract: {
|
|
|
723
723
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
724
724
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
725
725
|
}, import("zod/v4/core").$strip>>;
|
|
726
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
726
727
|
plan: import("zod").ZodEnum<{
|
|
727
728
|
free: "free";
|
|
728
729
|
pro: "pro";
|
|
@@ -731,6 +732,7 @@ export declare const publicContract: {
|
|
|
731
732
|
limits: import("zod").ZodObject<{
|
|
732
733
|
aiSpendUsd: import("zod").ZodNumber;
|
|
733
734
|
emailSends: import("zod").ZodNumber;
|
|
735
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
734
736
|
projects: import("zod").ZodNumber;
|
|
735
737
|
seats: import("zod").ZodNumber;
|
|
736
738
|
}, import("zod/v4/core").$strip>;
|
|
@@ -817,6 +819,7 @@ export declare const publicContract: {
|
|
|
817
819
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
818
820
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
819
821
|
}, import("zod/v4/core").$strip>>;
|
|
822
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
820
823
|
plan: import("zod").ZodEnum<{
|
|
821
824
|
free: "free";
|
|
822
825
|
pro: "pro";
|
|
@@ -825,6 +828,7 @@ export declare const publicContract: {
|
|
|
825
828
|
limits: import("zod").ZodObject<{
|
|
826
829
|
aiSpendUsd: import("zod").ZodNumber;
|
|
827
830
|
emailSends: import("zod").ZodNumber;
|
|
831
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
828
832
|
projects: import("zod").ZodNumber;
|
|
829
833
|
seats: import("zod").ZodNumber;
|
|
830
834
|
}, import("zod/v4/core").$strip>;
|
|
@@ -843,8 +847,9 @@ export declare const publicContract: {
|
|
|
843
847
|
memberIdOrEmail: import("zod").ZodString;
|
|
844
848
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
845
849
|
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
850
|
+
executionRetentionDays: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
846
851
|
organizationId: import("zod").ZodString;
|
|
847
|
-
name: import("zod").ZodString
|
|
852
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
848
853
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
849
854
|
};
|
|
850
855
|
project: {
|
|
@@ -1456,6 +1461,7 @@ export declare const firstPartyContract: {
|
|
|
1456
1461
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1457
1462
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
1458
1463
|
}, import("zod/v4/core").$strip>>;
|
|
1464
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
1459
1465
|
plan: import("zod").ZodEnum<{
|
|
1460
1466
|
free: "free";
|
|
1461
1467
|
pro: "pro";
|
|
@@ -1464,6 +1470,7 @@ export declare const firstPartyContract: {
|
|
|
1464
1470
|
limits: import("zod").ZodObject<{
|
|
1465
1471
|
aiSpendUsd: import("zod").ZodNumber;
|
|
1466
1472
|
emailSends: import("zod").ZodNumber;
|
|
1473
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
1467
1474
|
projects: import("zod").ZodNumber;
|
|
1468
1475
|
seats: import("zod").ZodNumber;
|
|
1469
1476
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1550,6 +1557,7 @@ export declare const firstPartyContract: {
|
|
|
1550
1557
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1551
1558
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
1552
1559
|
}, import("zod/v4/core").$strip>>;
|
|
1560
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
1553
1561
|
plan: import("zod").ZodEnum<{
|
|
1554
1562
|
free: "free";
|
|
1555
1563
|
pro: "pro";
|
|
@@ -1558,6 +1566,7 @@ export declare const firstPartyContract: {
|
|
|
1558
1566
|
limits: import("zod").ZodObject<{
|
|
1559
1567
|
aiSpendUsd: import("zod").ZodNumber;
|
|
1560
1568
|
emailSends: import("zod").ZodNumber;
|
|
1569
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
1561
1570
|
projects: import("zod").ZodNumber;
|
|
1562
1571
|
seats: import("zod").ZodNumber;
|
|
1563
1572
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1576,8 +1585,9 @@ export declare const firstPartyContract: {
|
|
|
1576
1585
|
memberIdOrEmail: import("zod").ZodString;
|
|
1577
1586
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1578
1587
|
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1588
|
+
executionRetentionDays: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
1579
1589
|
organizationId: import("zod").ZodString;
|
|
1580
|
-
name: import("zod").ZodString
|
|
1590
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1581
1591
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1582
1592
|
};
|
|
1583
1593
|
project: {
|
|
@@ -2004,7 +2014,7 @@ export declare const firstPartyContract: {
|
|
|
2004
2014
|
}>;
|
|
2005
2015
|
url: import("zod").ZodURL;
|
|
2006
2016
|
}, import("zod/v4/core").$strip>>;
|
|
2007
|
-
schemaVersion: import("zod").ZodLiteral<
|
|
2017
|
+
schemaVersion: import("zod").ZodLiteral<5>;
|
|
2008
2018
|
scope: import("zod").ZodObject<{
|
|
2009
2019
|
organizationId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2010
2020
|
projectId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2208,46 +2218,122 @@ export declare const contract: {
|
|
|
2208
2218
|
};
|
|
2209
2219
|
runtime: {
|
|
2210
2220
|
commit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2211
|
-
actionInvocations: import("zod").
|
|
2221
|
+
actionInvocations: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2212
2222
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2223
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2224
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2225
|
+
id: import("zod").ZodString;
|
|
2226
|
+
source: import("zod").ZodEnum<{
|
|
2227
|
+
action: "action";
|
|
2228
|
+
event: "event";
|
|
2229
|
+
signal: "signal";
|
|
2230
|
+
}>;
|
|
2231
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2232
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2233
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2234
|
+
property: import("zod").ZodString;
|
|
2235
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2236
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2237
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2238
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2239
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2240
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2241
|
+
}, import("zod/v4/core").$strip>>;
|
|
2213
2242
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2214
2243
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2215
2244
|
inputHash: import("zod").ZodString;
|
|
2216
2245
|
name: import("zod").ZodString;
|
|
2217
|
-
scopePath: import("zod").
|
|
2246
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2218
2247
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2219
2248
|
slot: import("zod").ZodNumber;
|
|
2220
2249
|
status: import("zod").ZodLiteral<"pending">;
|
|
2221
2250
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2222
2251
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2252
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2253
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2254
|
+
id: import("zod").ZodString;
|
|
2255
|
+
source: import("zod").ZodEnum<{
|
|
2256
|
+
action: "action";
|
|
2257
|
+
event: "event";
|
|
2258
|
+
signal: "signal";
|
|
2259
|
+
}>;
|
|
2260
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2261
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2262
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2263
|
+
property: import("zod").ZodString;
|
|
2264
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2265
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2266
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2267
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2268
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2269
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2270
|
+
}, import("zod/v4/core").$strip>>;
|
|
2223
2271
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2224
2272
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2225
2273
|
inputHash: import("zod").ZodString;
|
|
2226
2274
|
name: import("zod").ZodString;
|
|
2227
|
-
scopePath: import("zod").
|
|
2275
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2228
2276
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2229
2277
|
slot: import("zod").ZodNumber;
|
|
2230
2278
|
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
2231
2279
|
status: import("zod").ZodLiteral<"skipped">;
|
|
2232
2280
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2233
2281
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2282
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2283
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2284
|
+
id: import("zod").ZodString;
|
|
2285
|
+
source: import("zod").ZodEnum<{
|
|
2286
|
+
action: "action";
|
|
2287
|
+
event: "event";
|
|
2288
|
+
signal: "signal";
|
|
2289
|
+
}>;
|
|
2290
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2291
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2292
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2293
|
+
property: import("zod").ZodString;
|
|
2294
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2295
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2296
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2297
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2298
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2299
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2300
|
+
}, import("zod/v4/core").$strip>>;
|
|
2234
2301
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2235
2302
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2236
2303
|
inputHash: import("zod").ZodString;
|
|
2237
2304
|
name: import("zod").ZodString;
|
|
2238
|
-
scopePath: import("zod").
|
|
2305
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2239
2306
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2240
2307
|
slot: import("zod").ZodNumber;
|
|
2241
2308
|
failure: import("zod").ZodType<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue, import("zod/v4/core").$ZodTypeInternals<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue>>;
|
|
2242
2309
|
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
2243
2310
|
status: import("zod").ZodLiteral<"skipped">;
|
|
2244
|
-
}, import("zod/v4/core").$strip>]
|
|
2245
|
-
coordinationOffers: import("zod").
|
|
2311
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
2312
|
+
coordinationOffers: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2246
2313
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2247
2314
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2248
|
-
scopePath: import("zod").
|
|
2315
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2249
2316
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2250
2317
|
slot: import("zod").ZodNumber;
|
|
2318
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2319
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2320
|
+
id: import("zod").ZodString;
|
|
2321
|
+
source: import("zod").ZodEnum<{
|
|
2322
|
+
action: "action";
|
|
2323
|
+
event: "event";
|
|
2324
|
+
signal: "signal";
|
|
2325
|
+
}>;
|
|
2326
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2327
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2328
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2329
|
+
property: import("zod").ZodString;
|
|
2330
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2331
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2332
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2333
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2334
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2335
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2336
|
+
}, import("zod/v4/core").$strip>>;
|
|
2251
2337
|
count: import("zod").ZodNumber;
|
|
2252
2338
|
key: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
2253
2339
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2261,9 +2347,28 @@ export declare const contract: {
|
|
|
2261
2347
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2262
2348
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2263
2349
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2264
|
-
scopePath: import("zod").
|
|
2350
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2265
2351
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2266
2352
|
slot: import("zod").ZodNumber;
|
|
2353
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2354
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2355
|
+
id: import("zod").ZodString;
|
|
2356
|
+
source: import("zod").ZodEnum<{
|
|
2357
|
+
action: "action";
|
|
2358
|
+
event: "event";
|
|
2359
|
+
signal: "signal";
|
|
2360
|
+
}>;
|
|
2361
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2362
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2363
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2364
|
+
property: import("zod").ZodString;
|
|
2365
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2366
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2367
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2368
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2369
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2370
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2371
|
+
}, import("zod/v4/core").$strip>>;
|
|
2267
2372
|
key: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
2268
2373
|
ordered: import("zod").ZodBoolean;
|
|
2269
2374
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2274,18 +2379,56 @@ export declare const contract: {
|
|
|
2274
2379
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2275
2380
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2276
2381
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2277
|
-
scopePath: import("zod").
|
|
2382
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2278
2383
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2279
2384
|
slot: import("zod").ZodNumber;
|
|
2385
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2386
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2387
|
+
id: import("zod").ZodString;
|
|
2388
|
+
source: import("zod").ZodEnum<{
|
|
2389
|
+
action: "action";
|
|
2390
|
+
event: "event";
|
|
2391
|
+
signal: "signal";
|
|
2392
|
+
}>;
|
|
2393
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2394
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2395
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2396
|
+
property: import("zod").ZodString;
|
|
2397
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2398
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2399
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2400
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2401
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2402
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2403
|
+
}, import("zod/v4/core").$strip>>;
|
|
2280
2404
|
count: import("zod").ZodNumber;
|
|
2281
2405
|
outcomeSeq: import("zod").ZodNumber;
|
|
2282
2406
|
policy: import("zod").ZodLiteral<"fanout">;
|
|
2283
2407
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2284
2408
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2285
2409
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2286
|
-
scopePath: import("zod").
|
|
2410
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2287
2411
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2288
2412
|
slot: import("zod").ZodNumber;
|
|
2413
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2414
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2415
|
+
id: import("zod").ZodString;
|
|
2416
|
+
source: import("zod").ZodEnum<{
|
|
2417
|
+
action: "action";
|
|
2418
|
+
event: "event";
|
|
2419
|
+
signal: "signal";
|
|
2420
|
+
}>;
|
|
2421
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2422
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2423
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2424
|
+
property: import("zod").ZodString;
|
|
2425
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2426
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2427
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2428
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2429
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2430
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2431
|
+
}, import("zod/v4/core").$strip>>;
|
|
2289
2432
|
key: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
2290
2433
|
maxBurstDuration: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
2291
2434
|
minGap: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
@@ -2311,88 +2454,221 @@ export declare const contract: {
|
|
|
2311
2454
|
}, import("zod/v4/core").$strip>, import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2312
2455
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2313
2456
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2314
|
-
scopePath: import("zod").
|
|
2457
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2315
2458
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2316
2459
|
slot: import("zod").ZodNumber;
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2460
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2461
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2462
|
+
id: import("zod").ZodString;
|
|
2463
|
+
source: import("zod").ZodEnum<{
|
|
2464
|
+
action: "action";
|
|
2465
|
+
event: "event";
|
|
2466
|
+
signal: "signal";
|
|
2467
|
+
}>;
|
|
2468
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2469
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2470
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2471
|
+
property: import("zod").ZodString;
|
|
2472
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2473
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2474
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2475
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2476
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2477
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2478
|
+
}, import("zod/v4/core").$strip>>;
|
|
2479
|
+
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2480
|
+
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2481
|
+
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2482
|
+
cohortSignalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2321
2483
|
inputOrigins: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2322
2484
|
outcomeSeq: import("zod").ZodNumber;
|
|
2323
2485
|
policy: import("zod").ZodLiteral<"race">;
|
|
2324
|
-
scopeOrigins: import("zod").
|
|
2486
|
+
scopeOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2325
2487
|
selectedIndex: import("zod").ZodNumber;
|
|
2326
2488
|
status: import("zod").ZodLiteral<"closed">;
|
|
2327
2489
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2328
2490
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2329
2491
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2330
|
-
scopePath: import("zod").
|
|
2492
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2331
2493
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2332
2494
|
slot: import("zod").ZodNumber;
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2495
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2496
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2497
|
+
id: import("zod").ZodString;
|
|
2498
|
+
source: import("zod").ZodEnum<{
|
|
2499
|
+
action: "action";
|
|
2500
|
+
event: "event";
|
|
2501
|
+
signal: "signal";
|
|
2502
|
+
}>;
|
|
2503
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2504
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2505
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2506
|
+
property: import("zod").ZodString;
|
|
2507
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2508
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2509
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2510
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2511
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2512
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2513
|
+
}, import("zod/v4/core").$strip>>;
|
|
2514
|
+
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2515
|
+
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2516
|
+
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2517
|
+
cohortSignalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2337
2518
|
inputOrigins: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2338
2519
|
outcomeSeq: import("zod").ZodNumber;
|
|
2339
2520
|
policy: import("zod").ZodLiteral<"race">;
|
|
2340
|
-
scopeOrigins: import("zod").
|
|
2521
|
+
scopeOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2341
2522
|
selectedIndex: import("zod").ZodNumber;
|
|
2342
2523
|
failure: import("zod").ZodType<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue, import("zod/v4/core").$ZodTypeInternals<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue>>;
|
|
2343
2524
|
status: import("zod").ZodLiteral<"failed">;
|
|
2344
2525
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2345
2526
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2346
2527
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2347
|
-
scopePath: import("zod").
|
|
2528
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2348
2529
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2349
2530
|
slot: import("zod").ZodNumber;
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2531
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2532
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2533
|
+
id: import("zod").ZodString;
|
|
2534
|
+
source: import("zod").ZodEnum<{
|
|
2535
|
+
action: "action";
|
|
2536
|
+
event: "event";
|
|
2537
|
+
signal: "signal";
|
|
2538
|
+
}>;
|
|
2539
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2540
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2541
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2542
|
+
property: import("zod").ZodString;
|
|
2543
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2544
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2545
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2546
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2547
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2548
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2549
|
+
}, import("zod/v4/core").$strip>>;
|
|
2550
|
+
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2551
|
+
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2552
|
+
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2553
|
+
cohortSignalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2354
2554
|
inputOrigins: import("zod").ZodArray<import("zod").ZodArray<import("zod").ZodString>>;
|
|
2355
2555
|
outcomeSeq: import("zod").ZodNumber;
|
|
2356
2556
|
policy: import("zod").ZodLiteral<"race">;
|
|
2357
|
-
scopeOrigins: import("zod").
|
|
2557
|
+
scopeOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
2358
2558
|
selectedIndex: import("zod").ZodNumber;
|
|
2359
2559
|
status: import("zod").ZodLiteral<"succeeded">;
|
|
2360
|
-
}, import("zod/v4/core").$strip>]>]
|
|
2361
|
-
settled: import("zod").
|
|
2362
|
-
signalInvocations: import("zod").
|
|
2560
|
+
}, import("zod/v4/core").$strip>]>]>>;
|
|
2561
|
+
settled: import("zod").ZodBoolean;
|
|
2562
|
+
signalInvocations: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2363
2563
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2364
2564
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2365
|
-
scopePath: import("zod").
|
|
2565
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2366
2566
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2367
2567
|
slot: import("zod").ZodNumber;
|
|
2568
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2569
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2570
|
+
id: import("zod").ZodString;
|
|
2571
|
+
source: import("zod").ZodEnum<{
|
|
2572
|
+
action: "action";
|
|
2573
|
+
event: "event";
|
|
2574
|
+
signal: "signal";
|
|
2575
|
+
}>;
|
|
2576
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2577
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2578
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2579
|
+
property: import("zod").ZodString;
|
|
2580
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2581
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2582
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2583
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2584
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2585
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2586
|
+
}, import("zod/v4/core").$strip>>;
|
|
2368
2587
|
outcomeSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2369
2588
|
status: import("zod").ZodLiteral<"closed">;
|
|
2370
2589
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2371
2590
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2372
2591
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2373
|
-
scopePath: import("zod").
|
|
2592
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2374
2593
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2375
2594
|
slot: import("zod").ZodNumber;
|
|
2595
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2596
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2597
|
+
id: import("zod").ZodString;
|
|
2598
|
+
source: import("zod").ZodEnum<{
|
|
2599
|
+
action: "action";
|
|
2600
|
+
event: "event";
|
|
2601
|
+
signal: "signal";
|
|
2602
|
+
}>;
|
|
2603
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2604
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2605
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2606
|
+
property: import("zod").ZodString;
|
|
2607
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2608
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2609
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2610
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2611
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2612
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2613
|
+
}, import("zod/v4/core").$strip>>;
|
|
2376
2614
|
failure: import("zod").ZodType<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue, import("zod/v4/core").$ZodTypeInternals<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue>>;
|
|
2377
2615
|
status: import("zod").ZodLiteral<"failed">;
|
|
2378
2616
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2379
2617
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2380
2618
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2381
|
-
scopePath: import("zod").
|
|
2619
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2382
2620
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2383
2621
|
slot: import("zod").ZodNumber;
|
|
2622
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2623
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2624
|
+
id: import("zod").ZodString;
|
|
2625
|
+
source: import("zod").ZodEnum<{
|
|
2626
|
+
action: "action";
|
|
2627
|
+
event: "event";
|
|
2628
|
+
signal: "signal";
|
|
2629
|
+
}>;
|
|
2630
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2631
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2632
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2633
|
+
property: import("zod").ZodString;
|
|
2634
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2635
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2636
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2637
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2638
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2639
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2640
|
+
}, import("zod/v4/core").$strip>>;
|
|
2384
2641
|
outcomeSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2385
2642
|
status: import("zod").ZodLiteral<"open">;
|
|
2386
2643
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2387
2644
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2388
2645
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2389
|
-
scopePath: import("zod").
|
|
2646
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2390
2647
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2391
2648
|
slot: import("zod").ZodNumber;
|
|
2649
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2650
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2651
|
+
id: import("zod").ZodString;
|
|
2652
|
+
source: import("zod").ZodEnum<{
|
|
2653
|
+
action: "action";
|
|
2654
|
+
event: "event";
|
|
2655
|
+
signal: "signal";
|
|
2656
|
+
}>;
|
|
2657
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2658
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2659
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2660
|
+
property: import("zod").ZodString;
|
|
2661
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2662
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2663
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2664
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2665
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2666
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2667
|
+
}, import("zod/v4/core").$strip>>;
|
|
2392
2668
|
outcomeSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2393
2669
|
selectedIndex: import("zod").ZodNumber;
|
|
2394
2670
|
status: import("zod").ZodLiteral<"succeeded">;
|
|
2395
|
-
}, import("zod/v4/core").$strip>]
|
|
2671
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
2396
2672
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
2397
2673
|
completeAction: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2398
2674
|
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
@@ -2548,11 +2824,30 @@ export declare const contract: {
|
|
|
2548
2824
|
context: import("zod").ZodObject<{
|
|
2549
2825
|
actions: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2550
2826
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2827
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2828
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2829
|
+
id: import("zod").ZodString;
|
|
2830
|
+
source: import("zod").ZodEnum<{
|
|
2831
|
+
action: "action";
|
|
2832
|
+
event: "event";
|
|
2833
|
+
signal: "signal";
|
|
2834
|
+
}>;
|
|
2835
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2836
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2837
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2838
|
+
property: import("zod").ZodString;
|
|
2839
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2840
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2841
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2842
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2843
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2844
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2845
|
+
}, import("zod/v4/core").$strip>>;
|
|
2551
2846
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2552
2847
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2553
2848
|
inputHash: import("zod").ZodString;
|
|
2554
2849
|
name: import("zod").ZodString;
|
|
2555
|
-
scopePath: import("zod").
|
|
2850
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2556
2851
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2557
2852
|
slot: import("zod").ZodNumber;
|
|
2558
2853
|
actionInvocationId: import("zod").ZodString;
|
|
@@ -2560,11 +2855,30 @@ export declare const contract: {
|
|
|
2560
2855
|
status: import("zod").ZodLiteral<"pending">;
|
|
2561
2856
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2562
2857
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2858
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2859
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2860
|
+
id: import("zod").ZodString;
|
|
2861
|
+
source: import("zod").ZodEnum<{
|
|
2862
|
+
action: "action";
|
|
2863
|
+
event: "event";
|
|
2864
|
+
signal: "signal";
|
|
2865
|
+
}>;
|
|
2866
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2867
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2868
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2869
|
+
property: import("zod").ZodString;
|
|
2870
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2871
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2872
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2873
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2874
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2875
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2876
|
+
}, import("zod/v4/core").$strip>>;
|
|
2563
2877
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2564
2878
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2565
2879
|
inputHash: import("zod").ZodString;
|
|
2566
2880
|
name: import("zod").ZodString;
|
|
2567
|
-
scopePath: import("zod").
|
|
2881
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2568
2882
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2569
2883
|
slot: import("zod").ZodNumber;
|
|
2570
2884
|
actionInvocationId: import("zod").ZodString;
|
|
@@ -2574,11 +2888,30 @@ export declare const contract: {
|
|
|
2574
2888
|
status: import("zod").ZodLiteral<"failed">;
|
|
2575
2889
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2576
2890
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2891
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2892
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2893
|
+
id: import("zod").ZodString;
|
|
2894
|
+
source: import("zod").ZodEnum<{
|
|
2895
|
+
action: "action";
|
|
2896
|
+
event: "event";
|
|
2897
|
+
signal: "signal";
|
|
2898
|
+
}>;
|
|
2899
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2900
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2901
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2902
|
+
property: import("zod").ZodString;
|
|
2903
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2904
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2905
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2906
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2907
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2908
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2909
|
+
}, import("zod/v4/core").$strip>>;
|
|
2577
2910
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2578
2911
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2579
2912
|
inputHash: import("zod").ZodString;
|
|
2580
2913
|
name: import("zod").ZodString;
|
|
2581
|
-
scopePath: import("zod").
|
|
2914
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2582
2915
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2583
2916
|
slot: import("zod").ZodNumber;
|
|
2584
2917
|
actionInvocationId: import("zod").ZodString;
|
|
@@ -2588,11 +2921,30 @@ export declare const contract: {
|
|
|
2588
2921
|
status: import("zod").ZodLiteral<"skipped">;
|
|
2589
2922
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2590
2923
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2924
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2925
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2926
|
+
id: import("zod").ZodString;
|
|
2927
|
+
source: import("zod").ZodEnum<{
|
|
2928
|
+
action: "action";
|
|
2929
|
+
event: "event";
|
|
2930
|
+
signal: "signal";
|
|
2931
|
+
}>;
|
|
2932
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2933
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2934
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2935
|
+
property: import("zod").ZodString;
|
|
2936
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2937
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2938
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2939
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2940
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2941
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2942
|
+
}, import("zod/v4/core").$strip>>;
|
|
2591
2943
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2592
2944
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2593
2945
|
inputHash: import("zod").ZodString;
|
|
2594
2946
|
name: import("zod").ZodString;
|
|
2595
|
-
scopePath: import("zod").
|
|
2947
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2596
2948
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2597
2949
|
slot: import("zod").ZodNumber;
|
|
2598
2950
|
actionInvocationId: import("zod").ZodString;
|
|
@@ -2603,11 +2955,30 @@ export declare const contract: {
|
|
|
2603
2955
|
status: import("zod").ZodLiteral<"skipped">;
|
|
2604
2956
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2605
2957
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2958
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2959
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2960
|
+
id: import("zod").ZodString;
|
|
2961
|
+
source: import("zod").ZodEnum<{
|
|
2962
|
+
action: "action";
|
|
2963
|
+
event: "event";
|
|
2964
|
+
signal: "signal";
|
|
2965
|
+
}>;
|
|
2966
|
+
type: import("zod").ZodLiteral<"source">;
|
|
2967
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2968
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2969
|
+
property: import("zod").ZodString;
|
|
2970
|
+
type: import("zod").ZodLiteral<"property">;
|
|
2971
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2972
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2973
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
2974
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
2975
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2976
|
+
}, import("zod/v4/core").$strip>>;
|
|
2606
2977
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2607
2978
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2608
2979
|
inputHash: import("zod").ZodString;
|
|
2609
2980
|
name: import("zod").ZodString;
|
|
2610
|
-
scopePath: import("zod").
|
|
2981
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2611
2982
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2612
2983
|
slot: import("zod").ZodNumber;
|
|
2613
2984
|
actionInvocationId: import("zod").ZodString;
|
|
@@ -2626,15 +2997,34 @@ export declare const contract: {
|
|
|
2626
2997
|
automationEventId: import("zod").ZodString;
|
|
2627
2998
|
contextId: import("zod").ZodString;
|
|
2628
2999
|
outcomeSeq: import("zod").ZodNumber;
|
|
2629
|
-
scopePath: import("zod").
|
|
3000
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2630
3001
|
slot: import("zod").ZodNumber;
|
|
2631
3002
|
}, import("zod/v4/core").$strip>>;
|
|
2632
3003
|
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2633
3004
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2634
3005
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2635
|
-
scopePath: import("zod").
|
|
3006
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2636
3007
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2637
3008
|
slot: import("zod").ZodNumber;
|
|
3009
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3010
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3011
|
+
id: import("zod").ZodString;
|
|
3012
|
+
source: import("zod").ZodEnum<{
|
|
3013
|
+
action: "action";
|
|
3014
|
+
event: "event";
|
|
3015
|
+
signal: "signal";
|
|
3016
|
+
}>;
|
|
3017
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3018
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3019
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3020
|
+
property: import("zod").ZodString;
|
|
3021
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3022
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3023
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3024
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3025
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3026
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3027
|
+
}, import("zod/v4/core").$strip>>;
|
|
2638
3028
|
coordinatorConfigurationHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2639
3029
|
contextId: import("zod").ZodString;
|
|
2640
3030
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2643,9 +3033,28 @@ export declare const contract: {
|
|
|
2643
3033
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2644
3034
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2645
3035
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2646
|
-
scopePath: import("zod").
|
|
3036
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2647
3037
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2648
3038
|
slot: import("zod").ZodNumber;
|
|
3039
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3040
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3041
|
+
id: import("zod").ZodString;
|
|
3042
|
+
source: import("zod").ZodEnum<{
|
|
3043
|
+
action: "action";
|
|
3044
|
+
event: "event";
|
|
3045
|
+
signal: "signal";
|
|
3046
|
+
}>;
|
|
3047
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3048
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3049
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3050
|
+
property: import("zod").ZodString;
|
|
3051
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3052
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3053
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3054
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3055
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3056
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3057
|
+
}, import("zod/v4/core").$strip>>;
|
|
2649
3058
|
coordinatorConfigurationHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2650
3059
|
contextId: import("zod").ZodString;
|
|
2651
3060
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2654,9 +3063,28 @@ export declare const contract: {
|
|
|
2654
3063
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2655
3064
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2656
3065
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2657
|
-
scopePath: import("zod").
|
|
3066
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2658
3067
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2659
3068
|
slot: import("zod").ZodNumber;
|
|
3069
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3070
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3071
|
+
id: import("zod").ZodString;
|
|
3072
|
+
source: import("zod").ZodEnum<{
|
|
3073
|
+
action: "action";
|
|
3074
|
+
event: "event";
|
|
3075
|
+
signal: "signal";
|
|
3076
|
+
}>;
|
|
3077
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3078
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3079
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3080
|
+
property: import("zod").ZodString;
|
|
3081
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3082
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3083
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3084
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3085
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3086
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3087
|
+
}, import("zod/v4/core").$strip>>;
|
|
2660
3088
|
coordinatorConfigurationHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2661
3089
|
contextId: import("zod").ZodString;
|
|
2662
3090
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2666,9 +3094,28 @@ export declare const contract: {
|
|
|
2666
3094
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2667
3095
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2668
3096
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2669
|
-
scopePath: import("zod").
|
|
3097
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2670
3098
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2671
3099
|
slot: import("zod").ZodNumber;
|
|
3100
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3101
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3102
|
+
id: import("zod").ZodString;
|
|
3103
|
+
source: import("zod").ZodEnum<{
|
|
3104
|
+
action: "action";
|
|
3105
|
+
event: "event";
|
|
3106
|
+
signal: "signal";
|
|
3107
|
+
}>;
|
|
3108
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3109
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3110
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3111
|
+
property: import("zod").ZodString;
|
|
3112
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3113
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3114
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3115
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3116
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3117
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3118
|
+
}, import("zod/v4/core").$strip>>;
|
|
2672
3119
|
coordinatorConfigurationHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2673
3120
|
contextId: import("zod").ZodString;
|
|
2674
3121
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2683,7 +3130,7 @@ export declare const contract: {
|
|
|
2683
3130
|
actionOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2684
3131
|
actionInvocationId: import("zod").ZodString;
|
|
2685
3132
|
contextId: import("zod").ZodString;
|
|
2686
|
-
scopePath: import("zod").
|
|
3133
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2687
3134
|
slot: import("zod").ZodNumber;
|
|
2688
3135
|
timestamp: import("zod").ZodDate;
|
|
2689
3136
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2693,7 +3140,7 @@ export declare const contract: {
|
|
|
2693
3140
|
actionInvocationId: import("zod").ZodString;
|
|
2694
3141
|
contextId: import("zod").ZodString;
|
|
2695
3142
|
outcomeSeq: import("zod").ZodNumber;
|
|
2696
|
-
scopePath: import("zod").
|
|
3143
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2697
3144
|
slot: import("zod").ZodNumber;
|
|
2698
3145
|
timestamp: import("zod").ZodDate;
|
|
2699
3146
|
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
@@ -2702,7 +3149,7 @@ export declare const contract: {
|
|
|
2702
3149
|
actionInvocationId: import("zod").ZodString;
|
|
2703
3150
|
contextId: import("zod").ZodString;
|
|
2704
3151
|
outcomeSeq: import("zod").ZodNumber;
|
|
2705
|
-
scopePath: import("zod").
|
|
3152
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2706
3153
|
slot: import("zod").ZodNumber;
|
|
2707
3154
|
timestamp: import("zod").ZodDate;
|
|
2708
3155
|
failure: import("zod").ZodType<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue, import("zod/v4/core").$ZodTypeInternals<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue>>;
|
|
@@ -2712,7 +3159,7 @@ export declare const contract: {
|
|
|
2712
3159
|
actionInvocationId: import("zod").ZodString;
|
|
2713
3160
|
contextId: import("zod").ZodString;
|
|
2714
3161
|
outcomeSeq: import("zod").ZodNumber;
|
|
2715
|
-
scopePath: import("zod").
|
|
3162
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2716
3163
|
slot: import("zod").ZodNumber;
|
|
2717
3164
|
timestamp: import("zod").ZodDate;
|
|
2718
3165
|
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
@@ -2721,6 +3168,25 @@ export declare const contract: {
|
|
|
2721
3168
|
coordinationSelections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2722
3169
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2723
3170
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
3171
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3172
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3173
|
+
id: import("zod").ZodString;
|
|
3174
|
+
source: import("zod").ZodEnum<{
|
|
3175
|
+
action: "action";
|
|
3176
|
+
event: "event";
|
|
3177
|
+
signal: "signal";
|
|
3178
|
+
}>;
|
|
3179
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3180
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3181
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3182
|
+
property: import("zod").ZodString;
|
|
3183
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3184
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3185
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3186
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3187
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3188
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3189
|
+
}, import("zod/v4/core").$strip>>;
|
|
2724
3190
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2725
3191
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2726
3192
|
contextId: import("zod").ZodString;
|
|
@@ -2739,14 +3205,14 @@ export declare const contract: {
|
|
|
2739
3205
|
contextId: import("zod").ZodString;
|
|
2740
3206
|
outcomeSeq: import("zod").ZodNumber;
|
|
2741
3207
|
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
2742
|
-
scopePath: import("zod").
|
|
3208
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2743
3209
|
slot: import("zod").ZodNumber;
|
|
2744
3210
|
timestamp: import("zod").ZodDate;
|
|
2745
3211
|
}, import("zod/v4/core").$strip>>;
|
|
2746
3212
|
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2747
3213
|
contextId: import("zod").ZodString;
|
|
2748
3214
|
outcomeSeq: import("zod").ZodNumber;
|
|
2749
|
-
scopePath: import("zod").
|
|
3215
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2750
3216
|
signalInvocationId: import("zod").ZodString;
|
|
2751
3217
|
slot: import("zod").ZodNumber;
|
|
2752
3218
|
timestamp: import("zod").ZodDate;
|
|
@@ -2754,7 +3220,7 @@ export declare const contract: {
|
|
|
2754
3220
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2755
3221
|
contextId: import("zod").ZodString;
|
|
2756
3222
|
outcomeSeq: import("zod").ZodNumber;
|
|
2757
|
-
scopePath: import("zod").
|
|
3223
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2758
3224
|
signalInvocationId: import("zod").ZodString;
|
|
2759
3225
|
slot: import("zod").ZodNumber;
|
|
2760
3226
|
timestamp: import("zod").ZodDate;
|
|
@@ -2762,7 +3228,7 @@ export declare const contract: {
|
|
|
2762
3228
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2763
3229
|
contextId: import("zod").ZodString;
|
|
2764
3230
|
outcomeSeq: import("zod").ZodNumber;
|
|
2765
|
-
scopePath: import("zod").
|
|
3231
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2766
3232
|
signalInvocationId: import("zod").ZodString;
|
|
2767
3233
|
slot: import("zod").ZodNumber;
|
|
2768
3234
|
timestamp: import("zod").ZodDate;
|
|
@@ -2771,7 +3237,7 @@ export declare const contract: {
|
|
|
2771
3237
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2772
3238
|
contextId: import("zod").ZodString;
|
|
2773
3239
|
outcomeSeq: import("zod").ZodNumber;
|
|
2774
|
-
scopePath: import("zod").
|
|
3240
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2775
3241
|
signalInvocationId: import("zod").ZodString;
|
|
2776
3242
|
slot: import("zod").ZodNumber;
|
|
2777
3243
|
timestamp: import("zod").ZodDate;
|
|
@@ -2781,12 +3247,12 @@ export declare const contract: {
|
|
|
2781
3247
|
}, import("zod/v4/core").$strip>]>>;
|
|
2782
3248
|
}, import("zod/v4/core").$strip>;
|
|
2783
3249
|
id: import("zod").ZodString;
|
|
2784
|
-
scopePath: import("zod").
|
|
3250
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2785
3251
|
slot: import("zod").ZodNumber;
|
|
2786
3252
|
status: import("zod").ZodLiteral<"pending">;
|
|
2787
3253
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2788
3254
|
id: import("zod").ZodString;
|
|
2789
|
-
scopePath: import("zod").
|
|
3255
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2790
3256
|
slot: import("zod").ZodNumber;
|
|
2791
3257
|
status: import("zod").ZodEnum<{
|
|
2792
3258
|
succeeded: "succeeded";
|
|
@@ -2803,7 +3269,7 @@ export declare const contract: {
|
|
|
2803
3269
|
actionOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2804
3270
|
actionInvocationId: import("zod").ZodString;
|
|
2805
3271
|
contextId: import("zod").ZodString;
|
|
2806
|
-
scopePath: import("zod").
|
|
3272
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2807
3273
|
slot: import("zod").ZodNumber;
|
|
2808
3274
|
timestamp: import("zod").ZodDate;
|
|
2809
3275
|
outcomeSeq: import("zod").ZodNumber;
|
|
@@ -2813,7 +3279,7 @@ export declare const contract: {
|
|
|
2813
3279
|
actionInvocationId: import("zod").ZodString;
|
|
2814
3280
|
contextId: import("zod").ZodString;
|
|
2815
3281
|
outcomeSeq: import("zod").ZodNumber;
|
|
2816
|
-
scopePath: import("zod").
|
|
3282
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2817
3283
|
slot: import("zod").ZodNumber;
|
|
2818
3284
|
timestamp: import("zod").ZodDate;
|
|
2819
3285
|
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
@@ -2822,7 +3288,7 @@ export declare const contract: {
|
|
|
2822
3288
|
actionInvocationId: import("zod").ZodString;
|
|
2823
3289
|
contextId: import("zod").ZodString;
|
|
2824
3290
|
outcomeSeq: import("zod").ZodNumber;
|
|
2825
|
-
scopePath: import("zod").
|
|
3291
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2826
3292
|
slot: import("zod").ZodNumber;
|
|
2827
3293
|
timestamp: import("zod").ZodDate;
|
|
2828
3294
|
failure: import("zod").ZodType<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue, import("zod/v4/core").$ZodTypeInternals<import("./errors").AutomationErrorValue, import("./errors").AutomationErrorValue>>;
|
|
@@ -2832,7 +3298,7 @@ export declare const contract: {
|
|
|
2832
3298
|
actionInvocationId: import("zod").ZodString;
|
|
2833
3299
|
contextId: import("zod").ZodString;
|
|
2834
3300
|
outcomeSeq: import("zod").ZodNumber;
|
|
2835
|
-
scopePath: import("zod").
|
|
3301
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2836
3302
|
slot: import("zod").ZodNumber;
|
|
2837
3303
|
timestamp: import("zod").ZodDate;
|
|
2838
3304
|
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
@@ -2841,6 +3307,25 @@ export declare const contract: {
|
|
|
2841
3307
|
coordinationSelections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2842
3308
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2843
3309
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
3310
|
+
derivation: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3311
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3312
|
+
id: import("zod").ZodString;
|
|
3313
|
+
source: import("zod").ZodEnum<{
|
|
3314
|
+
action: "action";
|
|
3315
|
+
event: "event";
|
|
3316
|
+
signal: "signal";
|
|
3317
|
+
}>;
|
|
3318
|
+
type: import("zod").ZodLiteral<"source">;
|
|
3319
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3320
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3321
|
+
property: import("zod").ZodString;
|
|
3322
|
+
type: import("zod").ZodLiteral<"property">;
|
|
3323
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3324
|
+
inputs: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3325
|
+
type: import("zod").ZodLiteral<"transform">;
|
|
3326
|
+
}, import("zod/v4/core").$strip>], "type">>;
|
|
3327
|
+
roots: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
3328
|
+
}, import("zod/v4/core").$strip>>;
|
|
2844
3329
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2845
3330
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2846
3331
|
contextId: import("zod").ZodString;
|
|
@@ -2859,14 +3344,14 @@ export declare const contract: {
|
|
|
2859
3344
|
contextId: import("zod").ZodString;
|
|
2860
3345
|
outcomeSeq: import("zod").ZodNumber;
|
|
2861
3346
|
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
2862
|
-
scopePath: import("zod").
|
|
3347
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2863
3348
|
slot: import("zod").ZodNumber;
|
|
2864
3349
|
timestamp: import("zod").ZodDate;
|
|
2865
3350
|
}, import("zod/v4/core").$strip>>;
|
|
2866
3351
|
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
2867
3352
|
contextId: import("zod").ZodString;
|
|
2868
3353
|
outcomeSeq: import("zod").ZodNumber;
|
|
2869
|
-
scopePath: import("zod").
|
|
3354
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2870
3355
|
signalInvocationId: import("zod").ZodString;
|
|
2871
3356
|
slot: import("zod").ZodNumber;
|
|
2872
3357
|
timestamp: import("zod").ZodDate;
|
|
@@ -2874,7 +3359,7 @@ export declare const contract: {
|
|
|
2874
3359
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2875
3360
|
contextId: import("zod").ZodString;
|
|
2876
3361
|
outcomeSeq: import("zod").ZodNumber;
|
|
2877
|
-
scopePath: import("zod").
|
|
3362
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2878
3363
|
signalInvocationId: import("zod").ZodString;
|
|
2879
3364
|
slot: import("zod").ZodNumber;
|
|
2880
3365
|
timestamp: import("zod").ZodDate;
|
|
@@ -2882,7 +3367,7 @@ export declare const contract: {
|
|
|
2882
3367
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2883
3368
|
contextId: import("zod").ZodString;
|
|
2884
3369
|
outcomeSeq: import("zod").ZodNumber;
|
|
2885
|
-
scopePath: import("zod").
|
|
3370
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2886
3371
|
signalInvocationId: import("zod").ZodString;
|
|
2887
3372
|
slot: import("zod").ZodNumber;
|
|
2888
3373
|
timestamp: import("zod").ZodDate;
|
|
@@ -2891,7 +3376,7 @@ export declare const contract: {
|
|
|
2891
3376
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2892
3377
|
contextId: import("zod").ZodString;
|
|
2893
3378
|
outcomeSeq: import("zod").ZodNumber;
|
|
2894
|
-
scopePath: import("zod").
|
|
3379
|
+
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2895
3380
|
signalInvocationId: import("zod").ZodString;
|
|
2896
3381
|
slot: import("zod").ZodNumber;
|
|
2897
3382
|
timestamp: import("zod").ZodDate;
|
|
@@ -3404,6 +3889,7 @@ export declare const contract: {
|
|
|
3404
3889
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
3405
3890
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
3406
3891
|
}, import("zod/v4/core").$strip>>;
|
|
3892
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
3407
3893
|
plan: import("zod").ZodEnum<{
|
|
3408
3894
|
free: "free";
|
|
3409
3895
|
pro: "pro";
|
|
@@ -3412,6 +3898,7 @@ export declare const contract: {
|
|
|
3412
3898
|
limits: import("zod").ZodObject<{
|
|
3413
3899
|
aiSpendUsd: import("zod").ZodNumber;
|
|
3414
3900
|
emailSends: import("zod").ZodNumber;
|
|
3901
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
3415
3902
|
projects: import("zod").ZodNumber;
|
|
3416
3903
|
seats: import("zod").ZodNumber;
|
|
3417
3904
|
}, import("zod/v4/core").$strip>;
|
|
@@ -3498,6 +3985,7 @@ export declare const contract: {
|
|
|
3498
3985
|
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
3499
3986
|
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
3500
3987
|
}, import("zod/v4/core").$strip>>;
|
|
3988
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
3501
3989
|
plan: import("zod").ZodEnum<{
|
|
3502
3990
|
free: "free";
|
|
3503
3991
|
pro: "pro";
|
|
@@ -3506,6 +3994,7 @@ export declare const contract: {
|
|
|
3506
3994
|
limits: import("zod").ZodObject<{
|
|
3507
3995
|
aiSpendUsd: import("zod").ZodNumber;
|
|
3508
3996
|
emailSends: import("zod").ZodNumber;
|
|
3997
|
+
executionRetentionDays: import("zod").ZodNumber;
|
|
3509
3998
|
projects: import("zod").ZodNumber;
|
|
3510
3999
|
seats: import("zod").ZodNumber;
|
|
3511
4000
|
}, import("zod/v4/core").$strip>;
|
|
@@ -3524,8 +4013,9 @@ export declare const contract: {
|
|
|
3524
4013
|
memberIdOrEmail: import("zod").ZodString;
|
|
3525
4014
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
3526
4015
|
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
4016
|
+
executionRetentionDays: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
3527
4017
|
organizationId: import("zod").ZodString;
|
|
3528
|
-
name: import("zod").ZodString
|
|
4018
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3529
4019
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
3530
4020
|
};
|
|
3531
4021
|
project: {
|
|
@@ -3952,7 +4442,7 @@ export declare const contract: {
|
|
|
3952
4442
|
}>;
|
|
3953
4443
|
url: import("zod").ZodURL;
|
|
3954
4444
|
}, import("zod/v4/core").$strip>>;
|
|
3955
|
-
schemaVersion: import("zod").ZodLiteral<
|
|
4445
|
+
schemaVersion: import("zod").ZodLiteral<5>;
|
|
3956
4446
|
scope: import("zod").ZodObject<{
|
|
3957
4447
|
organizationId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3958
4448
|
projectId: import("zod").ZodNullable<import("zod").ZodString>;
|