@automate.ax/api-contract 0.81.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 +496 -6
- package/dist/org.d.ts +10 -1
- package/dist/org.js +14 -3
- package/dist/runtime.d.ts +630 -0
- package/dist/runtime.js +52 -2
- package/package.json +2 -2
- package/src/execution-data.ts +1 -1
- package/src/org.ts +19 -4
- package/src/runtime.ts +59 -2
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>;
|
|
@@ -2210,6 +2220,25 @@ export declare const contract: {
|
|
|
2210
2220
|
commit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2211
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;
|
|
@@ -2220,6 +2249,25 @@ export declare const contract: {
|
|
|
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;
|
|
@@ -2231,6 +2279,25 @@ export declare const contract: {
|
|
|
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;
|
|
@@ -2248,6 +2315,25 @@ export declare const contract: {
|
|
|
2248
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;
|
|
@@ -2264,6 +2350,25 @@ export declare const contract: {
|
|
|
2264
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;
|
|
@@ -2277,6 +2382,25 @@ export declare const contract: {
|
|
|
2277
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">;
|
|
@@ -2286,6 +2410,25 @@ export declare const contract: {
|
|
|
2286
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]>>;
|
|
@@ -2314,6 +2457,25 @@ export declare const contract: {
|
|
|
2314
2457
|
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2315
2458
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2316
2459
|
slot: import("zod").ZodNumber;
|
|
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>>;
|
|
2317
2479
|
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2318
2480
|
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2319
2481
|
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -2330,6 +2492,25 @@ export declare const contract: {
|
|
|
2330
2492
|
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2331
2493
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2332
2494
|
slot: import("zod").ZodNumber;
|
|
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>>;
|
|
2333
2514
|
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2334
2515
|
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2335
2516
|
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -2347,6 +2528,25 @@ export declare const contract: {
|
|
|
2347
2528
|
scopePath: import("zod").ZodArray<import("zod").ZodNumber>;
|
|
2348
2529
|
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2349
2530
|
slot: import("zod").ZodNumber;
|
|
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>>;
|
|
2350
2550
|
cohortActionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2351
2551
|
cohortEventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
2352
2552
|
cohortOrigins: import("zod").ZodArray<import("zod").ZodString>;
|
|
@@ -2365,6 +2565,25 @@ export declare const contract: {
|
|
|
2365
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<{
|
|
@@ -2373,6 +2592,25 @@ export declare const contract: {
|
|
|
2373
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<{
|
|
@@ -2381,6 +2619,25 @@ export declare const contract: {
|
|
|
2381
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<{
|
|
@@ -2389,6 +2646,25 @@ export declare const contract: {
|
|
|
2389
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">;
|
|
@@ -2548,6 +2824,25 @@ 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;
|
|
@@ -2560,6 +2855,25 @@ 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;
|
|
@@ -2574,6 +2888,25 @@ 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;
|
|
@@ -2588,6 +2921,25 @@ 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;
|
|
@@ -2603,6 +2955,25 @@ 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;
|
|
@@ -2635,6 +3006,25 @@ export declare const contract: {
|
|
|
2635
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;
|
|
@@ -2646,6 +3036,25 @@ export declare const contract: {
|
|
|
2646
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;
|
|
@@ -2657,6 +3066,25 @@ export declare const contract: {
|
|
|
2657
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;
|
|
@@ -2669,6 +3097,25 @@ export declare const contract: {
|
|
|
2669
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;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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>;
|