@automate.ax/api-contract 0.6.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/deployment.d.ts +10 -6
- package/dist/deployment.js +32 -7
- package/dist/events/google-calendar.d.ts +4 -0
- package/dist/events/google-calendar.js +16 -0
- package/dist/events/google-forms.d.ts +18 -0
- package/dist/events/google-forms.js +32 -0
- package/dist/events/index.d.ts +16 -0
- package/dist/events/index.js +4 -0
- package/dist/index.d.ts +757 -101
- package/dist/index.js +53 -5
- package/dist/runtime.d.ts +5 -0
- package/dist/runtime.js +5 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,599 @@
|
|
|
1
1
|
export { AUTOMATION_SDK_VERSION, deploymentTriggerInfoSchema, type DeploymentTriggerInfo, } from "./deployment.js";
|
|
2
|
+
export { runtimeContract } from "./runtime.js";
|
|
2
3
|
export { createdOrganizationApiKeyOutputSchema, organizationApiKeyOutputSchema, } from "./api-key.js";
|
|
3
4
|
export { integrationServiceManifestSchema, type IntegrationServiceManifest, } from "./authorization.js";
|
|
4
5
|
export { activeSubscriptionOutputSchema, createdInvitationOutputSchema, organizationDetailsOutputSchema, organizationInvitationOutputSchema, organizationMemberOutputSchema, organizationProjectOutputSchema, organizationRoleSchema, organizationSummaryOutputSchema, publicOrganizationOutputSchema, } from "./org.js";
|
|
5
6
|
export { projectOutputSchema, projectWithOrganizationOutputSchema, } from "./project.js";
|
|
6
7
|
export { reasonableNameSchema } from "./schemas.js";
|
|
7
8
|
export { userOutputSchema } from "./auth.js";
|
|
8
|
-
|
|
9
|
+
/** Procedures exposed by the public Node client and OpenAPI document. */
|
|
10
|
+
export declare const publicContract: {
|
|
11
|
+
apiKey: {
|
|
12
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
13
|
+
organizationId: import("zod").ZodString;
|
|
14
|
+
name: import("zod").ZodString;
|
|
15
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
16
|
+
id: import("zod").ZodString;
|
|
17
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
18
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
19
|
+
createdAt: import("zod").ZodDate;
|
|
20
|
+
updatedAt: import("zod").ZodDate;
|
|
21
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
22
|
+
key: import("zod").ZodString;
|
|
23
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
24
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
25
|
+
keyId: import("zod").ZodString;
|
|
26
|
+
organizationId: import("zod").ZodString;
|
|
27
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
28
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
29
|
+
organizationId: import("zod").ZodString;
|
|
30
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
31
|
+
id: import("zod").ZodString;
|
|
32
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
33
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
34
|
+
createdAt: import("zod").ZodDate;
|
|
35
|
+
updatedAt: import("zod").ZodDate;
|
|
36
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
37
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
38
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
39
|
+
keyId: import("zod").ZodString;
|
|
40
|
+
name: import("zod").ZodString;
|
|
41
|
+
organizationId: import("zod").ZodString;
|
|
42
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
43
|
+
id: import("zod").ZodString;
|
|
44
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
45
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
46
|
+
createdAt: import("zod").ZodDate;
|
|
47
|
+
updatedAt: import("zod").ZodDate;
|
|
48
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
49
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
50
|
+
};
|
|
51
|
+
org: {
|
|
52
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
53
|
+
name: import("zod").ZodString;
|
|
54
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
55
|
+
id: import("zod").ZodString;
|
|
56
|
+
name: import("zod").ZodString;
|
|
57
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
58
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
59
|
+
organizationId: import("zod").ZodString;
|
|
60
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
61
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
62
|
+
organizationId: import("zod").ZodString;
|
|
63
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
64
|
+
id: import("zod").ZodString;
|
|
65
|
+
name: import("zod").ZodString;
|
|
66
|
+
logo: import("zod").ZodNullable<import("zod").ZodString>;
|
|
67
|
+
metadata: import("zod").ZodNullable<import("zod").ZodString>;
|
|
68
|
+
createdAt: import("zod").ZodDate;
|
|
69
|
+
role: import("zod").ZodEnum<{
|
|
70
|
+
member: "member";
|
|
71
|
+
admin: "admin";
|
|
72
|
+
owner: "owner";
|
|
73
|
+
}>;
|
|
74
|
+
memberCount: import("zod").ZodNumber;
|
|
75
|
+
pendingInvitationCount: import("zod").ZodNumber;
|
|
76
|
+
projectCount: import("zod").ZodNumber;
|
|
77
|
+
activeSubscription: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
78
|
+
id: import("zod").ZodString;
|
|
79
|
+
plan: import("zod").ZodString;
|
|
80
|
+
status: import("zod").ZodString;
|
|
81
|
+
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
82
|
+
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
83
|
+
}, import("zod/v4/core").$strip>>;
|
|
84
|
+
plan: import("zod").ZodEnum<{
|
|
85
|
+
free: "free";
|
|
86
|
+
pro: "pro";
|
|
87
|
+
enterprise: "enterprise";
|
|
88
|
+
}>;
|
|
89
|
+
limits: import("zod").ZodObject<{
|
|
90
|
+
projects: import("zod").ZodNumber;
|
|
91
|
+
seats: import("zod").ZodNumber;
|
|
92
|
+
}, import("zod/v4/core").$strip>;
|
|
93
|
+
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
94
|
+
id: import("zod").ZodString;
|
|
95
|
+
userId: import("zod").ZodString;
|
|
96
|
+
role: import("zod").ZodEnum<{
|
|
97
|
+
member: "member";
|
|
98
|
+
admin: "admin";
|
|
99
|
+
owner: "owner";
|
|
100
|
+
}>;
|
|
101
|
+
createdAt: import("zod").ZodDate;
|
|
102
|
+
email: import("zod").ZodEmail;
|
|
103
|
+
name: import("zod").ZodString;
|
|
104
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
105
|
+
}, import("zod/v4/core").$strip>>;
|
|
106
|
+
invitations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
107
|
+
id: import("zod").ZodString;
|
|
108
|
+
email: import("zod").ZodEmail;
|
|
109
|
+
role: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
110
|
+
member: "member";
|
|
111
|
+
admin: "admin";
|
|
112
|
+
owner: "owner";
|
|
113
|
+
}>>;
|
|
114
|
+
status: import("zod").ZodString;
|
|
115
|
+
createdAt: import("zod").ZodDate;
|
|
116
|
+
expiresAt: import("zod").ZodDate;
|
|
117
|
+
}, import("zod/v4/core").$strip>>;
|
|
118
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
119
|
+
id: import("zod").ZodString;
|
|
120
|
+
name: import("zod").ZodString;
|
|
121
|
+
createdAt: import("zod").ZodDate;
|
|
122
|
+
}, import("zod/v4/core").$strip>>;
|
|
123
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
124
|
+
invite: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
125
|
+
organizationId: import("zod").ZodString;
|
|
126
|
+
email: import("zod").ZodEmail;
|
|
127
|
+
role: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
128
|
+
member: "member";
|
|
129
|
+
admin: "admin";
|
|
130
|
+
owner: "owner";
|
|
131
|
+
}>>;
|
|
132
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
133
|
+
id: import("zod").ZodString;
|
|
134
|
+
email: import("zod").ZodEmail;
|
|
135
|
+
role: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
136
|
+
member: "member";
|
|
137
|
+
admin: "admin";
|
|
138
|
+
owner: "owner";
|
|
139
|
+
}>>;
|
|
140
|
+
status: import("zod").ZodString;
|
|
141
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
142
|
+
leave: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
143
|
+
organizationId: import("zod").ZodString;
|
|
144
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
145
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodDefault<import("zod").ZodObject<{
|
|
146
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
147
|
+
}, import("zod/v4/core").$strip>>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
148
|
+
id: import("zod").ZodString;
|
|
149
|
+
name: import("zod").ZodString;
|
|
150
|
+
logo: import("zod").ZodNullable<import("zod").ZodString>;
|
|
151
|
+
metadata: import("zod").ZodNullable<import("zod").ZodString>;
|
|
152
|
+
createdAt: import("zod").ZodDate;
|
|
153
|
+
role: import("zod").ZodEnum<{
|
|
154
|
+
member: "member";
|
|
155
|
+
admin: "admin";
|
|
156
|
+
owner: "owner";
|
|
157
|
+
}>;
|
|
158
|
+
memberCount: import("zod").ZodNumber;
|
|
159
|
+
pendingInvitationCount: import("zod").ZodNumber;
|
|
160
|
+
projectCount: import("zod").ZodNumber;
|
|
161
|
+
activeSubscription: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
162
|
+
id: import("zod").ZodString;
|
|
163
|
+
plan: import("zod").ZodString;
|
|
164
|
+
status: import("zod").ZodString;
|
|
165
|
+
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
166
|
+
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
167
|
+
}, import("zod/v4/core").$strip>>;
|
|
168
|
+
plan: import("zod").ZodEnum<{
|
|
169
|
+
free: "free";
|
|
170
|
+
pro: "pro";
|
|
171
|
+
enterprise: "enterprise";
|
|
172
|
+
}>;
|
|
173
|
+
limits: import("zod").ZodObject<{
|
|
174
|
+
projects: import("zod").ZodNumber;
|
|
175
|
+
seats: import("zod").ZodNumber;
|
|
176
|
+
}, import("zod/v4/core").$strip>;
|
|
177
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
178
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
179
|
+
organizationId: import("zod").ZodString;
|
|
180
|
+
memberIdOrEmail: import("zod").ZodString;
|
|
181
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
182
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
183
|
+
organizationId: import("zod").ZodString;
|
|
184
|
+
name: import("zod").ZodString;
|
|
185
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
186
|
+
};
|
|
187
|
+
project: {
|
|
188
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
189
|
+
organizationId: import("zod").ZodString;
|
|
190
|
+
name: import("zod").ZodString;
|
|
191
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
192
|
+
id: import("zod").ZodString;
|
|
193
|
+
name: import("zod").ZodString;
|
|
194
|
+
organizationId: import("zod").ZodString;
|
|
195
|
+
createdAt: import("zod").ZodDate;
|
|
196
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
197
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
198
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
199
|
+
projectId: import("zod").ZodString;
|
|
200
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
201
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
202
|
+
projectId: import("zod").ZodString;
|
|
203
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
204
|
+
id: import("zod").ZodString;
|
|
205
|
+
name: import("zod").ZodString;
|
|
206
|
+
organizationId: import("zod").ZodString;
|
|
207
|
+
createdAt: import("zod").ZodDate;
|
|
208
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
209
|
+
org: import("zod").ZodObject<{
|
|
210
|
+
id: import("zod").ZodString;
|
|
211
|
+
name: import("zod").ZodString;
|
|
212
|
+
}, import("zod/v4/core").$strip>;
|
|
213
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
214
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
215
|
+
organizationId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
216
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
217
|
+
}, import("zod/v4/core").$strip>>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
218
|
+
id: import("zod").ZodString;
|
|
219
|
+
name: import("zod").ZodString;
|
|
220
|
+
organizationId: import("zod").ZodString;
|
|
221
|
+
createdAt: import("zod").ZodDate;
|
|
222
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
223
|
+
org: import("zod").ZodObject<{
|
|
224
|
+
id: import("zod").ZodString;
|
|
225
|
+
name: import("zod").ZodString;
|
|
226
|
+
}, import("zod/v4/core").$strip>;
|
|
227
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
228
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
229
|
+
projectId: import("zod").ZodString;
|
|
230
|
+
name: import("zod").ZodString;
|
|
231
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
232
|
+
};
|
|
233
|
+
session: {
|
|
234
|
+
me: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
235
|
+
id: import("zod").ZodString;
|
|
236
|
+
name: import("zod").ZodString;
|
|
237
|
+
email: import("zod").ZodEmail;
|
|
238
|
+
emailVerified: import("zod").ZodBoolean;
|
|
239
|
+
image: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
240
|
+
createdAt: import("zod").ZodDate;
|
|
241
|
+
updatedAt: import("zod").ZodDate;
|
|
242
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
/** Procedures used by first-party control-plane clients. */
|
|
246
|
+
export declare const firstPartyContract: {
|
|
247
|
+
authorization: {
|
|
248
|
+
beginConnection: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
249
|
+
binding: import("zod").ZodString;
|
|
250
|
+
deploymentId: import("zod").ZodString;
|
|
251
|
+
serviceId: import("zod").ZodString;
|
|
252
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
253
|
+
url: import("zod").ZodURL;
|
|
254
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
255
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
256
|
+
deploymentId: import("zod").ZodString;
|
|
257
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
258
|
+
accounts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
259
|
+
checkedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
260
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
261
|
+
code: import("zod").ZodString;
|
|
262
|
+
message: import("zod").ZodString;
|
|
263
|
+
}, import("zod/v4/core").$strip>>;
|
|
264
|
+
id: import("zod").ZodString;
|
|
265
|
+
label: import("zod").ZodString;
|
|
266
|
+
scopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
267
|
+
serviceId: import("zod").ZodString;
|
|
268
|
+
serviceSub: import("zod").ZodString;
|
|
269
|
+
}, import("zod/v4/core").$strip>>;
|
|
270
|
+
requirements: import("zod").ZodArray<import("zod").ZodObject<{
|
|
271
|
+
accountId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
272
|
+
binding: import("zod").ZodString;
|
|
273
|
+
eligibleAccountIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
274
|
+
minimalScopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
275
|
+
requiredScopes: import("zod").ZodArray<import("zod").ZodType<string | {
|
|
276
|
+
requirements: (string | /*elided*/ any)[];
|
|
277
|
+
type: "and" | "or";
|
|
278
|
+
}, unknown, import("zod/v4/core").$ZodTypeInternals<string | {
|
|
279
|
+
requirements: (string | /*elided*/ any)[];
|
|
280
|
+
type: "and" | "or";
|
|
281
|
+
}, unknown>>>;
|
|
282
|
+
satisfied: import("zod").ZodBoolean;
|
|
283
|
+
serviceId: import("zod").ZodString;
|
|
284
|
+
}, import("zod/v4/core").$strip>>;
|
|
285
|
+
services: import("zod").ZodArray<import("zod").ZodObject<{
|
|
286
|
+
connection: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
287
|
+
type: import("zod").ZodLiteral<"redirect">;
|
|
288
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
289
|
+
fields: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
290
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
291
|
+
label: import("zod").ZodString;
|
|
292
|
+
name: import("zod").ZodString;
|
|
293
|
+
required: import("zod").ZodBoolean;
|
|
294
|
+
default: import("zod").ZodOptional<import("zod").ZodString>;
|
|
295
|
+
input: import("zod").ZodEnum<{
|
|
296
|
+
email: "email";
|
|
297
|
+
text: "text";
|
|
298
|
+
url: "url";
|
|
299
|
+
}>;
|
|
300
|
+
placeholder: import("zod").ZodOptional<import("zod").ZodString>;
|
|
301
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
302
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
303
|
+
label: import("zod").ZodString;
|
|
304
|
+
name: import("zod").ZodString;
|
|
305
|
+
required: import("zod").ZodBoolean;
|
|
306
|
+
input: import("zod").ZodLiteral<"password">;
|
|
307
|
+
placeholder: import("zod").ZodOptional<import("zod").ZodString>;
|
|
308
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
309
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
310
|
+
label: import("zod").ZodString;
|
|
311
|
+
name: import("zod").ZodString;
|
|
312
|
+
required: import("zod").ZodBoolean;
|
|
313
|
+
default: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
314
|
+
input: import("zod").ZodLiteral<"number">;
|
|
315
|
+
placeholder: import("zod").ZodOptional<import("zod").ZodString>;
|
|
316
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
317
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
318
|
+
label: import("zod").ZodString;
|
|
319
|
+
name: import("zod").ZodString;
|
|
320
|
+
required: import("zod").ZodBoolean;
|
|
321
|
+
default: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
322
|
+
input: import("zod").ZodLiteral<"boolean">;
|
|
323
|
+
}, import("zod/v4/core").$strip>], "input">>;
|
|
324
|
+
type: import("zod").ZodLiteral<"form">;
|
|
325
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
326
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
327
|
+
name: import("zod").ZodString;
|
|
328
|
+
id: import("zod").ZodString;
|
|
329
|
+
}, import("zod/v4/core").$strip>>;
|
|
330
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
331
|
+
selectAccount: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
332
|
+
accountId: import("zod").ZodString;
|
|
333
|
+
binding: import("zod").ZodString;
|
|
334
|
+
deploymentId: import("zod").ZodString;
|
|
335
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
336
|
+
submitCredentials: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
337
|
+
binding: import("zod").ZodString;
|
|
338
|
+
data: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>>;
|
|
339
|
+
deploymentId: import("zod").ZodString;
|
|
340
|
+
serviceId: import("zod").ZodString;
|
|
341
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
342
|
+
};
|
|
343
|
+
deployment: {
|
|
344
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
345
|
+
artifact: import("zod").ZodCustom<Blob, Blob>;
|
|
346
|
+
manifest: import("zod").ZodArray<import("zod").ZodObject<{
|
|
347
|
+
entrypoint: import("zod").ZodString;
|
|
348
|
+
identityKey: import("zod").ZodString;
|
|
349
|
+
}, import("zod/v4/core").$strip>>;
|
|
350
|
+
mode: import("zod").ZodEnum<{
|
|
351
|
+
reconcile: "reconcile";
|
|
352
|
+
upsert: "upsert";
|
|
353
|
+
}>;
|
|
354
|
+
projectId: import("zod").ZodString;
|
|
355
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
356
|
+
id: import("zod").ZodString;
|
|
357
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
358
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
359
|
+
deploymentId: import("zod").ZodString;
|
|
360
|
+
projectId: import("zod").ZodString;
|
|
361
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
362
|
+
automations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
363
|
+
description: import("zod").ZodString;
|
|
364
|
+
identityKey: import("zod").ZodString;
|
|
365
|
+
triggers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
366
|
+
details: import("zod").ZodArray<import("zod").ZodObject<{
|
|
367
|
+
label: import("zod").ZodString;
|
|
368
|
+
value: import("zod").ZodString;
|
|
369
|
+
}, import("zod/v4/core").$strip>>;
|
|
370
|
+
name: import("zod").ZodString;
|
|
371
|
+
type: import("zod").ZodString;
|
|
372
|
+
}, import("zod/v4/core").$strip>>;
|
|
373
|
+
}, import("zod/v4/core").$strip>>;
|
|
374
|
+
id: import("zod").ZodString;
|
|
375
|
+
job: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
376
|
+
attempts: import("zod").ZodNumber;
|
|
377
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
378
|
+
maxAttempts: import("zod").ZodNumber;
|
|
379
|
+
nextRunAt: import("zod").ZodDate;
|
|
380
|
+
}, import("zod/v4/core").$strip>>;
|
|
381
|
+
project: import("zod").ZodObject<{
|
|
382
|
+
id: import("zod").ZodString;
|
|
383
|
+
name: import("zod").ZodString;
|
|
384
|
+
}, import("zod/v4/core").$strip>;
|
|
385
|
+
status: import("zod").ZodEnum<{
|
|
386
|
+
planning: "planning";
|
|
387
|
+
awaiting_authorization: "awaiting_authorization";
|
|
388
|
+
configuring: "configuring";
|
|
389
|
+
publishing: "publishing";
|
|
390
|
+
succeeded: "succeeded";
|
|
391
|
+
failed: "failed";
|
|
392
|
+
}>;
|
|
393
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
394
|
+
};
|
|
395
|
+
org: {
|
|
396
|
+
canInvite: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
397
|
+
organizationId: import("zod").ZodString;
|
|
398
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodBoolean, Record<never, never>, Record<never, never>>;
|
|
399
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
400
|
+
name: import("zod").ZodString;
|
|
401
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
402
|
+
id: import("zod").ZodString;
|
|
403
|
+
name: import("zod").ZodString;
|
|
404
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
405
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
406
|
+
organizationId: import("zod").ZodString;
|
|
407
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
408
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
409
|
+
organizationId: import("zod").ZodString;
|
|
410
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
411
|
+
id: import("zod").ZodString;
|
|
412
|
+
name: import("zod").ZodString;
|
|
413
|
+
logo: import("zod").ZodNullable<import("zod").ZodString>;
|
|
414
|
+
metadata: import("zod").ZodNullable<import("zod").ZodString>;
|
|
415
|
+
createdAt: import("zod").ZodDate;
|
|
416
|
+
role: import("zod").ZodEnum<{
|
|
417
|
+
member: "member";
|
|
418
|
+
admin: "admin";
|
|
419
|
+
owner: "owner";
|
|
420
|
+
}>;
|
|
421
|
+
memberCount: import("zod").ZodNumber;
|
|
422
|
+
pendingInvitationCount: import("zod").ZodNumber;
|
|
423
|
+
projectCount: import("zod").ZodNumber;
|
|
424
|
+
activeSubscription: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
425
|
+
id: import("zod").ZodString;
|
|
426
|
+
plan: import("zod").ZodString;
|
|
427
|
+
status: import("zod").ZodString;
|
|
428
|
+
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
429
|
+
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
430
|
+
}, import("zod/v4/core").$strip>>;
|
|
431
|
+
plan: import("zod").ZodEnum<{
|
|
432
|
+
free: "free";
|
|
433
|
+
pro: "pro";
|
|
434
|
+
enterprise: "enterprise";
|
|
435
|
+
}>;
|
|
436
|
+
limits: import("zod").ZodObject<{
|
|
437
|
+
projects: import("zod").ZodNumber;
|
|
438
|
+
seats: import("zod").ZodNumber;
|
|
439
|
+
}, import("zod/v4/core").$strip>;
|
|
440
|
+
members: import("zod").ZodArray<import("zod").ZodObject<{
|
|
441
|
+
id: import("zod").ZodString;
|
|
442
|
+
userId: import("zod").ZodString;
|
|
443
|
+
role: import("zod").ZodEnum<{
|
|
444
|
+
member: "member";
|
|
445
|
+
admin: "admin";
|
|
446
|
+
owner: "owner";
|
|
447
|
+
}>;
|
|
448
|
+
createdAt: import("zod").ZodDate;
|
|
449
|
+
email: import("zod").ZodEmail;
|
|
450
|
+
name: import("zod").ZodString;
|
|
451
|
+
image: import("zod").ZodNullable<import("zod").ZodString>;
|
|
452
|
+
}, import("zod/v4/core").$strip>>;
|
|
453
|
+
invitations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
454
|
+
id: import("zod").ZodString;
|
|
455
|
+
email: import("zod").ZodEmail;
|
|
456
|
+
role: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
457
|
+
member: "member";
|
|
458
|
+
admin: "admin";
|
|
459
|
+
owner: "owner";
|
|
460
|
+
}>>;
|
|
461
|
+
status: import("zod").ZodString;
|
|
462
|
+
createdAt: import("zod").ZodDate;
|
|
463
|
+
expiresAt: import("zod").ZodDate;
|
|
464
|
+
}, import("zod/v4/core").$strip>>;
|
|
465
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
466
|
+
id: import("zod").ZodString;
|
|
467
|
+
name: import("zod").ZodString;
|
|
468
|
+
createdAt: import("zod").ZodDate;
|
|
469
|
+
}, import("zod/v4/core").$strip>>;
|
|
470
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
471
|
+
invite: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
472
|
+
organizationId: import("zod").ZodString;
|
|
473
|
+
email: import("zod").ZodEmail;
|
|
474
|
+
role: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
475
|
+
member: "member";
|
|
476
|
+
admin: "admin";
|
|
477
|
+
owner: "owner";
|
|
478
|
+
}>>;
|
|
479
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
480
|
+
id: import("zod").ZodString;
|
|
481
|
+
email: import("zod").ZodEmail;
|
|
482
|
+
role: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
483
|
+
member: "member";
|
|
484
|
+
admin: "admin";
|
|
485
|
+
owner: "owner";
|
|
486
|
+
}>>;
|
|
487
|
+
status: import("zod").ZodString;
|
|
488
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
489
|
+
leave: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
490
|
+
organizationId: import("zod").ZodString;
|
|
491
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
492
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodDefault<import("zod").ZodObject<{
|
|
493
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
494
|
+
}, import("zod/v4/core").$strip>>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
495
|
+
id: import("zod").ZodString;
|
|
496
|
+
name: import("zod").ZodString;
|
|
497
|
+
logo: import("zod").ZodNullable<import("zod").ZodString>;
|
|
498
|
+
metadata: import("zod").ZodNullable<import("zod").ZodString>;
|
|
499
|
+
createdAt: import("zod").ZodDate;
|
|
500
|
+
role: import("zod").ZodEnum<{
|
|
501
|
+
member: "member";
|
|
502
|
+
admin: "admin";
|
|
503
|
+
owner: "owner";
|
|
504
|
+
}>;
|
|
505
|
+
memberCount: import("zod").ZodNumber;
|
|
506
|
+
pendingInvitationCount: import("zod").ZodNumber;
|
|
507
|
+
projectCount: import("zod").ZodNumber;
|
|
508
|
+
activeSubscription: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
509
|
+
id: import("zod").ZodString;
|
|
510
|
+
plan: import("zod").ZodString;
|
|
511
|
+
status: import("zod").ZodString;
|
|
512
|
+
periodEnd: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
513
|
+
cancelAtPeriodEnd: import("zod").ZodBoolean;
|
|
514
|
+
}, import("zod/v4/core").$strip>>;
|
|
515
|
+
plan: import("zod").ZodEnum<{
|
|
516
|
+
free: "free";
|
|
517
|
+
pro: "pro";
|
|
518
|
+
enterprise: "enterprise";
|
|
519
|
+
}>;
|
|
520
|
+
limits: import("zod").ZodObject<{
|
|
521
|
+
projects: import("zod").ZodNumber;
|
|
522
|
+
seats: import("zod").ZodNumber;
|
|
523
|
+
}, import("zod/v4/core").$strip>;
|
|
524
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
525
|
+
remove: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
526
|
+
organizationId: import("zod").ZodString;
|
|
527
|
+
memberIdOrEmail: import("zod").ZodString;
|
|
528
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
529
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
530
|
+
organizationId: import("zod").ZodString;
|
|
531
|
+
name: import("zod").ZodString;
|
|
532
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
533
|
+
};
|
|
534
|
+
project: {
|
|
535
|
+
canCreate: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
536
|
+
organizationId: import("zod").ZodString;
|
|
537
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodBoolean, Record<never, never>, Record<never, never>>;
|
|
538
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
539
|
+
organizationId: import("zod").ZodString;
|
|
540
|
+
name: import("zod").ZodString;
|
|
541
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
542
|
+
id: import("zod").ZodString;
|
|
543
|
+
name: import("zod").ZodString;
|
|
544
|
+
organizationId: import("zod").ZodString;
|
|
545
|
+
createdAt: import("zod").ZodDate;
|
|
546
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
547
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
548
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
549
|
+
projectId: import("zod").ZodString;
|
|
550
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
551
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
552
|
+
projectId: import("zod").ZodString;
|
|
553
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
554
|
+
id: import("zod").ZodString;
|
|
555
|
+
name: import("zod").ZodString;
|
|
556
|
+
organizationId: import("zod").ZodString;
|
|
557
|
+
createdAt: import("zod").ZodDate;
|
|
558
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
559
|
+
org: import("zod").ZodObject<{
|
|
560
|
+
id: import("zod").ZodString;
|
|
561
|
+
name: import("zod").ZodString;
|
|
562
|
+
}, import("zod/v4/core").$strip>;
|
|
563
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
564
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
565
|
+
organizationId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
566
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
567
|
+
}, import("zod/v4/core").$strip>>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
568
|
+
id: import("zod").ZodString;
|
|
569
|
+
name: import("zod").ZodString;
|
|
570
|
+
organizationId: import("zod").ZodString;
|
|
571
|
+
createdAt: import("zod").ZodDate;
|
|
572
|
+
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
573
|
+
org: import("zod").ZodObject<{
|
|
574
|
+
id: import("zod").ZodString;
|
|
575
|
+
name: import("zod").ZodString;
|
|
576
|
+
}, import("zod/v4/core").$strip>;
|
|
577
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
578
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
579
|
+
projectId: import("zod").ZodString;
|
|
580
|
+
name: import("zod").ZodString;
|
|
581
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
582
|
+
};
|
|
583
|
+
session: {
|
|
584
|
+
linkDeviceSession: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
585
|
+
newAccessToken: import("zod").ZodString;
|
|
586
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
587
|
+
me: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
588
|
+
id: import("zod").ZodString;
|
|
589
|
+
name: import("zod").ZodString;
|
|
590
|
+
email: import("zod").ZodEmail;
|
|
591
|
+
emailVerified: import("zod").ZodBoolean;
|
|
592
|
+
image: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
593
|
+
createdAt: import("zod").ZodDate;
|
|
594
|
+
updatedAt: import("zod").ZodDate;
|
|
595
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
596
|
+
};
|
|
9
597
|
apiKey: {
|
|
10
598
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
11
599
|
organizationId: import("zod").ZodString;
|
|
@@ -46,7 +634,13 @@ export declare const contract: {
|
|
|
46
634
|
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
47
635
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
48
636
|
};
|
|
637
|
+
};
|
|
638
|
+
/** Complete contract implemented by the API service. */
|
|
639
|
+
export declare const contract: {
|
|
49
640
|
authorization: {
|
|
641
|
+
callback: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
642
|
+
serviceId: import("zod").ZodString;
|
|
643
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodString, Record<never, never>, Record<never, never>>;
|
|
50
644
|
beginConnection: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
51
645
|
binding: import("zod").ZodString;
|
|
52
646
|
deploymentId: import("zod").ZodString;
|
|
@@ -54,9 +648,6 @@ export declare const contract: {
|
|
|
54
648
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
55
649
|
url: import("zod").ZodURL;
|
|
56
650
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
57
|
-
callback: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
58
|
-
serviceId: import("zod").ZodString;
|
|
59
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodString, Record<never, never>, Record<never, never>>;
|
|
60
651
|
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
61
652
|
deploymentId: import("zod").ZodString;
|
|
62
653
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -133,25 +724,125 @@ export declare const contract: {
|
|
|
133
724
|
id: import("zod").ZodString;
|
|
134
725
|
}, import("zod/v4/core").$strip>>;
|
|
135
726
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
727
|
+
selectAccount: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
728
|
+
accountId: import("zod").ZodString;
|
|
729
|
+
binding: import("zod").ZodString;
|
|
730
|
+
deploymentId: import("zod").ZodString;
|
|
731
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
136
732
|
submitCredentials: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
137
733
|
binding: import("zod").ZodString;
|
|
138
734
|
data: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean]>>;
|
|
139
735
|
deploymentId: import("zod").ZodString;
|
|
140
736
|
serviceId: import("zod").ZodString;
|
|
141
737
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
142
|
-
|
|
143
|
-
|
|
738
|
+
};
|
|
739
|
+
events: {
|
|
740
|
+
gmailPush: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
741
|
+
message: import("zod").ZodObject<{
|
|
742
|
+
data: import("zod").ZodString;
|
|
743
|
+
messageId: import("zod").ZodString;
|
|
744
|
+
}, import("zod/v4/core").$strip>;
|
|
745
|
+
subscription: import("zod").ZodLiteral<"projects/opkitty/subscriptions/automate-ax-gmail-push">;
|
|
746
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
747
|
+
googleFormsPush: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
748
|
+
message: import("zod").ZodObject<{
|
|
749
|
+
attributes: import("zod").ZodObject<{
|
|
750
|
+
eventType: import("zod").ZodEnum<{
|
|
751
|
+
SCHEMA: "SCHEMA";
|
|
752
|
+
RESPONSES: "RESPONSES";
|
|
753
|
+
}>;
|
|
754
|
+
formId: import("zod").ZodString;
|
|
755
|
+
watchId: import("zod").ZodString;
|
|
756
|
+
}, import("zod/v4/core").$strip>;
|
|
757
|
+
messageId: import("zod").ZodString;
|
|
758
|
+
publishTime: import("zod").ZodISODateTime;
|
|
759
|
+
}, import("zod/v4/core").$strip>;
|
|
760
|
+
subscription: import("zod").ZodLiteral<"projects/opkitty/subscriptions/automate-ax-google-forms-push">;
|
|
761
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
762
|
+
googleCalendarPush: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodVoid, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
763
|
+
};
|
|
764
|
+
runtime: {
|
|
765
|
+
commit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
766
|
+
actionInvocations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
767
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
768
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
769
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
770
|
+
inputHash: import("zod").ZodString;
|
|
771
|
+
name: import("zod").ZodString;
|
|
772
|
+
slot: import("zod").ZodNumber;
|
|
773
|
+
}, import("zod/v4/core").$strip>>>;
|
|
774
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
775
|
+
completeInvocation: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
776
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
777
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
778
|
+
loadInvocation: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
779
|
+
context: import("zod").ZodObject<{
|
|
780
|
+
actionOutputs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
781
|
+
actionInvocationId: import("zod").ZodString;
|
|
782
|
+
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
783
|
+
slot: import("zod").ZodNumber;
|
|
784
|
+
}, import("zod/v4/core").$strip>>;
|
|
785
|
+
contextId: import("zod").ZodString;
|
|
786
|
+
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
787
|
+
automationEventId: import("zod").ZodString;
|
|
788
|
+
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
789
|
+
slot: import("zod").ZodNumber;
|
|
790
|
+
}, import("zod/v4/core").$strip>>;
|
|
791
|
+
}, import("zod/v4/core").$strip>;
|
|
792
|
+
id: import("zod").ZodString;
|
|
793
|
+
slot: import("zod").ZodNumber;
|
|
794
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
795
|
+
nextBatch: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
796
|
+
context: import("zod").ZodObject<{
|
|
797
|
+
actionOutputs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
798
|
+
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
799
|
+
actionInvocationId: import("zod").ZodString;
|
|
800
|
+
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
801
|
+
inputHash: import("zod").ZodString;
|
|
802
|
+
name: import("zod").ZodString;
|
|
803
|
+
slot: import("zod").ZodNumber;
|
|
804
|
+
}, import("zod/v4/core").$strip>>;
|
|
805
|
+
contextId: import("zod").ZodString;
|
|
806
|
+
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
807
|
+
automationEventId: import("zod").ZodString;
|
|
808
|
+
slot: import("zod").ZodNumber;
|
|
809
|
+
}, import("zod/v4/core").$strip>>;
|
|
810
|
+
}, import("zod/v4/core").$strip>;
|
|
811
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
812
|
+
resolveAccountInput: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
144
813
|
binding: import("zod").ZodString;
|
|
145
|
-
|
|
814
|
+
serviceId: import("zod").ZodString;
|
|
815
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
816
|
+
secret: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>;
|
|
817
|
+
serviceId: import("zod").ZodString;
|
|
818
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
819
|
+
sendOutput: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
820
|
+
output: import("zod").ZodObject<{
|
|
821
|
+
data: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
822
|
+
type: import("zod").ZodString;
|
|
823
|
+
}, import("zod/v4/core").$strip>;
|
|
824
|
+
outputIndex: import("zod").ZodNumber;
|
|
146
825
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
826
|
+
sendEmail: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
827
|
+
subject: import("zod").ZodString;
|
|
828
|
+
text: import("zod").ZodString;
|
|
829
|
+
to: import("zod").ZodEmail;
|
|
830
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
831
|
+
id: import("zod").ZodNullable<import("zod").ZodString>;
|
|
832
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
147
833
|
};
|
|
148
834
|
deployment: {
|
|
149
835
|
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
836
|
+
artifact: import("zod").ZodCustom<Blob, Blob>;
|
|
837
|
+
manifest: import("zod").ZodArray<import("zod").ZodObject<{
|
|
838
|
+
entrypoint: import("zod").ZodString;
|
|
153
839
|
identityKey: import("zod").ZodString;
|
|
154
840
|
}, import("zod/v4/core").$strip>>;
|
|
841
|
+
mode: import("zod").ZodEnum<{
|
|
842
|
+
reconcile: "reconcile";
|
|
843
|
+
upsert: "upsert";
|
|
844
|
+
}>;
|
|
845
|
+
projectId: import("zod").ZodString;
|
|
155
846
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
156
847
|
id: import("zod").ZodString;
|
|
157
848
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -186,22 +877,12 @@ export declare const contract: {
|
|
|
186
877
|
planning: "planning";
|
|
187
878
|
awaiting_authorization: "awaiting_authorization";
|
|
188
879
|
configuring: "configuring";
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
superseded: "superseded";
|
|
880
|
+
publishing: "publishing";
|
|
881
|
+
succeeded: "succeeded";
|
|
192
882
|
failed: "failed";
|
|
193
883
|
}>;
|
|
194
884
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
195
885
|
};
|
|
196
|
-
events: {
|
|
197
|
-
gmailPush: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
198
|
-
message: import("zod").ZodObject<{
|
|
199
|
-
data: import("zod").ZodString;
|
|
200
|
-
messageId: import("zod").ZodString;
|
|
201
|
-
}, import("zod/v4/core").$strip>;
|
|
202
|
-
subscription: import("zod").ZodLiteral<"projects/opkitty/subscriptions/automate-ax-gmail-push">;
|
|
203
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
204
|
-
};
|
|
205
886
|
org: {
|
|
206
887
|
canInvite: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
207
888
|
organizationId: import("zod").ZodString;
|
|
@@ -355,10 +1036,12 @@ export declare const contract: {
|
|
|
355
1036
|
createdAt: import("zod").ZodDate;
|
|
356
1037
|
createdBy: import("zod").ZodNullable<import("zod").ZodString>;
|
|
357
1038
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
1039
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1040
|
+
projectId: import("zod").ZodString;
|
|
1041
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1042
|
+
get: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1043
|
+
projectId: import("zod").ZodString;
|
|
1044
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
362
1045
|
id: import("zod").ZodString;
|
|
363
1046
|
name: import("zod").ZodString;
|
|
364
1047
|
organizationId: import("zod").ZodString;
|
|
@@ -368,10 +1051,11 @@ export declare const contract: {
|
|
|
368
1051
|
id: import("zod").ZodString;
|
|
369
1052
|
name: import("zod").ZodString;
|
|
370
1053
|
}, import("zod/v4/core").$strip>;
|
|
371
|
-
}, import("zod/v4/core").$strip
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
1054
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1055
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1056
|
+
organizationId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1057
|
+
query: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1058
|
+
}, import("zod/v4/core").$strip>>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
375
1059
|
id: import("zod").ZodString;
|
|
376
1060
|
name: import("zod").ZodString;
|
|
377
1061
|
organizationId: import("zod").ZodString;
|
|
@@ -381,81 +1065,16 @@ export declare const contract: {
|
|
|
381
1065
|
id: import("zod").ZodString;
|
|
382
1066
|
name: import("zod").ZodString;
|
|
383
1067
|
}, import("zod/v4/core").$strip>;
|
|
384
|
-
}, import("zod/v4/core").$strip
|
|
1068
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
385
1069
|
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
386
1070
|
projectId: import("zod").ZodString;
|
|
387
1071
|
name: import("zod").ZodString;
|
|
388
1072
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
389
|
-
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
390
|
-
projectId: import("zod").ZodString;
|
|
391
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
392
|
-
};
|
|
393
|
-
runtime: {
|
|
394
|
-
commit: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
395
|
-
actionInvocations: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
396
|
-
actionDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
397
|
-
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
398
|
-
eventDependencyIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
399
|
-
name: import("zod").ZodString;
|
|
400
|
-
slot: import("zod").ZodNumber;
|
|
401
|
-
}, import("zod/v4/core").$strip>>>;
|
|
402
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
403
|
-
completeInvocation: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
404
|
-
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
405
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
406
|
-
loadInvocation: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
407
|
-
context: import("zod").ZodObject<{
|
|
408
|
-
actionOutputs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
409
|
-
actionInvocationId: import("zod").ZodString;
|
|
410
|
-
output: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
411
|
-
slot: import("zod").ZodNumber;
|
|
412
|
-
}, import("zod/v4/core").$strip>>;
|
|
413
|
-
contextId: import("zod").ZodString;
|
|
414
|
-
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
415
|
-
automationEventId: import("zod").ZodString;
|
|
416
|
-
payload: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
417
|
-
slot: import("zod").ZodNumber;
|
|
418
|
-
}, import("zod/v4/core").$strip>>;
|
|
419
|
-
}, import("zod/v4/core").$strip>;
|
|
420
|
-
id: import("zod").ZodString;
|
|
421
|
-
slot: import("zod").ZodNumber;
|
|
422
|
-
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
423
|
-
nextBatch: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
424
|
-
context: import("zod").ZodObject<{
|
|
425
|
-
actionOutputs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
426
|
-
actionInvocationId: import("zod").ZodString;
|
|
427
|
-
slot: import("zod").ZodNumber;
|
|
428
|
-
}, import("zod/v4/core").$strip>>;
|
|
429
|
-
contextId: import("zod").ZodString;
|
|
430
|
-
events: import("zod").ZodArray<import("zod").ZodObject<{
|
|
431
|
-
automationEventId: import("zod").ZodString;
|
|
432
|
-
slot: import("zod").ZodNumber;
|
|
433
|
-
}, import("zod/v4/core").$strip>>;
|
|
434
|
-
}, import("zod/v4/core").$strip>;
|
|
435
|
-
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
436
|
-
resolveAccountInput: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
437
|
-
binding: import("zod").ZodString;
|
|
438
|
-
serviceId: import("zod").ZodString;
|
|
439
|
-
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
440
|
-
secret: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>;
|
|
441
|
-
serviceId: import("zod").ZodString;
|
|
442
|
-
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
443
|
-
sendOutput: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
444
|
-
output: import("zod").ZodObject<{
|
|
445
|
-
data: import("zod").ZodOptional<import("zod").ZodCustom<import("@automate.ax/codec").Encodable, import("@automate.ax/codec").Encodable>>;
|
|
446
|
-
type: import("zod").ZodString;
|
|
447
|
-
}, import("zod/v4/core").$strip>;
|
|
448
|
-
outputIndex: import("zod").ZodNumber;
|
|
449
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
450
|
-
sendEmail: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
451
|
-
subject: import("zod").ZodString;
|
|
452
|
-
text: import("zod").ZodString;
|
|
453
|
-
to: import("zod").ZodEmail;
|
|
454
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
455
|
-
id: import("zod").ZodNullable<import("zod").ZodString>;
|
|
456
|
-
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
457
1073
|
};
|
|
458
1074
|
session: {
|
|
1075
|
+
linkDeviceSession: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1076
|
+
newAccessToken: import("zod").ZodString;
|
|
1077
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
459
1078
|
me: import("@orpc/contract").ContractProcedureBuilderWithOutput<import("@orpc/contract").Schema<unknown, unknown>, import("zod").ZodObject<{
|
|
460
1079
|
id: import("zod").ZodString;
|
|
461
1080
|
name: import("zod").ZodString;
|
|
@@ -465,8 +1084,45 @@ export declare const contract: {
|
|
|
465
1084
|
createdAt: import("zod").ZodDate;
|
|
466
1085
|
updatedAt: import("zod").ZodDate;
|
|
467
1086
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
468
|
-
|
|
469
|
-
|
|
1087
|
+
};
|
|
1088
|
+
apiKey: {
|
|
1089
|
+
create: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1090
|
+
organizationId: import("zod").ZodString;
|
|
1091
|
+
name: import("zod").ZodString;
|
|
1092
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1093
|
+
id: import("zod").ZodString;
|
|
1094
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1095
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1096
|
+
createdAt: import("zod").ZodDate;
|
|
1097
|
+
updatedAt: import("zod").ZodDate;
|
|
1098
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1099
|
+
key: import("zod").ZodString;
|
|
1100
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
1101
|
+
delete: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1102
|
+
keyId: import("zod").ZodString;
|
|
1103
|
+
organizationId: import("zod").ZodString;
|
|
470
1104
|
}, import("zod/v4/core").$strip>, import("zod").ZodVoid, Record<never, never>, Record<never, never>>;
|
|
1105
|
+
list: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1106
|
+
organizationId: import("zod").ZodString;
|
|
1107
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodArray<import("zod").ZodObject<{
|
|
1108
|
+
id: import("zod").ZodString;
|
|
1109
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1110
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1111
|
+
createdAt: import("zod").ZodDate;
|
|
1112
|
+
updatedAt: import("zod").ZodDate;
|
|
1113
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1114
|
+
}, import("zod/v4/core").$strip>>, Record<never, never>, Record<never, never>>;
|
|
1115
|
+
update: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
1116
|
+
keyId: import("zod").ZodString;
|
|
1117
|
+
name: import("zod").ZodString;
|
|
1118
|
+
organizationId: import("zod").ZodString;
|
|
1119
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1120
|
+
id: import("zod").ZodString;
|
|
1121
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1122
|
+
start: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1123
|
+
createdAt: import("zod").ZodDate;
|
|
1124
|
+
updatedAt: import("zod").ZodDate;
|
|
1125
|
+
expiresAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
1126
|
+
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
471
1127
|
};
|
|
472
1128
|
};
|