@lessly/sdk-app 14.1.0 → 14.2.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-BNghb8IL.d.cts → client.gen-ClvT4E7P.d.cts} +331 -103
- package/dist/{client.gen-BNghb8IL.d.ts → client.gen-ClvT4E7P.d.ts} +331 -103
- 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 +152 -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 +152 -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.cjs +15 -0
- package/dist/realtime/index.cjs.map +1 -1
- package/dist/realtime/index.d.cts +14 -2
- package/dist/realtime/index.d.ts +14 -2
- package/dist/realtime/index.js +13 -1
- package/dist/realtime/index.js.map +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/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 +152 -13
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +66 -5
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +6 -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/realtime/index.ts +1 -1
- package/src/gen/realtime/queryOptions.gen.ts +19 -0
- package/src/gen/types.gen.ts +337 -101
|
@@ -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
|
}
|
|
@@ -1596,6 +1506,7 @@ interface DeploymentCanvasGetOutput {
|
|
|
1596
1506
|
command?: string;
|
|
1597
1507
|
outputDir?: string;
|
|
1598
1508
|
};
|
|
1509
|
+
markdown?: boolean;
|
|
1599
1510
|
});
|
|
1600
1511
|
replicas: number;
|
|
1601
1512
|
createdAt: string;
|
|
@@ -1607,9 +1518,16 @@ interface DeploymentCanvasGetOutput {
|
|
|
1607
1518
|
};
|
|
1608
1519
|
};
|
|
1609
1520
|
updatedAt: string;
|
|
1521
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
1522
|
+
idleMinutes: number;
|
|
1523
|
+
scaleToZero: boolean;
|
|
1610
1524
|
containerPort: number;
|
|
1611
1525
|
environmentId: string;
|
|
1612
1526
|
lastReplicasRunning: number;
|
|
1527
|
+
scaleToZeroEligibility?: {
|
|
1528
|
+
reasons: string[];
|
|
1529
|
+
eligible: boolean;
|
|
1530
|
+
};
|
|
1613
1531
|
}[];
|
|
1614
1532
|
environmentId: string;
|
|
1615
1533
|
}
|
|
@@ -1888,7 +1806,7 @@ interface DeploymentDeploymentCancelInput {
|
|
|
1888
1806
|
}
|
|
1889
1807
|
interface DeploymentDeploymentCancelOutput {
|
|
1890
1808
|
id: string;
|
|
1891
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1809
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1892
1810
|
builtAt: (string | null);
|
|
1893
1811
|
imageRef: (string | null);
|
|
1894
1812
|
commitSha: (string | null);
|
|
@@ -1914,7 +1832,7 @@ interface DeploymentDeploymentGetInput {
|
|
|
1914
1832
|
}
|
|
1915
1833
|
interface DeploymentDeploymentGetOutput {
|
|
1916
1834
|
id: string;
|
|
1917
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1835
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1918
1836
|
builtAt: (string | null);
|
|
1919
1837
|
imageRef: (string | null);
|
|
1920
1838
|
commitSha: (string | null);
|
|
@@ -1940,7 +1858,7 @@ interface DeploymentDeploymentListInput {
|
|
|
1940
1858
|
}
|
|
1941
1859
|
type DeploymentDeploymentListOutput = {
|
|
1942
1860
|
id: string;
|
|
1943
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1861
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1944
1862
|
builtAt: (string | null);
|
|
1945
1863
|
imageRef: (string | null);
|
|
1946
1864
|
commitSha: (string | null);
|
|
@@ -2477,7 +2395,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2477
2395
|
baseEnvironmentId: (string | null);
|
|
2478
2396
|
}
|
|
2479
2397
|
interface DeploymentEventsListByEnvironmentInput {
|
|
2480
|
-
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");
|
|
2398
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2481
2399
|
limit?: number;
|
|
2482
2400
|
since?: string;
|
|
2483
2401
|
until?: string;
|
|
@@ -2485,7 +2403,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2485
2403
|
}
|
|
2486
2404
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2487
2405
|
id: string;
|
|
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");
|
|
2406
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2489
2407
|
payload: {
|
|
2490
2408
|
[k: string]: unknown;
|
|
2491
2409
|
};
|
|
@@ -2497,7 +2415,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2497
2415
|
environmentId: (string | null);
|
|
2498
2416
|
}[];
|
|
2499
2417
|
interface DeploymentEventsListByServiceInput {
|
|
2500
|
-
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");
|
|
2418
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2501
2419
|
limit?: number;
|
|
2502
2420
|
since?: string;
|
|
2503
2421
|
until?: string;
|
|
@@ -2506,7 +2424,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2506
2424
|
}
|
|
2507
2425
|
type DeploymentEventsListByServiceOutput = {
|
|
2508
2426
|
id: string;
|
|
2509
|
-
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");
|
|
2427
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
|
|
2510
2428
|
payload: {
|
|
2511
2429
|
[k: string]: unknown;
|
|
2512
2430
|
};
|
|
@@ -2955,6 +2873,7 @@ interface DeploymentServiceCreateInput {
|
|
|
2955
2873
|
command?: string;
|
|
2956
2874
|
outputDir?: string;
|
|
2957
2875
|
};
|
|
2876
|
+
markdown?: boolean;
|
|
2958
2877
|
});
|
|
2959
2878
|
replicas?: number;
|
|
2960
2879
|
resources?: {
|
|
@@ -3008,6 +2927,7 @@ interface DeploymentServiceCreateOutput {
|
|
|
3008
2927
|
command?: string;
|
|
3009
2928
|
outputDir?: string;
|
|
3010
2929
|
};
|
|
2930
|
+
markdown?: boolean;
|
|
3011
2931
|
});
|
|
3012
2932
|
replicas: number;
|
|
3013
2933
|
createdAt: string;
|
|
@@ -3019,9 +2939,16 @@ interface DeploymentServiceCreateOutput {
|
|
|
3019
2939
|
};
|
|
3020
2940
|
};
|
|
3021
2941
|
updatedAt: string;
|
|
2942
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
2943
|
+
idleMinutes: number;
|
|
2944
|
+
scaleToZero: boolean;
|
|
3022
2945
|
containerPort: number;
|
|
3023
2946
|
environmentId: string;
|
|
3024
2947
|
lastReplicasRunning: number;
|
|
2948
|
+
scaleToZeroEligibility?: {
|
|
2949
|
+
reasons: string[];
|
|
2950
|
+
eligible: boolean;
|
|
2951
|
+
};
|
|
3025
2952
|
}
|
|
3026
2953
|
interface DeploymentServiceCreateOutputReadiness {
|
|
3027
2954
|
path: string;
|
|
@@ -3097,6 +3024,7 @@ interface DeploymentServiceGetOutput {
|
|
|
3097
3024
|
command?: string;
|
|
3098
3025
|
outputDir?: string;
|
|
3099
3026
|
};
|
|
3027
|
+
markdown?: boolean;
|
|
3100
3028
|
});
|
|
3101
3029
|
replicas: number;
|
|
3102
3030
|
createdAt: string;
|
|
@@ -3108,9 +3036,16 @@ interface DeploymentServiceGetOutput {
|
|
|
3108
3036
|
};
|
|
3109
3037
|
};
|
|
3110
3038
|
updatedAt: string;
|
|
3039
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3040
|
+
idleMinutes: number;
|
|
3041
|
+
scaleToZero: boolean;
|
|
3111
3042
|
containerPort: number;
|
|
3112
3043
|
environmentId: string;
|
|
3113
3044
|
lastReplicasRunning: number;
|
|
3045
|
+
scaleToZeroEligibility?: {
|
|
3046
|
+
reasons: string[];
|
|
3047
|
+
eligible: boolean;
|
|
3048
|
+
};
|
|
3114
3049
|
}
|
|
3115
3050
|
interface DeploymentServiceGetOutputReadiness {
|
|
3116
3051
|
path: string;
|
|
@@ -3157,6 +3092,7 @@ type DeploymentServiceListOutput = {
|
|
|
3157
3092
|
command?: string;
|
|
3158
3093
|
outputDir?: string;
|
|
3159
3094
|
};
|
|
3095
|
+
markdown?: boolean;
|
|
3160
3096
|
});
|
|
3161
3097
|
replicas: number;
|
|
3162
3098
|
createdAt: string;
|
|
@@ -3168,9 +3104,16 @@ type DeploymentServiceListOutput = {
|
|
|
3168
3104
|
};
|
|
3169
3105
|
};
|
|
3170
3106
|
updatedAt: string;
|
|
3107
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3108
|
+
idleMinutes: number;
|
|
3109
|
+
scaleToZero: boolean;
|
|
3171
3110
|
containerPort: number;
|
|
3172
3111
|
environmentId: string;
|
|
3173
3112
|
lastReplicasRunning: number;
|
|
3113
|
+
scaleToZeroEligibility?: {
|
|
3114
|
+
reasons: string[];
|
|
3115
|
+
eligible: boolean;
|
|
3116
|
+
};
|
|
3174
3117
|
}[];
|
|
3175
3118
|
interface DeploymentServiceListOutputReadiness {
|
|
3176
3119
|
path: string;
|
|
@@ -3187,13 +3130,14 @@ interface DeploymentServiceLogsInput {
|
|
|
3187
3130
|
}
|
|
3188
3131
|
interface DeploymentServiceLogsOutput {
|
|
3189
3132
|
lines: string[];
|
|
3133
|
+
sleepState?: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3190
3134
|
}
|
|
3191
3135
|
interface DeploymentServiceRedeployInput {
|
|
3192
3136
|
serviceId: string;
|
|
3193
3137
|
}
|
|
3194
3138
|
interface DeploymentServiceRedeployOutput {
|
|
3195
3139
|
id: string;
|
|
3196
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3140
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3197
3141
|
builtAt: (string | null);
|
|
3198
3142
|
imageRef: (string | null);
|
|
3199
3143
|
commitSha: (string | null);
|
|
@@ -3226,7 +3170,7 @@ interface DeploymentServiceRollbackInput {
|
|
|
3226
3170
|
}
|
|
3227
3171
|
interface DeploymentServiceRollbackOutput {
|
|
3228
3172
|
id: string;
|
|
3229
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3173
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3230
3174
|
builtAt: (string | null);
|
|
3231
3175
|
imageRef: (string | null);
|
|
3232
3176
|
commitSha: (string | null);
|
|
@@ -3284,6 +3228,7 @@ interface DeploymentServiceScaleOutput {
|
|
|
3284
3228
|
command?: string;
|
|
3285
3229
|
outputDir?: string;
|
|
3286
3230
|
};
|
|
3231
|
+
markdown?: boolean;
|
|
3287
3232
|
});
|
|
3288
3233
|
replicas: number;
|
|
3289
3234
|
createdAt: string;
|
|
@@ -3295,9 +3240,16 @@ interface DeploymentServiceScaleOutput {
|
|
|
3295
3240
|
};
|
|
3296
3241
|
};
|
|
3297
3242
|
updatedAt: string;
|
|
3243
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3244
|
+
idleMinutes: number;
|
|
3245
|
+
scaleToZero: boolean;
|
|
3298
3246
|
containerPort: number;
|
|
3299
3247
|
environmentId: string;
|
|
3300
3248
|
lastReplicasRunning: number;
|
|
3249
|
+
scaleToZeroEligibility?: {
|
|
3250
|
+
reasons: string[];
|
|
3251
|
+
eligible: boolean;
|
|
3252
|
+
};
|
|
3301
3253
|
}
|
|
3302
3254
|
interface DeploymentServiceScaleOutputReadiness {
|
|
3303
3255
|
path: string;
|
|
@@ -3340,6 +3292,7 @@ interface DeploymentServiceUpdateInput {
|
|
|
3340
3292
|
command?: string;
|
|
3341
3293
|
outputDir?: string;
|
|
3342
3294
|
};
|
|
3295
|
+
markdown?: boolean;
|
|
3343
3296
|
});
|
|
3344
3297
|
replicas?: number;
|
|
3345
3298
|
resources?: {
|
|
@@ -3348,6 +3301,8 @@ interface DeploymentServiceUpdateInput {
|
|
|
3348
3301
|
memory?: string;
|
|
3349
3302
|
};
|
|
3350
3303
|
};
|
|
3304
|
+
idleMinutes?: number;
|
|
3305
|
+
scaleToZero?: boolean;
|
|
3351
3306
|
containerPort?: number;
|
|
3352
3307
|
}
|
|
3353
3308
|
interface DeploymentServiceUpdateInputReadiness {
|
|
@@ -3392,6 +3347,7 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3392
3347
|
command?: string;
|
|
3393
3348
|
outputDir?: string;
|
|
3394
3349
|
};
|
|
3350
|
+
markdown?: boolean;
|
|
3395
3351
|
});
|
|
3396
3352
|
replicas: number;
|
|
3397
3353
|
createdAt: string;
|
|
@@ -3403,9 +3359,16 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3403
3359
|
};
|
|
3404
3360
|
};
|
|
3405
3361
|
updatedAt: string;
|
|
3362
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3363
|
+
idleMinutes: number;
|
|
3364
|
+
scaleToZero: boolean;
|
|
3406
3365
|
containerPort: number;
|
|
3407
3366
|
environmentId: string;
|
|
3408
3367
|
lastReplicasRunning: number;
|
|
3368
|
+
scaleToZeroEligibility?: {
|
|
3369
|
+
reasons: string[];
|
|
3370
|
+
eligible: boolean;
|
|
3371
|
+
};
|
|
3409
3372
|
}
|
|
3410
3373
|
interface DeploymentServiceUpdateOutputReadiness {
|
|
3411
3374
|
path: string;
|
|
@@ -3416,6 +3379,12 @@ interface DeploymentServiceUpdateOutputReadiness {
|
|
|
3416
3379
|
successThreshold?: number;
|
|
3417
3380
|
initialDelaySeconds?: number;
|
|
3418
3381
|
}
|
|
3382
|
+
interface DeploymentServiceWakeInput {
|
|
3383
|
+
id: string;
|
|
3384
|
+
}
|
|
3385
|
+
interface DeploymentServiceWakeOutput {
|
|
3386
|
+
[k: string]: unknown;
|
|
3387
|
+
}
|
|
3419
3388
|
interface DeploymentSshCommandInput {
|
|
3420
3389
|
serviceId: string;
|
|
3421
3390
|
}
|
|
@@ -13237,6 +13206,234 @@ interface OrganizationSelectOutput {
|
|
|
13237
13206
|
};
|
|
13238
13207
|
activeProductId: (string | null);
|
|
13239
13208
|
}
|
|
13209
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
13210
|
+
/**
|
|
13211
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
13212
|
+
*/
|
|
13213
|
+
limit?: number;
|
|
13214
|
+
}
|
|
13215
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
13216
|
+
ok: boolean;
|
|
13217
|
+
minted: boolean;
|
|
13218
|
+
overview?: unknown;
|
|
13219
|
+
http_status: number;
|
|
13220
|
+
}
|
|
13221
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
13222
|
+
}
|
|
13223
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
13224
|
+
ok: boolean;
|
|
13225
|
+
minted: boolean;
|
|
13226
|
+
http_status: number;
|
|
13227
|
+
entitlements?: unknown;
|
|
13228
|
+
}
|
|
13229
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
13230
|
+
/**
|
|
13231
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13232
|
+
*/
|
|
13233
|
+
value?: number;
|
|
13234
|
+
}
|
|
13235
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
13236
|
+
minted: boolean;
|
|
13237
|
+
accepted: (number | null);
|
|
13238
|
+
recorded: boolean;
|
|
13239
|
+
duplicates: (number | null);
|
|
13240
|
+
http_status: number;
|
|
13241
|
+
}
|
|
13242
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
13243
|
+
/**
|
|
13244
|
+
* Task title; defaults to a fixture label
|
|
13245
|
+
*/
|
|
13246
|
+
name?: string;
|
|
13247
|
+
/**
|
|
13248
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13249
|
+
*/
|
|
13250
|
+
listId?: string;
|
|
13251
|
+
}
|
|
13252
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
13253
|
+
minted: boolean;
|
|
13254
|
+
task_id: (string | null);
|
|
13255
|
+
list_status: number;
|
|
13256
|
+
vend_status: number;
|
|
13257
|
+
clickup_status: number;
|
|
13258
|
+
installation_count: number;
|
|
13259
|
+
}
|
|
13260
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
13261
|
+
}
|
|
13262
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13263
|
+
payload: string;
|
|
13264
|
+
event_id: string;
|
|
13265
|
+
provider: string;
|
|
13266
|
+
verified: boolean;
|
|
13267
|
+
product_id: string;
|
|
13268
|
+
occurred_at: string;
|
|
13269
|
+
connector_id: string;
|
|
13270
|
+
clickup_event: (string | null);
|
|
13271
|
+
receipt_count: number;
|
|
13272
|
+
} | {
|
|
13273
|
+
found: false;
|
|
13274
|
+
});
|
|
13275
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
13276
|
+
}
|
|
13277
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
13278
|
+
team: ({
|
|
13279
|
+
teamId: string;
|
|
13280
|
+
teamName: string;
|
|
13281
|
+
} | null);
|
|
13282
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
13283
|
+
tasks: {
|
|
13284
|
+
id: string;
|
|
13285
|
+
name: string;
|
|
13286
|
+
status: (string | null);
|
|
13287
|
+
}[];
|
|
13288
|
+
minted: boolean;
|
|
13289
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
13290
|
+
list_status: number;
|
|
13291
|
+
vend_status: number;
|
|
13292
|
+
lists_status: number;
|
|
13293
|
+
tasks_status: number;
|
|
13294
|
+
spaces_status: number;
|
|
13295
|
+
folders_status: number;
|
|
13296
|
+
installation_count: number;
|
|
13297
|
+
}
|
|
13298
|
+
interface PlaygroundClickupGetOverviewOutputItems {
|
|
13299
|
+
id: string;
|
|
13300
|
+
name: string;
|
|
13301
|
+
}
|
|
13302
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
13303
|
+
}
|
|
13304
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13305
|
+
file_id: string;
|
|
13306
|
+
removed: boolean;
|
|
13307
|
+
file_name: (string | null);
|
|
13308
|
+
mime_type: (string | null);
|
|
13309
|
+
product_id: string;
|
|
13310
|
+
occurred_at: string;
|
|
13311
|
+
connector_id: string;
|
|
13312
|
+
resource_state: string;
|
|
13313
|
+
} | {
|
|
13314
|
+
found: false;
|
|
13315
|
+
});
|
|
13316
|
+
interface PlaygroundGdriveReadFileInput {
|
|
13317
|
+
/**
|
|
13318
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13319
|
+
*/
|
|
13320
|
+
fileId?: string;
|
|
13321
|
+
}
|
|
13322
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
13323
|
+
minted: boolean;
|
|
13324
|
+
file_id: (string | null);
|
|
13325
|
+
file_name: (string | null);
|
|
13326
|
+
mime_type: (string | null);
|
|
13327
|
+
file_count: number;
|
|
13328
|
+
get_status: number;
|
|
13329
|
+
list_status: number;
|
|
13330
|
+
vend_status: number;
|
|
13331
|
+
content_bytes: (number | null);
|
|
13332
|
+
}
|
|
13333
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
13334
|
+
}
|
|
13335
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13336
|
+
minted: boolean;
|
|
13337
|
+
vended: boolean;
|
|
13338
|
+
customer_id: (string | null);
|
|
13339
|
+
vend_status: number;
|
|
13340
|
+
result_count: number;
|
|
13341
|
+
search_status: number;
|
|
13342
|
+
login_customer_id: (string | null);
|
|
13343
|
+
}
|
|
13344
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
13345
|
+
}
|
|
13346
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
13347
|
+
blocked: boolean;
|
|
13348
|
+
archived: boolean;
|
|
13349
|
+
productId: string;
|
|
13350
|
+
lastBlockTransition: ({
|
|
13351
|
+
eventId: string;
|
|
13352
|
+
eventName: string;
|
|
13353
|
+
productId: string;
|
|
13354
|
+
occurredAt: string;
|
|
13355
|
+
recordedAt: string;
|
|
13356
|
+
receiptCount: number;
|
|
13357
|
+
organizationId: string;
|
|
13358
|
+
cascadedFromOrg: boolean;
|
|
13359
|
+
} | null);
|
|
13360
|
+
lastArchiveTransition: ({
|
|
13361
|
+
eventId: string;
|
|
13362
|
+
eventName: string;
|
|
13363
|
+
productId: string;
|
|
13364
|
+
occurredAt: string;
|
|
13365
|
+
recordedAt: string;
|
|
13366
|
+
receiptCount: number;
|
|
13367
|
+
organizationId: string;
|
|
13368
|
+
cascadedFromOrg: boolean;
|
|
13369
|
+
} | null);
|
|
13370
|
+
}
|
|
13371
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
13372
|
+
}
|
|
13373
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
13374
|
+
eventId: string;
|
|
13375
|
+
eventName: string;
|
|
13376
|
+
productId: string;
|
|
13377
|
+
occurredAt: string;
|
|
13378
|
+
recordedAt: string;
|
|
13379
|
+
receiptCount: number;
|
|
13380
|
+
organizationId: string;
|
|
13381
|
+
cascadedFromOrg: boolean;
|
|
13382
|
+
}[];
|
|
13383
|
+
interface PlaygroundWebhookGetLastInput {
|
|
13384
|
+
}
|
|
13385
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
13386
|
+
payload?: unknown;
|
|
13387
|
+
event_id: string;
|
|
13388
|
+
provider: string;
|
|
13389
|
+
verified: boolean;
|
|
13390
|
+
product_id: string;
|
|
13391
|
+
occurred_at: string;
|
|
13392
|
+
connector_id: string;
|
|
13393
|
+
delivery_count: number;
|
|
13394
|
+
} | {
|
|
13395
|
+
found: false;
|
|
13396
|
+
});
|
|
13397
|
+
interface RealtimeApikeyCreateInput {
|
|
13398
|
+
/**
|
|
13399
|
+
* Human-readable label for the key, e.g. "production backend"
|
|
13400
|
+
*/
|
|
13401
|
+
name: string;
|
|
13402
|
+
}
|
|
13403
|
+
interface RealtimeApikeyCreateOutput {
|
|
13404
|
+
/**
|
|
13405
|
+
* The full rtk_ secret. Shown once — it cannot be retrieved again.
|
|
13406
|
+
*/
|
|
13407
|
+
key: string;
|
|
13408
|
+
apiKey: {
|
|
13409
|
+
id: string;
|
|
13410
|
+
name: string;
|
|
13411
|
+
prefix: string;
|
|
13412
|
+
createdAt: string;
|
|
13413
|
+
revokedAt: (string | null);
|
|
13414
|
+
};
|
|
13415
|
+
}
|
|
13416
|
+
interface RealtimeApikeyListInput {
|
|
13417
|
+
}
|
|
13418
|
+
interface RealtimeApikeyListOutput {
|
|
13419
|
+
keys: {
|
|
13420
|
+
id: string;
|
|
13421
|
+
name: string;
|
|
13422
|
+
prefix: string;
|
|
13423
|
+
createdAt: string;
|
|
13424
|
+
revokedAt: (string | null);
|
|
13425
|
+
}[];
|
|
13426
|
+
}
|
|
13427
|
+
interface RealtimeApikeyRevokeInput {
|
|
13428
|
+
/**
|
|
13429
|
+
* Api key id to revoke
|
|
13430
|
+
*/
|
|
13431
|
+
id: string;
|
|
13432
|
+
}
|
|
13433
|
+
interface RealtimeApikeyRevokeOutput {
|
|
13434
|
+
id: string;
|
|
13435
|
+
revokedAt: string;
|
|
13436
|
+
}
|
|
13240
13437
|
interface RealtimeArchiveExportInput {
|
|
13241
13438
|
/**
|
|
13242
13439
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -15288,9 +15485,6 @@ interface GeneratedClient {
|
|
|
15288
15485
|
restore: {
|
|
15289
15486
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
15290
15487
|
};
|
|
15291
|
-
usage: {
|
|
15292
|
-
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
15293
|
-
};
|
|
15294
15488
|
};
|
|
15295
15489
|
consent: {
|
|
15296
15490
|
'config-cookie-domain': {
|
|
@@ -15470,6 +15664,7 @@ interface GeneratedClient {
|
|
|
15470
15664
|
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
15471
15665
|
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
15472
15666
|
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
15667
|
+
wake(input: DeploymentServiceWakeInput): Promise<DeploymentServiceWakeOutput>;
|
|
15473
15668
|
};
|
|
15474
15669
|
ssh: {
|
|
15475
15670
|
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
@@ -15690,7 +15885,40 @@ interface GeneratedClient {
|
|
|
15690
15885
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
15691
15886
|
};
|
|
15692
15887
|
};
|
|
15888
|
+
playground: {
|
|
15889
|
+
analytics: {
|
|
15890
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
15891
|
+
};
|
|
15892
|
+
billing: {
|
|
15893
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
15894
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
15895
|
+
};
|
|
15896
|
+
clickup: {
|
|
15897
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
15898
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
15899
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
15900
|
+
};
|
|
15901
|
+
gdrive: {
|
|
15902
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
15903
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
15904
|
+
};
|
|
15905
|
+
googleads: {
|
|
15906
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
15907
|
+
};
|
|
15908
|
+
lifecycle: {
|
|
15909
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
15910
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
15911
|
+
};
|
|
15912
|
+
webhook: {
|
|
15913
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
15914
|
+
};
|
|
15915
|
+
};
|
|
15693
15916
|
realtime: {
|
|
15917
|
+
apikey: {
|
|
15918
|
+
create(input: RealtimeApikeyCreateInput): Promise<RealtimeApikeyCreateOutput>;
|
|
15919
|
+
list(input: RealtimeApikeyListInput): Promise<RealtimeApikeyListOutput>;
|
|
15920
|
+
revoke(input: RealtimeApikeyRevokeInput): Promise<RealtimeApikeyRevokeOutput>;
|
|
15921
|
+
};
|
|
15694
15922
|
archive: {
|
|
15695
15923
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
15696
15924
|
get(input: RealtimeArchiveGetInput): Promise<RealtimeArchiveGetOutput>;
|
|
@@ -15843,4 +16071,4 @@ interface GeneratedClient {
|
|
|
15843
16071
|
};
|
|
15844
16072
|
}
|
|
15845
16073
|
|
|
15846
|
-
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, DeploymentVcsBranchListOutput 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, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentVariableListEnvInput as dI, DeploymentVariableListEnvOutput as dJ, DeploymentVariableListProductInput as dK, DeploymentVariableListProductOutput as dL, DeploymentVariableListInput as dM, DeploymentVariableListOutput as dN, DeploymentVariableSetEnvInput as dO, DeploymentVariableSetEnvOutput as dP, DeploymentVariableSetInput as dQ, DeploymentVariableSetOutput as dR, DeploymentVariableSetProductInput as dS, DeploymentVariableSetProductOutput as dT, DeploymentVariableUnsetEnvInput as dU, DeploymentVariableUnsetEnvOutput as dV, DeploymentVariableUnsetInput as dW, DeploymentVariableUnsetOutput as dX, DeploymentVariableUnsetProductInput as dY, DeploymentVariableUnsetProductOutput as dZ, DeploymentVcsBranchListInput as d_, 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, MailDomainDeleteOutput as e$, DeploymentVcsConnectionListInput as e0, DeploymentVcsConnectionListOutput as e1, DeploymentVcsRepoListInput as e2, DeploymentVcsRepoListOutput as e3, DeploymentVolumeCreateInput as e4, DeploymentVolumeCreateOutput as e5, DeploymentVolumeDeleteInput as e6, DeploymentVolumeDeleteOutput as e7, DeploymentVolumeDetachInput as e8, DeploymentVolumeDetachOutput as e9, MailBroadcastDeleteInput as eA, MailBroadcastDeleteOutput as eB, MailBroadcastGetInput as eC, MailBroadcastGetOutput as eD, MailBroadcastListInput as eE, MailBroadcastListOutput as eF, MailBroadcastQueueInput as eG, MailBroadcastQueueOutput as eH, MailBroadcastStatsInput as eI, MailBroadcastStatsOutput as eJ, MailBroadcastUpdateInput as eK, MailBroadcastUpdateOutput as eL, MailContactCreateInput as eM, MailContactCreateOutput as eN, MailContactDeleteInput as eO, MailContactDeleteOutput as eP, MailContactGetInput as eQ, MailContactGetOutput as eR, MailContactListInput as eS, MailContactListOutput as eT, MailContactUpdateInput as eU, MailContactUpdateOutput as eV, MailDomainAllowedListInput as eW, MailDomainAllowedListOutput as eX, MailDomainCreateInput as eY, MailDomainCreateOutput as eZ, MailDomainDeleteInput as e_, DeploymentVolumeGetInput as ea, DeploymentVolumeGetOutput as eb, DeploymentVolumeListInput as ec, DeploymentVolumeListOutput as ed, DeploymentVolumeResizeInput as ee, DeploymentVolumeResizeOutput as ef, MailApikeyCreateInput as eg, MailApikeyCreateOutput as eh, MailApikeyDeleteInput as ei, MailApikeyDeleteOutput as ej, MailApikeyListInput as ek, MailApikeyListOutput as el, MailAudienceCreateInput as em, MailAudienceCreateOutput as en, MailAudienceDeleteInput as eo, MailAudienceDeleteOutput as ep, MailAudienceGetInput as eq, MailAudienceGetOutput as er, MailAudienceListInput as es, MailAudienceListOutput as et, MailAudienceUpdateInput as eu, MailAudienceUpdateOutput as ev, MailBroadcastCancelInput as ew, MailBroadcastCancelOutput as ex, MailBroadcastCreateInput as ey, MailBroadcastCreateOutput as ez, BrainBackupStatusOutput as f, OrganizationCloudflareInstallOutput as f$, MailDomainGetInput as f0, MailDomainGetOutput as f1, MailDomainListInput as f2, MailDomainListOutput as f3, MailDomainUpdateInput as f4, MailDomainUpdateOutput as f5, MailDomainVerifyInput as f6, MailDomainVerifyOutput as f7, MailEmailCancelInput as f8, MailEmailCancelOutput as f9, MailTemplatePublishOutput as fA, MailTemplateUpdateInput as fB, MailTemplateUpdateOutput as fC, MailUsageGetInput as fD, MailUsageGetOutput as fE, MailWebhookCreateInput as fF, MailWebhookCreateOutput as fG, MailWebhookDeleteInput as fH, MailWebhookDeleteOutput as fI, MailWebhookDeliveriesListInput as fJ, MailWebhookDeliveriesListOutput as fK, MailWebhookGetInput as fL, MailWebhookGetOutput as fM, MailWebhookListInput as fN, MailWebhookListOutput as fO, MailWebhookUpdateInput as fP, MailWebhookUpdateOutput as fQ, MailEmailGetOutput as fR, OrganizationAuthMeInput as fS, OrganizationAuthMeOutput as fT, OrganizationBindingsListInput as fU, OrganizationBindingsListOutput as fV, OrganizationClickupInstallInput as fW, OrganizationClickupInstallOutput as fX, OrganizationClickupListInstallationsInput as fY, OrganizationClickupListInstallationsOutput as fZ, OrganizationCloudflareInstallInput as f_, MailEmailGetInput as fa, MailEmailSendBatchInput as fb, MailEmailSendBatchOutput as fc, MailEmailSendInput as fd, MailEmailSendOutput as fe, MailEmailUpdateInput as ff, MailEmailUpdateOutput as fg, MailReputationGetInput as fh, MailReputationGetOutput as fi, MailStatsGetInput as fj, MailStatsGetOutput as fk, MailSuppressionAddInput as fl, MailSuppressionAddOutput as fm, MailSuppressionListInput as fn, MailSuppressionListOutput as fo, MailSuppressionRemoveInput as fp, MailSuppressionRemoveOutput as fq, MailTemplateCreateInput as fr, MailTemplateCreateOutput as fs, MailTemplateDeleteInput as ft, MailTemplateDeleteOutput as fu, MailTemplateGetInput as fv, MailTemplateGetOutput as fw, MailTemplateListInput as fx, MailTemplateListOutput as fy, MailTemplatePublishInput as fz, BrainBackupsListInput as g, OrganizationMemberListOutput as g$, OrganizationConnectorsApproveRequestInput as g0, OrganizationConnectorsApproveRequestOutput as g1, OrganizationConnectorsAttachInput as g2, OrganizationConnectorsAttachOutput as g3, OrganizationConnectorsDeleteInput as g4, OrganizationConnectorsDeleteOutput as g5, OrganizationConnectorsDenyRequestInput as g6, OrganizationConnectorsDenyRequestOutput as g7, OrganizationConnectorsDetachInput as g8, OrganizationConnectorsDetachOutput as g9, OrganizationExtensionsListInstalledInput as gA, OrganizationExtensionsListInstalledOutput as gB, OrganizationExtensionsListInput as gC, OrganizationExtensionsListOutput as gD, OrganizationExtensionsUninstallInput as gE, OrganizationExtensionsUninstallOutput as gF, OrganizationFeedbackSubmitInput as gG, OrganizationFeedbackSubmitOutput as gH, OrganizationGdriveInstallInput as gI, OrganizationGdriveInstallOutput as gJ, OrganizationGithubInstallInput as gK, OrganizationGithubInstallOutput as gL, OrganizationGithubListInstallationsInput as gM, OrganizationGithubListInstallationsOutput as gN, OrganizationGoogleadsInstallInput as gO, OrganizationGoogleadsInstallOutput as gP, OrganizationListInput as gQ, OrganizationListOutput as gR, OrganizationMemberAcceptInviteInput as gS, OrganizationMemberAcceptInviteOutput as gT, OrganizationMemberInviteInput as gU, OrganizationMemberInviteOutput as gV, OrganizationMemberListInvitationsInput as gW, OrganizationMemberListInvitationsOutput as gX, OrganizationMemberListProductAccessInput as gY, OrganizationMemberListProductAccessOutput as gZ, OrganizationMemberListInput as g_, OrganizationConnectorsListAttachmentsInput as ga, OrganizationConnectorsListAttachmentsOutput as gb, OrganizationConnectorsListAvailableInput as gc, OrganizationConnectorsListAvailableOutput as gd, OrganizationConnectorsListOrgInput as ge, OrganizationConnectorsListOrgOutput as gf, OrganizationConnectorsListInput as gg, OrganizationConnectorsListOutput as gh, OrganizationConnectorsListRequestsInput as gi, OrganizationConnectorsListRequestsOutput as gj, OrganizationConnectorsRemoveInput as gk, OrganizationConnectorsRemoveOutput as gl, OrganizationConnectorsRequestInput as gm, OrganizationConnectorsRequestOutput as gn, OrganizationCreateInput as go, OrganizationCreateOutput as gp, OrganizationDomainsAddInput as gq, OrganizationDomainsAddOutput as gr, OrganizationDomainsGetInput as gs, OrganizationDomainsGetOutput as gt, OrganizationDomainsListInput as gu, OrganizationDomainsListOutput as gv, OrganizationDomainsRemoveInput as gw, OrganizationDomainsRemoveOutput as gx, OrganizationExtensionsInstallInput as gy, OrganizationExtensionsInstallOutput as gz, BrainBackupsListOutput as h, RealtimeNamespaceDeleteOutput as h$, OrganizationMemberRemoveInput as h0, OrganizationMemberRemoveOutput as h1, OrganizationMemberRevokeInvitationInput as h2, OrganizationMemberRevokeInvitationOutput as h3, OrganizationMemberSetRoleInput as h4, OrganizationMemberSetRoleOutput as h5, OrganizationMemberShareProductInput as h6, OrganizationMemberShareProductOutput as h7, OrganizationMemberUnshareProductInput as h8, OrganizationMemberUnshareProductOutput as h9, OrganizationRolesGetInput as hA, OrganizationRolesGetOutput as hB, OrganizationRolesListInput as hC, OrganizationRolesListOutput as hD, OrganizationRolesUpdateInput as hE, OrganizationRolesUpdateOutput as hF, OrganizationSelectInput as hG, OrganizationSelectOutput as hH, RealtimeArchiveExportInput as hI, RealtimeArchiveExportOutput as hJ, RealtimeArchiveExportStatusInput as hK, RealtimeArchiveExportStatusOutput as hL, RealtimeArchiveGetInput as hM, RealtimeArchiveGetOutput as hN, RealtimeGrantCreateInput as hO, RealtimeGrantCreateOutput as hP, RealtimeGrantListInput as hQ, RealtimeGrantListOutput as hR, RealtimeGrantRevokeInput as hS, RealtimeGrantRevokeOutput as hT, RealtimeHistoryGetInput as hU, RealtimeHistoryGetOutput as hV, RealtimeMessagesPublishInput as hW, RealtimeMessagesPublishOutput as hX, RealtimeNamespaceCreateInput as hY, RealtimeNamespaceCreateOutput as hZ, RealtimeNamespaceDeleteInput as h_, OrganizationMembersAssignRoleInput as ha, OrganizationMembersAssignRoleOutput as hb, OrganizationPermissionCatalogInput as hc, OrganizationPermissionCatalogOutput as hd, OrganizationProductAcceptInvitationInput as he, OrganizationProductAcceptInvitationOutput as hf, OrganizationProductCreateInput as hg, OrganizationProductCreateOutput as hh, OrganizationProductInviteInput as hi, OrganizationProductInviteOutput as hj, OrganizationProductListInvitationsInput as hk, OrganizationProductListInvitationsOutput as hl, OrganizationProductListMembersInput as hm, OrganizationProductListMembersOutput as hn, OrganizationProductListInput as ho, OrganizationProductListOutput as hp, OrganizationProductListRolesInput as hq, OrganizationProductListRolesOutput as hr, OrganizationProductRevokeInvitationInput as hs, OrganizationProductRevokeInvitationOutput as ht, OrganizationProductSelectInput as hu, OrganizationProductSelectOutput as hv, OrganizationRolesCreateInput as hw, OrganizationRolesCreateOutput as hx, OrganizationRolesDeleteInput as hy, OrganizationRolesDeleteOutput as hz, BrainClickupChannelsListInput as i, TrackingGoogleadsConversionActionsOutput as i$, RealtimeNamespaceGetInput as i0, RealtimeNamespaceGetOutput as i1, RealtimeNamespaceListInput as i2, RealtimeNamespaceListOutput as i3, RealtimeNamespaceUpdateInput as i4, RealtimeNamespaceUpdateOutput as i5, RealtimePresenceEnterInput as i6, RealtimePresenceEnterOutput as i7, RealtimePresenceGetInput as i8, RealtimePresenceGetOutput as i9, TrackingApiKeysCreateInput as iA, TrackingApiKeysCreateOutput as iB, TrackingApiKeysListInput as iC, TrackingApiKeysListOutput as iD, TrackingApiKeysRevokeInput as iE, TrackingApiKeysRevokeOutput as iF, TrackingApiKeysRotateInput as iG, TrackingApiKeysRotateOutput as iH, TrackingDomainsCreateInput as iI, TrackingDomainsCreateOutput as iJ, TrackingDomainsDeleteInput as iK, TrackingDomainsDeleteOutput as iL, TrackingDomainsGetInput as iM, TrackingDomainsGetOutput as iN, TrackingDomainsListInput as iO, TrackingDomainsListOutput as iP, TrackingDomainsVerifyInput as iQ, TrackingDomainsVerifyOutput as iR, TrackingEventNamesArchiveInput as iS, TrackingEventNamesArchiveOutput as iT, TrackingEventNamesListInput as iU, TrackingEventNamesListOutput as iV, TrackingEventNamesUnarchiveInput as iW, TrackingEventNamesUnarchiveOutput as iX, TrackingGoogleadsConnectionStatusInput as iY, TrackingGoogleadsConnectionStatusOutput as iZ, TrackingGoogleadsConversionActionsInput as i_, RealtimePresenceLeaveInput as ia, RealtimePresenceLeaveOutput as ib, RealtimePresenceStatsInput as ic, RealtimePresenceStatsOutput as id, RealtimePresenceUpdateInput as ie, RealtimePresenceUpdateOutput as ig, RealtimeStatusGetInput as ih, RealtimeStatusGetOutput as ii, RealtimeTokensCreateInput as ij, RealtimeTokensCreateOutput as ik, RealtimeWebhookCreateInput as il, RealtimeWebhookCreateOutput as im, RealtimeWebhookDeleteInput as io, RealtimeWebhookDeleteOutput as ip, RealtimeWebhookDeliveriesListInput as iq, RealtimeWebhookDeliveriesListOutput as ir, RealtimeWebhookGetInput as is, RealtimeWebhookGetOutput as it, RealtimeWebhookListInput as iu, RealtimeWebhookListOutput as iv, RealtimeWebhookSecretRotateInput as iw, RealtimeWebhookSecretRotateOutput as ix, RealtimeWebhookUpdateInput as iy, RealtimeWebhookUpdateOutput as iz, BrainClickupChannelsListOutput as j, WaitlistSignupsListOutput as j$, TrackingGoogleadsFeedbackConfigGetInput as j0, TrackingGoogleadsFeedbackConfigGetOutput as j1, TrackingGoogleadsFeedbackConfigSetInput as j2, TrackingGoogleadsFeedbackConfigSetOutput as j3, TrackingGoogleadsFeedbackRunInput as j4, TrackingGoogleadsFeedbackRunOutput as j5, TrackingGoogleadsFeedbackStatusInput as j6, TrackingGoogleadsFeedbackStatusOutput as j7, TrackingGoogleadsFeedbackUploadsInput as j8, TrackingGoogleadsFeedbackUploadsOutput as j9, TrackingProfilesExportInput as jA, TrackingProfilesExportOutput as jB, TrackingProfilesGetInput as jC, TrackingProfilesGetOutput as jD, TrackingProfilesListInput as jE, TrackingProfilesListOutput as jF, TrackingReportsAttributedJourneyInput as jG, TrackingReportsAttributedJourneyOutput as jH, TrackingReportsRevenueBySourceInput as jI, TrackingReportsRevenueBySourceOutput as jJ, TrackingReportsSourcePeopleInput as jK, TrackingReportsSourcePeopleOutput as jL, TrackingSnippetsGetInput as jM, TrackingSnippetsGetOutput as jN, WaitlistConfigGetInput as jO, WaitlistConfigGetOutput as jP, WaitlistConfigUpsertInput as jQ, WaitlistConfigUpsertOutput as jR, WaitlistEmbedGetInput as jS, WaitlistEmbedGetOutput as jT, WaitlistInvitesSendInput as jU, WaitlistInvitesSendOutput as jV, WaitlistSignupsEraseInput as jW, WaitlistSignupsEraseOutput as jX, WaitlistSignupsFunnelInput as jY, WaitlistSignupsFunnelOutput as jZ, WaitlistSignupsListInput as j_, TrackingGoogleadsRoasReportInput as ja, TrackingGoogleadsRoasReportOutput as jb, TrackingGoogleadsSyncNowInput as jc, TrackingGoogleadsSyncNowOutput as jd, TrackingGoogleadsTrackingHealthInput as je, TrackingGoogleadsTrackingHealthOutput as jf, TrackingGoogleadsUsVsPlatformInput as jg, TrackingGoogleadsUsVsPlatformOutput as jh, TrackingIdentityHealthInput as ji, TrackingIdentityHealthOutput as jj, TrackingInstallDomainsCreateInput as jk, TrackingInstallDomainsCreateOutput as jl, TrackingInstallDomainsDeleteInput as jm, TrackingInstallDomainsDeleteOutput as jn, TrackingInstallDomainsListInput as jo, TrackingInstallDomainsListOutput as jp, TrackingLinkDomainsCreateInput as jq, TrackingLinkDomainsCreateOutput as jr, TrackingLinkDomainsDeleteInput as js, TrackingLinkDomainsDeleteOutput as jt, TrackingLinkDomainsListInput as ju, TrackingLinkDomainsListOutput as jv, TrackingLiveEventsListInput as jw, TrackingLiveEventsListOutput as jx, TrackingProfilesDeleteInput as jy, TrackingProfilesDeleteOutput as jz, BrainClickupConnectionsListInput as k, BrainClickupConnectionsListOutput as l, 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 };
|
|
16074
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVcsBranchListOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentVariableListEnvInput as dI, DeploymentVariableListEnvOutput as dJ, DeploymentVariableListProductInput as dK, DeploymentVariableListProductOutput as dL, DeploymentVariableListInput as dM, DeploymentVariableListOutput as dN, DeploymentVariableSetEnvInput as dO, DeploymentVariableSetEnvOutput as dP, DeploymentVariableSetInput as dQ, DeploymentVariableSetOutput as dR, DeploymentVariableSetProductInput as dS, DeploymentVariableSetProductOutput as dT, DeploymentVariableUnsetEnvInput as dU, DeploymentVariableUnsetEnvOutput as dV, DeploymentVariableUnsetInput as dW, DeploymentVariableUnsetOutput as dX, DeploymentVariableUnsetProductInput as dY, DeploymentVariableUnsetProductOutput as dZ, DeploymentVcsBranchListInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainDeleteOutput as e$, DeploymentVcsConnectionListInput as e0, DeploymentVcsConnectionListOutput as e1, DeploymentVcsRepoListInput as e2, DeploymentVcsRepoListOutput as e3, DeploymentVolumeCreateInput as e4, DeploymentVolumeCreateOutput as e5, DeploymentVolumeDeleteInput as e6, DeploymentVolumeDeleteOutput as e7, DeploymentVolumeDetachInput as e8, DeploymentVolumeDetachOutput as e9, MailBroadcastDeleteInput as eA, MailBroadcastDeleteOutput as eB, MailBroadcastGetInput as eC, MailBroadcastGetOutput as eD, MailBroadcastListInput as eE, MailBroadcastListOutput as eF, MailBroadcastQueueInput as eG, MailBroadcastQueueOutput as eH, MailBroadcastStatsInput as eI, MailBroadcastStatsOutput as eJ, MailBroadcastUpdateInput as eK, MailBroadcastUpdateOutput as eL, MailContactCreateInput as eM, MailContactCreateOutput as eN, MailContactDeleteInput as eO, MailContactDeleteOutput as eP, MailContactGetInput as eQ, MailContactGetOutput as eR, MailContactListInput as eS, MailContactListOutput as eT, MailContactUpdateInput as eU, MailContactUpdateOutput as eV, MailDomainAllowedListInput as eW, MailDomainAllowedListOutput as eX, MailDomainCreateInput as eY, MailDomainCreateOutput as eZ, MailDomainDeleteInput as e_, DeploymentVolumeGetInput as ea, DeploymentVolumeGetOutput as eb, DeploymentVolumeListInput as ec, DeploymentVolumeListOutput as ed, DeploymentVolumeResizeInput as ee, DeploymentVolumeResizeOutput as ef, MailApikeyCreateInput as eg, MailApikeyCreateOutput as eh, MailApikeyDeleteInput as ei, MailApikeyDeleteOutput as ej, MailApikeyListInput as ek, MailApikeyListOutput as el, MailAudienceCreateInput as em, MailAudienceCreateOutput as en, MailAudienceDeleteInput as eo, MailAudienceDeleteOutput as ep, MailAudienceGetInput as eq, MailAudienceGetOutput as er, MailAudienceListInput as es, MailAudienceListOutput as et, MailAudienceUpdateInput as eu, MailAudienceUpdateOutput as ev, MailBroadcastCancelInput as ew, MailBroadcastCancelOutput as ex, MailBroadcastCreateInput as ey, MailBroadcastCreateOutput as ez, BrainBackupStatusOutput as f, OrganizationCloudflareInstallOutput as f$, MailDomainGetInput as f0, MailDomainGetOutput as f1, MailDomainListInput as f2, MailDomainListOutput as f3, MailDomainUpdateInput as f4, MailDomainUpdateOutput as f5, MailDomainVerifyInput as f6, MailDomainVerifyOutput as f7, MailEmailCancelInput as f8, MailEmailCancelOutput as f9, MailTemplatePublishOutput as fA, MailTemplateUpdateInput as fB, MailTemplateUpdateOutput as fC, MailUsageGetInput as fD, MailUsageGetOutput as fE, MailWebhookCreateInput as fF, MailWebhookCreateOutput as fG, MailWebhookDeleteInput as fH, MailWebhookDeleteOutput as fI, MailWebhookDeliveriesListInput as fJ, MailWebhookDeliveriesListOutput as fK, MailWebhookGetInput as fL, MailWebhookGetOutput as fM, MailWebhookListInput as fN, MailWebhookListOutput as fO, MailWebhookUpdateInput as fP, MailWebhookUpdateOutput as fQ, MailEmailGetOutput as fR, OrganizationAuthMeInput as fS, OrganizationAuthMeOutput as fT, OrganizationBindingsListInput as fU, OrganizationBindingsListOutput as fV, OrganizationClickupInstallInput as fW, OrganizationClickupInstallOutput as fX, OrganizationClickupListInstallationsInput as fY, OrganizationClickupListInstallationsOutput as fZ, OrganizationCloudflareInstallInput as f_, MailEmailGetInput as fa, MailEmailSendBatchInput as fb, MailEmailSendBatchOutput as fc, MailEmailSendInput as fd, MailEmailSendOutput as fe, MailEmailUpdateInput as ff, MailEmailUpdateOutput as fg, MailReputationGetInput as fh, MailReputationGetOutput as fi, MailStatsGetInput as fj, MailStatsGetOutput as fk, MailSuppressionAddInput as fl, MailSuppressionAddOutput as fm, MailSuppressionListInput as fn, MailSuppressionListOutput as fo, MailSuppressionRemoveInput as fp, MailSuppressionRemoveOutput as fq, MailTemplateCreateInput as fr, MailTemplateCreateOutput as fs, MailTemplateDeleteInput as ft, MailTemplateDeleteOutput as fu, MailTemplateGetInput as fv, MailTemplateGetOutput as fw, MailTemplateListInput as fx, MailTemplateListOutput as fy, MailTemplatePublishInput as fz, BrainBackupsListInput as g, OrganizationMemberListOutput as g$, OrganizationConnectorsApproveRequestInput as g0, OrganizationConnectorsApproveRequestOutput as g1, OrganizationConnectorsAttachInput as g2, OrganizationConnectorsAttachOutput as g3, OrganizationConnectorsDeleteInput as g4, OrganizationConnectorsDeleteOutput as g5, OrganizationConnectorsDenyRequestInput as g6, OrganizationConnectorsDenyRequestOutput as g7, OrganizationConnectorsDetachInput as g8, OrganizationConnectorsDetachOutput as g9, OrganizationExtensionsListInstalledInput as gA, OrganizationExtensionsListInstalledOutput as gB, OrganizationExtensionsListInput as gC, OrganizationExtensionsListOutput as gD, OrganizationExtensionsUninstallInput as gE, OrganizationExtensionsUninstallOutput as gF, OrganizationFeedbackSubmitInput as gG, OrganizationFeedbackSubmitOutput as gH, OrganizationGdriveInstallInput as gI, OrganizationGdriveInstallOutput as gJ, OrganizationGithubInstallInput as gK, OrganizationGithubInstallOutput as gL, OrganizationGithubListInstallationsInput as gM, OrganizationGithubListInstallationsOutput as gN, OrganizationGoogleadsInstallInput as gO, OrganizationGoogleadsInstallOutput as gP, OrganizationListInput as gQ, OrganizationListOutput as gR, OrganizationMemberAcceptInviteInput as gS, OrganizationMemberAcceptInviteOutput as gT, OrganizationMemberInviteInput as gU, OrganizationMemberInviteOutput as gV, OrganizationMemberListInvitationsInput as gW, OrganizationMemberListInvitationsOutput as gX, OrganizationMemberListProductAccessInput as gY, OrganizationMemberListProductAccessOutput as gZ, OrganizationMemberListInput as g_, OrganizationConnectorsListAttachmentsInput as ga, OrganizationConnectorsListAttachmentsOutput as gb, OrganizationConnectorsListAvailableInput as gc, OrganizationConnectorsListAvailableOutput as gd, OrganizationConnectorsListOrgInput as ge, OrganizationConnectorsListOrgOutput as gf, OrganizationConnectorsListInput as gg, OrganizationConnectorsListOutput as gh, OrganizationConnectorsListRequestsInput as gi, OrganizationConnectorsListRequestsOutput as gj, OrganizationConnectorsRemoveInput as gk, OrganizationConnectorsRemoveOutput as gl, OrganizationConnectorsRequestInput as gm, OrganizationConnectorsRequestOutput as gn, OrganizationCreateInput as go, OrganizationCreateOutput as gp, OrganizationDomainsAddInput as gq, OrganizationDomainsAddOutput as gr, OrganizationDomainsGetInput as gs, OrganizationDomainsGetOutput as gt, OrganizationDomainsListInput as gu, OrganizationDomainsListOutput as gv, OrganizationDomainsRemoveInput as gw, OrganizationDomainsRemoveOutput as gx, OrganizationExtensionsInstallInput as gy, OrganizationExtensionsInstallOutput as gz, BrainBackupsListOutput as h, PlaygroundLifecycleGetStateOutput as h$, OrganizationMemberRemoveInput as h0, OrganizationMemberRemoveOutput as h1, OrganizationMemberRevokeInvitationInput as h2, OrganizationMemberRevokeInvitationOutput as h3, OrganizationMemberSetRoleInput as h4, OrganizationMemberSetRoleOutput as h5, OrganizationMemberShareProductInput as h6, OrganizationMemberShareProductOutput as h7, OrganizationMemberUnshareProductInput as h8, OrganizationMemberUnshareProductOutput as h9, OrganizationRolesGetInput as hA, OrganizationRolesGetOutput as hB, OrganizationRolesListInput as hC, OrganizationRolesListOutput as hD, OrganizationRolesUpdateInput as hE, OrganizationRolesUpdateOutput as hF, OrganizationSelectInput as hG, OrganizationSelectOutput as hH, PlaygroundAnalyticsOverviewInput as hI, PlaygroundAnalyticsOverviewOutput as hJ, PlaygroundBillingEntitlementsInput as hK, PlaygroundBillingEntitlementsOutput as hL, PlaygroundBillingRecordUsageInput as hM, PlaygroundBillingRecordUsageOutput as hN, PlaygroundClickupCreateTaskInput as hO, PlaygroundClickupCreateTaskOutput as hP, PlaygroundClickupGetLastWebhookInput as hQ, PlaygroundClickupGetLastWebhookOutput as hR, PlaygroundClickupGetOverviewInput as hS, PlaygroundClickupGetOverviewOutput as hT, PlaygroundGdriveGetLastChangeInput as hU, PlaygroundGdriveGetLastChangeOutput as hV, PlaygroundGdriveReadFileInput as hW, PlaygroundGdriveReadFileOutput as hX, PlaygroundGoogleadsReadCustomerInput as hY, PlaygroundGoogleadsReadCustomerOutput as hZ, PlaygroundLifecycleGetStateInput as h_, OrganizationMembersAssignRoleInput as ha, OrganizationMembersAssignRoleOutput as hb, OrganizationPermissionCatalogInput as hc, OrganizationPermissionCatalogOutput as hd, OrganizationProductAcceptInvitationInput as he, OrganizationProductAcceptInvitationOutput as hf, OrganizationProductCreateInput as hg, OrganizationProductCreateOutput as hh, OrganizationProductInviteInput as hi, OrganizationProductInviteOutput as hj, OrganizationProductListInvitationsInput as hk, OrganizationProductListInvitationsOutput as hl, OrganizationProductListMembersInput as hm, OrganizationProductListMembersOutput as hn, OrganizationProductListInput as ho, OrganizationProductListOutput as hp, OrganizationProductListRolesInput as hq, OrganizationProductListRolesOutput as hr, OrganizationProductRevokeInvitationInput as hs, OrganizationProductRevokeInvitationOutput as ht, OrganizationProductSelectInput as hu, OrganizationProductSelectOutput as hv, OrganizationRolesCreateInput as hw, OrganizationRolesCreateOutput as hx, OrganizationRolesDeleteInput as hy, OrganizationRolesDeleteOutput as hz, BrainClickupChannelsListInput as i, RealtimeWebhookSecretRotateOutput as i$, PlaygroundLifecycleListEventsInput as i0, PlaygroundLifecycleListEventsOutput as i1, PlaygroundWebhookGetLastInput as i2, PlaygroundWebhookGetLastOutput as i3, RealtimeApikeyCreateInput as i4, RealtimeApikeyCreateOutput as i5, RealtimeApikeyListInput as i6, RealtimeApikeyListOutput as i7, RealtimeApikeyRevokeInput as i8, RealtimeApikeyRevokeOutput as i9, RealtimeNamespaceUpdateInput as iA, RealtimeNamespaceUpdateOutput as iB, RealtimePresenceEnterInput as iC, RealtimePresenceEnterOutput as iD, RealtimePresenceGetInput as iE, RealtimePresenceGetOutput as iF, RealtimePresenceLeaveInput as iG, RealtimePresenceLeaveOutput as iH, RealtimePresenceStatsInput as iI, RealtimePresenceStatsOutput as iJ, RealtimePresenceUpdateInput as iK, RealtimePresenceUpdateOutput as iL, RealtimeStatusGetInput as iM, RealtimeStatusGetOutput as iN, RealtimeTokensCreateInput as iO, RealtimeTokensCreateOutput as iP, RealtimeWebhookCreateInput as iQ, RealtimeWebhookCreateOutput as iR, RealtimeWebhookDeleteInput as iS, RealtimeWebhookDeleteOutput as iT, RealtimeWebhookDeliveriesListInput as iU, RealtimeWebhookDeliveriesListOutput as iV, RealtimeWebhookGetInput as iW, RealtimeWebhookGetOutput as iX, RealtimeWebhookListInput as iY, RealtimeWebhookListOutput as iZ, RealtimeWebhookSecretRotateInput as i_, RealtimeArchiveExportInput as ia, RealtimeArchiveExportOutput as ib, RealtimeArchiveExportStatusInput as ic, RealtimeArchiveExportStatusOutput as id, RealtimeArchiveGetInput as ie, RealtimeArchiveGetOutput as ig, RealtimeGrantCreateInput as ih, RealtimeGrantCreateOutput as ii, RealtimeGrantListInput as ij, RealtimeGrantListOutput as ik, RealtimeGrantRevokeInput as il, RealtimeGrantRevokeOutput as im, RealtimeHistoryGetInput as io, RealtimeHistoryGetOutput as ip, RealtimeMessagesPublishInput as iq, RealtimeMessagesPublishOutput as ir, RealtimeNamespaceCreateInput as is, RealtimeNamespaceCreateOutput as it, RealtimeNamespaceDeleteInput as iu, RealtimeNamespaceDeleteOutput as iv, RealtimeNamespaceGetInput as iw, RealtimeNamespaceGetOutput as ix, RealtimeNamespaceListInput as iy, RealtimeNamespaceListOutput as iz, BrainClickupChannelsListOutput as j, TrackingLiveEventsListOutput as j$, RealtimeWebhookUpdateInput as j0, RealtimeWebhookUpdateOutput as j1, TrackingApiKeysCreateInput as j2, TrackingApiKeysCreateOutput as j3, TrackingApiKeysListInput as j4, TrackingApiKeysListOutput as j5, TrackingApiKeysRevokeInput as j6, TrackingApiKeysRevokeOutput as j7, TrackingApiKeysRotateInput as j8, TrackingApiKeysRotateOutput 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, 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, TrackingReportsRevenueBySourceInput as ka, TrackingReportsRevenueBySourceOutput as kb, TrackingReportsSourcePeopleInput as kc, TrackingReportsSourcePeopleOutput as kd, TrackingSnippetsGetInput as ke, TrackingSnippetsGetOutput as kf, WaitlistConfigGetInput as kg, WaitlistConfigGetOutput as kh, WaitlistConfigUpsertInput as ki, WaitlistConfigUpsertOutput as kj, WaitlistEmbedGetInput as kk, WaitlistEmbedGetOutput as kl, WaitlistInvitesSendInput as km, WaitlistInvitesSendOutput as kn, WaitlistSignupsEraseInput as ko, WaitlistSignupsEraseOutput as kp, WaitlistSignupsFunnelInput as kq, WaitlistSignupsFunnelOutput as kr, WaitlistSignupsListInput as ks, WaitlistSignupsListOutput as kt, BrainClickupConnectionsListOutput as l, 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 };
|