@lessly/sdk-app 23.1.0 → 24.0.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/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +5 -0
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +6 -2
- package/dist/brain/index.d.ts +6 -2
- package/dist/brain/index.js +5 -1
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-DqpzhA8m.d.cts → client.gen-MqVL6l3Y.d.cts} +130 -372
- package/dist/{client.gen-DqpzhA8m.d.ts → client.gen-MqVL6l3Y.d.ts} +130 -372
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +25 -98
- 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 +25 -98
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/realtime/index.cjs +15 -5
- package/dist/realtime/index.cjs.map +1 -1
- package/dist/realtime/index.d.cts +14 -6
- package/dist/realtime/index.d.ts +14 -6
- package/dist/realtime/index.js +13 -5
- package/dist/realtime/index.js.map +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.d.cts +1 -1
- package/dist/users/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +2 -7
- package/src/gen/bindings.gen.ts +25 -98
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +7 -0
- package/src/gen/client.gen.ts +16 -57
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/realtime/index.ts +1 -1
- package/src/gen/realtime/queryOptions.gen.ts +19 -7
- package/src/gen/types.gen.ts +120 -365
- package/dist/playground/index.cjs +0 -66
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -52
- package/dist/playground/index.d.ts +0 -52
- package/dist/playground/index.js +0 -53
- package/dist/playground/index.js.map +0 -1
- package/src/gen/playground/index.ts +0 -3
- package/src/gen/playground/queryOptions.gen.ts +0 -86
|
@@ -935,6 +935,96 @@ type BrainRestoreStatusOutput = ({
|
|
|
935
935
|
snapshotId: string;
|
|
936
936
|
preRestoreSnapshotId: (string | null);
|
|
937
937
|
} | null);
|
|
938
|
+
interface BrainUsageReportInput {
|
|
939
|
+
/**
|
|
940
|
+
* How many UTC days of this product's ledger to return, ending today (default 30, max 90)
|
|
941
|
+
*/
|
|
942
|
+
days?: number;
|
|
943
|
+
}
|
|
944
|
+
interface BrainUsageReportOutput {
|
|
945
|
+
note: string;
|
|
946
|
+
/**
|
|
947
|
+
* Brain's own ledger, for THIS product only
|
|
948
|
+
*/
|
|
949
|
+
product: {
|
|
950
|
+
/**
|
|
951
|
+
* Inclusive UTC end of the window (today), YYYY-MM-DD
|
|
952
|
+
*/
|
|
953
|
+
to: string;
|
|
954
|
+
/**
|
|
955
|
+
* The window actually used, after clamping
|
|
956
|
+
*/
|
|
957
|
+
days: number;
|
|
958
|
+
/**
|
|
959
|
+
* Inclusive UTC start of the window, YYYY-MM-DD
|
|
960
|
+
*/
|
|
961
|
+
from: string;
|
|
962
|
+
rows: {
|
|
963
|
+
/**
|
|
964
|
+
* 'sync' | 'batch'; '' when the push carried none
|
|
965
|
+
*/
|
|
966
|
+
mode: string;
|
|
967
|
+
/**
|
|
968
|
+
* Manifest meter slug, e.g. llm-tokens
|
|
969
|
+
*/
|
|
970
|
+
meter: string;
|
|
971
|
+
/**
|
|
972
|
+
* Model dimension; '' when the push carried none
|
|
973
|
+
*/
|
|
974
|
+
model: string;
|
|
975
|
+
/**
|
|
976
|
+
* How many record() calls landed in this slice
|
|
977
|
+
*/
|
|
978
|
+
events: number;
|
|
979
|
+
/**
|
|
980
|
+
* Tokens we metered for this slice, delivered or not
|
|
981
|
+
*/
|
|
982
|
+
tokens: number;
|
|
983
|
+
/**
|
|
984
|
+
* Purpose dimension; '' when the push carried none
|
|
985
|
+
*/
|
|
986
|
+
purpose: string;
|
|
987
|
+
/**
|
|
988
|
+
* UTC calendar day, YYYY-MM-DD
|
|
989
|
+
*/
|
|
990
|
+
usage_date: string;
|
|
991
|
+
/**
|
|
992
|
+
* Of those events, how many billing did not accept
|
|
993
|
+
*/
|
|
994
|
+
delivery_failed: number;
|
|
995
|
+
}[];
|
|
996
|
+
/**
|
|
997
|
+
* The rows rolled up per meter across the whole window
|
|
998
|
+
*/
|
|
999
|
+
totals: {
|
|
1000
|
+
meter: string;
|
|
1001
|
+
events: number;
|
|
1002
|
+
tokens: number;
|
|
1003
|
+
delivery_failed: number;
|
|
1004
|
+
}[];
|
|
1005
|
+
product_id: string;
|
|
1006
|
+
};
|
|
1007
|
+
/**
|
|
1008
|
+
* The platform billing aggregate for the whole ORG; null if it could not be read
|
|
1009
|
+
*/
|
|
1010
|
+
platform: ({
|
|
1011
|
+
plan: string;
|
|
1012
|
+
scope: "org";
|
|
1013
|
+
meters: {
|
|
1014
|
+
unit?: string;
|
|
1015
|
+
used?: number;
|
|
1016
|
+
limit?: (number | null);
|
|
1017
|
+
remaining?: (number | null);
|
|
1018
|
+
unlimited?: boolean;
|
|
1019
|
+
meter_slug: string;
|
|
1020
|
+
}[];
|
|
1021
|
+
org_id: string;
|
|
1022
|
+
} | null);
|
|
1023
|
+
/**
|
|
1024
|
+
* Why the platform aggregate is null; null when it was read successfully
|
|
1025
|
+
*/
|
|
1026
|
+
platform_error: (string | null);
|
|
1027
|
+
}
|
|
938
1028
|
interface ConsentConfigCookieDomainUpsertInput {
|
|
939
1029
|
cookieDomain: ("" | null | string);
|
|
940
1030
|
}
|
|
@@ -2395,7 +2485,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2395
2485
|
baseEnvironmentId: (string | null);
|
|
2396
2486
|
}
|
|
2397
2487
|
interface DeploymentEventsListByEnvironmentInput {
|
|
2398
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2488
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
|
|
2399
2489
|
limit?: number;
|
|
2400
2490
|
since?: string;
|
|
2401
2491
|
until?: string;
|
|
@@ -2403,7 +2493,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2403
2493
|
}
|
|
2404
2494
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2405
2495
|
id: string;
|
|
2406
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2496
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
|
|
2407
2497
|
payload: {
|
|
2408
2498
|
[k: string]: unknown;
|
|
2409
2499
|
};
|
|
@@ -2415,7 +2505,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2415
2505
|
environmentId: (string | null);
|
|
2416
2506
|
}[];
|
|
2417
2507
|
interface DeploymentEventsListByServiceInput {
|
|
2418
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2508
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
|
|
2419
2509
|
limit?: number;
|
|
2420
2510
|
since?: string;
|
|
2421
2511
|
until?: string;
|
|
@@ -2424,7 +2514,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2424
2514
|
}
|
|
2425
2515
|
type DeploymentEventsListByServiceOutput = {
|
|
2426
2516
|
id: string;
|
|
2427
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2517
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "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" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
|
|
2428
2518
|
payload: {
|
|
2429
2519
|
[k: string]: unknown;
|
|
2430
2520
|
};
|
|
@@ -13335,194 +13425,46 @@ interface OrganizationSelectOutput {
|
|
|
13335
13425
|
};
|
|
13336
13426
|
activeProductId: (string | null);
|
|
13337
13427
|
}
|
|
13338
|
-
interface
|
|
13428
|
+
interface RealtimeApikeyCreateInput {
|
|
13339
13429
|
/**
|
|
13340
|
-
*
|
|
13430
|
+
* Human-readable label for the key, e.g. "production backend"
|
|
13341
13431
|
*/
|
|
13342
|
-
|
|
13343
|
-
}
|
|
13344
|
-
interface PlaygroundAnalyticsOverviewOutput {
|
|
13345
|
-
ok: boolean;
|
|
13346
|
-
minted: boolean;
|
|
13347
|
-
overview?: unknown;
|
|
13348
|
-
http_status: number;
|
|
13349
|
-
}
|
|
13350
|
-
interface PlaygroundBillingEntitlementsInput {
|
|
13351
|
-
}
|
|
13352
|
-
interface PlaygroundBillingEntitlementsOutput {
|
|
13353
|
-
ok: boolean;
|
|
13354
|
-
minted: boolean;
|
|
13355
|
-
http_status: number;
|
|
13356
|
-
entitlements?: unknown;
|
|
13357
|
-
}
|
|
13358
|
-
interface PlaygroundBillingRecordUsageInput {
|
|
13359
|
-
/**
|
|
13360
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13361
|
-
*/
|
|
13362
|
-
value?: number;
|
|
13363
|
-
}
|
|
13364
|
-
interface PlaygroundBillingRecordUsageOutput {
|
|
13365
|
-
minted: boolean;
|
|
13366
|
-
accepted: (number | null);
|
|
13367
|
-
recorded: boolean;
|
|
13368
|
-
duplicates: (number | null);
|
|
13369
|
-
http_status: number;
|
|
13432
|
+
name: string;
|
|
13370
13433
|
}
|
|
13371
|
-
interface
|
|
13434
|
+
interface RealtimeApikeyCreateOutput {
|
|
13372
13435
|
/**
|
|
13373
|
-
*
|
|
13436
|
+
* The full rtk_ secret. Shown once — it cannot be retrieved again.
|
|
13374
13437
|
*/
|
|
13375
|
-
|
|
13376
|
-
|
|
13377
|
-
|
|
13378
|
-
|
|
13379
|
-
|
|
13380
|
-
|
|
13381
|
-
|
|
13382
|
-
|
|
13383
|
-
task_id: (string | null);
|
|
13384
|
-
list_status: number;
|
|
13385
|
-
vend_status: number;
|
|
13386
|
-
clickup_status: number;
|
|
13387
|
-
installation_count: number;
|
|
13388
|
-
}
|
|
13389
|
-
interface PlaygroundClickupGetLastWebhookInput {
|
|
13438
|
+
key: string;
|
|
13439
|
+
apiKey: {
|
|
13440
|
+
id: string;
|
|
13441
|
+
name: string;
|
|
13442
|
+
prefix: string;
|
|
13443
|
+
createdAt: string;
|
|
13444
|
+
revokedAt: (string | null);
|
|
13445
|
+
};
|
|
13390
13446
|
}
|
|
13391
|
-
|
|
13392
|
-
payload: string;
|
|
13393
|
-
event_id: string;
|
|
13394
|
-
provider: string;
|
|
13395
|
-
verified: boolean;
|
|
13396
|
-
product_id: string;
|
|
13397
|
-
occurred_at: string;
|
|
13398
|
-
connector_id: string;
|
|
13399
|
-
clickup_event: (string | null);
|
|
13400
|
-
receipt_count: number;
|
|
13401
|
-
} | {
|
|
13402
|
-
found: false;
|
|
13403
|
-
});
|
|
13404
|
-
interface PlaygroundClickupGetOverviewInput {
|
|
13447
|
+
interface RealtimeApikeyListInput {
|
|
13405
13448
|
}
|
|
13406
|
-
interface
|
|
13407
|
-
|
|
13408
|
-
teamId: string;
|
|
13409
|
-
teamName: string;
|
|
13410
|
-
} | null);
|
|
13411
|
-
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13412
|
-
tasks: {
|
|
13449
|
+
interface RealtimeApikeyListOutput {
|
|
13450
|
+
keys: {
|
|
13413
13451
|
id: string;
|
|
13414
13452
|
name: string;
|
|
13415
|
-
|
|
13453
|
+
prefix: string;
|
|
13454
|
+
createdAt: string;
|
|
13455
|
+
revokedAt: (string | null);
|
|
13416
13456
|
}[];
|
|
13417
|
-
minted: boolean;
|
|
13418
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13419
|
-
list_status: number;
|
|
13420
|
-
vend_status: number;
|
|
13421
|
-
lists_status: number;
|
|
13422
|
-
tasks_status: number;
|
|
13423
|
-
spaces_status: number;
|
|
13424
|
-
folders_status: number;
|
|
13425
|
-
installation_count: number;
|
|
13426
|
-
}
|
|
13427
|
-
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13428
|
-
id: string;
|
|
13429
|
-
name: string;
|
|
13430
|
-
}
|
|
13431
|
-
interface PlaygroundGdriveGetLastChangeInput {
|
|
13432
|
-
}
|
|
13433
|
-
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13434
|
-
file_id: string;
|
|
13435
|
-
removed: boolean;
|
|
13436
|
-
file_name: (string | null);
|
|
13437
|
-
mime_type: (string | null);
|
|
13438
|
-
product_id: string;
|
|
13439
|
-
occurred_at: string;
|
|
13440
|
-
connector_id: string;
|
|
13441
|
-
resource_state: string;
|
|
13442
|
-
} | {
|
|
13443
|
-
found: false;
|
|
13444
|
-
});
|
|
13445
|
-
interface PlaygroundGdriveReadFileInput {
|
|
13446
|
-
/**
|
|
13447
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13448
|
-
*/
|
|
13449
|
-
fileId?: string;
|
|
13450
|
-
}
|
|
13451
|
-
interface PlaygroundGdriveReadFileOutput {
|
|
13452
|
-
minted: boolean;
|
|
13453
|
-
file_id: (string | null);
|
|
13454
|
-
file_name: (string | null);
|
|
13455
|
-
mime_type: (string | null);
|
|
13456
|
-
file_count: number;
|
|
13457
|
-
get_status: number;
|
|
13458
|
-
list_status: number;
|
|
13459
|
-
vend_status: number;
|
|
13460
|
-
content_bytes: (number | null);
|
|
13461
|
-
}
|
|
13462
|
-
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13463
|
-
}
|
|
13464
|
-
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13465
|
-
minted: boolean;
|
|
13466
|
-
vended: boolean;
|
|
13467
|
-
customer_id: (string | null);
|
|
13468
|
-
vend_status: number;
|
|
13469
|
-
result_count: number;
|
|
13470
|
-
search_status: number;
|
|
13471
|
-
login_customer_id: (string | null);
|
|
13472
|
-
}
|
|
13473
|
-
interface PlaygroundLifecycleGetStateInput {
|
|
13474
|
-
}
|
|
13475
|
-
interface PlaygroundLifecycleGetStateOutput {
|
|
13476
|
-
blocked: boolean;
|
|
13477
|
-
archived: boolean;
|
|
13478
|
-
productId: string;
|
|
13479
|
-
lastBlockTransition: ({
|
|
13480
|
-
eventId: string;
|
|
13481
|
-
eventName: string;
|
|
13482
|
-
productId: string;
|
|
13483
|
-
occurredAt: string;
|
|
13484
|
-
recordedAt: string;
|
|
13485
|
-
receiptCount: number;
|
|
13486
|
-
organizationId: string;
|
|
13487
|
-
cascadedFromOrg: boolean;
|
|
13488
|
-
} | null);
|
|
13489
|
-
lastArchiveTransition: ({
|
|
13490
|
-
eventId: string;
|
|
13491
|
-
eventName: string;
|
|
13492
|
-
productId: string;
|
|
13493
|
-
occurredAt: string;
|
|
13494
|
-
recordedAt: string;
|
|
13495
|
-
receiptCount: number;
|
|
13496
|
-
organizationId: string;
|
|
13497
|
-
cascadedFromOrg: boolean;
|
|
13498
|
-
} | null);
|
|
13499
13457
|
}
|
|
13500
|
-
interface
|
|
13458
|
+
interface RealtimeApikeyRevokeInput {
|
|
13459
|
+
/**
|
|
13460
|
+
* Api key id to revoke
|
|
13461
|
+
*/
|
|
13462
|
+
id: string;
|
|
13501
13463
|
}
|
|
13502
|
-
|
|
13503
|
-
|
|
13504
|
-
|
|
13505
|
-
productId: string;
|
|
13506
|
-
occurredAt: string;
|
|
13507
|
-
recordedAt: string;
|
|
13508
|
-
receiptCount: number;
|
|
13509
|
-
organizationId: string;
|
|
13510
|
-
cascadedFromOrg: boolean;
|
|
13511
|
-
}[];
|
|
13512
|
-
interface PlaygroundWebhookGetLastInput {
|
|
13464
|
+
interface RealtimeApikeyRevokeOutput {
|
|
13465
|
+
id: string;
|
|
13466
|
+
revokedAt: string;
|
|
13513
13467
|
}
|
|
13514
|
-
type PlaygroundWebhookGetLastOutput = ({
|
|
13515
|
-
payload?: unknown;
|
|
13516
|
-
event_id: string;
|
|
13517
|
-
provider: string;
|
|
13518
|
-
verified: boolean;
|
|
13519
|
-
product_id: string;
|
|
13520
|
-
occurred_at: string;
|
|
13521
|
-
connector_id: string;
|
|
13522
|
-
delivery_count: number;
|
|
13523
|
-
} | {
|
|
13524
|
-
found: false;
|
|
13525
|
-
});
|
|
13526
13468
|
interface RealtimeArchiveExportInput {
|
|
13527
13469
|
/**
|
|
13528
13470
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -14134,14 +14076,6 @@ interface RealtimePresenceUpdateOutput {
|
|
|
14134
14076
|
*/
|
|
14135
14077
|
channel: string;
|
|
14136
14078
|
}
|
|
14137
|
-
interface RealtimePublicAccessStatusInput {
|
|
14138
|
-
}
|
|
14139
|
-
interface RealtimePublicAccessStatusOutput {
|
|
14140
|
-
/**
|
|
14141
|
-
* Whether this product has created a public key yet (an onboarding hint, not a gate)
|
|
14142
|
-
*/
|
|
14143
|
-
exists: boolean;
|
|
14144
|
-
}
|
|
14145
14079
|
interface RealtimeStatusGetInput {
|
|
14146
14080
|
}
|
|
14147
14081
|
interface RealtimeStatusGetOutput {
|
|
@@ -15474,56 +15408,6 @@ interface UsersConfigGetOutput {
|
|
|
15474
15408
|
google: UsersConfigGetOutputGoogle;
|
|
15475
15409
|
};
|
|
15476
15410
|
};
|
|
15477
|
-
hosted: {
|
|
15478
|
-
/**
|
|
15479
|
-
* Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
|
|
15480
|
-
*/
|
|
15481
|
-
enabled: boolean;
|
|
15482
|
-
/**
|
|
15483
|
-
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
15484
|
-
*/
|
|
15485
|
-
logoUrl: (string | null);
|
|
15486
|
-
/**
|
|
15487
|
-
* Terms link rendered in the footer. Null renders no link.
|
|
15488
|
-
*/
|
|
15489
|
-
termsUrl: (string | null);
|
|
15490
|
-
/**
|
|
15491
|
-
* CSS colour of the body text.
|
|
15492
|
-
*/
|
|
15493
|
-
textColor: string;
|
|
15494
|
-
/**
|
|
15495
|
-
* One line under the card. Null renders no footer.
|
|
15496
|
-
*/
|
|
15497
|
-
footerText: (string | null);
|
|
15498
|
-
/**
|
|
15499
|
-
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
15500
|
-
*/
|
|
15501
|
-
privacyUrl: (string | null);
|
|
15502
|
-
/**
|
|
15503
|
-
* CSS colour for the submit button, the links and the focus ring.
|
|
15504
|
-
*/
|
|
15505
|
-
accentColor: string;
|
|
15506
|
-
/**
|
|
15507
|
-
* Shown in the heading and the page title. Default "This product".
|
|
15508
|
-
*/
|
|
15509
|
-
productName: string;
|
|
15510
|
-
/**
|
|
15511
|
-
* CSS length for the card and its controls, e.g. "12px".
|
|
15512
|
-
*/
|
|
15513
|
-
borderRadius: string;
|
|
15514
|
-
/**
|
|
15515
|
-
* CSS colour of the card itself.
|
|
15516
|
-
*/
|
|
15517
|
-
surfaceColor: string;
|
|
15518
|
-
/**
|
|
15519
|
-
* CSS colour of secondary text and hints.
|
|
15520
|
-
*/
|
|
15521
|
-
mutedTextColor: string;
|
|
15522
|
-
/**
|
|
15523
|
-
* CSS colour of the page behind the card.
|
|
15524
|
-
*/
|
|
15525
|
-
backgroundColor: string;
|
|
15526
|
-
};
|
|
15527
15411
|
invite: {
|
|
15528
15412
|
/**
|
|
15529
15413
|
* How long an invite link stays usable, in days. Default 14.
|
|
@@ -15817,59 +15701,6 @@ interface UsersConfigUpsertInput {
|
|
|
15817
15701
|
clientSecret?: (string | null);
|
|
15818
15702
|
};
|
|
15819
15703
|
};
|
|
15820
|
-
/**
|
|
15821
|
-
* The hosted sign-in / sign-up / recovery pages: whether they are served, and the product name, logo, colours and footer links they render with. Merged field-by-field, so setting one colour leaves the rest alone.
|
|
15822
|
-
*/
|
|
15823
|
-
hosted?: {
|
|
15824
|
-
/**
|
|
15825
|
-
* Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
|
|
15826
|
-
*/
|
|
15827
|
-
enabled?: boolean;
|
|
15828
|
-
/**
|
|
15829
|
-
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
15830
|
-
*/
|
|
15831
|
-
logoUrl?: (string | null);
|
|
15832
|
-
/**
|
|
15833
|
-
* Terms link rendered in the footer. Null renders no link.
|
|
15834
|
-
*/
|
|
15835
|
-
termsUrl?: (string | null);
|
|
15836
|
-
/**
|
|
15837
|
-
* CSS colour of the body text.
|
|
15838
|
-
*/
|
|
15839
|
-
textColor?: string;
|
|
15840
|
-
/**
|
|
15841
|
-
* One line under the card. Null renders no footer.
|
|
15842
|
-
*/
|
|
15843
|
-
footerText?: (string | null);
|
|
15844
|
-
/**
|
|
15845
|
-
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
15846
|
-
*/
|
|
15847
|
-
privacyUrl?: (string | null);
|
|
15848
|
-
/**
|
|
15849
|
-
* CSS colour for the submit button, the links and the focus ring.
|
|
15850
|
-
*/
|
|
15851
|
-
accentColor?: string;
|
|
15852
|
-
/**
|
|
15853
|
-
* Shown in the heading and the page title. Default "This product".
|
|
15854
|
-
*/
|
|
15855
|
-
productName?: string;
|
|
15856
|
-
/**
|
|
15857
|
-
* CSS length for the card and its controls, e.g. "12px".
|
|
15858
|
-
*/
|
|
15859
|
-
borderRadius?: string;
|
|
15860
|
-
/**
|
|
15861
|
-
* CSS colour of the card itself.
|
|
15862
|
-
*/
|
|
15863
|
-
surfaceColor?: string;
|
|
15864
|
-
/**
|
|
15865
|
-
* CSS colour of secondary text and hints.
|
|
15866
|
-
*/
|
|
15867
|
-
mutedTextColor?: string;
|
|
15868
|
-
/**
|
|
15869
|
-
* CSS colour of the page behind the card.
|
|
15870
|
-
*/
|
|
15871
|
-
backgroundColor?: string;
|
|
15872
|
-
};
|
|
15873
15704
|
/**
|
|
15874
15705
|
* Invite lifetime and re-invite cooldown. Merged field-by-field.
|
|
15875
15706
|
*/
|
|
@@ -16214,56 +16045,6 @@ interface UsersConfigUpsertOutput {
|
|
|
16214
16045
|
google: UsersConfigUpsertOutputGoogle;
|
|
16215
16046
|
};
|
|
16216
16047
|
};
|
|
16217
|
-
hosted: {
|
|
16218
|
-
/**
|
|
16219
|
-
* Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
|
|
16220
|
-
*/
|
|
16221
|
-
enabled: boolean;
|
|
16222
|
-
/**
|
|
16223
|
-
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
16224
|
-
*/
|
|
16225
|
-
logoUrl: (string | null);
|
|
16226
|
-
/**
|
|
16227
|
-
* Terms link rendered in the footer. Null renders no link.
|
|
16228
|
-
*/
|
|
16229
|
-
termsUrl: (string | null);
|
|
16230
|
-
/**
|
|
16231
|
-
* CSS colour of the body text.
|
|
16232
|
-
*/
|
|
16233
|
-
textColor: string;
|
|
16234
|
-
/**
|
|
16235
|
-
* One line under the card. Null renders no footer.
|
|
16236
|
-
*/
|
|
16237
|
-
footerText: (string | null);
|
|
16238
|
-
/**
|
|
16239
|
-
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
16240
|
-
*/
|
|
16241
|
-
privacyUrl: (string | null);
|
|
16242
|
-
/**
|
|
16243
|
-
* CSS colour for the submit button, the links and the focus ring.
|
|
16244
|
-
*/
|
|
16245
|
-
accentColor: string;
|
|
16246
|
-
/**
|
|
16247
|
-
* Shown in the heading and the page title. Default "This product".
|
|
16248
|
-
*/
|
|
16249
|
-
productName: string;
|
|
16250
|
-
/**
|
|
16251
|
-
* CSS length for the card and its controls, e.g. "12px".
|
|
16252
|
-
*/
|
|
16253
|
-
borderRadius: string;
|
|
16254
|
-
/**
|
|
16255
|
-
* CSS colour of the card itself.
|
|
16256
|
-
*/
|
|
16257
|
-
surfaceColor: string;
|
|
16258
|
-
/**
|
|
16259
|
-
* CSS colour of secondary text and hints.
|
|
16260
|
-
*/
|
|
16261
|
-
mutedTextColor: string;
|
|
16262
|
-
/**
|
|
16263
|
-
* CSS colour of the page behind the card.
|
|
16264
|
-
*/
|
|
16265
|
-
backgroundColor: string;
|
|
16266
|
-
};
|
|
16267
16048
|
invite: {
|
|
16268
16049
|
/**
|
|
16269
16050
|
* How long an invite link stays usable, in days. Default 14.
|
|
@@ -18183,6 +17964,9 @@ interface GeneratedClient {
|
|
|
18183
17964
|
restore: {
|
|
18184
17965
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
18185
17966
|
};
|
|
17967
|
+
usage: {
|
|
17968
|
+
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
17969
|
+
};
|
|
18186
17970
|
};
|
|
18187
17971
|
consent: {
|
|
18188
17972
|
'config-cookie-domain': {
|
|
@@ -18594,35 +18378,12 @@ interface GeneratedClient {
|
|
|
18594
18378
|
enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
|
|
18595
18379
|
};
|
|
18596
18380
|
};
|
|
18597
|
-
playground: {
|
|
18598
|
-
analytics: {
|
|
18599
|
-
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
18600
|
-
};
|
|
18601
|
-
billing: {
|
|
18602
|
-
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
18603
|
-
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
18604
|
-
};
|
|
18605
|
-
clickup: {
|
|
18606
|
-
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
18607
|
-
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
18608
|
-
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
18609
|
-
};
|
|
18610
|
-
gdrive: {
|
|
18611
|
-
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
18612
|
-
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
18613
|
-
};
|
|
18614
|
-
googleads: {
|
|
18615
|
-
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
18616
|
-
};
|
|
18617
|
-
lifecycle: {
|
|
18618
|
-
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
18619
|
-
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
18620
|
-
};
|
|
18621
|
-
webhook: {
|
|
18622
|
-
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
18623
|
-
};
|
|
18624
|
-
};
|
|
18625
18381
|
realtime: {
|
|
18382
|
+
apikey: {
|
|
18383
|
+
create(input: RealtimeApikeyCreateInput): Promise<RealtimeApikeyCreateOutput>;
|
|
18384
|
+
list(input: RealtimeApikeyListInput): Promise<RealtimeApikeyListOutput>;
|
|
18385
|
+
revoke(input: RealtimeApikeyRevokeInput): Promise<RealtimeApikeyRevokeOutput>;
|
|
18386
|
+
};
|
|
18626
18387
|
archive: {
|
|
18627
18388
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
18628
18389
|
get(input: RealtimeArchiveGetInput): Promise<RealtimeArchiveGetOutput>;
|
|
@@ -18655,9 +18416,6 @@ interface GeneratedClient {
|
|
|
18655
18416
|
stats(input: RealtimePresenceStatsInput): Promise<RealtimePresenceStatsOutput>;
|
|
18656
18417
|
update(input: RealtimePresenceUpdateInput): Promise<RealtimePresenceUpdateOutput>;
|
|
18657
18418
|
};
|
|
18658
|
-
'public-access': {
|
|
18659
|
-
status(input: RealtimePublicAccessStatusInput): Promise<RealtimePublicAccessStatusOutput>;
|
|
18660
|
-
};
|
|
18661
18419
|
status: {
|
|
18662
18420
|
get(input: RealtimeStatusGetInput): Promise<RealtimeStatusGetOutput>;
|
|
18663
18421
|
};
|
|
@@ -18849,4 +18607,4 @@ interface GeneratedClient {
|
|
|
18849
18607
|
};
|
|
18850
18608
|
}
|
|
18851
18609
|
|
|
18852
|
-
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVcsBranchListOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentVariableListEnvInput as dI, DeploymentVariableListEnvOutput as dJ, DeploymentVariableListProductInput as dK, DeploymentVariableListProductOutput as dL, DeploymentVariableListInput as dM, DeploymentVariableListOutput as dN, DeploymentVariableSetEnvInput as dO, DeploymentVariableSetEnvOutput as dP, DeploymentVariableSetInput as dQ, DeploymentVariableSetOutput as dR, DeploymentVariableSetProductInput as dS, DeploymentVariableSetProductOutput as dT, DeploymentVariableUnsetEnvInput as dU, DeploymentVariableUnsetEnvOutput as dV, DeploymentVariableUnsetInput as dW, DeploymentVariableUnsetOutput as dX, DeploymentVariableUnsetProductInput as dY, DeploymentVariableUnsetProductOutput as dZ, DeploymentVcsBranchListInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainDeleteOutput as e$, DeploymentVcsConnectionListInput as e0, DeploymentVcsConnectionListOutput as e1, DeploymentVcsRepoListInput as e2, DeploymentVcsRepoListOutput as e3, DeploymentVolumeCreateInput as e4, DeploymentVolumeCreateOutput as e5, DeploymentVolumeDeleteInput as e6, DeploymentVolumeDeleteOutput as e7, DeploymentVolumeDetachInput as e8, DeploymentVolumeDetachOutput as e9, MailBroadcastDeleteInput as eA, MailBroadcastDeleteOutput as eB, MailBroadcastGetInput as eC, MailBroadcastGetOutput as eD, MailBroadcastListInput as eE, MailBroadcastListOutput as eF, MailBroadcastQueueInput as eG, MailBroadcastQueueOutput as eH, MailBroadcastStatsInput as eI, MailBroadcastStatsOutput as eJ, MailBroadcastUpdateInput as eK, MailBroadcastUpdateOutput as eL, MailContactCreateInput as eM, MailContactCreateOutput as eN, MailContactDeleteInput as eO, MailContactDeleteOutput as eP, MailContactGetInput as eQ, MailContactGetOutput as eR, MailContactListInput as eS, MailContactListOutput as eT, MailContactUpdateInput as eU, MailContactUpdateOutput as eV, MailDomainAllowedListInput as eW, MailDomainAllowedListOutput as eX, MailDomainCreateInput as eY, MailDomainCreateOutput as eZ, MailDomainDeleteInput as e_, DeploymentVolumeGetInput as ea, DeploymentVolumeGetOutput as eb, DeploymentVolumeListInput as ec, DeploymentVolumeListOutput as ed, DeploymentVolumeResizeInput as ee, DeploymentVolumeResizeOutput as ef, MailApikeyCreateInput as eg, MailApikeyCreateOutput as eh, MailApikeyDeleteInput as ei, MailApikeyDeleteOutput as ej, MailApikeyListInput as ek, MailApikeyListOutput as el, MailAudienceCreateInput as em, MailAudienceCreateOutput as en, MailAudienceDeleteInput as eo, MailAudienceDeleteOutput as ep, MailAudienceGetInput as eq, MailAudienceGetOutput as er, MailAudienceListInput as es, MailAudienceListOutput as et, MailAudienceUpdateInput as eu, MailAudienceUpdateOutput as ev, MailBroadcastCancelInput as ew, MailBroadcastCancelOutput as ex, MailBroadcastCreateInput as ey, MailBroadcastCreateOutput as ez, BrainBackupStatusOutput as f, OrganizationCloudflareInstallOutput as f$, MailDomainGetInput as f0, MailDomainGetOutput as f1, MailDomainListInput as f2, MailDomainListOutput as f3, MailDomainUpdateInput as f4, MailDomainUpdateOutput as f5, MailDomainVerifyInput as f6, MailDomainVerifyOutput as f7, MailEmailCancelInput as f8, MailEmailCancelOutput as f9, MailTemplatePublishOutput as fA, MailTemplateUpdateInput as fB, MailTemplateUpdateOutput as fC, MailUsageGetInput as fD, MailUsageGetOutput as fE, MailWebhookCreateInput as fF, MailWebhookCreateOutput as fG, MailWebhookDeleteInput as fH, MailWebhookDeleteOutput as fI, MailWebhookDeliveriesListInput as fJ, MailWebhookDeliveriesListOutput as fK, MailWebhookGetInput as fL, MailWebhookGetOutput as fM, MailWebhookListInput as fN, MailWebhookListOutput as fO, MailWebhookUpdateInput as fP, MailWebhookUpdateOutput as fQ, MailEmailGetOutput as fR, OrganizationAuthMeInput as fS, OrganizationAuthMeOutput as fT, OrganizationBindingsListInput as fU, OrganizationBindingsListOutput as fV, OrganizationClickupInstallInput as fW, OrganizationClickupInstallOutput as fX, OrganizationClickupListInstallationsInput as fY, OrganizationClickupListInstallationsOutput as fZ, OrganizationCloudflareInstallInput as f_, MailEmailGetInput as fa, MailEmailSendBatchInput as fb, MailEmailSendBatchOutput as fc, MailEmailSendInput as fd, MailEmailSendOutput as fe, MailEmailUpdateInput as ff, MailEmailUpdateOutput as fg, MailReputationGetInput as fh, MailReputationGetOutput as fi, MailStatsGetInput as fj, MailStatsGetOutput as fk, MailSuppressionAddInput as fl, MailSuppressionAddOutput as fm, MailSuppressionListInput as fn, MailSuppressionListOutput as fo, MailSuppressionRemoveInput as fp, MailSuppressionRemoveOutput as fq, MailTemplateCreateInput as fr, MailTemplateCreateOutput as fs, MailTemplateDeleteInput as ft, MailTemplateDeleteOutput as fu, MailTemplateGetInput as fv, MailTemplateGetOutput as fw, MailTemplateListInput as fx, MailTemplateListOutput as fy, MailTemplatePublishInput as fz, BrainBackupsListInput as g, OrganizationMemberRevokeInvitationOutput as g$, OrganizationConnectorsApproveRequestInput as g0, OrganizationConnectorsApproveRequestOutput as g1, OrganizationConnectorsAttachInput as g2, OrganizationConnectorsAttachOutput as g3, OrganizationConnectorsDeleteInput as g4, OrganizationConnectorsDeleteOutput as g5, OrganizationConnectorsDenyRequestInput as g6, OrganizationConnectorsDenyRequestOutput as g7, OrganizationConnectorsDetachInput as g8, OrganizationConnectorsDetachOutput as g9, OrganizationExtensionsListInput as gA, OrganizationExtensionsListOutput as gB, OrganizationFeedbackSubmitInput as gC, OrganizationFeedbackSubmitOutput as gD, OrganizationGdriveInstallInput as gE, OrganizationGdriveInstallOutput as gF, OrganizationGithubInstallInput as gG, OrganizationGithubInstallOutput as gH, OrganizationGithubListInstallationsInput as gI, OrganizationGithubListInstallationsOutput as gJ, OrganizationGoogleadsInstallInput as gK, OrganizationGoogleadsInstallOutput as gL, OrganizationListInput as gM, OrganizationListOutput as gN, OrganizationMemberAcceptInviteInput as gO, OrganizationMemberAcceptInviteOutput as gP, OrganizationMemberInviteInput as gQ, OrganizationMemberInviteOutput as gR, OrganizationMemberListInvitationsInput as gS, OrganizationMemberListInvitationsOutput as gT, OrganizationMemberListProductAccessInput as gU, OrganizationMemberListProductAccessOutput as gV, OrganizationMemberListInput as gW, OrganizationMemberListOutput as gX, OrganizationMemberRemoveInput as gY, OrganizationMemberRemoveOutput as gZ, OrganizationMemberRevokeInvitationInput as g_, OrganizationConnectorsListAttachmentsInput as ga, OrganizationConnectorsListAttachmentsOutput as gb, OrganizationConnectorsListAvailableInput as gc, OrganizationConnectorsListAvailableOutput as gd, OrganizationConnectorsListOrgInput as ge, OrganizationConnectorsListOrgOutput as gf, OrganizationConnectorsListInput as gg, OrganizationConnectorsListOutput as gh, OrganizationConnectorsListRequestsInput as gi, OrganizationConnectorsListRequestsOutput as gj, OrganizationConnectorsRemoveInput as gk, OrganizationConnectorsRemoveOutput as gl, OrganizationConnectorsRequestInput as gm, OrganizationConnectorsRequestOutput as gn, OrganizationCreateInput as go, OrganizationCreateOutput as gp, OrganizationDomainsAddInput as gq, OrganizationDomainsAddOutput as gr, OrganizationDomainsGetInput as gs, OrganizationDomainsGetOutput as gt, OrganizationDomainsListInput as gu, OrganizationDomainsListOutput as gv, OrganizationDomainsRemoveInput as gw, OrganizationDomainsRemoveOutput as gx, OrganizationExtensionsListInstalledInput as gy, OrganizationExtensionsListInstalledOutput as gz, BrainBackupsListOutput as h, PlaygroundClickupGetLastWebhookOutput as h$, OrganizationMemberSetRoleInput as h0, OrganizationMemberSetRoleOutput as h1, OrganizationMemberShareProductInput as h2, OrganizationMemberShareProductOutput as h3, OrganizationMemberUnshareProductInput as h4, OrganizationMemberUnshareProductOutput as h5, OrganizationMembersAssignRoleInput as h6, OrganizationMembersAssignRoleOutput as h7, OrganizationPermissionCatalogInput as h8, OrganizationPermissionCatalogOutput as h9, OrganizationPublicKeysUpdateScopeInput as hA, OrganizationPublicKeysUpdateScopeOutput as hB, OrganizationPublicRoutesListInput as hC, OrganizationPublicRoutesListOutput as hD, OrganizationRolesCreateInput as hE, OrganizationRolesCreateOutput as hF, OrganizationRolesDeleteInput as hG, OrganizationRolesDeleteOutput as hH, OrganizationRolesGetInput as hI, OrganizationRolesGetOutput as hJ, OrganizationRolesListInput as hK, OrganizationRolesListOutput as hL, OrganizationRolesUpdateInput as hM, OrganizationRolesUpdateOutput as hN, OrganizationSecurityMfaEnableInput as hO, OrganizationSecurityMfaEnableOutput as hP, OrganizationSelectInput as hQ, OrganizationSelectOutput as hR, PlaygroundAnalyticsOverviewInput as hS, PlaygroundAnalyticsOverviewOutput as hT, PlaygroundBillingEntitlementsInput as hU, PlaygroundBillingEntitlementsOutput as hV, PlaygroundBillingRecordUsageInput as hW, PlaygroundBillingRecordUsageOutput as hX, PlaygroundClickupCreateTaskInput as hY, PlaygroundClickupCreateTaskOutput as hZ, PlaygroundClickupGetLastWebhookInput as h_, OrganizationProductAcceptInvitationInput as ha, OrganizationProductAcceptInvitationOutput as hb, OrganizationProductCreateInput as hc, OrganizationProductCreateOutput as hd, OrganizationProductInviteInput as he, OrganizationProductInviteOutput as hf, OrganizationProductListInvitationsInput as hg, OrganizationProductListInvitationsOutput as hh, OrganizationProductListMembersInput as hi, OrganizationProductListMembersOutput as hj, OrganizationProductListInput as hk, OrganizationProductListOutput as hl, OrganizationProductListRolesInput as hm, OrganizationProductListRolesOutput as hn, OrganizationProductRevokeInvitationInput as ho, OrganizationProductRevokeInvitationOutput as hp, OrganizationProductSelectInput as hq, OrganizationProductSelectOutput as hr, OrganizationProductUpdateInput as hs, OrganizationProductUpdateOutput as ht, OrganizationPublicKeysCreateInput as hu, OrganizationPublicKeysCreateOutput as hv, OrganizationPublicKeysListInput as hw, OrganizationPublicKeysListOutput as hx, OrganizationPublicKeysRevokeInput as hy, OrganizationPublicKeysRevokeOutput as hz, BrainClickupChannelsListInput as i, RealtimeWebhookDeliveriesListOutput as i$, PlaygroundClickupGetOverviewInput as i0, PlaygroundClickupGetOverviewOutput as i1, PlaygroundGdriveGetLastChangeInput as i2, PlaygroundGdriveGetLastChangeOutput as i3, PlaygroundGdriveReadFileInput as i4, PlaygroundGdriveReadFileOutput as i5, PlaygroundGoogleadsReadCustomerInput as i6, PlaygroundGoogleadsReadCustomerOutput as i7, PlaygroundLifecycleGetStateInput as i8, PlaygroundLifecycleGetStateOutput as i9, RealtimeNamespaceGetInput as iA, RealtimeNamespaceGetOutput as iB, RealtimeNamespaceListInput as iC, RealtimeNamespaceListOutput as iD, RealtimeNamespaceUpdateInput as iE, RealtimeNamespaceUpdateOutput as iF, RealtimePresenceEnterInput as iG, RealtimePresenceEnterOutput as iH, RealtimePresenceGetInput as iI, RealtimePresenceGetOutput as iJ, RealtimePresenceLeaveInput as iK, RealtimePresenceLeaveOutput as iL, RealtimePresenceStatsInput as iM, RealtimePresenceStatsOutput as iN, RealtimePresenceUpdateInput as iO, RealtimePresenceUpdateOutput as iP, RealtimePublicAccessStatusInput as iQ, RealtimePublicAccessStatusOutput as iR, RealtimeStatusGetInput as iS, RealtimeStatusGetOutput as iT, RealtimeTokensCreateInput as iU, RealtimeTokensCreateOutput as iV, RealtimeWebhookCreateInput as iW, RealtimeWebhookCreateOutput as iX, RealtimeWebhookDeleteInput as iY, RealtimeWebhookDeleteOutput as iZ, RealtimeWebhookDeliveriesListInput as i_, PlaygroundLifecycleListEventsInput as ia, PlaygroundLifecycleListEventsOutput as ib, PlaygroundWebhookGetLastInput as ic, PlaygroundWebhookGetLastOutput as id, RealtimeArchiveExportInput as ie, RealtimeArchiveExportOutput as ig, RealtimeArchiveExportStatusInput as ih, RealtimeArchiveExportStatusOutput as ii, RealtimeArchiveGetInput as ij, RealtimeArchiveGetOutput as ik, RealtimeGrantCreateInput as il, RealtimeGrantCreateOutput as im, RealtimeGrantListInput as io, RealtimeGrantListOutput as ip, RealtimeGrantRevokeInput as iq, RealtimeGrantRevokeOutput as ir, RealtimeHistoryGetInput as is, RealtimeHistoryGetOutput as it, RealtimeMessagesPublishInput as iu, RealtimeMessagesPublishOutput as iv, RealtimeNamespaceCreateInput as iw, RealtimeNamespaceCreateOutput as ix, RealtimeNamespaceDeleteInput as iy, RealtimeNamespaceDeleteOutput as iz, BrainClickupChannelsListOutput as j, TrackingProfilesDeleteOutput as j$, RealtimeWebhookGetInput as j0, RealtimeWebhookGetOutput as j1, RealtimeWebhookListInput as j2, RealtimeWebhookListOutput as j3, RealtimeWebhookSecretRotateInput as j4, RealtimeWebhookSecretRotateOutput as j5, RealtimeWebhookUpdateInput as j6, RealtimeWebhookUpdateOutput as j7, TrackingDomainsCreateInput as j8, TrackingDomainsCreateOutput as j9, TrackingGoogleadsFeedbackUploadsInput as jA, TrackingGoogleadsFeedbackUploadsOutput as jB, TrackingGoogleadsRoasReportInput as jC, TrackingGoogleadsRoasReportOutput as jD, TrackingGoogleadsSyncNowInput as jE, TrackingGoogleadsSyncNowOutput as jF, TrackingGoogleadsTrackingHealthInput as jG, TrackingGoogleadsTrackingHealthOutput as jH, TrackingGoogleadsUsVsPlatformInput as jI, TrackingGoogleadsUsVsPlatformOutput as jJ, TrackingIdentityHealthInput as jK, TrackingIdentityHealthOutput as jL, TrackingInstallDomainsCreateInput as jM, TrackingInstallDomainsCreateOutput as jN, TrackingInstallDomainsDeleteInput as jO, TrackingInstallDomainsDeleteOutput as jP, TrackingInstallDomainsListInput as jQ, TrackingInstallDomainsListOutput as jR, TrackingLinkDomainsCreateInput as jS, TrackingLinkDomainsCreateOutput as jT, TrackingLinkDomainsDeleteInput as jU, TrackingLinkDomainsDeleteOutput as jV, TrackingLinkDomainsListInput as jW, TrackingLinkDomainsListOutput as jX, TrackingLiveEventsListInput as jY, TrackingLiveEventsListOutput as jZ, TrackingProfilesDeleteInput as j_, TrackingDomainsDeleteInput as ja, TrackingDomainsDeleteOutput as jb, TrackingDomainsGetInput as jc, TrackingDomainsGetOutput as jd, TrackingDomainsListInput as je, TrackingDomainsListOutput as jf, TrackingDomainsVerifyInput as jg, TrackingDomainsVerifyOutput as jh, TrackingEventNamesArchiveInput as ji, TrackingEventNamesArchiveOutput as jj, TrackingEventNamesListInput as jk, TrackingEventNamesListOutput as jl, TrackingEventNamesUnarchiveInput as jm, TrackingEventNamesUnarchiveOutput as jn, TrackingGoogleadsConnectionStatusInput as jo, TrackingGoogleadsConnectionStatusOutput as jp, TrackingGoogleadsConversionActionsInput as jq, TrackingGoogleadsConversionActionsOutput as jr, TrackingGoogleadsFeedbackConfigGetInput as js, TrackingGoogleadsFeedbackConfigGetOutput as jt, TrackingGoogleadsFeedbackConfigSetInput as ju, TrackingGoogleadsFeedbackConfigSetOutput as jv, TrackingGoogleadsFeedbackRunInput as jw, TrackingGoogleadsFeedbackRunOutput as jx, TrackingGoogleadsFeedbackStatusInput as jy, TrackingGoogleadsFeedbackStatusOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersGetOutput as k$, TrackingProfilesExportInput as k0, TrackingProfilesExportOutput as k1, TrackingProfilesGetInput as k2, TrackingProfilesGetOutput as k3, TrackingProfilesListInput as k4, TrackingProfilesListOutput as k5, TrackingReportsAttributedJourneyInput as k6, TrackingReportsAttributedJourneyOutput as k7, TrackingReportsEventVolumeInput as k8, TrackingReportsEventVolumeOutput as k9, UsersKeysRotateInput as kA, UsersKeysRotateOutput as kB, UsersOpsRetentionGetInput as kC, UsersOpsRetentionGetOutput as kD, UsersOpsSloGetInput as kE, UsersOpsSloGetOutput as kF, UsersSessionsGetInput as kG, UsersSessionsGetOutput as kH, UsersSessionsImpersonateInput as kI, UsersSessionsImpersonateOutput as kJ, UsersSessionsListInput as kK, UsersSessionsListOutput as kL, UsersSessionsRevokeInput as kM, UsersSessionsRevokeOutput as kN, UsersStatsGetInput as kO, UsersStatsGetOutput as kP, UsersUsersBanInput as kQ, UsersUsersBanOutput as kR, UsersUsersCreateInput as kS, UsersUsersCreateOutput as kT, UsersUsersDeleteInput as kU, UsersUsersDeleteOutput as kV, UsersUsersEraseInput as kW, UsersUsersEraseOutput as kX, UsersUsersExportInput as kY, UsersUsersExportOutput as kZ, UsersUsersGetInput as k_, TrackingReportsRevenueBySourceInput as ka, TrackingReportsRevenueBySourceOutput as kb, TrackingReportsSourcePeopleInput as kc, TrackingReportsSourcePeopleOutput as kd, TrackingSnippetsGetInput as ke, TrackingSnippetsGetOutput as kf, UsersApikeysCreateInput as kg, UsersApikeysCreateOutput as kh, UsersApikeysListInput as ki, UsersApikeysListOutput as kj, UsersApikeysRevokeInput as kk, UsersApikeysRevokeOutput as kl, UsersAuditListInput as km, UsersAuditListOutput as kn, UsersConfigGetInput as ko, UsersConfigGetOutput as kp, UsersConfigUpsertInput as kq, UsersConfigUpsertOutput as kr, UsersFactorsListInput as ks, UsersFactorsListOutput as kt, UsersFactorsResetInput as ku, UsersFactorsResetOutput as kv, UsersKeysListInput as kw, UsersKeysListOutput as kx, UsersKeysRevokeInput as ky, UsersKeysRevokeOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersImportInput as l0, UsersUsersImportOutput as l1, UsersUsersInviteInput as l2, UsersUsersInviteOutput as l3, UsersUsersListInput as l4, UsersUsersListOutput as l5, UsersUsersSetPrimaryIdentifierInput as l6, UsersUsersSetPrimaryIdentifierOutput as l7, UsersUsersUnbanInput as l8, UsersUsersUnbanOutput as l9, WaitlistConfigGetInput as lA, WaitlistConfigGetOutput as lB, WaitlistConfigUpsertInput as lC, WaitlistConfigUpsertOutput as lD, WaitlistEmbedGetInput as lE, WaitlistEmbedGetOutput as lF, WaitlistInvitesSendInput as lG, WaitlistInvitesSendOutput as lH, WaitlistSignupsEraseInput as lI, WaitlistSignupsEraseOutput as lJ, WaitlistSignupsFunnelInput as lK, WaitlistSignupsFunnelOutput as lL, WaitlistSignupsListInput as lM, WaitlistSignupsListOutput as lN, UsersUsersUpdateInput as la, UsersUsersUpdateOutput as lb, UsersWaitlistEraseInput as lc, UsersWaitlistEraseOutput as ld, UsersWaitlistFunnelInput as le, UsersWaitlistFunnelOutput as lf, UsersWaitlistImportInput as lg, UsersWaitlistImportOutput as lh, UsersWaitlistInviteInput as li, UsersWaitlistInviteOutput as lj, UsersWaitlistListInput as lk, UsersWaitlistListOutput as ll, UsersWebhooksCreateInput as lm, UsersWebhooksCreateOutput as ln, UsersWebhooksDeleteInput as lo, UsersWebhooksDeleteOutput as lp, UsersWebhooksDeliveriesListInput as lq, UsersWebhooksDeliveriesListOutput as lr, UsersWebhooksGetInput as ls, UsersWebhooksGetOutput as lt, UsersWebhooksListInput as lu, UsersWebhooksListOutput as lv, UsersWebhooksRotateSecretInput as lw, UsersWebhooksRotateSecretOutput as lx, UsersWebhooksUpdateInput as ly, UsersWebhooksUpdateOutput as lz, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|
|
18610
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, OrganizationClickupListInstallationsOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, OrganizationAuthMeInput as fU, OrganizationAuthMeOutput as fV, OrganizationBindingsListInput as fW, OrganizationBindingsListOutput as fX, OrganizationClickupInstallInput as fY, OrganizationClickupInstallOutput as fZ, OrganizationClickupListInstallationsInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationMemberRemoveOutput as g$, OrganizationCloudflareInstallInput as g0, OrganizationCloudflareInstallOutput as g1, OrganizationConnectorsApproveRequestInput as g2, OrganizationConnectorsApproveRequestOutput as g3, OrganizationConnectorsAttachInput as g4, OrganizationConnectorsAttachOutput as g5, OrganizationConnectorsDeleteInput as g6, OrganizationConnectorsDeleteOutput as g7, OrganizationConnectorsDenyRequestInput as g8, OrganizationConnectorsDenyRequestOutput as g9, OrganizationExtensionsListInstalledInput as gA, OrganizationExtensionsListInstalledOutput as gB, OrganizationExtensionsListInput as gC, OrganizationExtensionsListOutput as gD, OrganizationFeedbackSubmitInput as gE, OrganizationFeedbackSubmitOutput as gF, OrganizationGdriveInstallInput as gG, OrganizationGdriveInstallOutput as gH, OrganizationGithubInstallInput as gI, OrganizationGithubInstallOutput as gJ, OrganizationGithubListInstallationsInput as gK, OrganizationGithubListInstallationsOutput as gL, OrganizationGoogleadsInstallInput as gM, OrganizationGoogleadsInstallOutput as gN, OrganizationListInput as gO, OrganizationListOutput as gP, OrganizationMemberAcceptInviteInput as gQ, OrganizationMemberAcceptInviteOutput as gR, OrganizationMemberInviteInput as gS, OrganizationMemberInviteOutput as gT, OrganizationMemberListInvitationsInput as gU, OrganizationMemberListInvitationsOutput as gV, OrganizationMemberListProductAccessInput as gW, OrganizationMemberListProductAccessOutput as gX, OrganizationMemberListInput as gY, OrganizationMemberListOutput as gZ, OrganizationMemberRemoveInput as g_, OrganizationConnectorsDetachInput as ga, OrganizationConnectorsDetachOutput as gb, OrganizationConnectorsListAttachmentsInput as gc, OrganizationConnectorsListAttachmentsOutput as gd, OrganizationConnectorsListAvailableInput as ge, OrganizationConnectorsListAvailableOutput as gf, OrganizationConnectorsListOrgInput as gg, OrganizationConnectorsListOrgOutput as gh, OrganizationConnectorsListInput as gi, OrganizationConnectorsListOutput as gj, OrganizationConnectorsListRequestsInput as gk, OrganizationConnectorsListRequestsOutput as gl, OrganizationConnectorsRemoveInput as gm, OrganizationConnectorsRemoveOutput as gn, OrganizationConnectorsRequestInput as go, OrganizationConnectorsRequestOutput as gp, OrganizationCreateInput as gq, OrganizationCreateOutput as gr, OrganizationDomainsAddInput as gs, OrganizationDomainsAddOutput as gt, OrganizationDomainsGetInput as gu, OrganizationDomainsGetOutput as gv, OrganizationDomainsListInput as gw, OrganizationDomainsListOutput as gx, OrganizationDomainsRemoveInput as gy, OrganizationDomainsRemoveOutput as gz, BrainBackupsListOutput as h, RealtimeArchiveExportOutput as h$, OrganizationMemberRevokeInvitationInput as h0, OrganizationMemberRevokeInvitationOutput as h1, OrganizationMemberSetRoleInput as h2, OrganizationMemberSetRoleOutput as h3, OrganizationMemberShareProductInput as h4, OrganizationMemberShareProductOutput as h5, OrganizationMemberUnshareProductInput as h6, OrganizationMemberUnshareProductOutput as h7, OrganizationMembersAssignRoleInput as h8, OrganizationMembersAssignRoleOutput as h9, OrganizationPublicKeysRevokeInput as hA, OrganizationPublicKeysRevokeOutput as hB, OrganizationPublicKeysUpdateScopeInput as hC, OrganizationPublicKeysUpdateScopeOutput as hD, OrganizationPublicRoutesListInput as hE, OrganizationPublicRoutesListOutput as hF, OrganizationRolesCreateInput as hG, OrganizationRolesCreateOutput as hH, OrganizationRolesDeleteInput as hI, OrganizationRolesDeleteOutput as hJ, OrganizationRolesGetInput as hK, OrganizationRolesGetOutput as hL, OrganizationRolesListInput as hM, OrganizationRolesListOutput as hN, OrganizationRolesUpdateInput as hO, OrganizationRolesUpdateOutput as hP, OrganizationSecurityMfaEnableInput as hQ, OrganizationSecurityMfaEnableOutput as hR, OrganizationSelectInput as hS, OrganizationSelectOutput as hT, RealtimeApikeyCreateInput as hU, RealtimeApikeyCreateOutput as hV, RealtimeApikeyListInput as hW, RealtimeApikeyListOutput as hX, RealtimeApikeyRevokeInput as hY, RealtimeApikeyRevokeOutput as hZ, RealtimeArchiveExportInput as h_, OrganizationPermissionCatalogInput as ha, OrganizationPermissionCatalogOutput as hb, OrganizationProductAcceptInvitationInput as hc, OrganizationProductAcceptInvitationOutput as hd, OrganizationProductCreateInput as he, OrganizationProductCreateOutput as hf, OrganizationProductInviteInput as hg, OrganizationProductInviteOutput as hh, OrganizationProductListInvitationsInput as hi, OrganizationProductListInvitationsOutput as hj, OrganizationProductListMembersInput as hk, OrganizationProductListMembersOutput as hl, OrganizationProductListInput as hm, OrganizationProductListOutput as hn, OrganizationProductListRolesInput as ho, OrganizationProductListRolesOutput as hp, OrganizationProductRevokeInvitationInput as hq, OrganizationProductRevokeInvitationOutput as hr, OrganizationProductSelectInput as hs, OrganizationProductSelectOutput as ht, OrganizationProductUpdateInput as hu, OrganizationProductUpdateOutput as hv, OrganizationPublicKeysCreateInput as hw, OrganizationPublicKeysCreateOutput as hx, OrganizationPublicKeysListInput as hy, OrganizationPublicKeysListOutput as hz, BrainClickupChannelsListInput as i, TrackingDomainsVerifyOutput as i$, RealtimeArchiveExportStatusInput as i0, RealtimeArchiveExportStatusOutput as i1, RealtimeArchiveGetInput as i2, RealtimeArchiveGetOutput as i3, RealtimeGrantCreateInput as i4, RealtimeGrantCreateOutput as i5, RealtimeGrantListInput as i6, RealtimeGrantListOutput as i7, RealtimeGrantRevokeInput as i8, RealtimeGrantRevokeOutput as i9, RealtimeStatusGetInput as iA, RealtimeStatusGetOutput as iB, RealtimeTokensCreateInput as iC, RealtimeTokensCreateOutput as iD, RealtimeWebhookCreateInput as iE, RealtimeWebhookCreateOutput as iF, RealtimeWebhookDeleteInput as iG, RealtimeWebhookDeleteOutput as iH, RealtimeWebhookDeliveriesListInput as iI, RealtimeWebhookDeliveriesListOutput as iJ, RealtimeWebhookGetInput as iK, RealtimeWebhookGetOutput as iL, RealtimeWebhookListInput as iM, RealtimeWebhookListOutput as iN, RealtimeWebhookSecretRotateInput as iO, RealtimeWebhookSecretRotateOutput as iP, RealtimeWebhookUpdateInput as iQ, RealtimeWebhookUpdateOutput as iR, TrackingDomainsCreateInput as iS, TrackingDomainsCreateOutput as iT, TrackingDomainsDeleteInput as iU, TrackingDomainsDeleteOutput as iV, TrackingDomainsGetInput as iW, TrackingDomainsGetOutput as iX, TrackingDomainsListInput as iY, TrackingDomainsListOutput as iZ, TrackingDomainsVerifyInput as i_, RealtimeHistoryGetInput as ia, RealtimeHistoryGetOutput as ib, RealtimeMessagesPublishInput as ic, RealtimeMessagesPublishOutput as id, RealtimeNamespaceCreateInput as ie, RealtimeNamespaceCreateOutput as ig, RealtimeNamespaceDeleteInput as ih, RealtimeNamespaceDeleteOutput as ii, RealtimeNamespaceGetInput as ij, RealtimeNamespaceGetOutput as ik, RealtimeNamespaceListInput as il, RealtimeNamespaceListOutput as im, RealtimeNamespaceUpdateInput as io, RealtimeNamespaceUpdateOutput as ip, RealtimePresenceEnterInput as iq, RealtimePresenceEnterOutput as ir, RealtimePresenceGetInput as is, RealtimePresenceGetOutput as it, RealtimePresenceLeaveInput as iu, RealtimePresenceLeaveOutput as iv, RealtimePresenceStatsInput as iw, RealtimePresenceStatsOutput as ix, RealtimePresenceUpdateInput as iy, RealtimePresenceUpdateOutput as iz, BrainClickupChannelsListOutput as j, UsersApikeysCreateOutput as j$, TrackingEventNamesArchiveInput as j0, TrackingEventNamesArchiveOutput as j1, TrackingEventNamesListInput as j2, TrackingEventNamesListOutput as j3, TrackingEventNamesUnarchiveInput as j4, TrackingEventNamesUnarchiveOutput as j5, TrackingGoogleadsConnectionStatusInput as j6, TrackingGoogleadsConnectionStatusOutput as j7, TrackingGoogleadsConversionActionsInput as j8, TrackingGoogleadsConversionActionsOutput as j9, TrackingLinkDomainsCreateInput as jA, TrackingLinkDomainsCreateOutput as jB, TrackingLinkDomainsDeleteInput as jC, TrackingLinkDomainsDeleteOutput as jD, TrackingLinkDomainsListInput as jE, TrackingLinkDomainsListOutput as jF, TrackingLiveEventsListInput as jG, TrackingLiveEventsListOutput as jH, TrackingProfilesDeleteInput as jI, TrackingProfilesDeleteOutput as jJ, TrackingProfilesExportInput as jK, TrackingProfilesExportOutput as jL, TrackingProfilesGetInput as jM, TrackingProfilesGetOutput as jN, TrackingProfilesListInput as jO, TrackingProfilesListOutput as jP, TrackingReportsAttributedJourneyInput as jQ, TrackingReportsAttributedJourneyOutput as jR, TrackingReportsEventVolumeInput as jS, TrackingReportsEventVolumeOutput as jT, TrackingReportsRevenueBySourceInput as jU, TrackingReportsRevenueBySourceOutput as jV, TrackingReportsSourcePeopleInput as jW, TrackingReportsSourcePeopleOutput as jX, TrackingSnippetsGetInput as jY, TrackingSnippetsGetOutput as jZ, UsersApikeysCreateInput as j_, TrackingGoogleadsFeedbackConfigGetInput as ja, TrackingGoogleadsFeedbackConfigGetOutput as jb, TrackingGoogleadsFeedbackConfigSetInput as jc, TrackingGoogleadsFeedbackConfigSetOutput as jd, TrackingGoogleadsFeedbackRunInput as je, TrackingGoogleadsFeedbackRunOutput as jf, TrackingGoogleadsFeedbackStatusInput as jg, TrackingGoogleadsFeedbackStatusOutput as jh, TrackingGoogleadsFeedbackUploadsInput as ji, TrackingGoogleadsFeedbackUploadsOutput as jj, TrackingGoogleadsRoasReportInput as jk, TrackingGoogleadsRoasReportOutput as jl, TrackingGoogleadsSyncNowInput as jm, TrackingGoogleadsSyncNowOutput as jn, TrackingGoogleadsTrackingHealthInput as jo, TrackingGoogleadsTrackingHealthOutput as jp, TrackingGoogleadsUsVsPlatformInput as jq, TrackingGoogleadsUsVsPlatformOutput as jr, TrackingIdentityHealthInput as js, TrackingIdentityHealthOutput as jt, TrackingInstallDomainsCreateInput as ju, TrackingInstallDomainsCreateOutput as jv, TrackingInstallDomainsDeleteInput as jw, TrackingInstallDomainsDeleteOutput as jx, TrackingInstallDomainsListInput as jy, TrackingInstallDomainsListOutput as jz, BrainClickupConnectionsListInput as k, UsersWaitlistImportOutput as k$, UsersApikeysListInput as k0, UsersApikeysListOutput as k1, UsersApikeysRevokeInput as k2, UsersApikeysRevokeOutput as k3, UsersAuditListInput as k4, UsersAuditListOutput as k5, UsersConfigGetInput as k6, UsersConfigGetOutput as k7, UsersConfigUpsertInput as k8, UsersConfigUpsertOutput as k9, UsersUsersCreateInput as kA, UsersUsersCreateOutput as kB, UsersUsersDeleteInput as kC, UsersUsersDeleteOutput as kD, UsersUsersEraseInput as kE, UsersUsersEraseOutput as kF, UsersUsersExportInput as kG, UsersUsersExportOutput as kH, UsersUsersGetInput as kI, UsersUsersGetOutput as kJ, UsersUsersImportInput as kK, UsersUsersImportOutput as kL, UsersUsersInviteInput as kM, UsersUsersInviteOutput as kN, UsersUsersListInput as kO, UsersUsersListOutput as kP, UsersUsersSetPrimaryIdentifierInput as kQ, UsersUsersSetPrimaryIdentifierOutput as kR, UsersUsersUnbanInput as kS, UsersUsersUnbanOutput as kT, UsersUsersUpdateInput as kU, UsersUsersUpdateOutput as kV, UsersWaitlistEraseInput as kW, UsersWaitlistEraseOutput as kX, UsersWaitlistFunnelInput as kY, UsersWaitlistFunnelOutput as kZ, UsersWaitlistImportInput as k_, UsersFactorsListInput as ka, UsersFactorsListOutput as kb, UsersFactorsResetInput as kc, UsersFactorsResetOutput as kd, UsersKeysListInput as ke, UsersKeysListOutput as kf, UsersKeysRevokeInput as kg, UsersKeysRevokeOutput as kh, UsersKeysRotateInput as ki, UsersKeysRotateOutput as kj, UsersOpsRetentionGetInput as kk, UsersOpsRetentionGetOutput as kl, UsersOpsSloGetInput as km, UsersOpsSloGetOutput as kn, UsersSessionsGetInput as ko, UsersSessionsGetOutput as kp, UsersSessionsImpersonateInput as kq, UsersSessionsImpersonateOutput as kr, UsersSessionsListInput as ks, UsersSessionsListOutput as kt, UsersSessionsRevokeInput as ku, UsersSessionsRevokeOutput as kv, UsersStatsGetInput as kw, UsersStatsGetOutput as kx, UsersUsersBanInput as ky, UsersUsersBanOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistInviteInput as l0, UsersWaitlistInviteOutput as l1, UsersWaitlistListInput as l2, UsersWaitlistListOutput as l3, UsersWebhooksCreateInput as l4, UsersWebhooksCreateOutput as l5, UsersWebhooksDeleteInput as l6, UsersWebhooksDeleteOutput as l7, UsersWebhooksDeliveriesListInput as l8, UsersWebhooksDeliveriesListOutput as l9, UsersWebhooksGetInput as la, UsersWebhooksGetOutput as lb, UsersWebhooksListInput as lc, UsersWebhooksListOutput as ld, UsersWebhooksRotateSecretInput as le, UsersWebhooksRotateSecretOutput as lf, UsersWebhooksUpdateInput as lg, UsersWebhooksUpdateOutput as lh, WaitlistConfigGetInput as li, WaitlistConfigGetOutput as lj, WaitlistConfigUpsertInput as lk, WaitlistConfigUpsertOutput as ll, WaitlistEmbedGetInput as lm, WaitlistEmbedGetOutput as ln, WaitlistInvitesSendInput as lo, WaitlistInvitesSendOutput as lp, WaitlistSignupsEraseInput as lq, WaitlistSignupsEraseOutput as lr, WaitlistSignupsFunnelInput as ls, WaitlistSignupsFunnelOutput as lt, WaitlistSignupsListInput as lu, WaitlistSignupsListOutput as lv, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|