@lessly/sdk-app 25.0.0 → 27.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 +0 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -6
- package/dist/brain/index.d.ts +2 -6
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-DpY3PlYJ.d.cts → client.gen-BxrBJi8X.d.cts} +399 -98
- package/dist/{client.gen-DpY3PlYJ.d.ts → client.gen-BxrBJi8X.d.ts} +399 -98
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.cjs +5 -0
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.d.cts +6 -2
- package/dist/deployment/index.d.ts +6 -2
- package/dist/deployment/index.js +5 -1
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +119 -13
- 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 +119 -13
- 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/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +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 +7 -2
- package/src/gen/bindings.gen.ts +119 -13
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +57 -5
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +7 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/types.gen.ts +402 -96
|
@@ -935,96 +935,6 @@ 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
|
-
}
|
|
1028
938
|
interface ConsentConfigCookieDomainUpsertInput {
|
|
1029
939
|
cookieDomain: ("" | null | string);
|
|
1030
940
|
}
|
|
@@ -1613,6 +1523,8 @@ interface DeploymentCanvasGetOutput {
|
|
|
1613
1523
|
scaleToZero: boolean;
|
|
1614
1524
|
containerPort: number;
|
|
1615
1525
|
environmentId: string;
|
|
1526
|
+
buildMachineType?: (string | null);
|
|
1527
|
+
suspendedByBilling?: boolean;
|
|
1616
1528
|
lastReplicasRunning: number;
|
|
1617
1529
|
scaleToZeroEligibility?: {
|
|
1618
1530
|
reasons: string[];
|
|
@@ -2485,7 +2397,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2485
2397
|
baseEnvironmentId: (string | null);
|
|
2486
2398
|
}
|
|
2487
2399
|
interface DeploymentEventsListByEnvironmentInput {
|
|
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");
|
|
2400
|
+
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.requeue-failed" | "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" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2489
2401
|
limit?: number;
|
|
2490
2402
|
since?: string;
|
|
2491
2403
|
until?: string;
|
|
@@ -2493,7 +2405,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2493
2405
|
}
|
|
2494
2406
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2495
2407
|
id: string;
|
|
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");
|
|
2408
|
+
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.requeue-failed" | "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" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2497
2409
|
payload: {
|
|
2498
2410
|
[k: string]: unknown;
|
|
2499
2411
|
};
|
|
@@ -2505,7 +2417,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2505
2417
|
environmentId: (string | null);
|
|
2506
2418
|
}[];
|
|
2507
2419
|
interface DeploymentEventsListByServiceInput {
|
|
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");
|
|
2420
|
+
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.requeue-failed" | "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" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2509
2421
|
limit?: number;
|
|
2510
2422
|
since?: string;
|
|
2511
2423
|
until?: string;
|
|
@@ -2514,7 +2426,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2514
2426
|
}
|
|
2515
2427
|
type DeploymentEventsListByServiceOutput = {
|
|
2516
2428
|
id: string;
|
|
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");
|
|
2429
|
+
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.requeue-failed" | "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" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2518
2430
|
payload: {
|
|
2519
2431
|
[k: string]: unknown;
|
|
2520
2432
|
};
|
|
@@ -3034,6 +2946,8 @@ interface DeploymentServiceCreateOutput {
|
|
|
3034
2946
|
scaleToZero: boolean;
|
|
3035
2947
|
containerPort: number;
|
|
3036
2948
|
environmentId: string;
|
|
2949
|
+
buildMachineType?: (string | null);
|
|
2950
|
+
suspendedByBilling?: boolean;
|
|
3037
2951
|
lastReplicasRunning: number;
|
|
3038
2952
|
scaleToZeroEligibility?: {
|
|
3039
2953
|
reasons: string[];
|
|
@@ -3131,6 +3045,8 @@ interface DeploymentServiceGetOutput {
|
|
|
3131
3045
|
scaleToZero: boolean;
|
|
3132
3046
|
containerPort: number;
|
|
3133
3047
|
environmentId: string;
|
|
3048
|
+
buildMachineType?: (string | null);
|
|
3049
|
+
suspendedByBilling?: boolean;
|
|
3134
3050
|
lastReplicasRunning: number;
|
|
3135
3051
|
scaleToZeroEligibility?: {
|
|
3136
3052
|
reasons: string[];
|
|
@@ -3199,6 +3115,8 @@ type DeploymentServiceListOutput = {
|
|
|
3199
3115
|
scaleToZero: boolean;
|
|
3200
3116
|
containerPort: number;
|
|
3201
3117
|
environmentId: string;
|
|
3118
|
+
buildMachineType?: (string | null);
|
|
3119
|
+
suspendedByBilling?: boolean;
|
|
3202
3120
|
lastReplicasRunning: number;
|
|
3203
3121
|
scaleToZeroEligibility?: {
|
|
3204
3122
|
reasons: string[];
|
|
@@ -3335,6 +3253,8 @@ interface DeploymentServiceScaleOutput {
|
|
|
3335
3253
|
scaleToZero: boolean;
|
|
3336
3254
|
containerPort: number;
|
|
3337
3255
|
environmentId: string;
|
|
3256
|
+
buildMachineType?: (string | null);
|
|
3257
|
+
suspendedByBilling?: boolean;
|
|
3338
3258
|
lastReplicasRunning: number;
|
|
3339
3259
|
scaleToZeroEligibility?: {
|
|
3340
3260
|
reasons: string[];
|
|
@@ -3394,6 +3314,7 @@ interface DeploymentServiceUpdateInput {
|
|
|
3394
3314
|
idleMinutes?: number;
|
|
3395
3315
|
scaleToZero?: boolean;
|
|
3396
3316
|
containerPort?: number;
|
|
3317
|
+
buildMachineType?: (("E2_MEDIUM" | "E2_HIGHCPU_8") | null);
|
|
3397
3318
|
}
|
|
3398
3319
|
interface DeploymentServiceUpdateInputReadiness {
|
|
3399
3320
|
path: string;
|
|
@@ -3454,6 +3375,8 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3454
3375
|
scaleToZero: boolean;
|
|
3455
3376
|
containerPort: number;
|
|
3456
3377
|
environmentId: string;
|
|
3378
|
+
buildMachineType?: (string | null);
|
|
3379
|
+
suspendedByBilling?: boolean;
|
|
3457
3380
|
lastReplicasRunning: number;
|
|
3458
3381
|
scaleToZeroEligibility?: {
|
|
3459
3382
|
reasons: string[];
|
|
@@ -3523,6 +3446,15 @@ interface DeploymentSshKeyRegisterOutput {
|
|
|
3523
3446
|
ownerIdentityId: string;
|
|
3524
3447
|
fingerprintSha256: string;
|
|
3525
3448
|
}
|
|
3449
|
+
interface DeploymentSuspensionGetInput {
|
|
3450
|
+
}
|
|
3451
|
+
interface DeploymentSuspensionGetOutput {
|
|
3452
|
+
stage: (("warned" | "production_grace" | "stopped" | "cleared") | null);
|
|
3453
|
+
reason: (string | null);
|
|
3454
|
+
changedAt: (string | null);
|
|
3455
|
+
graceDeadline: (string | null);
|
|
3456
|
+
enforcementEnabled: boolean;
|
|
3457
|
+
}
|
|
3526
3458
|
interface DeploymentVariableListInput {
|
|
3527
3459
|
serviceId: string;
|
|
3528
3460
|
}
|
|
@@ -13425,6 +13357,194 @@ interface OrganizationSelectOutput {
|
|
|
13425
13357
|
};
|
|
13426
13358
|
activeProductId: (string | null);
|
|
13427
13359
|
}
|
|
13360
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
13361
|
+
/**
|
|
13362
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
13363
|
+
*/
|
|
13364
|
+
limit?: number;
|
|
13365
|
+
}
|
|
13366
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
13367
|
+
ok: boolean;
|
|
13368
|
+
minted: boolean;
|
|
13369
|
+
overview?: unknown;
|
|
13370
|
+
http_status: number;
|
|
13371
|
+
}
|
|
13372
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
13373
|
+
}
|
|
13374
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
13375
|
+
ok: boolean;
|
|
13376
|
+
minted: boolean;
|
|
13377
|
+
http_status: number;
|
|
13378
|
+
entitlements?: unknown;
|
|
13379
|
+
}
|
|
13380
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
13381
|
+
/**
|
|
13382
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13383
|
+
*/
|
|
13384
|
+
value?: number;
|
|
13385
|
+
}
|
|
13386
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
13387
|
+
minted: boolean;
|
|
13388
|
+
accepted: (number | null);
|
|
13389
|
+
recorded: boolean;
|
|
13390
|
+
duplicates: (number | null);
|
|
13391
|
+
http_status: number;
|
|
13392
|
+
}
|
|
13393
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
13394
|
+
/**
|
|
13395
|
+
* Task title; defaults to a fixture label
|
|
13396
|
+
*/
|
|
13397
|
+
name?: string;
|
|
13398
|
+
/**
|
|
13399
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13400
|
+
*/
|
|
13401
|
+
listId?: string;
|
|
13402
|
+
}
|
|
13403
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
13404
|
+
minted: boolean;
|
|
13405
|
+
task_id: (string | null);
|
|
13406
|
+
list_status: number;
|
|
13407
|
+
vend_status: number;
|
|
13408
|
+
clickup_status: number;
|
|
13409
|
+
installation_count: number;
|
|
13410
|
+
}
|
|
13411
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
13412
|
+
}
|
|
13413
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13414
|
+
payload: string;
|
|
13415
|
+
event_id: string;
|
|
13416
|
+
provider: string;
|
|
13417
|
+
verified: boolean;
|
|
13418
|
+
product_id: string;
|
|
13419
|
+
occurred_at: string;
|
|
13420
|
+
connector_id: string;
|
|
13421
|
+
clickup_event: (string | null);
|
|
13422
|
+
receipt_count: number;
|
|
13423
|
+
} | {
|
|
13424
|
+
found: false;
|
|
13425
|
+
});
|
|
13426
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
13427
|
+
}
|
|
13428
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
13429
|
+
team: ({
|
|
13430
|
+
teamId: string;
|
|
13431
|
+
teamName: string;
|
|
13432
|
+
} | null);
|
|
13433
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13434
|
+
tasks: {
|
|
13435
|
+
id: string;
|
|
13436
|
+
name: string;
|
|
13437
|
+
status: (string | null);
|
|
13438
|
+
}[];
|
|
13439
|
+
minted: boolean;
|
|
13440
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13441
|
+
list_status: number;
|
|
13442
|
+
vend_status: number;
|
|
13443
|
+
lists_status: number;
|
|
13444
|
+
tasks_status: number;
|
|
13445
|
+
spaces_status: number;
|
|
13446
|
+
folders_status: number;
|
|
13447
|
+
installation_count: number;
|
|
13448
|
+
}
|
|
13449
|
+
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13450
|
+
id: string;
|
|
13451
|
+
name: string;
|
|
13452
|
+
}
|
|
13453
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
13454
|
+
}
|
|
13455
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13456
|
+
file_id: string;
|
|
13457
|
+
removed: boolean;
|
|
13458
|
+
file_name: (string | null);
|
|
13459
|
+
mime_type: (string | null);
|
|
13460
|
+
product_id: string;
|
|
13461
|
+
occurred_at: string;
|
|
13462
|
+
connector_id: string;
|
|
13463
|
+
resource_state: string;
|
|
13464
|
+
} | {
|
|
13465
|
+
found: false;
|
|
13466
|
+
});
|
|
13467
|
+
interface PlaygroundGdriveReadFileInput {
|
|
13468
|
+
/**
|
|
13469
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13470
|
+
*/
|
|
13471
|
+
fileId?: string;
|
|
13472
|
+
}
|
|
13473
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
13474
|
+
minted: boolean;
|
|
13475
|
+
file_id: (string | null);
|
|
13476
|
+
file_name: (string | null);
|
|
13477
|
+
mime_type: (string | null);
|
|
13478
|
+
file_count: number;
|
|
13479
|
+
get_status: number;
|
|
13480
|
+
list_status: number;
|
|
13481
|
+
vend_status: number;
|
|
13482
|
+
content_bytes: (number | null);
|
|
13483
|
+
}
|
|
13484
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13485
|
+
}
|
|
13486
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13487
|
+
minted: boolean;
|
|
13488
|
+
vended: boolean;
|
|
13489
|
+
customer_id: (string | null);
|
|
13490
|
+
vend_status: number;
|
|
13491
|
+
result_count: number;
|
|
13492
|
+
search_status: number;
|
|
13493
|
+
login_customer_id: (string | null);
|
|
13494
|
+
}
|
|
13495
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
13496
|
+
}
|
|
13497
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
13498
|
+
blocked: boolean;
|
|
13499
|
+
archived: boolean;
|
|
13500
|
+
productId: string;
|
|
13501
|
+
lastBlockTransition: ({
|
|
13502
|
+
eventId: string;
|
|
13503
|
+
eventName: string;
|
|
13504
|
+
productId: string;
|
|
13505
|
+
occurredAt: string;
|
|
13506
|
+
recordedAt: string;
|
|
13507
|
+
receiptCount: number;
|
|
13508
|
+
organizationId: string;
|
|
13509
|
+
cascadedFromOrg: boolean;
|
|
13510
|
+
} | null);
|
|
13511
|
+
lastArchiveTransition: ({
|
|
13512
|
+
eventId: string;
|
|
13513
|
+
eventName: string;
|
|
13514
|
+
productId: string;
|
|
13515
|
+
occurredAt: string;
|
|
13516
|
+
recordedAt: string;
|
|
13517
|
+
receiptCount: number;
|
|
13518
|
+
organizationId: string;
|
|
13519
|
+
cascadedFromOrg: boolean;
|
|
13520
|
+
} | null);
|
|
13521
|
+
}
|
|
13522
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
13523
|
+
}
|
|
13524
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
13525
|
+
eventId: string;
|
|
13526
|
+
eventName: string;
|
|
13527
|
+
productId: string;
|
|
13528
|
+
occurredAt: string;
|
|
13529
|
+
recordedAt: string;
|
|
13530
|
+
receiptCount: number;
|
|
13531
|
+
organizationId: string;
|
|
13532
|
+
cascadedFromOrg: boolean;
|
|
13533
|
+
}[];
|
|
13534
|
+
interface PlaygroundWebhookGetLastInput {
|
|
13535
|
+
}
|
|
13536
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
13537
|
+
payload?: unknown;
|
|
13538
|
+
event_id: string;
|
|
13539
|
+
provider: string;
|
|
13540
|
+
verified: boolean;
|
|
13541
|
+
product_id: string;
|
|
13542
|
+
occurred_at: string;
|
|
13543
|
+
connector_id: string;
|
|
13544
|
+
delivery_count: number;
|
|
13545
|
+
} | {
|
|
13546
|
+
found: false;
|
|
13547
|
+
});
|
|
13428
13548
|
interface RealtimeArchiveExportInput {
|
|
13429
13549
|
/**
|
|
13430
13550
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -15376,6 +15496,56 @@ interface UsersConfigGetOutput {
|
|
|
15376
15496
|
google: UsersConfigGetOutputGoogle;
|
|
15377
15497
|
};
|
|
15378
15498
|
};
|
|
15499
|
+
hosted: {
|
|
15500
|
+
/**
|
|
15501
|
+
* 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.
|
|
15502
|
+
*/
|
|
15503
|
+
enabled: boolean;
|
|
15504
|
+
/**
|
|
15505
|
+
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
15506
|
+
*/
|
|
15507
|
+
logoUrl: (string | null);
|
|
15508
|
+
/**
|
|
15509
|
+
* Terms link rendered in the footer. Null renders no link.
|
|
15510
|
+
*/
|
|
15511
|
+
termsUrl: (string | null);
|
|
15512
|
+
/**
|
|
15513
|
+
* CSS colour of the body text.
|
|
15514
|
+
*/
|
|
15515
|
+
textColor: string;
|
|
15516
|
+
/**
|
|
15517
|
+
* One line under the card. Null renders no footer.
|
|
15518
|
+
*/
|
|
15519
|
+
footerText: (string | null);
|
|
15520
|
+
/**
|
|
15521
|
+
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
15522
|
+
*/
|
|
15523
|
+
privacyUrl: (string | null);
|
|
15524
|
+
/**
|
|
15525
|
+
* CSS colour for the submit button, the links and the focus ring.
|
|
15526
|
+
*/
|
|
15527
|
+
accentColor: string;
|
|
15528
|
+
/**
|
|
15529
|
+
* Shown in the heading and the page title. Default "This product".
|
|
15530
|
+
*/
|
|
15531
|
+
productName: string;
|
|
15532
|
+
/**
|
|
15533
|
+
* CSS length for the card and its controls, e.g. "12px".
|
|
15534
|
+
*/
|
|
15535
|
+
borderRadius: string;
|
|
15536
|
+
/**
|
|
15537
|
+
* CSS colour of the card itself.
|
|
15538
|
+
*/
|
|
15539
|
+
surfaceColor: string;
|
|
15540
|
+
/**
|
|
15541
|
+
* CSS colour of secondary text and hints.
|
|
15542
|
+
*/
|
|
15543
|
+
mutedTextColor: string;
|
|
15544
|
+
/**
|
|
15545
|
+
* CSS colour of the page behind the card.
|
|
15546
|
+
*/
|
|
15547
|
+
backgroundColor: string;
|
|
15548
|
+
};
|
|
15379
15549
|
invite: {
|
|
15380
15550
|
/**
|
|
15381
15551
|
* How long an invite link stays usable, in days. Default 14.
|
|
@@ -15669,6 +15839,59 @@ interface UsersConfigUpsertInput {
|
|
|
15669
15839
|
clientSecret?: (string | null);
|
|
15670
15840
|
};
|
|
15671
15841
|
};
|
|
15842
|
+
/**
|
|
15843
|
+
* 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.
|
|
15844
|
+
*/
|
|
15845
|
+
hosted?: {
|
|
15846
|
+
/**
|
|
15847
|
+
* 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.
|
|
15848
|
+
*/
|
|
15849
|
+
enabled?: boolean;
|
|
15850
|
+
/**
|
|
15851
|
+
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
15852
|
+
*/
|
|
15853
|
+
logoUrl?: (string | null);
|
|
15854
|
+
/**
|
|
15855
|
+
* Terms link rendered in the footer. Null renders no link.
|
|
15856
|
+
*/
|
|
15857
|
+
termsUrl?: (string | null);
|
|
15858
|
+
/**
|
|
15859
|
+
* CSS colour of the body text.
|
|
15860
|
+
*/
|
|
15861
|
+
textColor?: string;
|
|
15862
|
+
/**
|
|
15863
|
+
* One line under the card. Null renders no footer.
|
|
15864
|
+
*/
|
|
15865
|
+
footerText?: (string | null);
|
|
15866
|
+
/**
|
|
15867
|
+
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
15868
|
+
*/
|
|
15869
|
+
privacyUrl?: (string | null);
|
|
15870
|
+
/**
|
|
15871
|
+
* CSS colour for the submit button, the links and the focus ring.
|
|
15872
|
+
*/
|
|
15873
|
+
accentColor?: string;
|
|
15874
|
+
/**
|
|
15875
|
+
* Shown in the heading and the page title. Default "This product".
|
|
15876
|
+
*/
|
|
15877
|
+
productName?: string;
|
|
15878
|
+
/**
|
|
15879
|
+
* CSS length for the card and its controls, e.g. "12px".
|
|
15880
|
+
*/
|
|
15881
|
+
borderRadius?: string;
|
|
15882
|
+
/**
|
|
15883
|
+
* CSS colour of the card itself.
|
|
15884
|
+
*/
|
|
15885
|
+
surfaceColor?: string;
|
|
15886
|
+
/**
|
|
15887
|
+
* CSS colour of secondary text and hints.
|
|
15888
|
+
*/
|
|
15889
|
+
mutedTextColor?: string;
|
|
15890
|
+
/**
|
|
15891
|
+
* CSS colour of the page behind the card.
|
|
15892
|
+
*/
|
|
15893
|
+
backgroundColor?: string;
|
|
15894
|
+
};
|
|
15672
15895
|
/**
|
|
15673
15896
|
* Invite lifetime and re-invite cooldown. Merged field-by-field.
|
|
15674
15897
|
*/
|
|
@@ -16013,6 +16236,56 @@ interface UsersConfigUpsertOutput {
|
|
|
16013
16236
|
google: UsersConfigUpsertOutputGoogle;
|
|
16014
16237
|
};
|
|
16015
16238
|
};
|
|
16239
|
+
hosted: {
|
|
16240
|
+
/**
|
|
16241
|
+
* 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.
|
|
16242
|
+
*/
|
|
16243
|
+
enabled: boolean;
|
|
16244
|
+
/**
|
|
16245
|
+
* Absolute https URL of a logo rendered above the form. Null renders no logo.
|
|
16246
|
+
*/
|
|
16247
|
+
logoUrl: (string | null);
|
|
16248
|
+
/**
|
|
16249
|
+
* Terms link rendered in the footer. Null renders no link.
|
|
16250
|
+
*/
|
|
16251
|
+
termsUrl: (string | null);
|
|
16252
|
+
/**
|
|
16253
|
+
* CSS colour of the body text.
|
|
16254
|
+
*/
|
|
16255
|
+
textColor: string;
|
|
16256
|
+
/**
|
|
16257
|
+
* One line under the card. Null renders no footer.
|
|
16258
|
+
*/
|
|
16259
|
+
footerText: (string | null);
|
|
16260
|
+
/**
|
|
16261
|
+
* Privacy-policy link rendered in the footer. Null renders no link.
|
|
16262
|
+
*/
|
|
16263
|
+
privacyUrl: (string | null);
|
|
16264
|
+
/**
|
|
16265
|
+
* CSS colour for the submit button, the links and the focus ring.
|
|
16266
|
+
*/
|
|
16267
|
+
accentColor: string;
|
|
16268
|
+
/**
|
|
16269
|
+
* Shown in the heading and the page title. Default "This product".
|
|
16270
|
+
*/
|
|
16271
|
+
productName: string;
|
|
16272
|
+
/**
|
|
16273
|
+
* CSS length for the card and its controls, e.g. "12px".
|
|
16274
|
+
*/
|
|
16275
|
+
borderRadius: string;
|
|
16276
|
+
/**
|
|
16277
|
+
* CSS colour of the card itself.
|
|
16278
|
+
*/
|
|
16279
|
+
surfaceColor: string;
|
|
16280
|
+
/**
|
|
16281
|
+
* CSS colour of secondary text and hints.
|
|
16282
|
+
*/
|
|
16283
|
+
mutedTextColor: string;
|
|
16284
|
+
/**
|
|
16285
|
+
* CSS colour of the page behind the card.
|
|
16286
|
+
*/
|
|
16287
|
+
backgroundColor: string;
|
|
16288
|
+
};
|
|
16016
16289
|
invite: {
|
|
16017
16290
|
/**
|
|
16018
16291
|
* How long an invite link stays usable, in days. Default 14.
|
|
@@ -17932,9 +18205,6 @@ interface GeneratedClient {
|
|
|
17932
18205
|
restore: {
|
|
17933
18206
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
17934
18207
|
};
|
|
17935
|
-
usage: {
|
|
17936
|
-
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
17937
|
-
};
|
|
17938
18208
|
};
|
|
17939
18209
|
consent: {
|
|
17940
18210
|
'config-cookie-domain': {
|
|
@@ -18124,6 +18394,9 @@ interface GeneratedClient {
|
|
|
18124
18394
|
list(input: DeploymentSshKeyListInput): Promise<DeploymentSshKeyListOutput>;
|
|
18125
18395
|
register(input: DeploymentSshKeyRegisterInput): Promise<DeploymentSshKeyRegisterOutput>;
|
|
18126
18396
|
};
|
|
18397
|
+
suspension: {
|
|
18398
|
+
get(input: DeploymentSuspensionGetInput): Promise<DeploymentSuspensionGetOutput>;
|
|
18399
|
+
};
|
|
18127
18400
|
variable: {
|
|
18128
18401
|
list(input: DeploymentVariableListInput): Promise<DeploymentVariableListOutput>;
|
|
18129
18402
|
set(input: DeploymentVariableSetInput): Promise<DeploymentVariableSetOutput>;
|
|
@@ -18346,6 +18619,34 @@ interface GeneratedClient {
|
|
|
18346
18619
|
enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
|
|
18347
18620
|
};
|
|
18348
18621
|
};
|
|
18622
|
+
playground: {
|
|
18623
|
+
analytics: {
|
|
18624
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
18625
|
+
};
|
|
18626
|
+
billing: {
|
|
18627
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
18628
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
18629
|
+
};
|
|
18630
|
+
clickup: {
|
|
18631
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
18632
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
18633
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
18634
|
+
};
|
|
18635
|
+
gdrive: {
|
|
18636
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
18637
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
18638
|
+
};
|
|
18639
|
+
googleads: {
|
|
18640
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
18641
|
+
};
|
|
18642
|
+
lifecycle: {
|
|
18643
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
18644
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
18645
|
+
};
|
|
18646
|
+
webhook: {
|
|
18647
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
18648
|
+
};
|
|
18649
|
+
};
|
|
18349
18650
|
realtime: {
|
|
18350
18651
|
archive: {
|
|
18351
18652
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
@@ -18573,4 +18874,4 @@ interface GeneratedClient {
|
|
|
18573
18874
|
};
|
|
18574
18875
|
}
|
|
18575
18876
|
|
|
18576
|
-
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, RealtimeGrantCreateOutput 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, RealtimeArchiveExportInput as hU, RealtimeArchiveExportOutput as hV, RealtimeArchiveExportStatusInput as hW, RealtimeArchiveExportStatusOutput as hX, RealtimeArchiveGetInput as hY, RealtimeArchiveGetOutput as hZ, RealtimeGrantCreateInput 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, TrackingEventNamesListOutput as i$, RealtimeGrantListInput as i0, RealtimeGrantListOutput as i1, RealtimeGrantRevokeInput as i2, RealtimeGrantRevokeOutput as i3, RealtimeHistoryGetInput as i4, RealtimeHistoryGetOutput as i5, RealtimeMessagesPublishInput as i6, RealtimeMessagesPublishOutput as i7, RealtimeNamespaceCreateInput as i8, RealtimeNamespaceCreateOutput as i9, RealtimeWebhookCreateInput as iA, RealtimeWebhookCreateOutput as iB, RealtimeWebhookDeleteInput as iC, RealtimeWebhookDeleteOutput as iD, RealtimeWebhookDeliveriesListInput as iE, RealtimeWebhookDeliveriesListOutput as iF, RealtimeWebhookGetInput as iG, RealtimeWebhookGetOutput as iH, RealtimeWebhookListInput as iI, RealtimeWebhookListOutput as iJ, RealtimeWebhookSecretRotateInput as iK, RealtimeWebhookSecretRotateOutput as iL, RealtimeWebhookUpdateInput as iM, RealtimeWebhookUpdateOutput as iN, TrackingDomainsCreateInput as iO, TrackingDomainsCreateOutput as iP, TrackingDomainsDeleteInput as iQ, TrackingDomainsDeleteOutput as iR, TrackingDomainsGetInput as iS, TrackingDomainsGetOutput as iT, TrackingDomainsListInput as iU, TrackingDomainsListOutput as iV, TrackingDomainsVerifyInput as iW, TrackingDomainsVerifyOutput as iX, TrackingEventNamesArchiveInput as iY, TrackingEventNamesArchiveOutput as iZ, TrackingEventNamesListInput as i_, RealtimeNamespaceDeleteInput as ia, RealtimeNamespaceDeleteOutput as ib, RealtimeNamespaceGetInput as ic, RealtimeNamespaceGetOutput as id, RealtimeNamespaceListInput as ie, RealtimeNamespaceListOutput as ig, RealtimeNamespaceUpdateInput as ih, RealtimeNamespaceUpdateOutput as ii, RealtimePresenceEnterInput as ij, RealtimePresenceEnterOutput as ik, RealtimePresenceGetInput as il, RealtimePresenceGetOutput as im, RealtimePresenceLeaveInput as io, RealtimePresenceLeaveOutput as ip, RealtimePresenceStatsInput as iq, RealtimePresenceStatsOutput as ir, RealtimePresenceUpdateInput as is, RealtimePresenceUpdateOutput as it, RealtimePublicAccessStatusInput as iu, RealtimePublicAccessStatusOutput as iv, RealtimeStatusGetInput as iw, RealtimeStatusGetOutput as ix, RealtimeTokensCreateInput as iy, RealtimeTokensCreateOutput as iz, BrainClickupChannelsListOutput as j, UsersApikeysRevokeOutput as j$, TrackingEventNamesUnarchiveInput as j0, TrackingEventNamesUnarchiveOutput as j1, TrackingGoogleadsConnectionStatusInput as j2, TrackingGoogleadsConnectionStatusOutput as j3, TrackingGoogleadsConversionActionsInput as j4, TrackingGoogleadsConversionActionsOutput as j5, TrackingGoogleadsFeedbackConfigGetInput as j6, TrackingGoogleadsFeedbackConfigGetOutput as j7, TrackingGoogleadsFeedbackConfigSetInput as j8, TrackingGoogleadsFeedbackConfigSetOutput as j9, TrackingLinkDomainsListInput as jA, TrackingLinkDomainsListOutput as jB, TrackingLiveEventsListInput as jC, TrackingLiveEventsListOutput as jD, TrackingProfilesDeleteInput as jE, TrackingProfilesDeleteOutput as jF, TrackingProfilesExportInput as jG, TrackingProfilesExportOutput as jH, TrackingProfilesGetInput as jI, TrackingProfilesGetOutput as jJ, TrackingProfilesListInput as jK, TrackingProfilesListOutput as jL, TrackingReportsAttributedJourneyInput as jM, TrackingReportsAttributedJourneyOutput as jN, TrackingReportsEventVolumeInput as jO, TrackingReportsEventVolumeOutput as jP, TrackingReportsRevenueBySourceInput as jQ, TrackingReportsRevenueBySourceOutput as jR, TrackingReportsSourcePeopleInput as jS, TrackingReportsSourcePeopleOutput as jT, TrackingSnippetsGetInput as jU, TrackingSnippetsGetOutput as jV, UsersApikeysCreateInput as jW, UsersApikeysCreateOutput as jX, UsersApikeysListInput as jY, UsersApikeysListOutput as jZ, UsersApikeysRevokeInput as j_, TrackingGoogleadsFeedbackRunInput as ja, TrackingGoogleadsFeedbackRunOutput as jb, TrackingGoogleadsFeedbackStatusInput as jc, TrackingGoogleadsFeedbackStatusOutput as jd, TrackingGoogleadsFeedbackUploadsInput as je, TrackingGoogleadsFeedbackUploadsOutput as jf, TrackingGoogleadsRoasReportInput as jg, TrackingGoogleadsRoasReportOutput as jh, TrackingGoogleadsSyncNowInput as ji, TrackingGoogleadsSyncNowOutput as jj, TrackingGoogleadsTrackingHealthInput as jk, TrackingGoogleadsTrackingHealthOutput as jl, TrackingGoogleadsUsVsPlatformInput as jm, TrackingGoogleadsUsVsPlatformOutput as jn, TrackingIdentityHealthInput as jo, TrackingIdentityHealthOutput as jp, TrackingInstallDomainsCreateInput as jq, TrackingInstallDomainsCreateOutput as jr, TrackingInstallDomainsDeleteInput as js, TrackingInstallDomainsDeleteOutput as jt, TrackingInstallDomainsListInput as ju, TrackingInstallDomainsListOutput as jv, TrackingLinkDomainsCreateInput as jw, TrackingLinkDomainsCreateOutput as jx, TrackingLinkDomainsDeleteInput as jy, TrackingLinkDomainsDeleteOutput as jz, BrainClickupConnectionsListInput as k, UsersWaitlistListOutput as k$, UsersAuditListInput as k0, UsersAuditListOutput as k1, UsersConfigGetInput as k2, UsersConfigGetOutput as k3, UsersConfigUpsertInput as k4, UsersConfigUpsertOutput as k5, UsersFactorsListInput as k6, UsersFactorsListOutput as k7, UsersFactorsResetInput as k8, UsersFactorsResetOutput as k9, UsersUsersEraseInput as kA, UsersUsersEraseOutput as kB, UsersUsersExportInput as kC, UsersUsersExportOutput as kD, UsersUsersGetInput as kE, UsersUsersGetOutput as kF, UsersUsersImportInput as kG, UsersUsersImportOutput as kH, UsersUsersInviteInput as kI, UsersUsersInviteOutput as kJ, UsersUsersListInput as kK, UsersUsersListOutput as kL, UsersUsersSetPrimaryIdentifierInput as kM, UsersUsersSetPrimaryIdentifierOutput as kN, UsersUsersUnbanInput as kO, UsersUsersUnbanOutput as kP, UsersUsersUpdateInput as kQ, UsersUsersUpdateOutput as kR, UsersWaitlistEraseInput as kS, UsersWaitlistEraseOutput as kT, UsersWaitlistFunnelInput as kU, UsersWaitlistFunnelOutput as kV, UsersWaitlistImportInput as kW, UsersWaitlistImportOutput as kX, UsersWaitlistInviteInput as kY, UsersWaitlistInviteOutput as kZ, UsersWaitlistListInput as k_, UsersKeysListInput as ka, UsersKeysListOutput as kb, UsersKeysRevokeInput as kc, UsersKeysRevokeOutput as kd, UsersKeysRotateInput as ke, UsersKeysRotateOutput as kf, UsersOpsRetentionGetInput as kg, UsersOpsRetentionGetOutput as kh, UsersOpsSloGetInput as ki, UsersOpsSloGetOutput as kj, UsersSessionsGetInput as kk, UsersSessionsGetOutput as kl, UsersSessionsImpersonateInput as km, UsersSessionsImpersonateOutput as kn, UsersSessionsListInput as ko, UsersSessionsListOutput as kp, UsersSessionsRevokeInput as kq, UsersSessionsRevokeOutput as kr, UsersStatsGetInput as ks, UsersStatsGetOutput as kt, UsersUsersBanInput as ku, UsersUsersBanOutput as kv, UsersUsersCreateInput as kw, UsersUsersCreateOutput as kx, UsersUsersDeleteInput as ky, UsersUsersDeleteOutput as kz, BrainClickupConnectionsListOutput as l, UsersWebhooksCreateInput as l0, UsersWebhooksCreateOutput as l1, UsersWebhooksDeleteInput as l2, UsersWebhooksDeleteOutput as l3, UsersWebhooksDeliveriesListInput as l4, UsersWebhooksDeliveriesListOutput as l5, UsersWebhooksGetInput as l6, UsersWebhooksGetOutput as l7, UsersWebhooksListInput as l8, UsersWebhooksListOutput as l9, UsersWebhooksRotateSecretInput as la, UsersWebhooksRotateSecretOutput as lb, UsersWebhooksUpdateInput as lc, UsersWebhooksUpdateOutput as ld, WaitlistConfigGetInput as le, WaitlistConfigGetOutput as lf, WaitlistConfigUpsertInput as lg, WaitlistConfigUpsertOutput as lh, WaitlistEmbedGetInput as li, WaitlistEmbedGetOutput as lj, WaitlistInvitesSendInput as lk, WaitlistInvitesSendOutput as ll, WaitlistSignupsEraseInput as lm, WaitlistSignupsEraseOutput as ln, WaitlistSignupsFunnelInput as lo, WaitlistSignupsFunnelOutput as lp, WaitlistSignupsListInput as lq, WaitlistSignupsListOutput as lr, 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 };
|
|
18877
|
+
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, DeploymentVariableUnsetProductOutput 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, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput 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_, 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, 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, PlaygroundClickupCreateTaskOutput 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, PlaygroundAnalyticsOverviewInput as hU, PlaygroundAnalyticsOverviewOutput as hV, PlaygroundBillingEntitlementsInput as hW, PlaygroundBillingEntitlementsOutput as hX, PlaygroundBillingRecordUsageInput as hY, PlaygroundBillingRecordUsageOutput as hZ, PlaygroundClickupCreateTaskInput 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, RealtimeWebhookDeleteOutput as i$, PlaygroundClickupGetLastWebhookInput as i0, PlaygroundClickupGetLastWebhookOutput as i1, PlaygroundClickupGetOverviewInput as i2, PlaygroundClickupGetOverviewOutput as i3, PlaygroundGdriveGetLastChangeInput as i4, PlaygroundGdriveGetLastChangeOutput as i5, PlaygroundGdriveReadFileInput as i6, PlaygroundGdriveReadFileOutput as i7, PlaygroundGoogleadsReadCustomerInput as i8, PlaygroundGoogleadsReadCustomerOutput as i9, RealtimeNamespaceDeleteInput as iA, RealtimeNamespaceDeleteOutput as iB, RealtimeNamespaceGetInput as iC, RealtimeNamespaceGetOutput as iD, RealtimeNamespaceListInput as iE, RealtimeNamespaceListOutput as iF, RealtimeNamespaceUpdateInput as iG, RealtimeNamespaceUpdateOutput as iH, RealtimePresenceEnterInput as iI, RealtimePresenceEnterOutput as iJ, RealtimePresenceGetInput as iK, RealtimePresenceGetOutput as iL, RealtimePresenceLeaveInput as iM, RealtimePresenceLeaveOutput as iN, RealtimePresenceStatsInput as iO, RealtimePresenceStatsOutput as iP, RealtimePresenceUpdateInput as iQ, RealtimePresenceUpdateOutput as iR, RealtimePublicAccessStatusInput as iS, RealtimePublicAccessStatusOutput as iT, RealtimeStatusGetInput as iU, RealtimeStatusGetOutput as iV, RealtimeTokensCreateInput as iW, RealtimeTokensCreateOutput as iX, RealtimeWebhookCreateInput as iY, RealtimeWebhookCreateOutput as iZ, RealtimeWebhookDeleteInput as i_, PlaygroundLifecycleGetStateInput as ia, PlaygroundLifecycleGetStateOutput as ib, PlaygroundLifecycleListEventsInput as ic, PlaygroundLifecycleListEventsOutput as id, PlaygroundWebhookGetLastInput as ie, PlaygroundWebhookGetLastOutput as ig, RealtimeArchiveExportInput as ih, RealtimeArchiveExportOutput as ii, RealtimeArchiveExportStatusInput as ij, RealtimeArchiveExportStatusOutput as ik, RealtimeArchiveGetInput as il, RealtimeArchiveGetOutput as im, RealtimeGrantCreateInput as io, RealtimeGrantCreateOutput as ip, RealtimeGrantListInput as iq, RealtimeGrantListOutput as ir, RealtimeGrantRevokeInput as is, RealtimeGrantRevokeOutput as it, RealtimeHistoryGetInput as iu, RealtimeHistoryGetOutput as iv, RealtimeMessagesPublishInput as iw, RealtimeMessagesPublishOutput as ix, RealtimeNamespaceCreateInput as iy, RealtimeNamespaceCreateOutput as iz, BrainClickupChannelsListOutput as j, TrackingLiveEventsListOutput as j$, RealtimeWebhookDeliveriesListInput as j0, RealtimeWebhookDeliveriesListOutput as j1, RealtimeWebhookGetInput as j2, RealtimeWebhookGetOutput as j3, RealtimeWebhookListInput as j4, RealtimeWebhookListOutput as j5, RealtimeWebhookSecretRotateInput as j6, RealtimeWebhookSecretRotateOutput as j7, RealtimeWebhookUpdateInput as j8, RealtimeWebhookUpdateOutput as j9, TrackingGoogleadsFeedbackStatusInput as jA, TrackingGoogleadsFeedbackStatusOutput as jB, TrackingGoogleadsFeedbackUploadsInput as jC, TrackingGoogleadsFeedbackUploadsOutput as jD, TrackingGoogleadsRoasReportInput as jE, TrackingGoogleadsRoasReportOutput as jF, TrackingGoogleadsSyncNowInput as jG, TrackingGoogleadsSyncNowOutput as jH, TrackingGoogleadsTrackingHealthInput as jI, TrackingGoogleadsTrackingHealthOutput as jJ, TrackingGoogleadsUsVsPlatformInput as jK, TrackingGoogleadsUsVsPlatformOutput as jL, TrackingIdentityHealthInput as jM, TrackingIdentityHealthOutput as jN, TrackingInstallDomainsCreateInput as jO, TrackingInstallDomainsCreateOutput as jP, TrackingInstallDomainsDeleteInput as jQ, TrackingInstallDomainsDeleteOutput as jR, TrackingInstallDomainsListInput as jS, TrackingInstallDomainsListOutput as jT, TrackingLinkDomainsCreateInput as jU, TrackingLinkDomainsCreateOutput as jV, TrackingLinkDomainsDeleteInput as jW, TrackingLinkDomainsDeleteOutput as jX, TrackingLinkDomainsListInput as jY, TrackingLinkDomainsListOutput as jZ, TrackingLiveEventsListInput as j_, TrackingDomainsCreateInput as ja, TrackingDomainsCreateOutput as jb, TrackingDomainsDeleteInput as jc, TrackingDomainsDeleteOutput as jd, TrackingDomainsGetInput as je, TrackingDomainsGetOutput as jf, TrackingDomainsListInput as jg, TrackingDomainsListOutput as jh, TrackingDomainsVerifyInput as ji, TrackingDomainsVerifyOutput as jj, TrackingEventNamesArchiveInput as jk, TrackingEventNamesArchiveOutput as jl, TrackingEventNamesListInput as jm, TrackingEventNamesListOutput as jn, TrackingEventNamesUnarchiveInput as jo, TrackingEventNamesUnarchiveOutput as jp, TrackingGoogleadsConnectionStatusInput as jq, TrackingGoogleadsConnectionStatusOutput as jr, TrackingGoogleadsConversionActionsInput as js, TrackingGoogleadsConversionActionsOutput as jt, TrackingGoogleadsFeedbackConfigGetInput as ju, TrackingGoogleadsFeedbackConfigGetOutput as jv, TrackingGoogleadsFeedbackConfigSetInput as jw, TrackingGoogleadsFeedbackConfigSetOutput as jx, TrackingGoogleadsFeedbackRunInput as jy, TrackingGoogleadsFeedbackRunOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersExportOutput as k$, TrackingProfilesDeleteInput as k0, TrackingProfilesDeleteOutput as k1, TrackingProfilesExportInput as k2, TrackingProfilesExportOutput as k3, TrackingProfilesGetInput as k4, TrackingProfilesGetOutput as k5, TrackingProfilesListInput as k6, TrackingProfilesListOutput as k7, TrackingReportsAttributedJourneyInput as k8, TrackingReportsAttributedJourneyOutput as k9, UsersKeysRevokeInput as kA, UsersKeysRevokeOutput as kB, UsersKeysRotateInput as kC, UsersKeysRotateOutput as kD, UsersOpsRetentionGetInput as kE, UsersOpsRetentionGetOutput as kF, UsersOpsSloGetInput as kG, UsersOpsSloGetOutput as kH, UsersSessionsGetInput as kI, UsersSessionsGetOutput as kJ, UsersSessionsImpersonateInput as kK, UsersSessionsImpersonateOutput as kL, UsersSessionsListInput as kM, UsersSessionsListOutput as kN, UsersSessionsRevokeInput as kO, UsersSessionsRevokeOutput as kP, UsersStatsGetInput as kQ, UsersStatsGetOutput as kR, UsersUsersBanInput as kS, UsersUsersBanOutput as kT, UsersUsersCreateInput as kU, UsersUsersCreateOutput as kV, UsersUsersDeleteInput as kW, UsersUsersDeleteOutput as kX, UsersUsersEraseInput as kY, UsersUsersEraseOutput as kZ, UsersUsersExportInput as k_, TrackingReportsEventVolumeInput as ka, TrackingReportsEventVolumeOutput as kb, TrackingReportsRevenueBySourceInput as kc, TrackingReportsRevenueBySourceOutput as kd, TrackingReportsSourcePeopleInput as ke, TrackingReportsSourcePeopleOutput as kf, TrackingSnippetsGetInput as kg, TrackingSnippetsGetOutput as kh, UsersApikeysCreateInput as ki, UsersApikeysCreateOutput as kj, UsersApikeysListInput as kk, UsersApikeysListOutput as kl, UsersApikeysRevokeInput as km, UsersApikeysRevokeOutput as kn, UsersAuditListInput as ko, UsersAuditListOutput as kp, UsersConfigGetInput as kq, UsersConfigGetOutput as kr, UsersConfigUpsertInput as ks, UsersConfigUpsertOutput as kt, UsersFactorsListInput as ku, UsersFactorsListOutput as kv, UsersFactorsResetInput as kw, UsersFactorsResetOutput as kx, UsersKeysListInput as ky, UsersKeysListOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersGetInput as l0, UsersUsersGetOutput as l1, UsersUsersImportInput as l2, UsersUsersImportOutput as l3, UsersUsersInviteInput as l4, UsersUsersInviteOutput as l5, UsersUsersListInput as l6, UsersUsersListOutput as l7, UsersUsersSetPrimaryIdentifierInput as l8, UsersUsersSetPrimaryIdentifierOutput as l9, UsersWebhooksUpdateInput as lA, UsersWebhooksUpdateOutput as lB, WaitlistConfigGetInput as lC, WaitlistConfigGetOutput as lD, WaitlistConfigUpsertInput as lE, WaitlistConfigUpsertOutput as lF, WaitlistEmbedGetInput as lG, WaitlistEmbedGetOutput as lH, WaitlistInvitesSendInput as lI, WaitlistInvitesSendOutput as lJ, WaitlistSignupsEraseInput as lK, WaitlistSignupsEraseOutput as lL, WaitlistSignupsFunnelInput as lM, WaitlistSignupsFunnelOutput as lN, WaitlistSignupsListInput as lO, WaitlistSignupsListOutput as lP, UsersUsersUnbanInput as la, UsersUsersUnbanOutput as lb, UsersUsersUpdateInput as lc, UsersUsersUpdateOutput as ld, UsersWaitlistEraseInput as le, UsersWaitlistEraseOutput as lf, UsersWaitlistFunnelInput as lg, UsersWaitlistFunnelOutput as lh, UsersWaitlistImportInput as li, UsersWaitlistImportOutput as lj, UsersWaitlistInviteInput as lk, UsersWaitlistInviteOutput as ll, UsersWaitlistListInput as lm, UsersWaitlistListOutput as ln, UsersWebhooksCreateInput as lo, UsersWebhooksCreateOutput as lp, UsersWebhooksDeleteInput as lq, UsersWebhooksDeleteOutput as lr, UsersWebhooksDeliveriesListInput as ls, UsersWebhooksDeliveriesListOutput as lt, UsersWebhooksGetInput as lu, UsersWebhooksGetOutput as lv, UsersWebhooksListInput as lw, UsersWebhooksListOutput as lx, UsersWebhooksRotateSecretInput as ly, UsersWebhooksRotateSecretOutput 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 };
|