@lessly/sdk-app 0.3.0 → 0.4.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/README.md +24 -14
- package/dist/client.gen-DH0z4Tfa.d.cts +1711 -0
- package/dist/client.gen-DH0z4Tfa.d.ts +1711 -0
- package/dist/deployment/index.cjs +531 -0
- package/dist/deployment/index.cjs.map +1 -0
- package/dist/deployment/index.d.cts +425 -0
- package/dist/deployment/index.d.ts +425 -0
- package/dist/deployment/index.js +425 -0
- package/dist/deployment/index.js.map +1 -0
- package/dist/index.cjs +1649 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1649 -0
- package/dist/index.js.map +1 -1
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.d.cts +1 -1
- package/dist/playground/index.d.ts +1 -1
- package/docs/recipes/sdk-usage.md +24 -14
- package/package.json +8 -2
- package/src/gen/bindings.gen.ts +1649 -0
- package/src/gen/client.gen.ts +391 -0
- package/src/gen/deployment/index.ts +3 -0
- package/src/gen/deployment/queryOptions.gen.ts +681 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/types.gen.ts +838 -0
- package/dist/client.gen-DtgaSZYB.d.cts +0 -909
- package/dist/client.gen-DtgaSZYB.d.ts +0 -909
|
@@ -0,0 +1,1711 @@
|
|
|
1
|
+
interface DeploymentAlertCreateInput {
|
|
2
|
+
metric: ("cpu" | "memory" | "net_in" | "net_out" | "disk");
|
|
3
|
+
enabled?: boolean;
|
|
4
|
+
targetId: string;
|
|
5
|
+
threshold: number;
|
|
6
|
+
comparator: ("gt" | "lt");
|
|
7
|
+
targetKind: ("service" | "managed-service");
|
|
8
|
+
}
|
|
9
|
+
type DeploymentAlertCreateOutput = unknown;
|
|
10
|
+
interface DeploymentAlertDeleteInput {
|
|
11
|
+
id: string;
|
|
12
|
+
}
|
|
13
|
+
type DeploymentAlertDeleteOutput = unknown;
|
|
14
|
+
interface DeploymentAlertEventsListInput {
|
|
15
|
+
limit?: number;
|
|
16
|
+
environmentId: string;
|
|
17
|
+
}
|
|
18
|
+
type DeploymentAlertEventsListOutput = unknown;
|
|
19
|
+
interface DeploymentAlertListInput {
|
|
20
|
+
environmentId: string;
|
|
21
|
+
}
|
|
22
|
+
type DeploymentAlertListOutput = unknown;
|
|
23
|
+
interface DeploymentAlertUpdateInput {
|
|
24
|
+
id: string;
|
|
25
|
+
enabled?: boolean;
|
|
26
|
+
threshold?: number;
|
|
27
|
+
comparator?: ("gt" | "lt");
|
|
28
|
+
}
|
|
29
|
+
type DeploymentAlertUpdateOutput = unknown;
|
|
30
|
+
interface DeploymentAnalyticsQueryInput {
|
|
31
|
+
q: string;
|
|
32
|
+
}
|
|
33
|
+
type DeploymentAnalyticsQueryOutput = unknown;
|
|
34
|
+
interface DeploymentAuditListInput {
|
|
35
|
+
limit?: number;
|
|
36
|
+
action?: string;
|
|
37
|
+
actorId?: string;
|
|
38
|
+
serviceId?: string;
|
|
39
|
+
entityType?: ("variable" | "domain" | "service" | "environment" | "deployment" | "managed_service" | "volume" | "cloud-sql-instance" | "cloud-sql-database" | "cloud-sql-attachment" | "ssh_key" | "ssh_session");
|
|
40
|
+
environmentId: string;
|
|
41
|
+
}
|
|
42
|
+
type DeploymentAuditListOutput = unknown;
|
|
43
|
+
interface DeploymentBuildGetInput {
|
|
44
|
+
id: string;
|
|
45
|
+
}
|
|
46
|
+
type DeploymentBuildGetOutput = unknown;
|
|
47
|
+
interface DeploymentBuildListInput {
|
|
48
|
+
serviceId: string;
|
|
49
|
+
}
|
|
50
|
+
type DeploymentBuildListOutput = unknown;
|
|
51
|
+
interface DeploymentBuildLogsInput {
|
|
52
|
+
tail?: number;
|
|
53
|
+
since?: string;
|
|
54
|
+
serviceId: string;
|
|
55
|
+
deploymentId: string;
|
|
56
|
+
}
|
|
57
|
+
type DeploymentBuildLogsOutput = unknown;
|
|
58
|
+
interface DeploymentCanvasGetInput {
|
|
59
|
+
environmentId: string;
|
|
60
|
+
}
|
|
61
|
+
type DeploymentCanvasGetOutput = unknown;
|
|
62
|
+
interface DeploymentCanvasMoveNodeInput {
|
|
63
|
+
x?: number;
|
|
64
|
+
y?: number;
|
|
65
|
+
width?: number;
|
|
66
|
+
height?: number;
|
|
67
|
+
nodeId: string;
|
|
68
|
+
environmentId: string;
|
|
69
|
+
}
|
|
70
|
+
type DeploymentCanvasMoveNodeOutput = unknown;
|
|
71
|
+
interface DeploymentCloudSqlBackfillLogFlagsInput {
|
|
72
|
+
instanceId?: string;
|
|
73
|
+
}
|
|
74
|
+
type DeploymentCloudSqlBackfillLogFlagsOutput = unknown;
|
|
75
|
+
interface DeploymentCloudSqlDatabaseAttachInput {
|
|
76
|
+
serviceId: string;
|
|
77
|
+
databaseId: string;
|
|
78
|
+
environmentId: string;
|
|
79
|
+
}
|
|
80
|
+
type DeploymentCloudSqlDatabaseAttachOutput = unknown;
|
|
81
|
+
interface DeploymentCloudSqlDatabaseCreateInput {
|
|
82
|
+
label?: string;
|
|
83
|
+
instanceId: string;
|
|
84
|
+
}
|
|
85
|
+
type DeploymentCloudSqlDatabaseCreateOutput = unknown;
|
|
86
|
+
interface DeploymentCloudSqlDatabaseDeleteInput {
|
|
87
|
+
databaseId: string;
|
|
88
|
+
}
|
|
89
|
+
type DeploymentCloudSqlDatabaseDeleteOutput = unknown;
|
|
90
|
+
interface DeploymentCloudSqlDatabaseDetachInput {
|
|
91
|
+
attachmentId: string;
|
|
92
|
+
}
|
|
93
|
+
type DeploymentCloudSqlDatabaseDetachOutput = unknown;
|
|
94
|
+
interface DeploymentCloudSqlDatabaseGetInput {
|
|
95
|
+
databaseId: string;
|
|
96
|
+
}
|
|
97
|
+
type DeploymentCloudSqlDatabaseGetOutput = unknown;
|
|
98
|
+
interface DeploymentCloudSqlDatabaseListInput {
|
|
99
|
+
instanceId: string;
|
|
100
|
+
}
|
|
101
|
+
type DeploymentCloudSqlDatabaseListOutput = unknown;
|
|
102
|
+
interface DeploymentCloudSqlInstanceBackupInput {
|
|
103
|
+
instanceId: string;
|
|
104
|
+
}
|
|
105
|
+
type DeploymentCloudSqlInstanceBackupOutput = unknown;
|
|
106
|
+
interface DeploymentCloudSqlInstanceBackupListInput {
|
|
107
|
+
instanceId: string;
|
|
108
|
+
}
|
|
109
|
+
type DeploymentCloudSqlInstanceBackupListOutput = unknown;
|
|
110
|
+
interface DeploymentCloudSqlInstanceCreateInput {
|
|
111
|
+
tier?: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
|
|
112
|
+
label: string;
|
|
113
|
+
pgVersion?: ("16" | "17" | "18");
|
|
114
|
+
}
|
|
115
|
+
type DeploymentCloudSqlInstanceCreateOutput = unknown;
|
|
116
|
+
interface DeploymentCloudSqlInstanceDeleteInput {
|
|
117
|
+
instanceId: string;
|
|
118
|
+
}
|
|
119
|
+
type DeploymentCloudSqlInstanceDeleteOutput = unknown;
|
|
120
|
+
interface DeploymentCloudSqlInstanceGetInput {
|
|
121
|
+
instanceId: string;
|
|
122
|
+
}
|
|
123
|
+
type DeploymentCloudSqlInstanceGetOutput = unknown;
|
|
124
|
+
interface DeploymentCloudSqlInstanceListInput {
|
|
125
|
+
}
|
|
126
|
+
type DeploymentCloudSqlInstanceListOutput = unknown;
|
|
127
|
+
interface DeploymentCloudSqlInstanceResizeInput {
|
|
128
|
+
tier: ("db-custom-1-3840" | "db-custom-2-7680" | "db-custom-4-15360");
|
|
129
|
+
instanceId: string;
|
|
130
|
+
}
|
|
131
|
+
type DeploymentCloudSqlInstanceResizeOutput = unknown;
|
|
132
|
+
interface DeploymentCloudSqlInstanceRestoreInput {
|
|
133
|
+
instanceId: string;
|
|
134
|
+
backupRunId: string;
|
|
135
|
+
}
|
|
136
|
+
type DeploymentCloudSqlInstanceRestoreOutput = unknown;
|
|
137
|
+
interface DeploymentCloudSqlLogsInput {
|
|
138
|
+
tail?: number;
|
|
139
|
+
instanceId: string;
|
|
140
|
+
}
|
|
141
|
+
type DeploymentCloudSqlLogsOutput = unknown;
|
|
142
|
+
interface DeploymentDeploymentCancelInput {
|
|
143
|
+
serviceId: string;
|
|
144
|
+
deploymentId: string;
|
|
145
|
+
}
|
|
146
|
+
type DeploymentDeploymentCancelOutput = unknown;
|
|
147
|
+
interface DeploymentDeploymentGetInput {
|
|
148
|
+
id: string;
|
|
149
|
+
}
|
|
150
|
+
type DeploymentDeploymentGetOutput = unknown;
|
|
151
|
+
interface DeploymentDeploymentListInput {
|
|
152
|
+
serviceId: string;
|
|
153
|
+
}
|
|
154
|
+
type DeploymentDeploymentListOutput = unknown;
|
|
155
|
+
interface DeploymentDomainAddInput {
|
|
156
|
+
hostname: string;
|
|
157
|
+
pathPrefix?: string;
|
|
158
|
+
redirectWww?: boolean;
|
|
159
|
+
environmentId: string;
|
|
160
|
+
defaultServiceId: string;
|
|
161
|
+
}
|
|
162
|
+
type DeploymentDomainAddOutput = unknown;
|
|
163
|
+
interface DeploymentDomainAllowedListInput {
|
|
164
|
+
}
|
|
165
|
+
type DeploymentDomainAllowedListOutput = unknown;
|
|
166
|
+
interface DeploymentDomainGetInput {
|
|
167
|
+
id: string;
|
|
168
|
+
}
|
|
169
|
+
type DeploymentDomainGetOutput = unknown;
|
|
170
|
+
interface DeploymentDomainListInput {
|
|
171
|
+
environmentId: string;
|
|
172
|
+
}
|
|
173
|
+
type DeploymentDomainListOutput = unknown;
|
|
174
|
+
interface DeploymentDomainListByServiceInput {
|
|
175
|
+
serviceId: string;
|
|
176
|
+
}
|
|
177
|
+
type DeploymentDomainListByServiceOutput = unknown;
|
|
178
|
+
interface DeploymentDomainRedirectWwwInput {
|
|
179
|
+
id: string;
|
|
180
|
+
enabled: boolean;
|
|
181
|
+
}
|
|
182
|
+
type DeploymentDomainRedirectWwwOutput = unknown;
|
|
183
|
+
interface DeploymentDomainRemoveInput {
|
|
184
|
+
id: string;
|
|
185
|
+
}
|
|
186
|
+
type DeploymentDomainRemoveOutput = unknown;
|
|
187
|
+
interface DeploymentDomainRoutesAddInput {
|
|
188
|
+
domainId: string;
|
|
189
|
+
priority?: number;
|
|
190
|
+
isDefault?: boolean;
|
|
191
|
+
serviceId: string;
|
|
192
|
+
pathPrefix: string;
|
|
193
|
+
}
|
|
194
|
+
type DeploymentDomainRoutesAddOutput = unknown;
|
|
195
|
+
interface DeploymentDomainRoutesListInput {
|
|
196
|
+
domainId: string;
|
|
197
|
+
}
|
|
198
|
+
type DeploymentDomainRoutesListOutput = unknown;
|
|
199
|
+
interface DeploymentDomainRoutesRemoveInput {
|
|
200
|
+
routeId: string;
|
|
201
|
+
domainId: string;
|
|
202
|
+
}
|
|
203
|
+
type DeploymentDomainRoutesRemoveOutput = unknown;
|
|
204
|
+
interface DeploymentDomainRoutesUpdateInput {
|
|
205
|
+
routeId: string;
|
|
206
|
+
domainId: string;
|
|
207
|
+
priority?: number;
|
|
208
|
+
serviceId?: string;
|
|
209
|
+
pathPrefix?: string;
|
|
210
|
+
}
|
|
211
|
+
type DeploymentDomainRoutesUpdateOutput = unknown;
|
|
212
|
+
interface DeploymentDomainVerifyInput {
|
|
213
|
+
id: string;
|
|
214
|
+
}
|
|
215
|
+
type DeploymentDomainVerifyOutput = unknown;
|
|
216
|
+
interface DeploymentEnvironmentCreateInput {
|
|
217
|
+
name: string;
|
|
218
|
+
slug?: string;
|
|
219
|
+
}
|
|
220
|
+
type DeploymentEnvironmentCreateOutput = unknown;
|
|
221
|
+
interface DeploymentEnvironmentDeleteInput {
|
|
222
|
+
id: string;
|
|
223
|
+
}
|
|
224
|
+
type DeploymentEnvironmentDeleteOutput = unknown;
|
|
225
|
+
interface DeploymentEnvironmentForkInput {
|
|
226
|
+
name: string;
|
|
227
|
+
slug?: string;
|
|
228
|
+
baseEnvironmentId: string;
|
|
229
|
+
}
|
|
230
|
+
type DeploymentEnvironmentForkOutput = unknown;
|
|
231
|
+
interface DeploymentEnvironmentGetInput {
|
|
232
|
+
id: string;
|
|
233
|
+
}
|
|
234
|
+
type DeploymentEnvironmentGetOutput = unknown;
|
|
235
|
+
interface DeploymentEnvironmentListInput {
|
|
236
|
+
type?: ("persistent" | "pr-preview");
|
|
237
|
+
}
|
|
238
|
+
type DeploymentEnvironmentListOutput = unknown;
|
|
239
|
+
interface DeploymentEnvironmentReconcileInput {
|
|
240
|
+
id: string;
|
|
241
|
+
force?: boolean;
|
|
242
|
+
}
|
|
243
|
+
type DeploymentEnvironmentReconcileOutput = unknown;
|
|
244
|
+
interface DeploymentEnvironmentUpdateInput {
|
|
245
|
+
id: string;
|
|
246
|
+
name?: string;
|
|
247
|
+
}
|
|
248
|
+
type DeploymentEnvironmentUpdateOutput = unknown;
|
|
249
|
+
interface DeploymentEventsListByEnvironmentInput {
|
|
250
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
251
|
+
limit?: number;
|
|
252
|
+
since?: string;
|
|
253
|
+
until?: string;
|
|
254
|
+
environmentId: string;
|
|
255
|
+
}
|
|
256
|
+
type DeploymentEventsListByEnvironmentOutput = unknown;
|
|
257
|
+
interface DeploymentEventsListByServiceInput {
|
|
258
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed");
|
|
259
|
+
limit?: number;
|
|
260
|
+
since?: string;
|
|
261
|
+
until?: string;
|
|
262
|
+
serviceId: string;
|
|
263
|
+
deploymentId?: string;
|
|
264
|
+
}
|
|
265
|
+
type DeploymentEventsListByServiceOutput = unknown;
|
|
266
|
+
interface DeploymentManagedServiceBackupInput {
|
|
267
|
+
id: string;
|
|
268
|
+
}
|
|
269
|
+
type DeploymentManagedServiceBackupOutput = unknown;
|
|
270
|
+
interface DeploymentManagedServiceBackupListInput {
|
|
271
|
+
id: string;
|
|
272
|
+
}
|
|
273
|
+
type DeploymentManagedServiceBackupListOutput = unknown;
|
|
274
|
+
interface DeploymentManagedServiceConnectInfoInput {
|
|
275
|
+
id: string;
|
|
276
|
+
}
|
|
277
|
+
type DeploymentManagedServiceConnectInfoOutput = unknown;
|
|
278
|
+
interface DeploymentManagedServiceDeleteInput {
|
|
279
|
+
id: string;
|
|
280
|
+
}
|
|
281
|
+
type DeploymentManagedServiceDeleteOutput = unknown;
|
|
282
|
+
interface DeploymentManagedServiceGetInput {
|
|
283
|
+
id: string;
|
|
284
|
+
}
|
|
285
|
+
type DeploymentManagedServiceGetOutput = unknown;
|
|
286
|
+
interface DeploymentManagedServiceListInput {
|
|
287
|
+
environmentId: string;
|
|
288
|
+
}
|
|
289
|
+
type DeploymentManagedServiceListOutput = unknown;
|
|
290
|
+
interface DeploymentManagedServiceLogsInput {
|
|
291
|
+
id: string;
|
|
292
|
+
tail?: number;
|
|
293
|
+
}
|
|
294
|
+
type DeploymentManagedServiceLogsOutput = unknown;
|
|
295
|
+
interface DeploymentManagedServiceProvisionInput {
|
|
296
|
+
name: string;
|
|
297
|
+
slug?: string;
|
|
298
|
+
engine: ("postgres" | "redis" | "mysql" | "mongodb");
|
|
299
|
+
version?: string;
|
|
300
|
+
storageGiB?: number;
|
|
301
|
+
databaseName?: string;
|
|
302
|
+
environmentId: string;
|
|
303
|
+
}
|
|
304
|
+
type DeploymentManagedServiceProvisionOutput = unknown;
|
|
305
|
+
interface DeploymentManagedServiceReconcileInput {
|
|
306
|
+
id: string;
|
|
307
|
+
}
|
|
308
|
+
type DeploymentManagedServiceReconcileOutput = unknown;
|
|
309
|
+
interface DeploymentManagedServiceResizeInput {
|
|
310
|
+
id: string;
|
|
311
|
+
storageGiB: number;
|
|
312
|
+
}
|
|
313
|
+
type DeploymentManagedServiceResizeOutput = unknown;
|
|
314
|
+
interface DeploymentManagedServiceRestoreInput {
|
|
315
|
+
id: string;
|
|
316
|
+
snapshotName: string;
|
|
317
|
+
}
|
|
318
|
+
type DeploymentManagedServiceRestoreOutput = unknown;
|
|
319
|
+
interface DeploymentManagedServiceStartInput {
|
|
320
|
+
id: string;
|
|
321
|
+
}
|
|
322
|
+
type DeploymentManagedServiceStartOutput = unknown;
|
|
323
|
+
interface DeploymentManagedServiceStopInput {
|
|
324
|
+
id: string;
|
|
325
|
+
}
|
|
326
|
+
type DeploymentManagedServiceStopOutput = unknown;
|
|
327
|
+
interface DeploymentManagedServiceTypesInput {
|
|
328
|
+
}
|
|
329
|
+
type DeploymentManagedServiceTypesOutput = unknown;
|
|
330
|
+
interface DeploymentMetricsGetInput {
|
|
331
|
+
window?: ("15m" | "1h" | "6h" | "24h" | "7d");
|
|
332
|
+
targetId: string;
|
|
333
|
+
targetKind: ("service" | "managed-service");
|
|
334
|
+
}
|
|
335
|
+
type DeploymentMetricsGetOutput = unknown;
|
|
336
|
+
interface DeploymentPreviewEnvironmentCreateInput {
|
|
337
|
+
prBranch?: string;
|
|
338
|
+
prNumber: number;
|
|
339
|
+
baseEnvironmentId: string;
|
|
340
|
+
}
|
|
341
|
+
type DeploymentPreviewEnvironmentCreateOutput = unknown;
|
|
342
|
+
interface DeploymentPreviewEnvironmentDeleteInput {
|
|
343
|
+
id: string;
|
|
344
|
+
}
|
|
345
|
+
type DeploymentPreviewEnvironmentDeleteOutput = unknown;
|
|
346
|
+
interface DeploymentPreviewEnvironmentListInput {
|
|
347
|
+
}
|
|
348
|
+
type DeploymentPreviewEnvironmentListOutput = unknown;
|
|
349
|
+
interface DeploymentPreviewPolicyGetInput {
|
|
350
|
+
baseEnvironmentId: string;
|
|
351
|
+
}
|
|
352
|
+
type DeploymentPreviewPolicyGetOutput = unknown;
|
|
353
|
+
interface DeploymentPreviewPolicySetInput {
|
|
354
|
+
enabled?: boolean;
|
|
355
|
+
ttlHours?: number;
|
|
356
|
+
maxPreviews?: number;
|
|
357
|
+
baseEnvironmentId: string;
|
|
358
|
+
}
|
|
359
|
+
type DeploymentPreviewPolicySetOutput = unknown;
|
|
360
|
+
interface DeploymentServiceCreateInput {
|
|
361
|
+
name: string;
|
|
362
|
+
slug?: string;
|
|
363
|
+
canvas?: {
|
|
364
|
+
x: number;
|
|
365
|
+
y: number;
|
|
366
|
+
};
|
|
367
|
+
probes?: {
|
|
368
|
+
liveness?: Readiness;
|
|
369
|
+
readiness?: Readiness;
|
|
370
|
+
};
|
|
371
|
+
source: ({
|
|
372
|
+
url?: string;
|
|
373
|
+
path?: string;
|
|
374
|
+
type: "git";
|
|
375
|
+
branch: string;
|
|
376
|
+
connectorId?: string;
|
|
377
|
+
repoFullName?: string;
|
|
378
|
+
} | {
|
|
379
|
+
tag: string;
|
|
380
|
+
type: "image";
|
|
381
|
+
registry: string;
|
|
382
|
+
} | {
|
|
383
|
+
spa?: boolean;
|
|
384
|
+
repo?: {
|
|
385
|
+
url?: string;
|
|
386
|
+
path?: string;
|
|
387
|
+
branch: string;
|
|
388
|
+
connectorId?: string;
|
|
389
|
+
repoFullName?: string;
|
|
390
|
+
};
|
|
391
|
+
type: "static";
|
|
392
|
+
build?: {
|
|
393
|
+
command?: string;
|
|
394
|
+
outputDir?: string;
|
|
395
|
+
};
|
|
396
|
+
});
|
|
397
|
+
replicas?: number;
|
|
398
|
+
resources?: {
|
|
399
|
+
limits?: {
|
|
400
|
+
cpu?: string;
|
|
401
|
+
memory?: string;
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
containerPort?: number;
|
|
405
|
+
environmentId: string;
|
|
406
|
+
}
|
|
407
|
+
type DeploymentServiceCreateOutput = unknown;
|
|
408
|
+
interface DeploymentServiceDeleteInput {
|
|
409
|
+
id: string;
|
|
410
|
+
}
|
|
411
|
+
type DeploymentServiceDeleteOutput = unknown;
|
|
412
|
+
interface DeploymentServiceExecInput {
|
|
413
|
+
mode?: ("exec" | "job");
|
|
414
|
+
command: string;
|
|
415
|
+
serviceId: string;
|
|
416
|
+
timeoutSec?: number;
|
|
417
|
+
}
|
|
418
|
+
type DeploymentServiceExecOutput = unknown;
|
|
419
|
+
interface DeploymentServiceGetInput {
|
|
420
|
+
id: string;
|
|
421
|
+
}
|
|
422
|
+
type DeploymentServiceGetOutput = unknown;
|
|
423
|
+
interface DeploymentServiceListInput {
|
|
424
|
+
environmentId: string;
|
|
425
|
+
}
|
|
426
|
+
type DeploymentServiceListOutput = unknown;
|
|
427
|
+
interface DeploymentServiceLogsInput {
|
|
428
|
+
tail?: number;
|
|
429
|
+
serviceId: string;
|
|
430
|
+
}
|
|
431
|
+
type DeploymentServiceLogsOutput = unknown;
|
|
432
|
+
interface DeploymentServiceRedeployInput {
|
|
433
|
+
serviceId: string;
|
|
434
|
+
}
|
|
435
|
+
type DeploymentServiceRedeployOutput = unknown;
|
|
436
|
+
interface DeploymentServiceRestartInput {
|
|
437
|
+
id: string;
|
|
438
|
+
}
|
|
439
|
+
type DeploymentServiceRestartOutput = unknown;
|
|
440
|
+
interface DeploymentServiceRollbackInput {
|
|
441
|
+
serviceId: string;
|
|
442
|
+
deploymentId: string;
|
|
443
|
+
}
|
|
444
|
+
type DeploymentServiceRollbackOutput = unknown;
|
|
445
|
+
interface DeploymentServiceScaleInput {
|
|
446
|
+
id: string;
|
|
447
|
+
replicas: number;
|
|
448
|
+
}
|
|
449
|
+
type DeploymentServiceScaleOutput = unknown;
|
|
450
|
+
interface DeploymentServiceUpdateInput {
|
|
451
|
+
id: string;
|
|
452
|
+
name?: string;
|
|
453
|
+
probes?: {
|
|
454
|
+
liveness?: Readiness;
|
|
455
|
+
readiness?: Readiness;
|
|
456
|
+
};
|
|
457
|
+
source?: ({
|
|
458
|
+
url?: string;
|
|
459
|
+
path?: string;
|
|
460
|
+
type: "git";
|
|
461
|
+
branch: string;
|
|
462
|
+
connectorId?: string;
|
|
463
|
+
repoFullName?: string;
|
|
464
|
+
} | {
|
|
465
|
+
tag: string;
|
|
466
|
+
type: "image";
|
|
467
|
+
registry: string;
|
|
468
|
+
} | {
|
|
469
|
+
spa?: boolean;
|
|
470
|
+
repo?: {
|
|
471
|
+
url?: string;
|
|
472
|
+
path?: string;
|
|
473
|
+
branch: string;
|
|
474
|
+
connectorId?: string;
|
|
475
|
+
repoFullName?: string;
|
|
476
|
+
};
|
|
477
|
+
type: "static";
|
|
478
|
+
build?: {
|
|
479
|
+
command?: string;
|
|
480
|
+
outputDir?: string;
|
|
481
|
+
};
|
|
482
|
+
});
|
|
483
|
+
replicas?: number;
|
|
484
|
+
resources?: {
|
|
485
|
+
limits?: {
|
|
486
|
+
cpu?: string;
|
|
487
|
+
memory?: string;
|
|
488
|
+
};
|
|
489
|
+
};
|
|
490
|
+
containerPort?: number;
|
|
491
|
+
}
|
|
492
|
+
interface Readiness {
|
|
493
|
+
path: string;
|
|
494
|
+
port?: number;
|
|
495
|
+
periodSeconds?: number;
|
|
496
|
+
timeoutSeconds?: number;
|
|
497
|
+
failureThreshold?: number;
|
|
498
|
+
successThreshold?: number;
|
|
499
|
+
initialDelaySeconds?: number;
|
|
500
|
+
}
|
|
501
|
+
interface Readiness {
|
|
502
|
+
path: string;
|
|
503
|
+
port?: number;
|
|
504
|
+
periodSeconds?: number;
|
|
505
|
+
timeoutSeconds?: number;
|
|
506
|
+
failureThreshold?: number;
|
|
507
|
+
successThreshold?: number;
|
|
508
|
+
initialDelaySeconds?: number;
|
|
509
|
+
}
|
|
510
|
+
type DeploymentServiceUpdateOutput = unknown;
|
|
511
|
+
interface DeploymentSshCommandInput {
|
|
512
|
+
serviceId: string;
|
|
513
|
+
}
|
|
514
|
+
type DeploymentSshCommandOutput = unknown;
|
|
515
|
+
interface DeploymentSshKeyDeleteInput {
|
|
516
|
+
id: string;
|
|
517
|
+
}
|
|
518
|
+
type DeploymentSshKeyDeleteOutput = unknown;
|
|
519
|
+
interface DeploymentSshKeyListInput {
|
|
520
|
+
}
|
|
521
|
+
type DeploymentSshKeyListOutput = unknown;
|
|
522
|
+
interface DeploymentSshKeyRegisterInput {
|
|
523
|
+
/**
|
|
524
|
+
* Human label for the key, e.g. "my-laptop"
|
|
525
|
+
*/
|
|
526
|
+
name: string;
|
|
527
|
+
/**
|
|
528
|
+
* OpenSSH public key line (ssh-ed25519 / ssh-rsa ...)
|
|
529
|
+
*/
|
|
530
|
+
publicKey: string;
|
|
531
|
+
}
|
|
532
|
+
type DeploymentSshKeyRegisterOutput = unknown;
|
|
533
|
+
interface DeploymentVariableListInput {
|
|
534
|
+
serviceId: string;
|
|
535
|
+
}
|
|
536
|
+
type DeploymentVariableListOutput = unknown;
|
|
537
|
+
interface DeploymentVariableListEnvInput {
|
|
538
|
+
environmentId: string;
|
|
539
|
+
}
|
|
540
|
+
type DeploymentVariableListEnvOutput = unknown;
|
|
541
|
+
interface DeploymentVariableListProductInput {
|
|
542
|
+
}
|
|
543
|
+
type DeploymentVariableListProductOutput = unknown;
|
|
544
|
+
interface DeploymentVariableSetInput {
|
|
545
|
+
key: string;
|
|
546
|
+
value: string;
|
|
547
|
+
isSecret?: boolean;
|
|
548
|
+
serviceId: string;
|
|
549
|
+
}
|
|
550
|
+
type DeploymentVariableSetOutput = unknown;
|
|
551
|
+
interface DeploymentVariableSetEnvInput {
|
|
552
|
+
key: string;
|
|
553
|
+
value: string;
|
|
554
|
+
isSecret?: boolean;
|
|
555
|
+
environmentId: string;
|
|
556
|
+
}
|
|
557
|
+
type DeploymentVariableSetEnvOutput = unknown;
|
|
558
|
+
interface DeploymentVariableSetProductInput {
|
|
559
|
+
key: string;
|
|
560
|
+
value: string;
|
|
561
|
+
isSecret?: boolean;
|
|
562
|
+
}
|
|
563
|
+
type DeploymentVariableSetProductOutput = unknown;
|
|
564
|
+
interface DeploymentVariableUnsetInput {
|
|
565
|
+
key: string;
|
|
566
|
+
serviceId: string;
|
|
567
|
+
}
|
|
568
|
+
type DeploymentVariableUnsetOutput = unknown;
|
|
569
|
+
interface DeploymentVariableUnsetEnvInput {
|
|
570
|
+
key: string;
|
|
571
|
+
environmentId: string;
|
|
572
|
+
}
|
|
573
|
+
type DeploymentVariableUnsetEnvOutput = unknown;
|
|
574
|
+
interface DeploymentVariableUnsetProductInput {
|
|
575
|
+
key: string;
|
|
576
|
+
}
|
|
577
|
+
type DeploymentVariableUnsetProductOutput = unknown;
|
|
578
|
+
interface DeploymentVcsBranchListInput {
|
|
579
|
+
connectorId: string;
|
|
580
|
+
repoFullName: string;
|
|
581
|
+
}
|
|
582
|
+
type DeploymentVcsBranchListOutput = unknown;
|
|
583
|
+
interface DeploymentVcsConnectionListInput {
|
|
584
|
+
}
|
|
585
|
+
type DeploymentVcsConnectionListOutput = unknown;
|
|
586
|
+
interface DeploymentVcsRepoListInput {
|
|
587
|
+
page?: number;
|
|
588
|
+
search?: string;
|
|
589
|
+
connectorId: string;
|
|
590
|
+
}
|
|
591
|
+
type DeploymentVcsRepoListOutput = unknown;
|
|
592
|
+
interface DeploymentVolumeCreateInput {
|
|
593
|
+
name: string;
|
|
594
|
+
slug?: string;
|
|
595
|
+
sizeGb: number;
|
|
596
|
+
mountPath: string;
|
|
597
|
+
environmentId: string;
|
|
598
|
+
attachedServiceId?: string;
|
|
599
|
+
}
|
|
600
|
+
type DeploymentVolumeCreateOutput = unknown;
|
|
601
|
+
interface DeploymentVolumeDeleteInput {
|
|
602
|
+
id: string;
|
|
603
|
+
}
|
|
604
|
+
type DeploymentVolumeDeleteOutput = unknown;
|
|
605
|
+
interface DeploymentVolumeDetachInput {
|
|
606
|
+
id: string;
|
|
607
|
+
}
|
|
608
|
+
type DeploymentVolumeDetachOutput = unknown;
|
|
609
|
+
interface DeploymentVolumeGetInput {
|
|
610
|
+
id: string;
|
|
611
|
+
}
|
|
612
|
+
type DeploymentVolumeGetOutput = unknown;
|
|
613
|
+
interface DeploymentVolumeListInput {
|
|
614
|
+
environmentId: string;
|
|
615
|
+
}
|
|
616
|
+
type DeploymentVolumeListOutput = unknown;
|
|
617
|
+
interface DeploymentVolumeResizeInput {
|
|
618
|
+
id: string;
|
|
619
|
+
sizeGb: number;
|
|
620
|
+
}
|
|
621
|
+
type DeploymentVolumeResizeOutput = unknown;
|
|
622
|
+
interface OrganizationAuthMeInput {
|
|
623
|
+
}
|
|
624
|
+
interface OrganizationAuthMeOutput {
|
|
625
|
+
email: string;
|
|
626
|
+
identityId: string;
|
|
627
|
+
displayName: string;
|
|
628
|
+
}
|
|
629
|
+
interface OrganizationBindingsListInput {
|
|
630
|
+
domainId: string;
|
|
631
|
+
productId: string;
|
|
632
|
+
}
|
|
633
|
+
type OrganizationBindingsListOutput = {
|
|
634
|
+
host: string;
|
|
635
|
+
status: ("pending" | "active" | "failed");
|
|
636
|
+
records: {
|
|
637
|
+
ttl?: number;
|
|
638
|
+
name?: string;
|
|
639
|
+
target: string;
|
|
640
|
+
proxied?: boolean;
|
|
641
|
+
priority?: number;
|
|
642
|
+
recordType: string;
|
|
643
|
+
}[];
|
|
644
|
+
domainId: string;
|
|
645
|
+
bindingId: string;
|
|
646
|
+
instruction: (string | null);
|
|
647
|
+
statusDetail: (string | null);
|
|
648
|
+
ownerExtension: string;
|
|
649
|
+
}[];
|
|
650
|
+
interface OrganizationClickupInstallInput {
|
|
651
|
+
}
|
|
652
|
+
interface OrganizationClickupInstallOutput {
|
|
653
|
+
url: string;
|
|
654
|
+
}
|
|
655
|
+
interface OrganizationClickupListInstallationsInput {
|
|
656
|
+
}
|
|
657
|
+
type OrganizationClickupListInstallationsOutput = {
|
|
658
|
+
status: string;
|
|
659
|
+
teamId: string;
|
|
660
|
+
teamName: string;
|
|
661
|
+
}[];
|
|
662
|
+
interface OrganizationCloudflareInstallInput {
|
|
663
|
+
}
|
|
664
|
+
interface OrganizationCloudflareInstallOutput {
|
|
665
|
+
url: string;
|
|
666
|
+
}
|
|
667
|
+
interface OrganizationConnectorsAttachInput {
|
|
668
|
+
id: string;
|
|
669
|
+
productIds: string[];
|
|
670
|
+
organizationId: string;
|
|
671
|
+
}
|
|
672
|
+
interface OrganizationConnectorsAttachOutput {
|
|
673
|
+
attachments: {
|
|
674
|
+
createdAt: string;
|
|
675
|
+
createdBy: (string | null);
|
|
676
|
+
productId: string;
|
|
677
|
+
customerId: (string | null);
|
|
678
|
+
descriptiveName: (string | null);
|
|
679
|
+
}[];
|
|
680
|
+
connectorId: string;
|
|
681
|
+
}
|
|
682
|
+
interface OrganizationConnectorsDeleteInput {
|
|
683
|
+
id: string;
|
|
684
|
+
organizationId: string;
|
|
685
|
+
}
|
|
686
|
+
interface OrganizationConnectorsDeleteOutput {
|
|
687
|
+
success: boolean;
|
|
688
|
+
}
|
|
689
|
+
interface OrganizationConnectorsDetachInput {
|
|
690
|
+
id: string;
|
|
691
|
+
productId: string;
|
|
692
|
+
organizationId: string;
|
|
693
|
+
}
|
|
694
|
+
interface OrganizationConnectorsDetachOutput {
|
|
695
|
+
success: boolean;
|
|
696
|
+
}
|
|
697
|
+
interface OrganizationConnectorsListInput {
|
|
698
|
+
productId: string;
|
|
699
|
+
}
|
|
700
|
+
type OrganizationConnectorsListOutput = {
|
|
701
|
+
id: string;
|
|
702
|
+
config: {
|
|
703
|
+
[k: string]: unknown;
|
|
704
|
+
};
|
|
705
|
+
status: string;
|
|
706
|
+
provider: string;
|
|
707
|
+
createdAt: string;
|
|
708
|
+
externalId: string;
|
|
709
|
+
displayName: string;
|
|
710
|
+
}[];
|
|
711
|
+
interface OrganizationConnectorsListAttachmentsInput {
|
|
712
|
+
id: string;
|
|
713
|
+
organizationId: string;
|
|
714
|
+
}
|
|
715
|
+
interface OrganizationConnectorsListAttachmentsOutput {
|
|
716
|
+
attachments: {
|
|
717
|
+
createdAt: string;
|
|
718
|
+
createdBy: (string | null);
|
|
719
|
+
productId: string;
|
|
720
|
+
customerId: (string | null);
|
|
721
|
+
descriptiveName: (string | null);
|
|
722
|
+
}[];
|
|
723
|
+
connectorId: string;
|
|
724
|
+
}
|
|
725
|
+
interface OrganizationConnectorsListOrgInput {
|
|
726
|
+
organizationId: string;
|
|
727
|
+
}
|
|
728
|
+
type OrganizationConnectorsListOrgOutput = {
|
|
729
|
+
id: string;
|
|
730
|
+
config: {
|
|
731
|
+
[k: string]: unknown;
|
|
732
|
+
};
|
|
733
|
+
status: string;
|
|
734
|
+
provider: string;
|
|
735
|
+
createdAt: string;
|
|
736
|
+
externalId: string;
|
|
737
|
+
displayName: string;
|
|
738
|
+
organizationId: string;
|
|
739
|
+
attachedProducts: {
|
|
740
|
+
createdAt: string;
|
|
741
|
+
createdBy: (string | null);
|
|
742
|
+
productId: string;
|
|
743
|
+
customerId: (string | null);
|
|
744
|
+
descriptiveName: (string | null);
|
|
745
|
+
}[];
|
|
746
|
+
}[];
|
|
747
|
+
interface OrganizationConnectorsRemoveInput {
|
|
748
|
+
id: string;
|
|
749
|
+
}
|
|
750
|
+
interface OrganizationConnectorsRemoveOutput {
|
|
751
|
+
success: boolean;
|
|
752
|
+
}
|
|
753
|
+
interface OrganizationDomainsAddInput {
|
|
754
|
+
domain: string;
|
|
755
|
+
productId: string;
|
|
756
|
+
}
|
|
757
|
+
interface OrganizationDomainsAddOutput {
|
|
758
|
+
id: string;
|
|
759
|
+
mode: ("external" | "managed");
|
|
760
|
+
domain: string;
|
|
761
|
+
createdAt: string;
|
|
762
|
+
createdBy: string;
|
|
763
|
+
productId: string;
|
|
764
|
+
providerConnectorId: (string | null);
|
|
765
|
+
}
|
|
766
|
+
interface OrganizationDomainsGetInput {
|
|
767
|
+
domainId: string;
|
|
768
|
+
productId: string;
|
|
769
|
+
}
|
|
770
|
+
interface OrganizationDomainsGetOutput {
|
|
771
|
+
id: string;
|
|
772
|
+
mode: ("external" | "managed");
|
|
773
|
+
domain: string;
|
|
774
|
+
createdAt: string;
|
|
775
|
+
createdBy: string;
|
|
776
|
+
productId: string;
|
|
777
|
+
providerConnectorId: (string | null);
|
|
778
|
+
}
|
|
779
|
+
interface OrganizationDomainsListInput {
|
|
780
|
+
productId: string;
|
|
781
|
+
}
|
|
782
|
+
interface OrganizationDomainsListOutput {
|
|
783
|
+
domains: {
|
|
784
|
+
id: string;
|
|
785
|
+
mode: ("external" | "managed");
|
|
786
|
+
domain: string;
|
|
787
|
+
createdAt: string;
|
|
788
|
+
createdBy: string;
|
|
789
|
+
productId: string;
|
|
790
|
+
extensionCount: number;
|
|
791
|
+
providerConnectorId: (string | null);
|
|
792
|
+
}[];
|
|
793
|
+
}
|
|
794
|
+
interface OrganizationDomainsRemoveInput {
|
|
795
|
+
domainId: string;
|
|
796
|
+
productId: string;
|
|
797
|
+
}
|
|
798
|
+
interface OrganizationDomainsRemoveOutput {
|
|
799
|
+
[k: string]: unknown;
|
|
800
|
+
}
|
|
801
|
+
interface OrganizationExtensionsInstallInput {
|
|
802
|
+
productId: string;
|
|
803
|
+
extensionId: string;
|
|
804
|
+
}
|
|
805
|
+
interface OrganizationExtensionsInstallOutput {
|
|
806
|
+
message: string;
|
|
807
|
+
}
|
|
808
|
+
interface OrganizationExtensionsListInput {
|
|
809
|
+
}
|
|
810
|
+
interface OrganizationExtensionsListOutput {
|
|
811
|
+
extensions: {
|
|
812
|
+
id: string;
|
|
813
|
+
name: string;
|
|
814
|
+
status: string;
|
|
815
|
+
uiMode: ("federation" | "standalone");
|
|
816
|
+
version: string;
|
|
817
|
+
manifest: {
|
|
818
|
+
[k: string]: unknown;
|
|
819
|
+
};
|
|
820
|
+
}[];
|
|
821
|
+
}
|
|
822
|
+
interface OrganizationExtensionsListInstalledInput {
|
|
823
|
+
productId: string;
|
|
824
|
+
}
|
|
825
|
+
interface OrganizationExtensionsListInstalledOutput {
|
|
826
|
+
extensions: {
|
|
827
|
+
id: string;
|
|
828
|
+
name: string;
|
|
829
|
+
status: string;
|
|
830
|
+
uiMode: ("federation" | "standalone");
|
|
831
|
+
version: string;
|
|
832
|
+
manifest: {
|
|
833
|
+
[k: string]: unknown;
|
|
834
|
+
};
|
|
835
|
+
installedAt: string;
|
|
836
|
+
}[];
|
|
837
|
+
}
|
|
838
|
+
interface OrganizationExtensionsUninstallInput {
|
|
839
|
+
productId: string;
|
|
840
|
+
extensionId: string;
|
|
841
|
+
}
|
|
842
|
+
interface OrganizationExtensionsUninstallOutput {
|
|
843
|
+
message: string;
|
|
844
|
+
}
|
|
845
|
+
interface OrganizationGdriveInstallInput {
|
|
846
|
+
}
|
|
847
|
+
interface OrganizationGdriveInstallOutput {
|
|
848
|
+
url: string;
|
|
849
|
+
}
|
|
850
|
+
interface OrganizationGithubInstallInput {
|
|
851
|
+
}
|
|
852
|
+
interface OrganizationGithubInstallOutput {
|
|
853
|
+
url: string;
|
|
854
|
+
}
|
|
855
|
+
interface OrganizationGithubListInstallationsInput {
|
|
856
|
+
}
|
|
857
|
+
type OrganizationGithubListInstallationsOutput = {
|
|
858
|
+
status: string;
|
|
859
|
+
accountType: string;
|
|
860
|
+
accountLogin: string;
|
|
861
|
+
installationId: number;
|
|
862
|
+
}[];
|
|
863
|
+
interface OrganizationGoogleadsInstallInput {
|
|
864
|
+
organizationId: string;
|
|
865
|
+
}
|
|
866
|
+
interface OrganizationGoogleadsInstallOutput {
|
|
867
|
+
url: string;
|
|
868
|
+
}
|
|
869
|
+
interface OrganizationMemberAcceptInviteInput {
|
|
870
|
+
token: string;
|
|
871
|
+
}
|
|
872
|
+
interface OrganizationMemberAcceptInviteOutput {
|
|
873
|
+
name: string;
|
|
874
|
+
role: string;
|
|
875
|
+
products: {
|
|
876
|
+
id: string;
|
|
877
|
+
name: string;
|
|
878
|
+
role: string;
|
|
879
|
+
slug: string;
|
|
880
|
+
}[];
|
|
881
|
+
organizationId: string;
|
|
882
|
+
}
|
|
883
|
+
interface OrganizationMemberInviteInput {
|
|
884
|
+
role: ("owner" | "admin" | "member");
|
|
885
|
+
email: string;
|
|
886
|
+
productShares?: {
|
|
887
|
+
role?: string;
|
|
888
|
+
roleId?: string;
|
|
889
|
+
expiresAt?: (string | null);
|
|
890
|
+
productId: string;
|
|
891
|
+
permissions?: {
|
|
892
|
+
deny?: string[];
|
|
893
|
+
allow?: string[];
|
|
894
|
+
};
|
|
895
|
+
}[];
|
|
896
|
+
organizationId: string;
|
|
897
|
+
}
|
|
898
|
+
type OrganizationMemberInviteOutput = ({
|
|
899
|
+
id: string;
|
|
900
|
+
role: string;
|
|
901
|
+
email: string;
|
|
902
|
+
status: string;
|
|
903
|
+
outcome: "invited";
|
|
904
|
+
createdAt: string;
|
|
905
|
+
expiresAt: string;
|
|
906
|
+
} | {
|
|
907
|
+
name: string;
|
|
908
|
+
role: string;
|
|
909
|
+
userId: string;
|
|
910
|
+
outcome: "added";
|
|
911
|
+
products: {
|
|
912
|
+
id: string;
|
|
913
|
+
name: string;
|
|
914
|
+
role: string;
|
|
915
|
+
slug: string;
|
|
916
|
+
}[];
|
|
917
|
+
organizationId: string;
|
|
918
|
+
});
|
|
919
|
+
interface OrganizationMemberListInput {
|
|
920
|
+
organizationId: string;
|
|
921
|
+
}
|
|
922
|
+
interface OrganizationMemberListOutput {
|
|
923
|
+
members: {
|
|
924
|
+
id: string;
|
|
925
|
+
role: string;
|
|
926
|
+
status: string;
|
|
927
|
+
userId: string;
|
|
928
|
+
products: {
|
|
929
|
+
role: string;
|
|
930
|
+
expiresAt: (string | null);
|
|
931
|
+
productId: string;
|
|
932
|
+
grantSource: string;
|
|
933
|
+
}[];
|
|
934
|
+
createdAt: string;
|
|
935
|
+
displayName: (string | null);
|
|
936
|
+
}[];
|
|
937
|
+
}
|
|
938
|
+
interface OrganizationMemberListInvitationsInput {
|
|
939
|
+
organizationId: string;
|
|
940
|
+
}
|
|
941
|
+
interface OrganizationMemberListInvitationsOutput {
|
|
942
|
+
invitations: {
|
|
943
|
+
id: string;
|
|
944
|
+
role: string;
|
|
945
|
+
email: string;
|
|
946
|
+
status: string;
|
|
947
|
+
createdAt: string;
|
|
948
|
+
expiresAt: string;
|
|
949
|
+
invitedByDisplayName: string;
|
|
950
|
+
}[];
|
|
951
|
+
}
|
|
952
|
+
interface OrganizationMemberListProductAccessInput {
|
|
953
|
+
userId: string;
|
|
954
|
+
organizationId: string;
|
|
955
|
+
}
|
|
956
|
+
interface OrganizationMemberListProductAccessOutput {
|
|
957
|
+
products: {
|
|
958
|
+
name: string;
|
|
959
|
+
role: string;
|
|
960
|
+
slug: string;
|
|
961
|
+
isCustom: boolean;
|
|
962
|
+
expiresAt: (string | null);
|
|
963
|
+
productId: string;
|
|
964
|
+
sourceRole: ({
|
|
965
|
+
id: string;
|
|
966
|
+
name: string;
|
|
967
|
+
} | null);
|
|
968
|
+
grantSource: string;
|
|
969
|
+
permissions: ({
|
|
970
|
+
deny: string[];
|
|
971
|
+
allow: string[];
|
|
972
|
+
} | null);
|
|
973
|
+
effectivePermissions: {
|
|
974
|
+
deny: string[];
|
|
975
|
+
allow: string[];
|
|
976
|
+
};
|
|
977
|
+
}[];
|
|
978
|
+
}
|
|
979
|
+
interface OrganizationMemberRemoveInput {
|
|
980
|
+
userId: string;
|
|
981
|
+
organizationId: string;
|
|
982
|
+
}
|
|
983
|
+
interface OrganizationMemberRemoveOutput {
|
|
984
|
+
[k: string]: unknown;
|
|
985
|
+
}
|
|
986
|
+
interface OrganizationMemberRevokeInvitationInput {
|
|
987
|
+
invitationId: string;
|
|
988
|
+
organizationId: string;
|
|
989
|
+
}
|
|
990
|
+
interface OrganizationMemberRevokeInvitationOutput {
|
|
991
|
+
[k: string]: unknown;
|
|
992
|
+
}
|
|
993
|
+
interface OrganizationMemberSetRoleInput {
|
|
994
|
+
role: ("admin" | "member");
|
|
995
|
+
userId: string;
|
|
996
|
+
organizationId: string;
|
|
997
|
+
}
|
|
998
|
+
interface OrganizationMemberSetRoleOutput {
|
|
999
|
+
role: string;
|
|
1000
|
+
userId: string;
|
|
1001
|
+
}
|
|
1002
|
+
interface OrganizationMemberShareProductInput {
|
|
1003
|
+
role?: string;
|
|
1004
|
+
roleId?: string;
|
|
1005
|
+
userId: string;
|
|
1006
|
+
expiresAt?: (string | null);
|
|
1007
|
+
productId: string;
|
|
1008
|
+
permissions?: {
|
|
1009
|
+
deny?: string[];
|
|
1010
|
+
allow?: string[];
|
|
1011
|
+
};
|
|
1012
|
+
organizationId: string;
|
|
1013
|
+
}
|
|
1014
|
+
interface OrganizationMemberShareProductOutput {
|
|
1015
|
+
role: string;
|
|
1016
|
+
userId: string;
|
|
1017
|
+
expiresAt: (string | null);
|
|
1018
|
+
productId: string;
|
|
1019
|
+
}
|
|
1020
|
+
interface OrganizationMemberUnshareProductInput {
|
|
1021
|
+
userId: string;
|
|
1022
|
+
productId: string;
|
|
1023
|
+
organizationId: string;
|
|
1024
|
+
}
|
|
1025
|
+
interface OrganizationMemberUnshareProductOutput {
|
|
1026
|
+
[k: string]: unknown;
|
|
1027
|
+
}
|
|
1028
|
+
interface OrganizationMembersAssignRoleInput {
|
|
1029
|
+
roleId: string;
|
|
1030
|
+
memberId: string;
|
|
1031
|
+
productId: string;
|
|
1032
|
+
}
|
|
1033
|
+
interface OrganizationMembersAssignRoleOutput {
|
|
1034
|
+
id: string;
|
|
1035
|
+
role: string;
|
|
1036
|
+
roleId: (string | null);
|
|
1037
|
+
status: string;
|
|
1038
|
+
userId: (string | null);
|
|
1039
|
+
agentId: (string | null);
|
|
1040
|
+
joinedAt: (string | null);
|
|
1041
|
+
expiresAt: (string | null);
|
|
1042
|
+
invitedAt: string;
|
|
1043
|
+
invitedBy: (string | null);
|
|
1044
|
+
productId: string;
|
|
1045
|
+
grantSource: string;
|
|
1046
|
+
permissions: {
|
|
1047
|
+
[k: string]: unknown;
|
|
1048
|
+
};
|
|
1049
|
+
}
|
|
1050
|
+
interface OrganizationPermissionCatalogInput {
|
|
1051
|
+
}
|
|
1052
|
+
interface OrganizationPermissionCatalogOutput {
|
|
1053
|
+
catalog: {
|
|
1054
|
+
key: string;
|
|
1055
|
+
group: string;
|
|
1056
|
+
level: ("read" | "write" | "admin");
|
|
1057
|
+
scope: ("user" | "product");
|
|
1058
|
+
display_name: string;
|
|
1059
|
+
}[];
|
|
1060
|
+
}
|
|
1061
|
+
interface OrganizationProductAcceptInvitationInput {
|
|
1062
|
+
token: string;
|
|
1063
|
+
}
|
|
1064
|
+
interface OrganizationProductAcceptInvitationOutput {
|
|
1065
|
+
product: {
|
|
1066
|
+
id: string;
|
|
1067
|
+
name: string;
|
|
1068
|
+
role: string;
|
|
1069
|
+
slug: string;
|
|
1070
|
+
status: string;
|
|
1071
|
+
createdAt: string;
|
|
1072
|
+
};
|
|
1073
|
+
}
|
|
1074
|
+
interface OrganizationProductCreateInput {
|
|
1075
|
+
name: string;
|
|
1076
|
+
organizationName?: string;
|
|
1077
|
+
}
|
|
1078
|
+
interface OrganizationProductCreateOutput {
|
|
1079
|
+
id: string;
|
|
1080
|
+
name: string;
|
|
1081
|
+
role: string;
|
|
1082
|
+
slug: string;
|
|
1083
|
+
status: string;
|
|
1084
|
+
blockedAt: (string | null);
|
|
1085
|
+
createdAt: string;
|
|
1086
|
+
archivedAt: (string | null);
|
|
1087
|
+
}
|
|
1088
|
+
interface OrganizationProductInviteInput {
|
|
1089
|
+
email: string;
|
|
1090
|
+
productId: string;
|
|
1091
|
+
}
|
|
1092
|
+
interface OrganizationProductInviteOutput {
|
|
1093
|
+
id: string;
|
|
1094
|
+
role: string;
|
|
1095
|
+
email: (string | null);
|
|
1096
|
+
status: string;
|
|
1097
|
+
createdAt: string;
|
|
1098
|
+
expiresAt: string;
|
|
1099
|
+
}
|
|
1100
|
+
interface OrganizationProductListInput {
|
|
1101
|
+
}
|
|
1102
|
+
interface OrganizationProductListOutput {
|
|
1103
|
+
products: {
|
|
1104
|
+
id: string;
|
|
1105
|
+
name: string;
|
|
1106
|
+
role: string;
|
|
1107
|
+
slug: string;
|
|
1108
|
+
status: string;
|
|
1109
|
+
blockedAt: (string | null);
|
|
1110
|
+
createdAt: string;
|
|
1111
|
+
archivedAt: (string | null);
|
|
1112
|
+
}[];
|
|
1113
|
+
}
|
|
1114
|
+
interface OrganizationProductListInvitationsInput {
|
|
1115
|
+
productId: string;
|
|
1116
|
+
}
|
|
1117
|
+
interface OrganizationProductListInvitationsOutput {
|
|
1118
|
+
invitations: {
|
|
1119
|
+
id: string;
|
|
1120
|
+
role: string;
|
|
1121
|
+
email: (string | null);
|
|
1122
|
+
status: string;
|
|
1123
|
+
createdAt: string;
|
|
1124
|
+
expiresAt: string;
|
|
1125
|
+
invitedByDisplayName: string;
|
|
1126
|
+
}[];
|
|
1127
|
+
}
|
|
1128
|
+
interface OrganizationProductListMembersInput {
|
|
1129
|
+
productId: string;
|
|
1130
|
+
}
|
|
1131
|
+
interface OrganizationProductListMembersOutput {
|
|
1132
|
+
members: {
|
|
1133
|
+
id: string;
|
|
1134
|
+
role: string;
|
|
1135
|
+
email: (string | null);
|
|
1136
|
+
roleId: (string | null);
|
|
1137
|
+
userId: string;
|
|
1138
|
+
joinedAt: (string | null);
|
|
1139
|
+
roleName: (string | null);
|
|
1140
|
+
roleType: (("system" | "custom") | null);
|
|
1141
|
+
expiresAt: (string | null);
|
|
1142
|
+
displayName: (string | null);
|
|
1143
|
+
}[];
|
|
1144
|
+
}
|
|
1145
|
+
interface OrganizationProductRevokeInvitationInput {
|
|
1146
|
+
productId: string;
|
|
1147
|
+
invitationId: string;
|
|
1148
|
+
}
|
|
1149
|
+
interface OrganizationProductRevokeInvitationOutput {
|
|
1150
|
+
message: string;
|
|
1151
|
+
}
|
|
1152
|
+
interface OrganizationProductSelectInput {
|
|
1153
|
+
productId: string;
|
|
1154
|
+
}
|
|
1155
|
+
interface OrganizationProductSelectOutput {
|
|
1156
|
+
id: string;
|
|
1157
|
+
name: string;
|
|
1158
|
+
slug: string;
|
|
1159
|
+
}
|
|
1160
|
+
interface OrganizationRolesCreateInput {
|
|
1161
|
+
deny?: string[];
|
|
1162
|
+
name: string;
|
|
1163
|
+
allow?: string[];
|
|
1164
|
+
orgId: string;
|
|
1165
|
+
}
|
|
1166
|
+
interface OrganizationRolesCreateOutput {
|
|
1167
|
+
id: string;
|
|
1168
|
+
deny: string[];
|
|
1169
|
+
name: string;
|
|
1170
|
+
type: ("system" | "custom");
|
|
1171
|
+
allow: string[];
|
|
1172
|
+
createdAt: string;
|
|
1173
|
+
updatedAt: string;
|
|
1174
|
+
organizationId: string;
|
|
1175
|
+
}
|
|
1176
|
+
interface OrganizationRolesDeleteInput {
|
|
1177
|
+
orgId: string;
|
|
1178
|
+
roleId: string;
|
|
1179
|
+
}
|
|
1180
|
+
interface OrganizationRolesDeleteOutput {
|
|
1181
|
+
[k: string]: unknown;
|
|
1182
|
+
}
|
|
1183
|
+
interface OrganizationRolesGetInput {
|
|
1184
|
+
orgId: string;
|
|
1185
|
+
roleId: string;
|
|
1186
|
+
}
|
|
1187
|
+
interface OrganizationRolesGetOutput {
|
|
1188
|
+
id: string;
|
|
1189
|
+
deny: string[];
|
|
1190
|
+
name: string;
|
|
1191
|
+
type: ("system" | "custom");
|
|
1192
|
+
allow: string[];
|
|
1193
|
+
createdAt: string;
|
|
1194
|
+
updatedAt: string;
|
|
1195
|
+
organizationId: string;
|
|
1196
|
+
}
|
|
1197
|
+
interface OrganizationRolesListInput {
|
|
1198
|
+
orgId: string;
|
|
1199
|
+
}
|
|
1200
|
+
interface OrganizationRolesListOutput {
|
|
1201
|
+
roles: {
|
|
1202
|
+
id: string;
|
|
1203
|
+
deny: string[];
|
|
1204
|
+
name: string;
|
|
1205
|
+
type: ("system" | "custom");
|
|
1206
|
+
allow: string[];
|
|
1207
|
+
createdAt: string;
|
|
1208
|
+
updatedAt: string;
|
|
1209
|
+
organizationId: string;
|
|
1210
|
+
}[];
|
|
1211
|
+
}
|
|
1212
|
+
interface OrganizationRolesUpdateInput {
|
|
1213
|
+
deny?: string[];
|
|
1214
|
+
name?: string;
|
|
1215
|
+
allow?: string[];
|
|
1216
|
+
orgId: string;
|
|
1217
|
+
roleId: string;
|
|
1218
|
+
}
|
|
1219
|
+
interface OrganizationRolesUpdateOutput {
|
|
1220
|
+
id: string;
|
|
1221
|
+
deny: string[];
|
|
1222
|
+
name: string;
|
|
1223
|
+
type: ("system" | "custom");
|
|
1224
|
+
allow: string[];
|
|
1225
|
+
createdAt: string;
|
|
1226
|
+
updatedAt: string;
|
|
1227
|
+
organizationId: string;
|
|
1228
|
+
}
|
|
1229
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
1230
|
+
/**
|
|
1231
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
1232
|
+
*/
|
|
1233
|
+
limit?: number;
|
|
1234
|
+
}
|
|
1235
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
1236
|
+
ok: boolean;
|
|
1237
|
+
minted: boolean;
|
|
1238
|
+
overview?: unknown;
|
|
1239
|
+
http_status: number;
|
|
1240
|
+
}
|
|
1241
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
1242
|
+
}
|
|
1243
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
1244
|
+
ok: boolean;
|
|
1245
|
+
minted: boolean;
|
|
1246
|
+
http_status: number;
|
|
1247
|
+
entitlements?: unknown;
|
|
1248
|
+
}
|
|
1249
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
1250
|
+
/**
|
|
1251
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
1252
|
+
*/
|
|
1253
|
+
value?: number;
|
|
1254
|
+
}
|
|
1255
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
1256
|
+
minted: boolean;
|
|
1257
|
+
accepted: (number | null);
|
|
1258
|
+
recorded: boolean;
|
|
1259
|
+
duplicates: (number | null);
|
|
1260
|
+
http_status: number;
|
|
1261
|
+
}
|
|
1262
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
1263
|
+
/**
|
|
1264
|
+
* Task title; defaults to a fixture label
|
|
1265
|
+
*/
|
|
1266
|
+
name?: string;
|
|
1267
|
+
/**
|
|
1268
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
1269
|
+
*/
|
|
1270
|
+
listId?: string;
|
|
1271
|
+
}
|
|
1272
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
1273
|
+
minted: boolean;
|
|
1274
|
+
task_id: (string | null);
|
|
1275
|
+
list_status: number;
|
|
1276
|
+
vend_status: number;
|
|
1277
|
+
clickup_status: number;
|
|
1278
|
+
installation_count: number;
|
|
1279
|
+
}
|
|
1280
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
1281
|
+
}
|
|
1282
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
1283
|
+
payload: string;
|
|
1284
|
+
event_id: string;
|
|
1285
|
+
provider: string;
|
|
1286
|
+
verified: boolean;
|
|
1287
|
+
product_id: string;
|
|
1288
|
+
occurred_at: string;
|
|
1289
|
+
connector_id: string;
|
|
1290
|
+
clickup_event: (string | null);
|
|
1291
|
+
receipt_count: number;
|
|
1292
|
+
} | {
|
|
1293
|
+
found: false;
|
|
1294
|
+
});
|
|
1295
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
1296
|
+
}
|
|
1297
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
1298
|
+
team: ({
|
|
1299
|
+
teamId: string;
|
|
1300
|
+
teamName: string;
|
|
1301
|
+
} | null);
|
|
1302
|
+
lists: Items[];
|
|
1303
|
+
tasks: {
|
|
1304
|
+
id: string;
|
|
1305
|
+
name: string;
|
|
1306
|
+
status: (string | null);
|
|
1307
|
+
}[];
|
|
1308
|
+
minted: boolean;
|
|
1309
|
+
spaces: Items[];
|
|
1310
|
+
list_status: number;
|
|
1311
|
+
vend_status: number;
|
|
1312
|
+
lists_status: number;
|
|
1313
|
+
tasks_status: number;
|
|
1314
|
+
spaces_status: number;
|
|
1315
|
+
folders_status: number;
|
|
1316
|
+
installation_count: number;
|
|
1317
|
+
}
|
|
1318
|
+
interface Items {
|
|
1319
|
+
id: string;
|
|
1320
|
+
name: string;
|
|
1321
|
+
}
|
|
1322
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
1323
|
+
}
|
|
1324
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
1325
|
+
file_id: string;
|
|
1326
|
+
removed: boolean;
|
|
1327
|
+
file_name: (string | null);
|
|
1328
|
+
mime_type: (string | null);
|
|
1329
|
+
product_id: string;
|
|
1330
|
+
occurred_at: string;
|
|
1331
|
+
connector_id: string;
|
|
1332
|
+
resource_state: string;
|
|
1333
|
+
} | {
|
|
1334
|
+
found: false;
|
|
1335
|
+
});
|
|
1336
|
+
interface PlaygroundGdriveReadFileInput {
|
|
1337
|
+
/**
|
|
1338
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
1339
|
+
*/
|
|
1340
|
+
fileId?: string;
|
|
1341
|
+
}
|
|
1342
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
1343
|
+
minted: boolean;
|
|
1344
|
+
file_id: (string | null);
|
|
1345
|
+
file_name: (string | null);
|
|
1346
|
+
mime_type: (string | null);
|
|
1347
|
+
file_count: number;
|
|
1348
|
+
get_status: number;
|
|
1349
|
+
list_status: number;
|
|
1350
|
+
vend_status: number;
|
|
1351
|
+
content_bytes: (number | null);
|
|
1352
|
+
}
|
|
1353
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
1354
|
+
}
|
|
1355
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
1356
|
+
minted: boolean;
|
|
1357
|
+
vended: boolean;
|
|
1358
|
+
customer_id: (string | null);
|
|
1359
|
+
vend_status: number;
|
|
1360
|
+
result_count: number;
|
|
1361
|
+
search_status: number;
|
|
1362
|
+
login_customer_id: (string | null);
|
|
1363
|
+
}
|
|
1364
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
1365
|
+
}
|
|
1366
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
1367
|
+
blocked: boolean;
|
|
1368
|
+
archived: boolean;
|
|
1369
|
+
productId: string;
|
|
1370
|
+
lastBlockTransition: ({
|
|
1371
|
+
eventId: string;
|
|
1372
|
+
eventName: string;
|
|
1373
|
+
productId: string;
|
|
1374
|
+
occurredAt: string;
|
|
1375
|
+
recordedAt: string;
|
|
1376
|
+
receiptCount: number;
|
|
1377
|
+
organizationId: string;
|
|
1378
|
+
cascadedFromOrg: boolean;
|
|
1379
|
+
} | null);
|
|
1380
|
+
lastArchiveTransition: ({
|
|
1381
|
+
eventId: string;
|
|
1382
|
+
eventName: string;
|
|
1383
|
+
productId: string;
|
|
1384
|
+
occurredAt: string;
|
|
1385
|
+
recordedAt: string;
|
|
1386
|
+
receiptCount: number;
|
|
1387
|
+
organizationId: string;
|
|
1388
|
+
cascadedFromOrg: boolean;
|
|
1389
|
+
} | null);
|
|
1390
|
+
}
|
|
1391
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
1392
|
+
}
|
|
1393
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
1394
|
+
eventId: string;
|
|
1395
|
+
eventName: string;
|
|
1396
|
+
productId: string;
|
|
1397
|
+
occurredAt: string;
|
|
1398
|
+
recordedAt: string;
|
|
1399
|
+
receiptCount: number;
|
|
1400
|
+
organizationId: string;
|
|
1401
|
+
cascadedFromOrg: boolean;
|
|
1402
|
+
}[];
|
|
1403
|
+
interface PlaygroundWebhookGetLastInput {
|
|
1404
|
+
}
|
|
1405
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
1406
|
+
payload?: unknown;
|
|
1407
|
+
event_id: string;
|
|
1408
|
+
provider: string;
|
|
1409
|
+
verified: boolean;
|
|
1410
|
+
product_id: string;
|
|
1411
|
+
occurred_at: string;
|
|
1412
|
+
connector_id: string;
|
|
1413
|
+
delivery_count: number;
|
|
1414
|
+
} | {
|
|
1415
|
+
found: false;
|
|
1416
|
+
});
|
|
1417
|
+
|
|
1418
|
+
interface GeneratedClient {
|
|
1419
|
+
deployment: {
|
|
1420
|
+
alert: {
|
|
1421
|
+
create(input: DeploymentAlertCreateInput): Promise<DeploymentAlertCreateOutput>;
|
|
1422
|
+
delete(input: DeploymentAlertDeleteInput): Promise<DeploymentAlertDeleteOutput>;
|
|
1423
|
+
list(input: DeploymentAlertListInput): Promise<DeploymentAlertListOutput>;
|
|
1424
|
+
update(input: DeploymentAlertUpdateInput): Promise<DeploymentAlertUpdateOutput>;
|
|
1425
|
+
};
|
|
1426
|
+
'alert-events': {
|
|
1427
|
+
list(input: DeploymentAlertEventsListInput): Promise<DeploymentAlertEventsListOutput>;
|
|
1428
|
+
};
|
|
1429
|
+
analytics: {
|
|
1430
|
+
query(input: DeploymentAnalyticsQueryInput): Promise<DeploymentAnalyticsQueryOutput>;
|
|
1431
|
+
};
|
|
1432
|
+
audit: {
|
|
1433
|
+
list(input: DeploymentAuditListInput): Promise<DeploymentAuditListOutput>;
|
|
1434
|
+
};
|
|
1435
|
+
build: {
|
|
1436
|
+
get(input: DeploymentBuildGetInput): Promise<DeploymentBuildGetOutput>;
|
|
1437
|
+
list(input: DeploymentBuildListInput): Promise<DeploymentBuildListOutput>;
|
|
1438
|
+
logs(input: DeploymentBuildLogsInput): Promise<DeploymentBuildLogsOutput>;
|
|
1439
|
+
};
|
|
1440
|
+
canvas: {
|
|
1441
|
+
get(input: DeploymentCanvasGetInput): Promise<DeploymentCanvasGetOutput>;
|
|
1442
|
+
};
|
|
1443
|
+
'canvas-move': {
|
|
1444
|
+
node(input: DeploymentCanvasMoveNodeInput): Promise<DeploymentCanvasMoveNodeOutput>;
|
|
1445
|
+
};
|
|
1446
|
+
'cloud-sql': {
|
|
1447
|
+
logs(input: DeploymentCloudSqlLogsInput): Promise<DeploymentCloudSqlLogsOutput>;
|
|
1448
|
+
};
|
|
1449
|
+
'cloud-sql-backfill-log': {
|
|
1450
|
+
flags(input: DeploymentCloudSqlBackfillLogFlagsInput): Promise<DeploymentCloudSqlBackfillLogFlagsOutput>;
|
|
1451
|
+
};
|
|
1452
|
+
'cloud-sql-database': {
|
|
1453
|
+
attach(input: DeploymentCloudSqlDatabaseAttachInput): Promise<DeploymentCloudSqlDatabaseAttachOutput>;
|
|
1454
|
+
create(input: DeploymentCloudSqlDatabaseCreateInput): Promise<DeploymentCloudSqlDatabaseCreateOutput>;
|
|
1455
|
+
delete(input: DeploymentCloudSqlDatabaseDeleteInput): Promise<DeploymentCloudSqlDatabaseDeleteOutput>;
|
|
1456
|
+
detach(input: DeploymentCloudSqlDatabaseDetachInput): Promise<DeploymentCloudSqlDatabaseDetachOutput>;
|
|
1457
|
+
get(input: DeploymentCloudSqlDatabaseGetInput): Promise<DeploymentCloudSqlDatabaseGetOutput>;
|
|
1458
|
+
list(input: DeploymentCloudSqlDatabaseListInput): Promise<DeploymentCloudSqlDatabaseListOutput>;
|
|
1459
|
+
};
|
|
1460
|
+
'cloud-sql-instance': {
|
|
1461
|
+
backup(input: DeploymentCloudSqlInstanceBackupInput): Promise<DeploymentCloudSqlInstanceBackupOutput>;
|
|
1462
|
+
create(input: DeploymentCloudSqlInstanceCreateInput): Promise<DeploymentCloudSqlInstanceCreateOutput>;
|
|
1463
|
+
delete(input: DeploymentCloudSqlInstanceDeleteInput): Promise<DeploymentCloudSqlInstanceDeleteOutput>;
|
|
1464
|
+
get(input: DeploymentCloudSqlInstanceGetInput): Promise<DeploymentCloudSqlInstanceGetOutput>;
|
|
1465
|
+
list(input: DeploymentCloudSqlInstanceListInput): Promise<DeploymentCloudSqlInstanceListOutput>;
|
|
1466
|
+
resize(input: DeploymentCloudSqlInstanceResizeInput): Promise<DeploymentCloudSqlInstanceResizeOutput>;
|
|
1467
|
+
restore(input: DeploymentCloudSqlInstanceRestoreInput): Promise<DeploymentCloudSqlInstanceRestoreOutput>;
|
|
1468
|
+
};
|
|
1469
|
+
'cloud-sql-instance-backup': {
|
|
1470
|
+
list(input: DeploymentCloudSqlInstanceBackupListInput): Promise<DeploymentCloudSqlInstanceBackupListOutput>;
|
|
1471
|
+
};
|
|
1472
|
+
deployment: {
|
|
1473
|
+
cancel(input: DeploymentDeploymentCancelInput): Promise<DeploymentDeploymentCancelOutput>;
|
|
1474
|
+
get(input: DeploymentDeploymentGetInput): Promise<DeploymentDeploymentGetOutput>;
|
|
1475
|
+
list(input: DeploymentDeploymentListInput): Promise<DeploymentDeploymentListOutput>;
|
|
1476
|
+
};
|
|
1477
|
+
domain: {
|
|
1478
|
+
add(input: DeploymentDomainAddInput): Promise<DeploymentDomainAddOutput>;
|
|
1479
|
+
get(input: DeploymentDomainGetInput): Promise<DeploymentDomainGetOutput>;
|
|
1480
|
+
list(input: DeploymentDomainListInput): Promise<DeploymentDomainListOutput>;
|
|
1481
|
+
remove(input: DeploymentDomainRemoveInput): Promise<DeploymentDomainRemoveOutput>;
|
|
1482
|
+
verify(input: DeploymentDomainVerifyInput): Promise<DeploymentDomainVerifyOutput>;
|
|
1483
|
+
};
|
|
1484
|
+
'domain-allowed': {
|
|
1485
|
+
list(input: DeploymentDomainAllowedListInput): Promise<DeploymentDomainAllowedListOutput>;
|
|
1486
|
+
};
|
|
1487
|
+
'domain-list-by': {
|
|
1488
|
+
service(input: DeploymentDomainListByServiceInput): Promise<DeploymentDomainListByServiceOutput>;
|
|
1489
|
+
};
|
|
1490
|
+
'domain-redirect': {
|
|
1491
|
+
www(input: DeploymentDomainRedirectWwwInput): Promise<DeploymentDomainRedirectWwwOutput>;
|
|
1492
|
+
};
|
|
1493
|
+
'domain-routes': {
|
|
1494
|
+
add(input: DeploymentDomainRoutesAddInput): Promise<DeploymentDomainRoutesAddOutput>;
|
|
1495
|
+
list(input: DeploymentDomainRoutesListInput): Promise<DeploymentDomainRoutesListOutput>;
|
|
1496
|
+
remove(input: DeploymentDomainRoutesRemoveInput): Promise<DeploymentDomainRoutesRemoveOutput>;
|
|
1497
|
+
update(input: DeploymentDomainRoutesUpdateInput): Promise<DeploymentDomainRoutesUpdateOutput>;
|
|
1498
|
+
};
|
|
1499
|
+
environment: {
|
|
1500
|
+
create(input: DeploymentEnvironmentCreateInput): Promise<DeploymentEnvironmentCreateOutput>;
|
|
1501
|
+
delete(input: DeploymentEnvironmentDeleteInput): Promise<DeploymentEnvironmentDeleteOutput>;
|
|
1502
|
+
fork(input: DeploymentEnvironmentForkInput): Promise<DeploymentEnvironmentForkOutput>;
|
|
1503
|
+
get(input: DeploymentEnvironmentGetInput): Promise<DeploymentEnvironmentGetOutput>;
|
|
1504
|
+
list(input: DeploymentEnvironmentListInput): Promise<DeploymentEnvironmentListOutput>;
|
|
1505
|
+
reconcile(input: DeploymentEnvironmentReconcileInput): Promise<DeploymentEnvironmentReconcileOutput>;
|
|
1506
|
+
update(input: DeploymentEnvironmentUpdateInput): Promise<DeploymentEnvironmentUpdateOutput>;
|
|
1507
|
+
};
|
|
1508
|
+
'events-list-by': {
|
|
1509
|
+
environment(input: DeploymentEventsListByEnvironmentInput): Promise<DeploymentEventsListByEnvironmentOutput>;
|
|
1510
|
+
service(input: DeploymentEventsListByServiceInput): Promise<DeploymentEventsListByServiceOutput>;
|
|
1511
|
+
};
|
|
1512
|
+
'managed-service': {
|
|
1513
|
+
backup(input: DeploymentManagedServiceBackupInput): Promise<DeploymentManagedServiceBackupOutput>;
|
|
1514
|
+
delete(input: DeploymentManagedServiceDeleteInput): Promise<DeploymentManagedServiceDeleteOutput>;
|
|
1515
|
+
get(input: DeploymentManagedServiceGetInput): Promise<DeploymentManagedServiceGetOutput>;
|
|
1516
|
+
list(input: DeploymentManagedServiceListInput): Promise<DeploymentManagedServiceListOutput>;
|
|
1517
|
+
logs(input: DeploymentManagedServiceLogsInput): Promise<DeploymentManagedServiceLogsOutput>;
|
|
1518
|
+
provision(input: DeploymentManagedServiceProvisionInput): Promise<DeploymentManagedServiceProvisionOutput>;
|
|
1519
|
+
reconcile(input: DeploymentManagedServiceReconcileInput): Promise<DeploymentManagedServiceReconcileOutput>;
|
|
1520
|
+
resize(input: DeploymentManagedServiceResizeInput): Promise<DeploymentManagedServiceResizeOutput>;
|
|
1521
|
+
restore(input: DeploymentManagedServiceRestoreInput): Promise<DeploymentManagedServiceRestoreOutput>;
|
|
1522
|
+
start(input: DeploymentManagedServiceStartInput): Promise<DeploymentManagedServiceStartOutput>;
|
|
1523
|
+
stop(input: DeploymentManagedServiceStopInput): Promise<DeploymentManagedServiceStopOutput>;
|
|
1524
|
+
types(input: DeploymentManagedServiceTypesInput): Promise<DeploymentManagedServiceTypesOutput>;
|
|
1525
|
+
};
|
|
1526
|
+
'managed-service-backup': {
|
|
1527
|
+
list(input: DeploymentManagedServiceBackupListInput): Promise<DeploymentManagedServiceBackupListOutput>;
|
|
1528
|
+
};
|
|
1529
|
+
'managed-service-connect': {
|
|
1530
|
+
info(input: DeploymentManagedServiceConnectInfoInput): Promise<DeploymentManagedServiceConnectInfoOutput>;
|
|
1531
|
+
};
|
|
1532
|
+
metrics: {
|
|
1533
|
+
get(input: DeploymentMetricsGetInput): Promise<DeploymentMetricsGetOutput>;
|
|
1534
|
+
};
|
|
1535
|
+
'preview-environment': {
|
|
1536
|
+
create(input: DeploymentPreviewEnvironmentCreateInput): Promise<DeploymentPreviewEnvironmentCreateOutput>;
|
|
1537
|
+
delete(input: DeploymentPreviewEnvironmentDeleteInput): Promise<DeploymentPreviewEnvironmentDeleteOutput>;
|
|
1538
|
+
list(input: DeploymentPreviewEnvironmentListInput): Promise<DeploymentPreviewEnvironmentListOutput>;
|
|
1539
|
+
};
|
|
1540
|
+
'preview-policy': {
|
|
1541
|
+
get(input: DeploymentPreviewPolicyGetInput): Promise<DeploymentPreviewPolicyGetOutput>;
|
|
1542
|
+
set(input: DeploymentPreviewPolicySetInput): Promise<DeploymentPreviewPolicySetOutput>;
|
|
1543
|
+
};
|
|
1544
|
+
service: {
|
|
1545
|
+
create(input: DeploymentServiceCreateInput): Promise<DeploymentServiceCreateOutput>;
|
|
1546
|
+
delete(input: DeploymentServiceDeleteInput): Promise<DeploymentServiceDeleteOutput>;
|
|
1547
|
+
exec(input: DeploymentServiceExecInput): Promise<DeploymentServiceExecOutput>;
|
|
1548
|
+
get(input: DeploymentServiceGetInput): Promise<DeploymentServiceGetOutput>;
|
|
1549
|
+
list(input: DeploymentServiceListInput): Promise<DeploymentServiceListOutput>;
|
|
1550
|
+
logs(input: DeploymentServiceLogsInput): Promise<DeploymentServiceLogsOutput>;
|
|
1551
|
+
redeploy(input: DeploymentServiceRedeployInput): Promise<DeploymentServiceRedeployOutput>;
|
|
1552
|
+
restart(input: DeploymentServiceRestartInput): Promise<DeploymentServiceRestartOutput>;
|
|
1553
|
+
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
1554
|
+
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
1555
|
+
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
1556
|
+
};
|
|
1557
|
+
ssh: {
|
|
1558
|
+
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
1559
|
+
};
|
|
1560
|
+
'ssh-key': {
|
|
1561
|
+
delete(input: DeploymentSshKeyDeleteInput): Promise<DeploymentSshKeyDeleteOutput>;
|
|
1562
|
+
list(input: DeploymentSshKeyListInput): Promise<DeploymentSshKeyListOutput>;
|
|
1563
|
+
register(input: DeploymentSshKeyRegisterInput): Promise<DeploymentSshKeyRegisterOutput>;
|
|
1564
|
+
};
|
|
1565
|
+
variable: {
|
|
1566
|
+
list(input: DeploymentVariableListInput): Promise<DeploymentVariableListOutput>;
|
|
1567
|
+
set(input: DeploymentVariableSetInput): Promise<DeploymentVariableSetOutput>;
|
|
1568
|
+
unset(input: DeploymentVariableUnsetInput): Promise<DeploymentVariableUnsetOutput>;
|
|
1569
|
+
};
|
|
1570
|
+
'variable-list': {
|
|
1571
|
+
env(input: DeploymentVariableListEnvInput): Promise<DeploymentVariableListEnvOutput>;
|
|
1572
|
+
product(input: DeploymentVariableListProductInput): Promise<DeploymentVariableListProductOutput>;
|
|
1573
|
+
};
|
|
1574
|
+
'variable-set': {
|
|
1575
|
+
env(input: DeploymentVariableSetEnvInput): Promise<DeploymentVariableSetEnvOutput>;
|
|
1576
|
+
product(input: DeploymentVariableSetProductInput): Promise<DeploymentVariableSetProductOutput>;
|
|
1577
|
+
};
|
|
1578
|
+
'variable-unset': {
|
|
1579
|
+
env(input: DeploymentVariableUnsetEnvInput): Promise<DeploymentVariableUnsetEnvOutput>;
|
|
1580
|
+
product(input: DeploymentVariableUnsetProductInput): Promise<DeploymentVariableUnsetProductOutput>;
|
|
1581
|
+
};
|
|
1582
|
+
'vcs-branch': {
|
|
1583
|
+
list(input: DeploymentVcsBranchListInput): Promise<DeploymentVcsBranchListOutput>;
|
|
1584
|
+
};
|
|
1585
|
+
'vcs-connection': {
|
|
1586
|
+
list(input: DeploymentVcsConnectionListInput): Promise<DeploymentVcsConnectionListOutput>;
|
|
1587
|
+
};
|
|
1588
|
+
'vcs-repo': {
|
|
1589
|
+
list(input: DeploymentVcsRepoListInput): Promise<DeploymentVcsRepoListOutput>;
|
|
1590
|
+
};
|
|
1591
|
+
volume: {
|
|
1592
|
+
create(input: DeploymentVolumeCreateInput): Promise<DeploymentVolumeCreateOutput>;
|
|
1593
|
+
delete(input: DeploymentVolumeDeleteInput): Promise<DeploymentVolumeDeleteOutput>;
|
|
1594
|
+
detach(input: DeploymentVolumeDetachInput): Promise<DeploymentVolumeDetachOutput>;
|
|
1595
|
+
get(input: DeploymentVolumeGetInput): Promise<DeploymentVolumeGetOutput>;
|
|
1596
|
+
list(input: DeploymentVolumeListInput): Promise<DeploymentVolumeListOutput>;
|
|
1597
|
+
resize(input: DeploymentVolumeResizeInput): Promise<DeploymentVolumeResizeOutput>;
|
|
1598
|
+
};
|
|
1599
|
+
};
|
|
1600
|
+
organization: {
|
|
1601
|
+
auth: {
|
|
1602
|
+
me(input: OrganizationAuthMeInput): Promise<OrganizationAuthMeOutput>;
|
|
1603
|
+
};
|
|
1604
|
+
bindings: {
|
|
1605
|
+
list(input: OrganizationBindingsListInput): Promise<OrganizationBindingsListOutput>;
|
|
1606
|
+
};
|
|
1607
|
+
clickup: {
|
|
1608
|
+
install(input: OrganizationClickupInstallInput): Promise<OrganizationClickupInstallOutput>;
|
|
1609
|
+
'list-installations'(input: OrganizationClickupListInstallationsInput): Promise<OrganizationClickupListInstallationsOutput>;
|
|
1610
|
+
};
|
|
1611
|
+
cloudflare: {
|
|
1612
|
+
install(input: OrganizationCloudflareInstallInput): Promise<OrganizationCloudflareInstallOutput>;
|
|
1613
|
+
};
|
|
1614
|
+
connectors: {
|
|
1615
|
+
attach(input: OrganizationConnectorsAttachInput): Promise<OrganizationConnectorsAttachOutput>;
|
|
1616
|
+
delete(input: OrganizationConnectorsDeleteInput): Promise<OrganizationConnectorsDeleteOutput>;
|
|
1617
|
+
detach(input: OrganizationConnectorsDetachInput): Promise<OrganizationConnectorsDetachOutput>;
|
|
1618
|
+
list(input: OrganizationConnectorsListInput): Promise<OrganizationConnectorsListOutput>;
|
|
1619
|
+
'list-attachments'(input: OrganizationConnectorsListAttachmentsInput): Promise<OrganizationConnectorsListAttachmentsOutput>;
|
|
1620
|
+
'list-org'(input: OrganizationConnectorsListOrgInput): Promise<OrganizationConnectorsListOrgOutput>;
|
|
1621
|
+
remove(input: OrganizationConnectorsRemoveInput): Promise<OrganizationConnectorsRemoveOutput>;
|
|
1622
|
+
};
|
|
1623
|
+
domains: {
|
|
1624
|
+
add(input: OrganizationDomainsAddInput): Promise<OrganizationDomainsAddOutput>;
|
|
1625
|
+
get(input: OrganizationDomainsGetInput): Promise<OrganizationDomainsGetOutput>;
|
|
1626
|
+
list(input: OrganizationDomainsListInput): Promise<OrganizationDomainsListOutput>;
|
|
1627
|
+
remove(input: OrganizationDomainsRemoveInput): Promise<OrganizationDomainsRemoveOutput>;
|
|
1628
|
+
};
|
|
1629
|
+
extensions: {
|
|
1630
|
+
install(input: OrganizationExtensionsInstallInput): Promise<OrganizationExtensionsInstallOutput>;
|
|
1631
|
+
list(input: OrganizationExtensionsListInput): Promise<OrganizationExtensionsListOutput>;
|
|
1632
|
+
'list-installed'(input: OrganizationExtensionsListInstalledInput): Promise<OrganizationExtensionsListInstalledOutput>;
|
|
1633
|
+
uninstall(input: OrganizationExtensionsUninstallInput): Promise<OrganizationExtensionsUninstallOutput>;
|
|
1634
|
+
};
|
|
1635
|
+
gdrive: {
|
|
1636
|
+
install(input: OrganizationGdriveInstallInput): Promise<OrganizationGdriveInstallOutput>;
|
|
1637
|
+
};
|
|
1638
|
+
github: {
|
|
1639
|
+
install(input: OrganizationGithubInstallInput): Promise<OrganizationGithubInstallOutput>;
|
|
1640
|
+
'list-installations'(input: OrganizationGithubListInstallationsInput): Promise<OrganizationGithubListInstallationsOutput>;
|
|
1641
|
+
};
|
|
1642
|
+
googleads: {
|
|
1643
|
+
install(input: OrganizationGoogleadsInstallInput): Promise<OrganizationGoogleadsInstallOutput>;
|
|
1644
|
+
};
|
|
1645
|
+
member: {
|
|
1646
|
+
'accept-invite'(input: OrganizationMemberAcceptInviteInput): Promise<OrganizationMemberAcceptInviteOutput>;
|
|
1647
|
+
invite(input: OrganizationMemberInviteInput): Promise<OrganizationMemberInviteOutput>;
|
|
1648
|
+
list(input: OrganizationMemberListInput): Promise<OrganizationMemberListOutput>;
|
|
1649
|
+
'list-invitations'(input: OrganizationMemberListInvitationsInput): Promise<OrganizationMemberListInvitationsOutput>;
|
|
1650
|
+
'list-product-access'(input: OrganizationMemberListProductAccessInput): Promise<OrganizationMemberListProductAccessOutput>;
|
|
1651
|
+
remove(input: OrganizationMemberRemoveInput): Promise<OrganizationMemberRemoveOutput>;
|
|
1652
|
+
'revoke-invitation'(input: OrganizationMemberRevokeInvitationInput): Promise<OrganizationMemberRevokeInvitationOutput>;
|
|
1653
|
+
'set-role'(input: OrganizationMemberSetRoleInput): Promise<OrganizationMemberSetRoleOutput>;
|
|
1654
|
+
'share-product'(input: OrganizationMemberShareProductInput): Promise<OrganizationMemberShareProductOutput>;
|
|
1655
|
+
'unshare-product'(input: OrganizationMemberUnshareProductInput): Promise<OrganizationMemberUnshareProductOutput>;
|
|
1656
|
+
};
|
|
1657
|
+
members: {
|
|
1658
|
+
'assign-role'(input: OrganizationMembersAssignRoleInput): Promise<OrganizationMembersAssignRoleOutput>;
|
|
1659
|
+
};
|
|
1660
|
+
permission: {
|
|
1661
|
+
catalog(input: OrganizationPermissionCatalogInput): Promise<OrganizationPermissionCatalogOutput>;
|
|
1662
|
+
};
|
|
1663
|
+
product: {
|
|
1664
|
+
'accept-invitation'(input: OrganizationProductAcceptInvitationInput): Promise<OrganizationProductAcceptInvitationOutput>;
|
|
1665
|
+
create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
|
|
1666
|
+
invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
|
|
1667
|
+
list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
|
|
1668
|
+
'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
|
|
1669
|
+
'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
|
|
1670
|
+
'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
|
|
1671
|
+
select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
|
|
1672
|
+
};
|
|
1673
|
+
roles: {
|
|
1674
|
+
create(input: OrganizationRolesCreateInput): Promise<OrganizationRolesCreateOutput>;
|
|
1675
|
+
delete(input: OrganizationRolesDeleteInput): Promise<OrganizationRolesDeleteOutput>;
|
|
1676
|
+
get(input: OrganizationRolesGetInput): Promise<OrganizationRolesGetOutput>;
|
|
1677
|
+
list(input: OrganizationRolesListInput): Promise<OrganizationRolesListOutput>;
|
|
1678
|
+
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
playground: {
|
|
1682
|
+
analytics: {
|
|
1683
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
1684
|
+
};
|
|
1685
|
+
billing: {
|
|
1686
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
1687
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
1688
|
+
};
|
|
1689
|
+
clickup: {
|
|
1690
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
1691
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
1692
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
1693
|
+
};
|
|
1694
|
+
gdrive: {
|
|
1695
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
1696
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
1697
|
+
};
|
|
1698
|
+
googleads: {
|
|
1699
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
1700
|
+
};
|
|
1701
|
+
lifecycle: {
|
|
1702
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
1703
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
1704
|
+
};
|
|
1705
|
+
webhook: {
|
|
1706
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
1707
|
+
};
|
|
1708
|
+
};
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
export type { DeploymentManagedServiceBackupListInput as $, DeploymentCloudSqlLogsInput as A, DeploymentDeploymentCancelInput as B, DeploymentDeploymentGetInput as C, DeploymentAlertCreateInput as D, DeploymentDeploymentListInput as E, DeploymentDomainAddInput as F, GeneratedClient as G, DeploymentDomainAllowedListInput as H, DeploymentDomainGetInput as I, DeploymentDomainListByServiceInput as J, DeploymentDomainListInput as K, DeploymentDomainRedirectWwwInput as L, DeploymentDomainRemoveInput as M, DeploymentDomainRoutesAddInput as N, DeploymentDomainRoutesListInput as O, DeploymentDomainRoutesRemoveInput as P, DeploymentDomainRoutesUpdateInput as Q, DeploymentDomainVerifyInput as R, DeploymentEnvironmentCreateInput as S, DeploymentEnvironmentDeleteInput as T, DeploymentEnvironmentForkInput as U, DeploymentEnvironmentGetInput as V, DeploymentEnvironmentListInput as W, DeploymentEnvironmentReconcileInput as X, DeploymentEnvironmentUpdateInput as Y, DeploymentEventsListByEnvironmentInput as Z, DeploymentEventsListByServiceInput as _, DeploymentAlertDeleteInput as a, DeploymentCanvasMoveNodeOutput as a$, DeploymentManagedServiceBackupInput as a0, DeploymentManagedServiceConnectInfoInput as a1, DeploymentManagedServiceDeleteInput as a2, DeploymentManagedServiceGetInput as a3, DeploymentManagedServiceListInput as a4, DeploymentManagedServiceLogsInput as a5, DeploymentManagedServiceProvisionInput as a6, DeploymentManagedServiceReconcileInput as a7, DeploymentManagedServiceResizeInput as a8, DeploymentManagedServiceRestoreInput as a9, DeploymentVariableListInput as aA, DeploymentVariableSetEnvInput as aB, DeploymentVariableSetInput as aC, DeploymentVariableSetProductInput as aD, DeploymentVariableUnsetEnvInput as aE, DeploymentVariableUnsetInput as aF, DeploymentVariableUnsetProductInput as aG, DeploymentVcsBranchListInput as aH, DeploymentVcsConnectionListInput as aI, DeploymentVcsRepoListInput as aJ, DeploymentVolumeCreateInput as aK, DeploymentVolumeDeleteInput as aL, DeploymentVolumeDetachInput as aM, DeploymentVolumeGetInput as aN, DeploymentVolumeListInput as aO, DeploymentVolumeResizeInput as aP, DeploymentAlertCreateOutput as aQ, DeploymentAlertDeleteOutput as aR, DeploymentAlertEventsListOutput as aS, DeploymentAlertListOutput as aT, DeploymentAlertUpdateOutput as aU, DeploymentAnalyticsQueryOutput as aV, DeploymentAuditListOutput as aW, DeploymentBuildGetOutput as aX, DeploymentBuildListOutput as aY, DeploymentBuildLogsOutput as aZ, DeploymentCanvasGetOutput as a_, DeploymentManagedServiceStartInput as aa, DeploymentManagedServiceStopInput as ab, DeploymentManagedServiceTypesInput as ac, DeploymentMetricsGetInput as ad, DeploymentPreviewEnvironmentCreateInput as ae, DeploymentPreviewEnvironmentDeleteInput as af, DeploymentPreviewEnvironmentListInput as ag, DeploymentPreviewPolicyGetInput as ah, DeploymentPreviewPolicySetInput as ai, DeploymentServiceCreateInput as aj, DeploymentServiceDeleteInput as ak, DeploymentServiceExecInput as al, DeploymentServiceGetInput as am, DeploymentServiceListInput as an, DeploymentServiceLogsInput as ao, DeploymentServiceRedeployInput as ap, DeploymentServiceRestartInput as aq, DeploymentServiceRollbackInput as ar, DeploymentServiceScaleInput as as, DeploymentServiceUpdateInput as at, DeploymentSshCommandInput as au, DeploymentSshKeyDeleteInput as av, DeploymentSshKeyListInput as aw, DeploymentSshKeyRegisterInput as ax, DeploymentVariableListEnvInput as ay, DeploymentVariableListProductInput as az, DeploymentAlertEventsListInput as b, DeploymentServiceGetOutput as b$, DeploymentCloudSqlBackfillLogFlagsOutput as b0, DeploymentCloudSqlDatabaseAttachOutput as b1, DeploymentCloudSqlDatabaseCreateOutput as b2, DeploymentCloudSqlDatabaseDeleteOutput as b3, DeploymentCloudSqlDatabaseDetachOutput as b4, DeploymentCloudSqlDatabaseGetOutput as b5, DeploymentCloudSqlDatabaseListOutput as b6, DeploymentCloudSqlInstanceBackupListOutput as b7, DeploymentCloudSqlInstanceBackupOutput as b8, DeploymentCloudSqlInstanceCreateOutput as b9, DeploymentEnvironmentReconcileOutput as bA, DeploymentEnvironmentUpdateOutput as bB, DeploymentEventsListByEnvironmentOutput as bC, DeploymentEventsListByServiceOutput as bD, DeploymentManagedServiceBackupListOutput as bE, DeploymentManagedServiceBackupOutput as bF, DeploymentManagedServiceConnectInfoOutput as bG, DeploymentManagedServiceDeleteOutput as bH, DeploymentManagedServiceGetOutput as bI, DeploymentManagedServiceListOutput as bJ, DeploymentManagedServiceLogsOutput as bK, DeploymentManagedServiceProvisionOutput as bL, DeploymentManagedServiceReconcileOutput as bM, DeploymentManagedServiceResizeOutput as bN, DeploymentManagedServiceRestoreOutput as bO, DeploymentManagedServiceStartOutput as bP, DeploymentManagedServiceStopOutput as bQ, DeploymentManagedServiceTypesOutput as bR, DeploymentMetricsGetOutput as bS, DeploymentPreviewEnvironmentCreateOutput as bT, DeploymentPreviewEnvironmentDeleteOutput as bU, DeploymentPreviewEnvironmentListOutput as bV, DeploymentPreviewPolicyGetOutput as bW, DeploymentPreviewPolicySetOutput as bX, DeploymentServiceCreateOutput as bY, DeploymentServiceDeleteOutput as bZ, DeploymentServiceExecOutput as b_, DeploymentCloudSqlInstanceDeleteOutput as ba, DeploymentCloudSqlInstanceGetOutput as bb, DeploymentCloudSqlInstanceListOutput as bc, DeploymentCloudSqlInstanceResizeOutput as bd, DeploymentCloudSqlInstanceRestoreOutput as be, DeploymentCloudSqlLogsOutput as bf, DeploymentDeploymentCancelOutput as bg, DeploymentDeploymentGetOutput as bh, DeploymentDeploymentListOutput as bi, DeploymentDomainAddOutput as bj, DeploymentDomainAllowedListOutput as bk, DeploymentDomainGetOutput as bl, DeploymentDomainListByServiceOutput as bm, DeploymentDomainListOutput as bn, DeploymentDomainRedirectWwwOutput as bo, DeploymentDomainRemoveOutput as bp, DeploymentDomainRoutesAddOutput as bq, DeploymentDomainRoutesListOutput as br, DeploymentDomainRoutesRemoveOutput as bs, DeploymentDomainRoutesUpdateOutput as bt, DeploymentDomainVerifyOutput as bu, DeploymentEnvironmentCreateOutput as bv, DeploymentEnvironmentDeleteOutput as bw, DeploymentEnvironmentForkOutput as bx, DeploymentEnvironmentGetOutput as by, DeploymentEnvironmentListOutput as bz, DeploymentAlertListInput as c, OrganizationExtensionsListInstalledInput as c$, DeploymentServiceListOutput as c0, DeploymentServiceLogsOutput as c1, DeploymentServiceRedeployOutput as c2, DeploymentServiceRestartOutput as c3, DeploymentServiceRollbackOutput as c4, DeploymentServiceScaleOutput as c5, DeploymentServiceUpdateOutput as c6, DeploymentSshCommandOutput as c7, DeploymentSshKeyDeleteOutput as c8, DeploymentSshKeyListOutput as c9, OrganizationClickupListInstallationsOutput as cA, OrganizationCloudflareInstallInput as cB, OrganizationCloudflareInstallOutput as cC, OrganizationConnectorsAttachInput as cD, OrganizationConnectorsAttachOutput as cE, OrganizationConnectorsDeleteInput as cF, OrganizationConnectorsDeleteOutput as cG, OrganizationConnectorsDetachInput as cH, OrganizationConnectorsDetachOutput as cI, OrganizationConnectorsListAttachmentsInput as cJ, OrganizationConnectorsListAttachmentsOutput as cK, OrganizationConnectorsListOrgInput as cL, OrganizationConnectorsListOrgOutput as cM, OrganizationConnectorsListInput as cN, OrganizationConnectorsListOutput as cO, OrganizationConnectorsRemoveInput as cP, OrganizationConnectorsRemoveOutput as cQ, OrganizationDomainsAddInput as cR, OrganizationDomainsAddOutput as cS, OrganizationDomainsGetInput as cT, OrganizationDomainsGetOutput as cU, OrganizationDomainsListInput as cV, OrganizationDomainsListOutput as cW, OrganizationDomainsRemoveInput as cX, OrganizationDomainsRemoveOutput as cY, OrganizationExtensionsInstallInput as cZ, OrganizationExtensionsInstallOutput as c_, DeploymentSshKeyRegisterOutput as ca, DeploymentVariableListEnvOutput as cb, DeploymentVariableListOutput as cc, DeploymentVariableListProductOutput as cd, DeploymentVariableSetEnvOutput as ce, DeploymentVariableSetOutput as cf, DeploymentVariableSetProductOutput as cg, DeploymentVariableUnsetEnvOutput as ch, DeploymentVariableUnsetOutput as ci, DeploymentVariableUnsetProductOutput as cj, DeploymentVcsBranchListOutput as ck, DeploymentVcsConnectionListOutput as cl, DeploymentVcsRepoListOutput as cm, DeploymentVolumeCreateOutput as cn, DeploymentVolumeDeleteOutput as co, DeploymentVolumeDetachOutput as cp, DeploymentVolumeGetOutput as cq, DeploymentVolumeListOutput as cr, DeploymentVolumeResizeOutput as cs, OrganizationAuthMeInput as ct, OrganizationAuthMeOutput as cu, OrganizationBindingsListInput as cv, OrganizationBindingsListOutput as cw, OrganizationClickupInstallInput as cx, OrganizationClickupInstallOutput as cy, OrganizationClickupListInstallationsInput as cz, DeploymentAlertUpdateInput as d, OrganizationRolesUpdateOutput as d$, OrganizationExtensionsListInstalledOutput as d0, OrganizationExtensionsListInput as d1, OrganizationExtensionsListOutput as d2, OrganizationExtensionsUninstallInput as d3, OrganizationExtensionsUninstallOutput as d4, OrganizationGdriveInstallInput as d5, OrganizationGdriveInstallOutput as d6, OrganizationGithubInstallInput as d7, OrganizationGithubInstallOutput as d8, OrganizationGithubListInstallationsInput as d9, OrganizationPermissionCatalogInput as dA, OrganizationPermissionCatalogOutput as dB, OrganizationProductAcceptInvitationInput as dC, OrganizationProductAcceptInvitationOutput as dD, OrganizationProductCreateInput as dE, OrganizationProductCreateOutput as dF, OrganizationProductInviteInput as dG, OrganizationProductInviteOutput as dH, OrganizationProductListInvitationsInput as dI, OrganizationProductListInvitationsOutput as dJ, OrganizationProductListMembersInput as dK, OrganizationProductListMembersOutput as dL, OrganizationProductListInput as dM, OrganizationProductListOutput as dN, OrganizationProductRevokeInvitationInput as dO, OrganizationProductRevokeInvitationOutput as dP, OrganizationProductSelectInput as dQ, OrganizationProductSelectOutput as dR, OrganizationRolesCreateInput as dS, OrganizationRolesCreateOutput as dT, OrganizationRolesDeleteInput as dU, OrganizationRolesDeleteOutput as dV, OrganizationRolesGetInput as dW, OrganizationRolesGetOutput as dX, OrganizationRolesListInput as dY, OrganizationRolesListOutput as dZ, OrganizationRolesUpdateInput as d_, OrganizationGithubListInstallationsOutput as da, OrganizationGoogleadsInstallInput as db, OrganizationGoogleadsInstallOutput as dc, OrganizationMemberAcceptInviteInput as dd, OrganizationMemberAcceptInviteOutput as de, OrganizationMemberInviteInput as df, OrganizationMemberInviteOutput as dg, OrganizationMemberListInvitationsInput as dh, OrganizationMemberListInvitationsOutput as di, OrganizationMemberListProductAccessInput as dj, OrganizationMemberListProductAccessOutput as dk, OrganizationMemberListInput as dl, OrganizationMemberListOutput as dm, OrganizationMemberRemoveInput as dn, OrganizationMemberRemoveOutput as dp, OrganizationMemberRevokeInvitationInput as dq, OrganizationMemberRevokeInvitationOutput as dr, OrganizationMemberSetRoleInput as ds, OrganizationMemberSetRoleOutput as dt, OrganizationMemberShareProductInput as du, OrganizationMemberShareProductOutput as dv, OrganizationMemberUnshareProductInput as dw, OrganizationMemberUnshareProductOutput as dx, OrganizationMembersAssignRoleInput as dy, OrganizationMembersAssignRoleOutput as dz, DeploymentAnalyticsQueryInput as e, PlaygroundAnalyticsOverviewInput as e0, PlaygroundAnalyticsOverviewOutput as e1, PlaygroundBillingEntitlementsInput as e2, PlaygroundBillingEntitlementsOutput as e3, PlaygroundBillingRecordUsageInput as e4, PlaygroundBillingRecordUsageOutput as e5, PlaygroundClickupCreateTaskInput as e6, PlaygroundClickupCreateTaskOutput as e7, PlaygroundClickupGetLastWebhookInput as e8, PlaygroundClickupGetLastWebhookOutput as e9, PlaygroundClickupGetOverviewInput as ea, PlaygroundClickupGetOverviewOutput as eb, PlaygroundGdriveGetLastChangeInput as ec, PlaygroundGdriveGetLastChangeOutput as ed, PlaygroundGdriveReadFileInput as ee, PlaygroundGdriveReadFileOutput as ef, PlaygroundGoogleadsReadCustomerInput as eg, PlaygroundGoogleadsReadCustomerOutput as eh, PlaygroundLifecycleGetStateInput as ei, PlaygroundLifecycleGetStateOutput as ej, PlaygroundLifecycleListEventsInput as ek, PlaygroundLifecycleListEventsOutput as el, PlaygroundWebhookGetLastInput as em, PlaygroundWebhookGetLastOutput as en, DeploymentAuditListInput as f, DeploymentBuildGetInput as g, DeploymentBuildListInput as h, DeploymentBuildLogsInput as i, DeploymentCanvasGetInput as j, DeploymentCanvasMoveNodeInput as k, DeploymentCloudSqlBackfillLogFlagsInput as l, DeploymentCloudSqlDatabaseAttachInput as m, DeploymentCloudSqlDatabaseCreateInput as n, DeploymentCloudSqlDatabaseDeleteInput as o, DeploymentCloudSqlDatabaseDetachInput as p, DeploymentCloudSqlDatabaseGetInput as q, DeploymentCloudSqlDatabaseListInput as r, DeploymentCloudSqlInstanceBackupListInput as s, DeploymentCloudSqlInstanceBackupInput as t, DeploymentCloudSqlInstanceCreateInput as u, DeploymentCloudSqlInstanceDeleteInput as v, DeploymentCloudSqlInstanceGetInput as w, DeploymentCloudSqlInstanceListInput as x, DeploymentCloudSqlInstanceResizeInput as y, DeploymentCloudSqlInstanceRestoreInput as z };
|