@automate.ax/api-contract 0.45.0 → 0.47.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/automation.d.ts +1 -1
- package/dist/automation.js +1 -1
- package/dist/index.d.ts +397 -36
- package/dist/index.js +5 -2
- package/dist/org.d.ts +46 -0
- package/dist/org.js +64 -1
- package/dist/runtime.d.ts +326 -32
- package/dist/runtime.js +213 -71
- package/dist/schemas.d.ts +2 -0
- package/dist/schemas.js +5 -0
- package/package.json +2 -2
- package/src/automation.ts +1 -1
- package/src/index.ts +5 -1
- package/src/org.ts +76 -1
- package/src/runtime.ts +233 -73
- package/src/schemas.ts +6 -0
package/dist/index.d.ts
CHANGED
|
@@ -5,9 +5,9 @@ export { DEFAULT_GATEWAY_MODEL_ID, generationInputSchema, generationResultSchema
|
|
|
5
5
|
export type { GatewayModelId } from "@ai-sdk/gateway";
|
|
6
6
|
export { createdOrganizationApiKeyOutputSchema, organizationApiKeyOutputSchema, } from "./api-key.js";
|
|
7
7
|
export { integrationConnectionManifestSchema, integrationServiceManifestSchema, type IntegrationConnectionManifest, type IntegrationServiceManifest, } from "./authorization.js";
|
|
8
|
-
export { activeSubscriptionOutputSchema, createdInvitationOutputSchema, organizationDetailsOutputSchema, organizationInvitationOutputSchema, organizationMemberOutputSchema, organizationProjectOutputSchema, organizationRoleSchema, organizationSummaryOutputSchema, publicOrganizationOutputSchema, } from "./org.js";
|
|
8
|
+
export { activeSubscriptionOutputSchema, createdInvitationOutputSchema, organizationDetailsOutputSchema, organizationInvitationOutputSchema, organizationMemberOutputSchema, organizationPhoneNumberOutputSchema, organizationProjectOutputSchema, organizationRoleSchema, organizationSummaryOutputSchema, publicOrganizationOutputSchema, } from "./org.js";
|
|
9
9
|
export { projectOutputSchema } from "./project.js";
|
|
10
|
-
export { reasonableNameSchema } from "./schemas.js";
|
|
10
|
+
export { e164PhoneNumberSchema, reasonableNameSchema } from "./schemas.js";
|
|
11
11
|
export { userOutputSchema } from "./auth.js";
|
|
12
12
|
export { managementPermissionStatement, managementRolePermissions, organizationApiKeyPermissions, type ManagementPermission, } from "./permissions.js";
|
|
13
13
|
/** Procedures exposed by the public Node client and OpenAPI document. */
|
|
@@ -95,10 +95,12 @@ export declare const publicContract: {
|
|
|
95
95
|
emailRecipients: import("zod").ZodNumber;
|
|
96
96
|
projects: import("zod").ZodNumber;
|
|
97
97
|
seats: import("zod").ZodNumber;
|
|
98
|
+
smsSegments: import("zod").ZodNumber;
|
|
98
99
|
}, import("zod/v4/core").$strip>;
|
|
99
100
|
usage: import("zod").ZodObject<{
|
|
100
101
|
aiSpendUsd: import("zod").ZodNumber;
|
|
101
102
|
emailRecipients: import("zod").ZodNumber;
|
|
103
|
+
smsSegments: import("zod").ZodNumber;
|
|
102
104
|
}, import("zod/v4/core").$strip>;
|
|
103
105
|
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
104
106
|
id: import("zod").ZodString;
|
|
@@ -125,6 +127,13 @@ export declare const publicContract: {
|
|
|
125
127
|
createdAt: import("zod").ZodDate;
|
|
126
128
|
expiresAt: import("zod").ZodDate;
|
|
127
129
|
}, import("zod/v4/core").$strip>>;
|
|
130
|
+
phoneNumbers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
131
|
+
id: import("zod").ZodString;
|
|
132
|
+
phoneNumber: import("zod").ZodString;
|
|
133
|
+
createdAt: import("zod").ZodDate;
|
|
134
|
+
verifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
135
|
+
consentedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
136
|
+
}, import("zod/v4/core").$strip>>;
|
|
128
137
|
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
129
138
|
id: import("zod").ZodString;
|
|
130
139
|
name: import("zod").ZodString;
|
|
@@ -185,10 +194,12 @@ export declare const publicContract: {
|
|
|
185
194
|
emailRecipients: import("zod").ZodNumber;
|
|
186
195
|
projects: import("zod").ZodNumber;
|
|
187
196
|
seats: import("zod").ZodNumber;
|
|
197
|
+
smsSegments: import("zod").ZodNumber;
|
|
188
198
|
}, import("zod/v4/core").$strip>;
|
|
189
199
|
usage: import("zod").ZodObject<{
|
|
190
200
|
aiSpendUsd: import("zod").ZodNumber;
|
|
191
201
|
emailRecipients: import("zod").ZodNumber;
|
|
202
|
+
smsSegments: import("zod").ZodNumber;
|
|
192
203
|
}, import("zod/v4/core").$strip>;
|
|
193
204
|
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
194
205
|
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -443,7 +454,7 @@ export declare const firstPartyContract: {
|
|
|
443
454
|
pending: "pending";
|
|
444
455
|
succeeded: "succeeded";
|
|
445
456
|
failed: "failed";
|
|
446
|
-
|
|
457
|
+
skipped: "skipped";
|
|
447
458
|
}>;
|
|
448
459
|
}, import("zod/v4/core").$strip>>;
|
|
449
460
|
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -690,6 +701,23 @@ export declare const firstPartyContract: {
|
|
|
690
701
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
691
702
|
url: import("zod").ZodURL;
|
|
692
703
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
704
|
+
removePhoneNumber: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
705
|
+
organizationId: import("zod").ZodString;
|
|
706
|
+
phoneNumberId: import("zod").ZodString;
|
|
707
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
708
|
+
requestPhoneNumberVerification: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
709
|
+
organizationId: import("zod").ZodString;
|
|
710
|
+
phoneNumber: import("zod").ZodString;
|
|
711
|
+
smsConsent: import("zod").ZodLiteral<true>;
|
|
712
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
713
|
+
expiresAt: import("zod").ZodDate;
|
|
714
|
+
phoneNumberId: import("zod").ZodString;
|
|
715
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
716
|
+
verifyPhoneNumber: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
717
|
+
organizationId: import("zod").ZodString;
|
|
718
|
+
phoneNumberId: import("zod").ZodString;
|
|
719
|
+
code: import("zod").ZodString;
|
|
720
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
693
721
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
694
722
|
name: import("zod").ZodString;
|
|
695
723
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -732,10 +760,12 @@ export declare const firstPartyContract: {
|
|
|
732
760
|
emailRecipients: import("zod").ZodNumber;
|
|
733
761
|
projects: import("zod").ZodNumber;
|
|
734
762
|
seats: import("zod").ZodNumber;
|
|
763
|
+
smsSegments: import("zod").ZodNumber;
|
|
735
764
|
}, import("zod/v4/core").$strip>;
|
|
736
765
|
usage: import("zod").ZodObject<{
|
|
737
766
|
aiSpendUsd: import("zod").ZodNumber;
|
|
738
767
|
emailRecipients: import("zod").ZodNumber;
|
|
768
|
+
smsSegments: import("zod").ZodNumber;
|
|
739
769
|
}, import("zod/v4/core").$strip>;
|
|
740
770
|
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
741
771
|
id: import("zod").ZodString;
|
|
@@ -762,6 +792,13 @@ export declare const firstPartyContract: {
|
|
|
762
792
|
createdAt: import("zod").ZodDate;
|
|
763
793
|
expiresAt: import("zod").ZodDate;
|
|
764
794
|
}, import("zod/v4/core").$strip>>;
|
|
795
|
+
phoneNumbers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
796
|
+
id: import("zod").ZodString;
|
|
797
|
+
phoneNumber: import("zod").ZodString;
|
|
798
|
+
createdAt: import("zod").ZodDate;
|
|
799
|
+
verifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
800
|
+
consentedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
801
|
+
}, import("zod/v4/core").$strip>>;
|
|
765
802
|
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
766
803
|
id: import("zod").ZodString;
|
|
767
804
|
name: import("zod").ZodString;
|
|
@@ -822,10 +859,12 @@ export declare const firstPartyContract: {
|
|
|
822
859
|
emailRecipients: import("zod").ZodNumber;
|
|
823
860
|
projects: import("zod").ZodNumber;
|
|
824
861
|
seats: import("zod").ZodNumber;
|
|
862
|
+
smsSegments: import("zod").ZodNumber;
|
|
825
863
|
}, import("zod/v4/core").$strip>;
|
|
826
864
|
usage: import("zod").ZodObject<{
|
|
827
865
|
aiSpendUsd: import("zod").ZodNumber;
|
|
828
866
|
emailRecipients: import("zod").ZodNumber;
|
|
867
|
+
smsSegments: import("zod").ZodNumber;
|
|
829
868
|
}, import("zod/v4/core").$strip>;
|
|
830
869
|
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
831
870
|
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1181,17 +1220,89 @@ export declare const contract: {
|
|
|
1181
1220
|
};
|
|
1182
1221
|
runtime: {
|
|
1183
1222
|
commit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1184
|
-
actionInvocations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1223
|
+
actionInvocations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1224
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1225
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1226
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1227
|
+
inputHash: import("zod").ZodString;
|
|
1228
|
+
name: import("zod").ZodString;
|
|
1229
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1230
|
+
slot: import("zod").ZodNumber;
|
|
1231
|
+
status: import("zod").ZodLiteral<"pending">;
|
|
1232
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1185
1233
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1186
1234
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1187
1235
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1188
1236
|
inputHash: import("zod").ZodString;
|
|
1189
1237
|
name: import("zod").ZodString;
|
|
1238
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1190
1239
|
slot: import("zod").ZodNumber;
|
|
1240
|
+
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
1241
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1242
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1243
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1244
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1245
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1246
|
+
inputHash: import("zod").ZodString;
|
|
1247
|
+
name: import("zod").ZodString;
|
|
1248
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1249
|
+
slot: import("zod").ZodNumber;
|
|
1250
|
+
failure: import("zod").ZodObject<{
|
|
1251
|
+
message: import("zod").ZodString;
|
|
1252
|
+
name: import("zod").ZodString;
|
|
1253
|
+
}, import("zod/v4/core").$strip>;
|
|
1254
|
+
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
1255
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1256
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
1257
|
+
correlationEntries: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1258
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1259
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1260
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1261
|
+
slot: import("zod").ZodNumber;
|
|
1262
|
+
key: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1263
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1264
|
+
streamName: import("zod").ZodString;
|
|
1265
|
+
streamNames: import("zod").ZodArray<import("zod").ZodString>;
|
|
1266
|
+
value: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1191
1267
|
}, import("zod/v4/core").$strip>>>;
|
|
1268
|
+
settled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
1269
|
+
signalInvocations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1270
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1271
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1272
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1273
|
+
slot: import("zod").ZodNumber;
|
|
1274
|
+
outcomeSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1275
|
+
status: import("zod").ZodLiteral<"closed">;
|
|
1276
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1277
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1278
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1279
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1280
|
+
slot: import("zod").ZodNumber;
|
|
1281
|
+
failure: import("zod").ZodObject<{
|
|
1282
|
+
message: import("zod").ZodString;
|
|
1283
|
+
name: import("zod").ZodString;
|
|
1284
|
+
}, import("zod/v4/core").$strip>;
|
|
1285
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1286
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1287
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1288
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1289
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1290
|
+
slot: import("zod").ZodNumber;
|
|
1291
|
+
outcomeSeq: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1292
|
+
selectedIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1293
|
+
status: import("zod").ZodLiteral<"open">;
|
|
1294
|
+
}, import("zod/v4/core").$strip>]>>>;
|
|
1192
1295
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1193
|
-
|
|
1194
|
-
|
|
1296
|
+
completeAction: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1297
|
+
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
1298
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1299
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1300
|
+
failure: import("zod").ZodObject<{
|
|
1301
|
+
message: import("zod").ZodString;
|
|
1302
|
+
name: import("zod").ZodString;
|
|
1303
|
+
}, import("zod/v4/core").$strip>;
|
|
1304
|
+
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
1305
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1195
1306
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1196
1307
|
failure: import("zod").ZodObject<{
|
|
1197
1308
|
message: import("zod").ZodString;
|
|
@@ -1201,7 +1312,7 @@ export declare const contract: {
|
|
|
1201
1312
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1202
1313
|
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1203
1314
|
status: import("zod").ZodLiteral<"succeeded">;
|
|
1204
|
-
}, import("zod/v4/core").$strip>]
|
|
1315
|
+
}, import("zod/v4/core").$strip>]>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1205
1316
|
generate: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1206
1317
|
frequencyPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1207
1318
|
instructions: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1304,57 +1415,272 @@ export declare const contract: {
|
|
|
1304
1415
|
type: import("zod").ZodLiteral<"other">;
|
|
1305
1416
|
}, import("zod/v4/core").$strip>], "type">>>;
|
|
1306
1417
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1307
|
-
|
|
1418
|
+
load: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1308
1419
|
context: import("zod").ZodObject<{
|
|
1309
|
-
|
|
1310
|
-
|
|
1420
|
+
actions: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1421
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1422
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1423
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1424
|
+
inputHash: import("zod").ZodString;
|
|
1425
|
+
name: import("zod").ZodString;
|
|
1426
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1311
1427
|
slot: import("zod").ZodNumber;
|
|
1312
|
-
|
|
1428
|
+
actionInvocationId: import("zod").ZodString;
|
|
1429
|
+
status: import("zod").ZodLiteral<"pending">;
|
|
1313
1430
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1431
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1432
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1433
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1434
|
+
inputHash: import("zod").ZodString;
|
|
1435
|
+
name: import("zod").ZodString;
|
|
1436
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1437
|
+
slot: import("zod").ZodNumber;
|
|
1314
1438
|
actionInvocationId: import("zod").ZodString;
|
|
1315
1439
|
failure: import("zod").ZodObject<{
|
|
1316
1440
|
message: import("zod").ZodString;
|
|
1317
1441
|
name: import("zod").ZodString;
|
|
1318
1442
|
}, import("zod/v4/core").$strip>;
|
|
1319
|
-
|
|
1443
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1320
1444
|
status: import("zod").ZodLiteral<"failed">;
|
|
1321
1445
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1329
|
-
automationEventId: import("zod").ZodString;
|
|
1330
|
-
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1446
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1447
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1448
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1449
|
+
inputHash: import("zod").ZodString;
|
|
1450
|
+
name: import("zod").ZodString;
|
|
1451
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1331
1452
|
slot: import("zod").ZodNumber;
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
nextBatch: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
1338
|
-
context: import("zod").ZodObject<{
|
|
1339
|
-
actionOutputs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1453
|
+
actionInvocationId: import("zod").ZodString;
|
|
1454
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1455
|
+
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
1456
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1457
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1340
1458
|
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1459
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1460
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1461
|
+
inputHash: import("zod").ZodString;
|
|
1462
|
+
name: import("zod").ZodString;
|
|
1463
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1464
|
+
slot: import("zod").ZodNumber;
|
|
1341
1465
|
actionInvocationId: import("zod").ZodString;
|
|
1466
|
+
failure: import("zod").ZodObject<{
|
|
1467
|
+
message: import("zod").ZodString;
|
|
1468
|
+
name: import("zod").ZodString;
|
|
1469
|
+
}, import("zod/v4/core").$strip>;
|
|
1470
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1471
|
+
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
1472
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1473
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1474
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1475
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1342
1476
|
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1343
1477
|
inputHash: import("zod").ZodString;
|
|
1344
1478
|
name: import("zod").ZodString;
|
|
1479
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1345
1480
|
slot: import("zod").ZodNumber;
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
}>;
|
|
1351
|
-
}, import("zod/v4/core").$strip>>;
|
|
1481
|
+
actionInvocationId: import("zod").ZodString;
|
|
1482
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1483
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1484
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1352
1485
|
contextId: import("zod").ZodString;
|
|
1353
1486
|
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1354
1487
|
automationEventId: import("zod").ZodString;
|
|
1488
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1355
1489
|
slot: import("zod").ZodNumber;
|
|
1356
1490
|
}, import("zod/v4/core").$strip>>;
|
|
1491
|
+
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1492
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1493
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1494
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1495
|
+
slot: import("zod").ZodNumber;
|
|
1496
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1497
|
+
signalInvocationId: import("zod").ZodString;
|
|
1498
|
+
selectedIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1499
|
+
status: import("zod").ZodLiteral<"open">;
|
|
1500
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1501
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1502
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1503
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1504
|
+
slot: import("zod").ZodNumber;
|
|
1505
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1506
|
+
signalInvocationId: import("zod").ZodString;
|
|
1507
|
+
status: import("zod").ZodLiteral<"closed">;
|
|
1508
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1509
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1510
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1511
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1512
|
+
slot: import("zod").ZodNumber;
|
|
1513
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1514
|
+
signalInvocationId: import("zod").ZodString;
|
|
1515
|
+
failure: import("zod").ZodObject<{
|
|
1516
|
+
message: import("zod").ZodString;
|
|
1517
|
+
name: import("zod").ZodString;
|
|
1518
|
+
}, import("zod/v4/core").$strip>;
|
|
1519
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1520
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1521
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1522
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1523
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1524
|
+
slot: import("zod").ZodNumber;
|
|
1525
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1526
|
+
signalInvocationId: import("zod").ZodString;
|
|
1527
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1528
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1357
1529
|
}, import("zod/v4/core").$strip>;
|
|
1530
|
+
finalAttempt: import("zod").ZodBoolean;
|
|
1531
|
+
targetAction: import("zod").ZodOptional<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1532
|
+
context: import("zod").ZodObject<{
|
|
1533
|
+
actionOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1534
|
+
actionInvocationId: import("zod").ZodString;
|
|
1535
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1536
|
+
slot: import("zod").ZodNumber;
|
|
1537
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1538
|
+
failure: import("zod").ZodObject<{
|
|
1539
|
+
message: import("zod").ZodString;
|
|
1540
|
+
name: import("zod").ZodString;
|
|
1541
|
+
}, import("zod/v4/core").$strip>;
|
|
1542
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1543
|
+
actionInvocationId: import("zod").ZodString;
|
|
1544
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1545
|
+
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
1546
|
+
slot: import("zod").ZodNumber;
|
|
1547
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1548
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1549
|
+
actionInvocationId: import("zod").ZodString;
|
|
1550
|
+
failure: import("zod").ZodObject<{
|
|
1551
|
+
message: import("zod").ZodString;
|
|
1552
|
+
name: import("zod").ZodString;
|
|
1553
|
+
}, import("zod/v4/core").$strip>;
|
|
1554
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1555
|
+
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
1556
|
+
slot: import("zod").ZodNumber;
|
|
1557
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1558
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1559
|
+
actionInvocationId: import("zod").ZodString;
|
|
1560
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1561
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1562
|
+
slot: import("zod").ZodNumber;
|
|
1563
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1564
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1565
|
+
contextId: import("zod").ZodString;
|
|
1566
|
+
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1567
|
+
automationEventId: import("zod").ZodString;
|
|
1568
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1569
|
+
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1570
|
+
slot: import("zod").ZodNumber;
|
|
1571
|
+
}, import("zod/v4/core").$strip>>;
|
|
1572
|
+
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1573
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1574
|
+
signalInvocationId: import("zod").ZodString;
|
|
1575
|
+
slot: import("zod").ZodNumber;
|
|
1576
|
+
selectedIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1577
|
+
status: import("zod").ZodLiteral<"open">;
|
|
1578
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1579
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1580
|
+
signalInvocationId: import("zod").ZodString;
|
|
1581
|
+
slot: import("zod").ZodNumber;
|
|
1582
|
+
status: import("zod").ZodLiteral<"closed">;
|
|
1583
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1584
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1585
|
+
signalInvocationId: import("zod").ZodString;
|
|
1586
|
+
slot: import("zod").ZodNumber;
|
|
1587
|
+
failure: import("zod").ZodObject<{
|
|
1588
|
+
message: import("zod").ZodString;
|
|
1589
|
+
name: import("zod").ZodString;
|
|
1590
|
+
}, import("zod/v4/core").$strip>;
|
|
1591
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1592
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1593
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1594
|
+
signalInvocationId: import("zod").ZodString;
|
|
1595
|
+
slot: import("zod").ZodNumber;
|
|
1596
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1597
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1598
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1599
|
+
}, import("zod/v4/core").$strip>;
|
|
1600
|
+
id: import("zod").ZodString;
|
|
1601
|
+
slot: import("zod").ZodNumber;
|
|
1602
|
+
status: import("zod").ZodLiteral<"pending">;
|
|
1603
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1604
|
+
id: import("zod").ZodString;
|
|
1605
|
+
slot: import("zod").ZodNumber;
|
|
1606
|
+
status: import("zod").ZodEnum<{
|
|
1607
|
+
succeeded: "succeeded";
|
|
1608
|
+
failed: "failed";
|
|
1609
|
+
skipped: "skipped";
|
|
1610
|
+
}>;
|
|
1611
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1612
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1613
|
+
loadValues: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1614
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1615
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1616
|
+
signalDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
1617
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1618
|
+
actionOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1619
|
+
actionInvocationId: import("zod").ZodString;
|
|
1620
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1621
|
+
slot: import("zod").ZodNumber;
|
|
1622
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1623
|
+
failure: import("zod").ZodObject<{
|
|
1624
|
+
message: import("zod").ZodString;
|
|
1625
|
+
name: import("zod").ZodString;
|
|
1626
|
+
}, import("zod/v4/core").$strip>;
|
|
1627
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1628
|
+
actionInvocationId: import("zod").ZodString;
|
|
1629
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1630
|
+
reason: import("zod").ZodLiteral<"closed-dependency">;
|
|
1631
|
+
slot: import("zod").ZodNumber;
|
|
1632
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1633
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1634
|
+
actionInvocationId: import("zod").ZodString;
|
|
1635
|
+
failure: import("zod").ZodObject<{
|
|
1636
|
+
message: import("zod").ZodString;
|
|
1637
|
+
name: import("zod").ZodString;
|
|
1638
|
+
}, import("zod/v4/core").$strip>;
|
|
1639
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1640
|
+
reason: import("zod").ZodLiteral<"failed-dependency">;
|
|
1641
|
+
slot: import("zod").ZodNumber;
|
|
1642
|
+
status: import("zod").ZodLiteral<"skipped">;
|
|
1643
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1644
|
+
actionInvocationId: import("zod").ZodString;
|
|
1645
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1646
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1647
|
+
slot: import("zod").ZodNumber;
|
|
1648
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1649
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1650
|
+
contextId: import("zod").ZodString;
|
|
1651
|
+
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1652
|
+
automationEventId: import("zod").ZodString;
|
|
1653
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1654
|
+
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1655
|
+
slot: import("zod").ZodNumber;
|
|
1656
|
+
}, import("zod/v4/core").$strip>>;
|
|
1657
|
+
signalOutputs: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodObject<{
|
|
1658
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1659
|
+
signalInvocationId: import("zod").ZodString;
|
|
1660
|
+
slot: import("zod").ZodNumber;
|
|
1661
|
+
selectedIndex: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1662
|
+
status: import("zod").ZodLiteral<"open">;
|
|
1663
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1664
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1665
|
+
signalInvocationId: import("zod").ZodString;
|
|
1666
|
+
slot: import("zod").ZodNumber;
|
|
1667
|
+
status: import("zod").ZodLiteral<"closed">;
|
|
1668
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1669
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1670
|
+
signalInvocationId: import("zod").ZodString;
|
|
1671
|
+
slot: import("zod").ZodNumber;
|
|
1672
|
+
failure: import("zod").ZodObject<{
|
|
1673
|
+
message: import("zod").ZodString;
|
|
1674
|
+
name: import("zod").ZodString;
|
|
1675
|
+
}, import("zod/v4/core").$strip>;
|
|
1676
|
+
status: import("zod").ZodLiteral<"failed">;
|
|
1677
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1678
|
+
outcomeSeq: import("zod").ZodNumber;
|
|
1679
|
+
signalInvocationId: import("zod").ZodString;
|
|
1680
|
+
slot: import("zod").ZodNumber;
|
|
1681
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
1682
|
+
status: import("zod").ZodLiteral<"succeeded">;
|
|
1683
|
+
}, import("zod/v4/core").$strip>]>>;
|
|
1358
1684
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1359
1685
|
resolveAccountInput: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1360
1686
|
binding: import("zod").ZodString;
|
|
@@ -1378,6 +1704,13 @@ export declare const contract: {
|
|
|
1378
1704
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1379
1705
|
id: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1380
1706
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1707
|
+
sendSms: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1708
|
+
deliveryIndex: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
1709
|
+
text: import("zod").ZodString;
|
|
1710
|
+
to: import("zod").ZodDefault<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodLiteral<"*">]>>;
|
|
1711
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1712
|
+
ids: import("zod").ZodArray<import("zod").ZodString>;
|
|
1713
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1381
1714
|
};
|
|
1382
1715
|
account: {
|
|
1383
1716
|
beginConnection: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
@@ -1540,7 +1873,7 @@ export declare const contract: {
|
|
|
1540
1873
|
pending: "pending";
|
|
1541
1874
|
succeeded: "succeeded";
|
|
1542
1875
|
failed: "failed";
|
|
1543
|
-
|
|
1876
|
+
skipped: "skipped";
|
|
1544
1877
|
}>;
|
|
1545
1878
|
}, import("zod/v4/core").$strip>>;
|
|
1546
1879
|
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -1679,6 +2012,23 @@ export declare const contract: {
|
|
|
1679
2012
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1680
2013
|
url: import("zod").ZodURL;
|
|
1681
2014
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2015
|
+
removePhoneNumber: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2016
|
+
organizationId: import("zod").ZodString;
|
|
2017
|
+
phoneNumberId: import("zod").ZodString;
|
|
2018
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
2019
|
+
requestPhoneNumberVerification: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2020
|
+
organizationId: import("zod").ZodString;
|
|
2021
|
+
phoneNumber: import("zod").ZodString;
|
|
2022
|
+
smsConsent: import("zod").ZodLiteral<true>;
|
|
2023
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2024
|
+
expiresAt: import("zod").ZodDate;
|
|
2025
|
+
phoneNumberId: import("zod").ZodString;
|
|
2026
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
2027
|
+
verifyPhoneNumber: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
2028
|
+
organizationId: import("zod").ZodString;
|
|
2029
|
+
phoneNumberId: import("zod").ZodString;
|
|
2030
|
+
code: import("zod").ZodString;
|
|
2031
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1682
2032
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1683
2033
|
name: import("zod").ZodString;
|
|
1684
2034
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -1721,10 +2071,12 @@ export declare const contract: {
|
|
|
1721
2071
|
emailRecipients: import("zod").ZodNumber;
|
|
1722
2072
|
projects: import("zod").ZodNumber;
|
|
1723
2073
|
seats: import("zod").ZodNumber;
|
|
2074
|
+
smsSegments: import("zod").ZodNumber;
|
|
1724
2075
|
}, import("zod/v4/core").$strip>;
|
|
1725
2076
|
usage: import("zod").ZodObject<{
|
|
1726
2077
|
aiSpendUsd: import("zod").ZodNumber;
|
|
1727
2078
|
emailRecipients: import("zod").ZodNumber;
|
|
2079
|
+
smsSegments: import("zod").ZodNumber;
|
|
1728
2080
|
}, import("zod/v4/core").$strip>;
|
|
1729
2081
|
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1730
2082
|
id: import("zod").ZodString;
|
|
@@ -1751,6 +2103,13 @@ export declare const contract: {
|
|
|
1751
2103
|
createdAt: import("zod").ZodDate;
|
|
1752
2104
|
expiresAt: import("zod").ZodDate;
|
|
1753
2105
|
}, import("zod/v4/core").$strip>>;
|
|
2106
|
+
phoneNumbers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2107
|
+
id: import("zod").ZodString;
|
|
2108
|
+
phoneNumber: import("zod").ZodString;
|
|
2109
|
+
createdAt: import("zod").ZodDate;
|
|
2110
|
+
verifiedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
2111
|
+
consentedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
2112
|
+
}, import("zod/v4/core").$strip>>;
|
|
1754
2113
|
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1755
2114
|
id: import("zod").ZodString;
|
|
1756
2115
|
name: import("zod").ZodString;
|
|
@@ -1811,10 +2170,12 @@ export declare const contract: {
|
|
|
1811
2170
|
emailRecipients: import("zod").ZodNumber;
|
|
1812
2171
|
projects: import("zod").ZodNumber;
|
|
1813
2172
|
seats: import("zod").ZodNumber;
|
|
2173
|
+
smsSegments: import("zod").ZodNumber;
|
|
1814
2174
|
}, import("zod/v4/core").$strip>;
|
|
1815
2175
|
usage: import("zod").ZodObject<{
|
|
1816
2176
|
aiSpendUsd: import("zod").ZodNumber;
|
|
1817
2177
|
emailRecipients: import("zod").ZodNumber;
|
|
2178
|
+
smsSegments: import("zod").ZodNumber;
|
|
1818
2179
|
}, import("zod/v4/core").$strip>;
|
|
1819
2180
|
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
1820
2181
|
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|