@lessly/sdk-app 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.gen-DtgaSZYB.d.cts +909 -0
- package/dist/client.gen-DtgaSZYB.d.ts +909 -0
- package/dist/index.cjs +735 -23
- 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 +735 -23
- package/dist/index.js.map +1 -1
- package/dist/organization/index.cjs +251 -0
- package/dist/organization/index.cjs.map +1 -0
- package/dist/organization/index.d.cts +200 -0
- package/dist/organization/index.d.ts +200 -0
- package/dist/organization/index.js +201 -0
- package/dist/organization/index.js.map +1 -0
- package/dist/playground/index.cjs +55 -0
- package/dist/playground/index.cjs.map +1 -1
- package/dist/playground/index.d.cts +46 -2
- package/dist/playground/index.d.ts +46 -2
- package/dist/playground/index.js +45 -1
- package/dist/playground/index.js.map +1 -1
- package/package.json +5 -10
- package/src/gen/bindings.gen.ts +735 -23
- package/src/gen/client.gen.ts +219 -25
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/organization/index.ts +3 -0
- package/src/gen/organization/queryOptions.gen.ts +318 -0
- package/src/gen/playground/index.ts +1 -1
- package/src/gen/playground/queryOptions.gen.ts +76 -0
- package/src/gen/types.gen.ts +900 -27
- package/dist/client.gen-kP64GHhc.d.cts +0 -75
- package/dist/client.gen-kP64GHhc.d.ts +0 -75
- package/dist/mail/index.cjs +0 -16
- package/dist/mail/index.cjs.map +0 -1
- package/dist/mail/index.d.cts +0 -13
- package/dist/mail/index.d.ts +0 -13
- package/dist/mail/index.js +0 -13
- package/dist/mail/index.js.map +0 -1
- package/dist/tracking/index.cjs +0 -26
- package/dist/tracking/index.cjs.map +0 -1
- package/dist/tracking/index.d.cts +0 -20
- package/dist/tracking/index.d.ts +0 -20
- package/dist/tracking/index.js +0 -21
- package/dist/tracking/index.js.map +0 -1
- package/src/gen/mail/index.ts +0 -3
- package/src/gen/mail/queryOptions.gen.ts +0 -17
- package/src/gen/tracking/index.ts +0 -3
- package/src/gen/tracking/queryOptions.gen.ts +0 -31
|
@@ -0,0 +1,909 @@
|
|
|
1
|
+
interface OrganizationAuthMeInput {
|
|
2
|
+
}
|
|
3
|
+
interface OrganizationAuthMeOutput {
|
|
4
|
+
email: string;
|
|
5
|
+
identityId: string;
|
|
6
|
+
displayName: string;
|
|
7
|
+
}
|
|
8
|
+
interface OrganizationBindingsListInput {
|
|
9
|
+
domainId: string;
|
|
10
|
+
productId: string;
|
|
11
|
+
}
|
|
12
|
+
type OrganizationBindingsListOutput = {
|
|
13
|
+
host: string;
|
|
14
|
+
status: ("pending" | "active" | "failed");
|
|
15
|
+
records: {
|
|
16
|
+
ttl?: number;
|
|
17
|
+
name?: string;
|
|
18
|
+
target: string;
|
|
19
|
+
proxied?: boolean;
|
|
20
|
+
priority?: number;
|
|
21
|
+
recordType: string;
|
|
22
|
+
}[];
|
|
23
|
+
domainId: string;
|
|
24
|
+
bindingId: string;
|
|
25
|
+
instruction: (string | null);
|
|
26
|
+
statusDetail: (string | null);
|
|
27
|
+
ownerExtension: string;
|
|
28
|
+
}[];
|
|
29
|
+
interface OrganizationClickupInstallInput {
|
|
30
|
+
}
|
|
31
|
+
interface OrganizationClickupInstallOutput {
|
|
32
|
+
url: string;
|
|
33
|
+
}
|
|
34
|
+
interface OrganizationClickupListInstallationsInput {
|
|
35
|
+
}
|
|
36
|
+
type OrganizationClickupListInstallationsOutput = {
|
|
37
|
+
status: string;
|
|
38
|
+
teamId: string;
|
|
39
|
+
teamName: string;
|
|
40
|
+
}[];
|
|
41
|
+
interface OrganizationCloudflareInstallInput {
|
|
42
|
+
}
|
|
43
|
+
interface OrganizationCloudflareInstallOutput {
|
|
44
|
+
url: string;
|
|
45
|
+
}
|
|
46
|
+
interface OrganizationConnectorsAttachInput {
|
|
47
|
+
id: string;
|
|
48
|
+
productIds: string[];
|
|
49
|
+
organizationId: string;
|
|
50
|
+
}
|
|
51
|
+
interface OrganizationConnectorsAttachOutput {
|
|
52
|
+
attachments: {
|
|
53
|
+
createdAt: string;
|
|
54
|
+
createdBy: (string | null);
|
|
55
|
+
productId: string;
|
|
56
|
+
customerId: (string | null);
|
|
57
|
+
descriptiveName: (string | null);
|
|
58
|
+
}[];
|
|
59
|
+
connectorId: string;
|
|
60
|
+
}
|
|
61
|
+
interface OrganizationConnectorsDeleteInput {
|
|
62
|
+
id: string;
|
|
63
|
+
organizationId: string;
|
|
64
|
+
}
|
|
65
|
+
interface OrganizationConnectorsDeleteOutput {
|
|
66
|
+
success: boolean;
|
|
67
|
+
}
|
|
68
|
+
interface OrganizationConnectorsDetachInput {
|
|
69
|
+
id: string;
|
|
70
|
+
productId: string;
|
|
71
|
+
organizationId: string;
|
|
72
|
+
}
|
|
73
|
+
interface OrganizationConnectorsDetachOutput {
|
|
74
|
+
success: boolean;
|
|
75
|
+
}
|
|
76
|
+
interface OrganizationConnectorsListInput {
|
|
77
|
+
productId: string;
|
|
78
|
+
}
|
|
79
|
+
type OrganizationConnectorsListOutput = {
|
|
80
|
+
id: string;
|
|
81
|
+
config: {
|
|
82
|
+
[k: string]: unknown;
|
|
83
|
+
};
|
|
84
|
+
status: string;
|
|
85
|
+
provider: string;
|
|
86
|
+
createdAt: string;
|
|
87
|
+
externalId: string;
|
|
88
|
+
displayName: string;
|
|
89
|
+
}[];
|
|
90
|
+
interface OrganizationConnectorsListAttachmentsInput {
|
|
91
|
+
id: string;
|
|
92
|
+
organizationId: string;
|
|
93
|
+
}
|
|
94
|
+
interface OrganizationConnectorsListAttachmentsOutput {
|
|
95
|
+
attachments: {
|
|
96
|
+
createdAt: string;
|
|
97
|
+
createdBy: (string | null);
|
|
98
|
+
productId: string;
|
|
99
|
+
customerId: (string | null);
|
|
100
|
+
descriptiveName: (string | null);
|
|
101
|
+
}[];
|
|
102
|
+
connectorId: string;
|
|
103
|
+
}
|
|
104
|
+
interface OrganizationConnectorsListOrgInput {
|
|
105
|
+
organizationId: string;
|
|
106
|
+
}
|
|
107
|
+
type OrganizationConnectorsListOrgOutput = {
|
|
108
|
+
id: string;
|
|
109
|
+
config: {
|
|
110
|
+
[k: string]: unknown;
|
|
111
|
+
};
|
|
112
|
+
status: string;
|
|
113
|
+
provider: string;
|
|
114
|
+
createdAt: string;
|
|
115
|
+
externalId: string;
|
|
116
|
+
displayName: string;
|
|
117
|
+
organizationId: string;
|
|
118
|
+
attachedProducts: {
|
|
119
|
+
createdAt: string;
|
|
120
|
+
createdBy: (string | null);
|
|
121
|
+
productId: string;
|
|
122
|
+
customerId: (string | null);
|
|
123
|
+
descriptiveName: (string | null);
|
|
124
|
+
}[];
|
|
125
|
+
}[];
|
|
126
|
+
interface OrganizationConnectorsRemoveInput {
|
|
127
|
+
id: string;
|
|
128
|
+
}
|
|
129
|
+
interface OrganizationConnectorsRemoveOutput {
|
|
130
|
+
success: boolean;
|
|
131
|
+
}
|
|
132
|
+
interface OrganizationDomainsAddInput {
|
|
133
|
+
domain: string;
|
|
134
|
+
productId: string;
|
|
135
|
+
}
|
|
136
|
+
interface OrganizationDomainsAddOutput {
|
|
137
|
+
id: string;
|
|
138
|
+
mode: ("external" | "managed");
|
|
139
|
+
domain: string;
|
|
140
|
+
createdAt: string;
|
|
141
|
+
createdBy: string;
|
|
142
|
+
productId: string;
|
|
143
|
+
providerConnectorId: (string | null);
|
|
144
|
+
}
|
|
145
|
+
interface OrganizationDomainsGetInput {
|
|
146
|
+
domainId: string;
|
|
147
|
+
productId: string;
|
|
148
|
+
}
|
|
149
|
+
interface OrganizationDomainsGetOutput {
|
|
150
|
+
id: string;
|
|
151
|
+
mode: ("external" | "managed");
|
|
152
|
+
domain: string;
|
|
153
|
+
createdAt: string;
|
|
154
|
+
createdBy: string;
|
|
155
|
+
productId: string;
|
|
156
|
+
providerConnectorId: (string | null);
|
|
157
|
+
}
|
|
158
|
+
interface OrganizationDomainsListInput {
|
|
159
|
+
productId: string;
|
|
160
|
+
}
|
|
161
|
+
interface OrganizationDomainsListOutput {
|
|
162
|
+
domains: {
|
|
163
|
+
id: string;
|
|
164
|
+
mode: ("external" | "managed");
|
|
165
|
+
domain: string;
|
|
166
|
+
createdAt: string;
|
|
167
|
+
createdBy: string;
|
|
168
|
+
productId: string;
|
|
169
|
+
extensionCount: number;
|
|
170
|
+
providerConnectorId: (string | null);
|
|
171
|
+
}[];
|
|
172
|
+
}
|
|
173
|
+
interface OrganizationDomainsRemoveInput {
|
|
174
|
+
domainId: string;
|
|
175
|
+
productId: string;
|
|
176
|
+
}
|
|
177
|
+
interface OrganizationDomainsRemoveOutput {
|
|
178
|
+
[k: string]: unknown;
|
|
179
|
+
}
|
|
180
|
+
interface OrganizationExtensionsInstallInput {
|
|
181
|
+
productId: string;
|
|
182
|
+
extensionId: string;
|
|
183
|
+
}
|
|
184
|
+
interface OrganizationExtensionsInstallOutput {
|
|
185
|
+
message: string;
|
|
186
|
+
}
|
|
187
|
+
interface OrganizationExtensionsListInput {
|
|
188
|
+
}
|
|
189
|
+
interface OrganizationExtensionsListOutput {
|
|
190
|
+
extensions: {
|
|
191
|
+
id: string;
|
|
192
|
+
name: string;
|
|
193
|
+
status: string;
|
|
194
|
+
uiMode: ("federation" | "standalone");
|
|
195
|
+
version: string;
|
|
196
|
+
manifest: {
|
|
197
|
+
[k: string]: unknown;
|
|
198
|
+
};
|
|
199
|
+
}[];
|
|
200
|
+
}
|
|
201
|
+
interface OrganizationExtensionsListInstalledInput {
|
|
202
|
+
productId: string;
|
|
203
|
+
}
|
|
204
|
+
interface OrganizationExtensionsListInstalledOutput {
|
|
205
|
+
extensions: {
|
|
206
|
+
id: string;
|
|
207
|
+
name: string;
|
|
208
|
+
status: string;
|
|
209
|
+
uiMode: ("federation" | "standalone");
|
|
210
|
+
version: string;
|
|
211
|
+
manifest: {
|
|
212
|
+
[k: string]: unknown;
|
|
213
|
+
};
|
|
214
|
+
installedAt: string;
|
|
215
|
+
}[];
|
|
216
|
+
}
|
|
217
|
+
interface OrganizationExtensionsUninstallInput {
|
|
218
|
+
productId: string;
|
|
219
|
+
extensionId: string;
|
|
220
|
+
}
|
|
221
|
+
interface OrganizationExtensionsUninstallOutput {
|
|
222
|
+
message: string;
|
|
223
|
+
}
|
|
224
|
+
interface OrganizationGdriveInstallInput {
|
|
225
|
+
}
|
|
226
|
+
interface OrganizationGdriveInstallOutput {
|
|
227
|
+
url: string;
|
|
228
|
+
}
|
|
229
|
+
interface OrganizationGithubInstallInput {
|
|
230
|
+
}
|
|
231
|
+
interface OrganizationGithubInstallOutput {
|
|
232
|
+
url: string;
|
|
233
|
+
}
|
|
234
|
+
interface OrganizationGithubListInstallationsInput {
|
|
235
|
+
}
|
|
236
|
+
type OrganizationGithubListInstallationsOutput = {
|
|
237
|
+
status: string;
|
|
238
|
+
accountType: string;
|
|
239
|
+
accountLogin: string;
|
|
240
|
+
installationId: number;
|
|
241
|
+
}[];
|
|
242
|
+
interface OrganizationGoogleadsInstallInput {
|
|
243
|
+
organizationId: string;
|
|
244
|
+
}
|
|
245
|
+
interface OrganizationGoogleadsInstallOutput {
|
|
246
|
+
url: string;
|
|
247
|
+
}
|
|
248
|
+
interface OrganizationMemberAcceptInviteInput {
|
|
249
|
+
token: string;
|
|
250
|
+
}
|
|
251
|
+
interface OrganizationMemberAcceptInviteOutput {
|
|
252
|
+
name: string;
|
|
253
|
+
role: string;
|
|
254
|
+
products: {
|
|
255
|
+
id: string;
|
|
256
|
+
name: string;
|
|
257
|
+
role: string;
|
|
258
|
+
slug: string;
|
|
259
|
+
}[];
|
|
260
|
+
organizationId: string;
|
|
261
|
+
}
|
|
262
|
+
interface OrganizationMemberInviteInput {
|
|
263
|
+
role: ("owner" | "admin" | "member");
|
|
264
|
+
email: string;
|
|
265
|
+
productShares?: {
|
|
266
|
+
role?: string;
|
|
267
|
+
roleId?: string;
|
|
268
|
+
expiresAt?: (string | null);
|
|
269
|
+
productId: string;
|
|
270
|
+
permissions?: {
|
|
271
|
+
deny?: string[];
|
|
272
|
+
allow?: string[];
|
|
273
|
+
};
|
|
274
|
+
}[];
|
|
275
|
+
organizationId: string;
|
|
276
|
+
}
|
|
277
|
+
type OrganizationMemberInviteOutput = ({
|
|
278
|
+
id: string;
|
|
279
|
+
role: string;
|
|
280
|
+
email: string;
|
|
281
|
+
status: string;
|
|
282
|
+
outcome: "invited";
|
|
283
|
+
createdAt: string;
|
|
284
|
+
expiresAt: string;
|
|
285
|
+
} | {
|
|
286
|
+
name: string;
|
|
287
|
+
role: string;
|
|
288
|
+
userId: string;
|
|
289
|
+
outcome: "added";
|
|
290
|
+
products: {
|
|
291
|
+
id: string;
|
|
292
|
+
name: string;
|
|
293
|
+
role: string;
|
|
294
|
+
slug: string;
|
|
295
|
+
}[];
|
|
296
|
+
organizationId: string;
|
|
297
|
+
});
|
|
298
|
+
interface OrganizationMemberListInput {
|
|
299
|
+
organizationId: string;
|
|
300
|
+
}
|
|
301
|
+
interface OrganizationMemberListOutput {
|
|
302
|
+
members: {
|
|
303
|
+
id: string;
|
|
304
|
+
role: string;
|
|
305
|
+
status: string;
|
|
306
|
+
userId: string;
|
|
307
|
+
products: {
|
|
308
|
+
role: string;
|
|
309
|
+
expiresAt: (string | null);
|
|
310
|
+
productId: string;
|
|
311
|
+
grantSource: string;
|
|
312
|
+
}[];
|
|
313
|
+
createdAt: string;
|
|
314
|
+
displayName: (string | null);
|
|
315
|
+
}[];
|
|
316
|
+
}
|
|
317
|
+
interface OrganizationMemberListInvitationsInput {
|
|
318
|
+
organizationId: string;
|
|
319
|
+
}
|
|
320
|
+
interface OrganizationMemberListInvitationsOutput {
|
|
321
|
+
invitations: {
|
|
322
|
+
id: string;
|
|
323
|
+
role: string;
|
|
324
|
+
email: string;
|
|
325
|
+
status: string;
|
|
326
|
+
createdAt: string;
|
|
327
|
+
expiresAt: string;
|
|
328
|
+
invitedByDisplayName: string;
|
|
329
|
+
}[];
|
|
330
|
+
}
|
|
331
|
+
interface OrganizationMemberListProductAccessInput {
|
|
332
|
+
userId: string;
|
|
333
|
+
organizationId: string;
|
|
334
|
+
}
|
|
335
|
+
interface OrganizationMemberListProductAccessOutput {
|
|
336
|
+
products: {
|
|
337
|
+
name: string;
|
|
338
|
+
role: string;
|
|
339
|
+
slug: string;
|
|
340
|
+
isCustom: boolean;
|
|
341
|
+
expiresAt: (string | null);
|
|
342
|
+
productId: string;
|
|
343
|
+
sourceRole: ({
|
|
344
|
+
id: string;
|
|
345
|
+
name: string;
|
|
346
|
+
} | null);
|
|
347
|
+
grantSource: string;
|
|
348
|
+
permissions: ({
|
|
349
|
+
deny: string[];
|
|
350
|
+
allow: string[];
|
|
351
|
+
} | null);
|
|
352
|
+
effectivePermissions: {
|
|
353
|
+
deny: string[];
|
|
354
|
+
allow: string[];
|
|
355
|
+
};
|
|
356
|
+
}[];
|
|
357
|
+
}
|
|
358
|
+
interface OrganizationMemberRemoveInput {
|
|
359
|
+
userId: string;
|
|
360
|
+
organizationId: string;
|
|
361
|
+
}
|
|
362
|
+
interface OrganizationMemberRemoveOutput {
|
|
363
|
+
[k: string]: unknown;
|
|
364
|
+
}
|
|
365
|
+
interface OrganizationMemberRevokeInvitationInput {
|
|
366
|
+
invitationId: string;
|
|
367
|
+
organizationId: string;
|
|
368
|
+
}
|
|
369
|
+
interface OrganizationMemberRevokeInvitationOutput {
|
|
370
|
+
[k: string]: unknown;
|
|
371
|
+
}
|
|
372
|
+
interface OrganizationMemberSetRoleInput {
|
|
373
|
+
role: ("admin" | "member");
|
|
374
|
+
userId: string;
|
|
375
|
+
organizationId: string;
|
|
376
|
+
}
|
|
377
|
+
interface OrganizationMemberSetRoleOutput {
|
|
378
|
+
role: string;
|
|
379
|
+
userId: string;
|
|
380
|
+
}
|
|
381
|
+
interface OrganizationMemberShareProductInput {
|
|
382
|
+
role?: string;
|
|
383
|
+
roleId?: string;
|
|
384
|
+
userId: string;
|
|
385
|
+
expiresAt?: (string | null);
|
|
386
|
+
productId: string;
|
|
387
|
+
permissions?: {
|
|
388
|
+
deny?: string[];
|
|
389
|
+
allow?: string[];
|
|
390
|
+
};
|
|
391
|
+
organizationId: string;
|
|
392
|
+
}
|
|
393
|
+
interface OrganizationMemberShareProductOutput {
|
|
394
|
+
role: string;
|
|
395
|
+
userId: string;
|
|
396
|
+
expiresAt: (string | null);
|
|
397
|
+
productId: string;
|
|
398
|
+
}
|
|
399
|
+
interface OrganizationMemberUnshareProductInput {
|
|
400
|
+
userId: string;
|
|
401
|
+
productId: string;
|
|
402
|
+
organizationId: string;
|
|
403
|
+
}
|
|
404
|
+
interface OrganizationMemberUnshareProductOutput {
|
|
405
|
+
[k: string]: unknown;
|
|
406
|
+
}
|
|
407
|
+
interface OrganizationMembersAssignRoleInput {
|
|
408
|
+
roleId: string;
|
|
409
|
+
memberId: string;
|
|
410
|
+
productId: string;
|
|
411
|
+
}
|
|
412
|
+
interface OrganizationMembersAssignRoleOutput {
|
|
413
|
+
id: string;
|
|
414
|
+
role: string;
|
|
415
|
+
roleId: (string | null);
|
|
416
|
+
status: string;
|
|
417
|
+
userId: (string | null);
|
|
418
|
+
agentId: (string | null);
|
|
419
|
+
joinedAt: (string | null);
|
|
420
|
+
expiresAt: (string | null);
|
|
421
|
+
invitedAt: string;
|
|
422
|
+
invitedBy: (string | null);
|
|
423
|
+
productId: string;
|
|
424
|
+
grantSource: string;
|
|
425
|
+
permissions: {
|
|
426
|
+
[k: string]: unknown;
|
|
427
|
+
};
|
|
428
|
+
}
|
|
429
|
+
interface OrganizationPermissionCatalogInput {
|
|
430
|
+
}
|
|
431
|
+
interface OrganizationPermissionCatalogOutput {
|
|
432
|
+
catalog: {
|
|
433
|
+
key: string;
|
|
434
|
+
group: string;
|
|
435
|
+
level: ("read" | "write" | "admin");
|
|
436
|
+
scope: ("user" | "product");
|
|
437
|
+
display_name: string;
|
|
438
|
+
}[];
|
|
439
|
+
}
|
|
440
|
+
interface OrganizationProductAcceptInvitationInput {
|
|
441
|
+
token: string;
|
|
442
|
+
}
|
|
443
|
+
interface OrganizationProductAcceptInvitationOutput {
|
|
444
|
+
product: {
|
|
445
|
+
id: string;
|
|
446
|
+
name: string;
|
|
447
|
+
role: string;
|
|
448
|
+
slug: string;
|
|
449
|
+
status: string;
|
|
450
|
+
createdAt: string;
|
|
451
|
+
};
|
|
452
|
+
}
|
|
453
|
+
interface OrganizationProductCreateInput {
|
|
454
|
+
name: string;
|
|
455
|
+
organizationName?: string;
|
|
456
|
+
}
|
|
457
|
+
interface OrganizationProductCreateOutput {
|
|
458
|
+
id: string;
|
|
459
|
+
name: string;
|
|
460
|
+
role: string;
|
|
461
|
+
slug: string;
|
|
462
|
+
status: string;
|
|
463
|
+
blockedAt: (string | null);
|
|
464
|
+
createdAt: string;
|
|
465
|
+
archivedAt: (string | null);
|
|
466
|
+
}
|
|
467
|
+
interface OrganizationProductInviteInput {
|
|
468
|
+
email: string;
|
|
469
|
+
productId: string;
|
|
470
|
+
}
|
|
471
|
+
interface OrganizationProductInviteOutput {
|
|
472
|
+
id: string;
|
|
473
|
+
role: string;
|
|
474
|
+
email: (string | null);
|
|
475
|
+
status: string;
|
|
476
|
+
createdAt: string;
|
|
477
|
+
expiresAt: string;
|
|
478
|
+
}
|
|
479
|
+
interface OrganizationProductListInput {
|
|
480
|
+
}
|
|
481
|
+
interface OrganizationProductListOutput {
|
|
482
|
+
products: {
|
|
483
|
+
id: string;
|
|
484
|
+
name: string;
|
|
485
|
+
role: string;
|
|
486
|
+
slug: string;
|
|
487
|
+
status: string;
|
|
488
|
+
blockedAt: (string | null);
|
|
489
|
+
createdAt: string;
|
|
490
|
+
archivedAt: (string | null);
|
|
491
|
+
}[];
|
|
492
|
+
}
|
|
493
|
+
interface OrganizationProductListInvitationsInput {
|
|
494
|
+
productId: string;
|
|
495
|
+
}
|
|
496
|
+
interface OrganizationProductListInvitationsOutput {
|
|
497
|
+
invitations: {
|
|
498
|
+
id: string;
|
|
499
|
+
role: string;
|
|
500
|
+
email: (string | null);
|
|
501
|
+
status: string;
|
|
502
|
+
createdAt: string;
|
|
503
|
+
expiresAt: string;
|
|
504
|
+
invitedByDisplayName: string;
|
|
505
|
+
}[];
|
|
506
|
+
}
|
|
507
|
+
interface OrganizationProductListMembersInput {
|
|
508
|
+
productId: string;
|
|
509
|
+
}
|
|
510
|
+
interface OrganizationProductListMembersOutput {
|
|
511
|
+
members: {
|
|
512
|
+
id: string;
|
|
513
|
+
role: string;
|
|
514
|
+
email: (string | null);
|
|
515
|
+
roleId: (string | null);
|
|
516
|
+
userId: string;
|
|
517
|
+
joinedAt: (string | null);
|
|
518
|
+
roleName: (string | null);
|
|
519
|
+
roleType: (("system" | "custom") | null);
|
|
520
|
+
expiresAt: (string | null);
|
|
521
|
+
displayName: (string | null);
|
|
522
|
+
}[];
|
|
523
|
+
}
|
|
524
|
+
interface OrganizationProductRevokeInvitationInput {
|
|
525
|
+
productId: string;
|
|
526
|
+
invitationId: string;
|
|
527
|
+
}
|
|
528
|
+
interface OrganizationProductRevokeInvitationOutput {
|
|
529
|
+
message: string;
|
|
530
|
+
}
|
|
531
|
+
interface OrganizationProductSelectInput {
|
|
532
|
+
productId: string;
|
|
533
|
+
}
|
|
534
|
+
interface OrganizationProductSelectOutput {
|
|
535
|
+
id: string;
|
|
536
|
+
name: string;
|
|
537
|
+
slug: string;
|
|
538
|
+
}
|
|
539
|
+
interface OrganizationRolesCreateInput {
|
|
540
|
+
deny?: string[];
|
|
541
|
+
name: string;
|
|
542
|
+
allow?: string[];
|
|
543
|
+
orgId: string;
|
|
544
|
+
}
|
|
545
|
+
interface OrganizationRolesCreateOutput {
|
|
546
|
+
id: string;
|
|
547
|
+
deny: string[];
|
|
548
|
+
name: string;
|
|
549
|
+
type: ("system" | "custom");
|
|
550
|
+
allow: string[];
|
|
551
|
+
createdAt: string;
|
|
552
|
+
updatedAt: string;
|
|
553
|
+
organizationId: string;
|
|
554
|
+
}
|
|
555
|
+
interface OrganizationRolesDeleteInput {
|
|
556
|
+
orgId: string;
|
|
557
|
+
roleId: string;
|
|
558
|
+
}
|
|
559
|
+
interface OrganizationRolesDeleteOutput {
|
|
560
|
+
[k: string]: unknown;
|
|
561
|
+
}
|
|
562
|
+
interface OrganizationRolesGetInput {
|
|
563
|
+
orgId: string;
|
|
564
|
+
roleId: string;
|
|
565
|
+
}
|
|
566
|
+
interface OrganizationRolesGetOutput {
|
|
567
|
+
id: string;
|
|
568
|
+
deny: string[];
|
|
569
|
+
name: string;
|
|
570
|
+
type: ("system" | "custom");
|
|
571
|
+
allow: string[];
|
|
572
|
+
createdAt: string;
|
|
573
|
+
updatedAt: string;
|
|
574
|
+
organizationId: string;
|
|
575
|
+
}
|
|
576
|
+
interface OrganizationRolesListInput {
|
|
577
|
+
orgId: string;
|
|
578
|
+
}
|
|
579
|
+
interface OrganizationRolesListOutput {
|
|
580
|
+
roles: {
|
|
581
|
+
id: string;
|
|
582
|
+
deny: string[];
|
|
583
|
+
name: string;
|
|
584
|
+
type: ("system" | "custom");
|
|
585
|
+
allow: string[];
|
|
586
|
+
createdAt: string;
|
|
587
|
+
updatedAt: string;
|
|
588
|
+
organizationId: string;
|
|
589
|
+
}[];
|
|
590
|
+
}
|
|
591
|
+
interface OrganizationRolesUpdateInput {
|
|
592
|
+
deny?: string[];
|
|
593
|
+
name?: string;
|
|
594
|
+
allow?: string[];
|
|
595
|
+
orgId: string;
|
|
596
|
+
roleId: string;
|
|
597
|
+
}
|
|
598
|
+
interface OrganizationRolesUpdateOutput {
|
|
599
|
+
id: string;
|
|
600
|
+
deny: string[];
|
|
601
|
+
name: string;
|
|
602
|
+
type: ("system" | "custom");
|
|
603
|
+
allow: string[];
|
|
604
|
+
createdAt: string;
|
|
605
|
+
updatedAt: string;
|
|
606
|
+
organizationId: string;
|
|
607
|
+
}
|
|
608
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
609
|
+
/**
|
|
610
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
611
|
+
*/
|
|
612
|
+
limit?: number;
|
|
613
|
+
}
|
|
614
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
615
|
+
ok: boolean;
|
|
616
|
+
minted: boolean;
|
|
617
|
+
overview?: unknown;
|
|
618
|
+
http_status: number;
|
|
619
|
+
}
|
|
620
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
621
|
+
}
|
|
622
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
623
|
+
ok: boolean;
|
|
624
|
+
minted: boolean;
|
|
625
|
+
http_status: number;
|
|
626
|
+
entitlements?: unknown;
|
|
627
|
+
}
|
|
628
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
629
|
+
/**
|
|
630
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
631
|
+
*/
|
|
632
|
+
value?: number;
|
|
633
|
+
}
|
|
634
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
635
|
+
minted: boolean;
|
|
636
|
+
accepted: (number | null);
|
|
637
|
+
recorded: boolean;
|
|
638
|
+
duplicates: (number | null);
|
|
639
|
+
http_status: number;
|
|
640
|
+
}
|
|
641
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
642
|
+
/**
|
|
643
|
+
* Task title; defaults to a fixture label
|
|
644
|
+
*/
|
|
645
|
+
name?: string;
|
|
646
|
+
/**
|
|
647
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
648
|
+
*/
|
|
649
|
+
listId?: string;
|
|
650
|
+
}
|
|
651
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
652
|
+
minted: boolean;
|
|
653
|
+
task_id: (string | null);
|
|
654
|
+
list_status: number;
|
|
655
|
+
vend_status: number;
|
|
656
|
+
clickup_status: number;
|
|
657
|
+
installation_count: number;
|
|
658
|
+
}
|
|
659
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
660
|
+
}
|
|
661
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
662
|
+
payload: string;
|
|
663
|
+
event_id: string;
|
|
664
|
+
provider: string;
|
|
665
|
+
verified: boolean;
|
|
666
|
+
product_id: string;
|
|
667
|
+
occurred_at: string;
|
|
668
|
+
connector_id: string;
|
|
669
|
+
clickup_event: (string | null);
|
|
670
|
+
receipt_count: number;
|
|
671
|
+
} | {
|
|
672
|
+
found: false;
|
|
673
|
+
});
|
|
674
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
675
|
+
}
|
|
676
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
677
|
+
team: ({
|
|
678
|
+
teamId: string;
|
|
679
|
+
teamName: string;
|
|
680
|
+
} | null);
|
|
681
|
+
lists: Items[];
|
|
682
|
+
tasks: {
|
|
683
|
+
id: string;
|
|
684
|
+
name: string;
|
|
685
|
+
status: (string | null);
|
|
686
|
+
}[];
|
|
687
|
+
minted: boolean;
|
|
688
|
+
spaces: Items[];
|
|
689
|
+
list_status: number;
|
|
690
|
+
vend_status: number;
|
|
691
|
+
lists_status: number;
|
|
692
|
+
tasks_status: number;
|
|
693
|
+
spaces_status: number;
|
|
694
|
+
folders_status: number;
|
|
695
|
+
installation_count: number;
|
|
696
|
+
}
|
|
697
|
+
interface Items {
|
|
698
|
+
id: string;
|
|
699
|
+
name: string;
|
|
700
|
+
}
|
|
701
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
702
|
+
}
|
|
703
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
704
|
+
file_id: string;
|
|
705
|
+
removed: boolean;
|
|
706
|
+
file_name: (string | null);
|
|
707
|
+
mime_type: (string | null);
|
|
708
|
+
product_id: string;
|
|
709
|
+
occurred_at: string;
|
|
710
|
+
connector_id: string;
|
|
711
|
+
resource_state: string;
|
|
712
|
+
} | {
|
|
713
|
+
found: false;
|
|
714
|
+
});
|
|
715
|
+
interface PlaygroundGdriveReadFileInput {
|
|
716
|
+
/**
|
|
717
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
718
|
+
*/
|
|
719
|
+
fileId?: string;
|
|
720
|
+
}
|
|
721
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
722
|
+
minted: boolean;
|
|
723
|
+
file_id: (string | null);
|
|
724
|
+
file_name: (string | null);
|
|
725
|
+
mime_type: (string | null);
|
|
726
|
+
file_count: number;
|
|
727
|
+
get_status: number;
|
|
728
|
+
list_status: number;
|
|
729
|
+
vend_status: number;
|
|
730
|
+
content_bytes: (number | null);
|
|
731
|
+
}
|
|
732
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
733
|
+
}
|
|
734
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
735
|
+
minted: boolean;
|
|
736
|
+
vended: boolean;
|
|
737
|
+
customer_id: (string | null);
|
|
738
|
+
vend_status: number;
|
|
739
|
+
result_count: number;
|
|
740
|
+
search_status: number;
|
|
741
|
+
login_customer_id: (string | null);
|
|
742
|
+
}
|
|
743
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
744
|
+
}
|
|
745
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
746
|
+
blocked: boolean;
|
|
747
|
+
archived: boolean;
|
|
748
|
+
productId: string;
|
|
749
|
+
lastBlockTransition: ({
|
|
750
|
+
eventId: string;
|
|
751
|
+
eventName: string;
|
|
752
|
+
productId: string;
|
|
753
|
+
occurredAt: string;
|
|
754
|
+
recordedAt: string;
|
|
755
|
+
receiptCount: number;
|
|
756
|
+
organizationId: string;
|
|
757
|
+
cascadedFromOrg: boolean;
|
|
758
|
+
} | null);
|
|
759
|
+
lastArchiveTransition: ({
|
|
760
|
+
eventId: string;
|
|
761
|
+
eventName: string;
|
|
762
|
+
productId: string;
|
|
763
|
+
occurredAt: string;
|
|
764
|
+
recordedAt: string;
|
|
765
|
+
receiptCount: number;
|
|
766
|
+
organizationId: string;
|
|
767
|
+
cascadedFromOrg: boolean;
|
|
768
|
+
} | null);
|
|
769
|
+
}
|
|
770
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
771
|
+
}
|
|
772
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
773
|
+
eventId: string;
|
|
774
|
+
eventName: string;
|
|
775
|
+
productId: string;
|
|
776
|
+
occurredAt: string;
|
|
777
|
+
recordedAt: string;
|
|
778
|
+
receiptCount: number;
|
|
779
|
+
organizationId: string;
|
|
780
|
+
cascadedFromOrg: boolean;
|
|
781
|
+
}[];
|
|
782
|
+
interface PlaygroundWebhookGetLastInput {
|
|
783
|
+
}
|
|
784
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
785
|
+
payload?: unknown;
|
|
786
|
+
event_id: string;
|
|
787
|
+
provider: string;
|
|
788
|
+
verified: boolean;
|
|
789
|
+
product_id: string;
|
|
790
|
+
occurred_at: string;
|
|
791
|
+
connector_id: string;
|
|
792
|
+
delivery_count: number;
|
|
793
|
+
} | {
|
|
794
|
+
found: false;
|
|
795
|
+
});
|
|
796
|
+
|
|
797
|
+
interface GeneratedClient {
|
|
798
|
+
organization: {
|
|
799
|
+
auth: {
|
|
800
|
+
me(input: OrganizationAuthMeInput): Promise<OrganizationAuthMeOutput>;
|
|
801
|
+
};
|
|
802
|
+
bindings: {
|
|
803
|
+
list(input: OrganizationBindingsListInput): Promise<OrganizationBindingsListOutput>;
|
|
804
|
+
};
|
|
805
|
+
clickup: {
|
|
806
|
+
install(input: OrganizationClickupInstallInput): Promise<OrganizationClickupInstallOutput>;
|
|
807
|
+
'list-installations'(input: OrganizationClickupListInstallationsInput): Promise<OrganizationClickupListInstallationsOutput>;
|
|
808
|
+
};
|
|
809
|
+
cloudflare: {
|
|
810
|
+
install(input: OrganizationCloudflareInstallInput): Promise<OrganizationCloudflareInstallOutput>;
|
|
811
|
+
};
|
|
812
|
+
connectors: {
|
|
813
|
+
attach(input: OrganizationConnectorsAttachInput): Promise<OrganizationConnectorsAttachOutput>;
|
|
814
|
+
delete(input: OrganizationConnectorsDeleteInput): Promise<OrganizationConnectorsDeleteOutput>;
|
|
815
|
+
detach(input: OrganizationConnectorsDetachInput): Promise<OrganizationConnectorsDetachOutput>;
|
|
816
|
+
list(input: OrganizationConnectorsListInput): Promise<OrganizationConnectorsListOutput>;
|
|
817
|
+
'list-attachments'(input: OrganizationConnectorsListAttachmentsInput): Promise<OrganizationConnectorsListAttachmentsOutput>;
|
|
818
|
+
'list-org'(input: OrganizationConnectorsListOrgInput): Promise<OrganizationConnectorsListOrgOutput>;
|
|
819
|
+
remove(input: OrganizationConnectorsRemoveInput): Promise<OrganizationConnectorsRemoveOutput>;
|
|
820
|
+
};
|
|
821
|
+
domains: {
|
|
822
|
+
add(input: OrganizationDomainsAddInput): Promise<OrganizationDomainsAddOutput>;
|
|
823
|
+
get(input: OrganizationDomainsGetInput): Promise<OrganizationDomainsGetOutput>;
|
|
824
|
+
list(input: OrganizationDomainsListInput): Promise<OrganizationDomainsListOutput>;
|
|
825
|
+
remove(input: OrganizationDomainsRemoveInput): Promise<OrganizationDomainsRemoveOutput>;
|
|
826
|
+
};
|
|
827
|
+
extensions: {
|
|
828
|
+
install(input: OrganizationExtensionsInstallInput): Promise<OrganizationExtensionsInstallOutput>;
|
|
829
|
+
list(input: OrganizationExtensionsListInput): Promise<OrganizationExtensionsListOutput>;
|
|
830
|
+
'list-installed'(input: OrganizationExtensionsListInstalledInput): Promise<OrganizationExtensionsListInstalledOutput>;
|
|
831
|
+
uninstall(input: OrganizationExtensionsUninstallInput): Promise<OrganizationExtensionsUninstallOutput>;
|
|
832
|
+
};
|
|
833
|
+
gdrive: {
|
|
834
|
+
install(input: OrganizationGdriveInstallInput): Promise<OrganizationGdriveInstallOutput>;
|
|
835
|
+
};
|
|
836
|
+
github: {
|
|
837
|
+
install(input: OrganizationGithubInstallInput): Promise<OrganizationGithubInstallOutput>;
|
|
838
|
+
'list-installations'(input: OrganizationGithubListInstallationsInput): Promise<OrganizationGithubListInstallationsOutput>;
|
|
839
|
+
};
|
|
840
|
+
googleads: {
|
|
841
|
+
install(input: OrganizationGoogleadsInstallInput): Promise<OrganizationGoogleadsInstallOutput>;
|
|
842
|
+
};
|
|
843
|
+
member: {
|
|
844
|
+
'accept-invite'(input: OrganizationMemberAcceptInviteInput): Promise<OrganizationMemberAcceptInviteOutput>;
|
|
845
|
+
invite(input: OrganizationMemberInviteInput): Promise<OrganizationMemberInviteOutput>;
|
|
846
|
+
list(input: OrganizationMemberListInput): Promise<OrganizationMemberListOutput>;
|
|
847
|
+
'list-invitations'(input: OrganizationMemberListInvitationsInput): Promise<OrganizationMemberListInvitationsOutput>;
|
|
848
|
+
'list-product-access'(input: OrganizationMemberListProductAccessInput): Promise<OrganizationMemberListProductAccessOutput>;
|
|
849
|
+
remove(input: OrganizationMemberRemoveInput): Promise<OrganizationMemberRemoveOutput>;
|
|
850
|
+
'revoke-invitation'(input: OrganizationMemberRevokeInvitationInput): Promise<OrganizationMemberRevokeInvitationOutput>;
|
|
851
|
+
'set-role'(input: OrganizationMemberSetRoleInput): Promise<OrganizationMemberSetRoleOutput>;
|
|
852
|
+
'share-product'(input: OrganizationMemberShareProductInput): Promise<OrganizationMemberShareProductOutput>;
|
|
853
|
+
'unshare-product'(input: OrganizationMemberUnshareProductInput): Promise<OrganizationMemberUnshareProductOutput>;
|
|
854
|
+
};
|
|
855
|
+
members: {
|
|
856
|
+
'assign-role'(input: OrganizationMembersAssignRoleInput): Promise<OrganizationMembersAssignRoleOutput>;
|
|
857
|
+
};
|
|
858
|
+
permission: {
|
|
859
|
+
catalog(input: OrganizationPermissionCatalogInput): Promise<OrganizationPermissionCatalogOutput>;
|
|
860
|
+
};
|
|
861
|
+
product: {
|
|
862
|
+
'accept-invitation'(input: OrganizationProductAcceptInvitationInput): Promise<OrganizationProductAcceptInvitationOutput>;
|
|
863
|
+
create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
|
|
864
|
+
invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
|
|
865
|
+
list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
|
|
866
|
+
'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
|
|
867
|
+
'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
|
|
868
|
+
'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
|
|
869
|
+
select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
|
|
870
|
+
};
|
|
871
|
+
roles: {
|
|
872
|
+
create(input: OrganizationRolesCreateInput): Promise<OrganizationRolesCreateOutput>;
|
|
873
|
+
delete(input: OrganizationRolesDeleteInput): Promise<OrganizationRolesDeleteOutput>;
|
|
874
|
+
get(input: OrganizationRolesGetInput): Promise<OrganizationRolesGetOutput>;
|
|
875
|
+
list(input: OrganizationRolesListInput): Promise<OrganizationRolesListOutput>;
|
|
876
|
+
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
877
|
+
};
|
|
878
|
+
};
|
|
879
|
+
playground: {
|
|
880
|
+
analytics: {
|
|
881
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
882
|
+
};
|
|
883
|
+
billing: {
|
|
884
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
885
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
886
|
+
};
|
|
887
|
+
clickup: {
|
|
888
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
889
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
890
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
891
|
+
};
|
|
892
|
+
gdrive: {
|
|
893
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
894
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
895
|
+
};
|
|
896
|
+
googleads: {
|
|
897
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
898
|
+
};
|
|
899
|
+
lifecycle: {
|
|
900
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
901
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
902
|
+
};
|
|
903
|
+
webhook: {
|
|
904
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
export type { OrganizationMemberListInvitationsInput as $, OrganizationDomainsGetOutput as A, OrganizationDomainsListInput as B, OrganizationDomainsListOutput as C, OrganizationDomainsRemoveInput as D, OrganizationDomainsRemoveOutput as E, OrganizationExtensionsInstallInput as F, GeneratedClient as G, OrganizationExtensionsInstallOutput as H, OrganizationExtensionsListInstalledInput as I, OrganizationExtensionsListInstalledOutput as J, OrganizationExtensionsListInput as K, OrganizationExtensionsListOutput as L, OrganizationExtensionsUninstallInput as M, OrganizationExtensionsUninstallOutput as N, OrganizationAuthMeInput as O, OrganizationGdriveInstallInput as P, OrganizationGdriveInstallOutput as Q, OrganizationGithubInstallInput as R, OrganizationGithubInstallOutput as S, OrganizationGithubListInstallationsInput as T, OrganizationGithubListInstallationsOutput as U, OrganizationGoogleadsInstallInput as V, OrganizationGoogleadsInstallOutput as W, OrganizationMemberAcceptInviteInput as X, OrganizationMemberAcceptInviteOutput as Y, OrganizationMemberInviteInput as Z, OrganizationMemberInviteOutput as _, OrganizationAuthMeOutput as a, PlaygroundLifecycleGetStateInput as a$, OrganizationMemberListInvitationsOutput as a0, OrganizationMemberListProductAccessInput as a1, OrganizationMemberListProductAccessOutput as a2, OrganizationMemberListInput as a3, OrganizationMemberListOutput as a4, OrganizationMemberRemoveInput as a5, OrganizationMemberRemoveOutput as a6, OrganizationMemberRevokeInvitationInput as a7, OrganizationMemberRevokeInvitationOutput as a8, OrganizationMemberSetRoleInput as a9, OrganizationRolesCreateOutput as aA, OrganizationRolesDeleteInput as aB, OrganizationRolesDeleteOutput as aC, OrganizationRolesGetInput as aD, OrganizationRolesGetOutput as aE, OrganizationRolesListInput as aF, OrganizationRolesListOutput as aG, OrganizationRolesUpdateInput as aH, OrganizationRolesUpdateOutput as aI, PlaygroundAnalyticsOverviewInput as aJ, PlaygroundAnalyticsOverviewOutput as aK, PlaygroundBillingEntitlementsInput as aL, PlaygroundBillingEntitlementsOutput as aM, PlaygroundBillingRecordUsageInput as aN, PlaygroundBillingRecordUsageOutput as aO, PlaygroundClickupCreateTaskInput as aP, PlaygroundClickupCreateTaskOutput as aQ, PlaygroundClickupGetLastWebhookInput as aR, PlaygroundClickupGetLastWebhookOutput as aS, PlaygroundClickupGetOverviewInput as aT, PlaygroundClickupGetOverviewOutput as aU, PlaygroundGdriveGetLastChangeInput as aV, PlaygroundGdriveGetLastChangeOutput as aW, PlaygroundGdriveReadFileInput as aX, PlaygroundGdriveReadFileOutput as aY, PlaygroundGoogleadsReadCustomerInput as aZ, PlaygroundGoogleadsReadCustomerOutput as a_, OrganizationMemberSetRoleOutput as aa, OrganizationMemberShareProductInput as ab, OrganizationMemberShareProductOutput as ac, OrganizationMemberUnshareProductInput as ad, OrganizationMemberUnshareProductOutput as ae, OrganizationMembersAssignRoleInput as af, OrganizationMembersAssignRoleOutput as ag, OrganizationPermissionCatalogInput as ah, OrganizationPermissionCatalogOutput as ai, OrganizationProductAcceptInvitationInput as aj, OrganizationProductAcceptInvitationOutput as ak, OrganizationProductCreateInput as al, OrganizationProductCreateOutput as am, OrganizationProductInviteInput as an, OrganizationProductInviteOutput as ao, OrganizationProductListInvitationsInput as ap, OrganizationProductListInvitationsOutput as aq, OrganizationProductListMembersInput as ar, OrganizationProductListMembersOutput as as, OrganizationProductListInput as at, OrganizationProductListOutput as au, OrganizationProductRevokeInvitationInput as av, OrganizationProductRevokeInvitationOutput as aw, OrganizationProductSelectInput as ax, OrganizationProductSelectOutput as ay, OrganizationRolesCreateInput as az, OrganizationBindingsListInput as b, PlaygroundLifecycleGetStateOutput as b0, PlaygroundLifecycleListEventsInput as b1, PlaygroundLifecycleListEventsOutput as b2, PlaygroundWebhookGetLastInput as b3, PlaygroundWebhookGetLastOutput as b4, OrganizationBindingsListOutput as c, OrganizationClickupInstallInput as d, OrganizationClickupInstallOutput as e, OrganizationClickupListInstallationsInput as f, OrganizationClickupListInstallationsOutput as g, OrganizationCloudflareInstallInput as h, OrganizationCloudflareInstallOutput as i, OrganizationConnectorsAttachInput as j, OrganizationConnectorsAttachOutput as k, OrganizationConnectorsDeleteInput as l, OrganizationConnectorsDeleteOutput as m, OrganizationConnectorsDetachInput as n, OrganizationConnectorsDetachOutput as o, OrganizationConnectorsListAttachmentsInput as p, OrganizationConnectorsListAttachmentsOutput as q, OrganizationConnectorsListOrgInput as r, OrganizationConnectorsListOrgOutput as s, OrganizationConnectorsListInput as t, OrganizationConnectorsListOutput as u, OrganizationConnectorsRemoveInput as v, OrganizationConnectorsRemoveOutput as w, OrganizationDomainsAddInput as x, OrganizationDomainsAddOutput as y, OrganizationDomainsGetInput as z };
|