@lessly/sdk-app 12.1.0 → 14.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.d.cts +1 -1
- package/dist/brain/index.d.ts +1 -1
- package/dist/{client.gen-CUGiXN_3.d.cts → client.gen-CcgqVajm.d.cts} +286 -10
- package/dist/{client.gen-CUGiXN_3.d.ts → client.gen-CcgqVajm.d.ts} +286 -10
- 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 +123 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +123 -0
- 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/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 +123 -0
- package/src/gen/client.gen.ts +55 -0
- 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/types.gen.ts +290 -9
|
@@ -1506,6 +1506,7 @@ interface DeploymentCanvasGetOutput {
|
|
|
1506
1506
|
command?: string;
|
|
1507
1507
|
outputDir?: string;
|
|
1508
1508
|
};
|
|
1509
|
+
markdown?: boolean;
|
|
1509
1510
|
});
|
|
1510
1511
|
replicas: number;
|
|
1511
1512
|
createdAt: string;
|
|
@@ -1517,9 +1518,16 @@ interface DeploymentCanvasGetOutput {
|
|
|
1517
1518
|
};
|
|
1518
1519
|
};
|
|
1519
1520
|
updatedAt: string;
|
|
1521
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
1522
|
+
idleMinutes: number;
|
|
1523
|
+
scaleToZero: boolean;
|
|
1520
1524
|
containerPort: number;
|
|
1521
1525
|
environmentId: string;
|
|
1522
1526
|
lastReplicasRunning: number;
|
|
1527
|
+
scaleToZeroEligibility?: {
|
|
1528
|
+
reasons: string[];
|
|
1529
|
+
eligible: boolean;
|
|
1530
|
+
};
|
|
1523
1531
|
}[];
|
|
1524
1532
|
environmentId: string;
|
|
1525
1533
|
}
|
|
@@ -1798,7 +1806,7 @@ interface DeploymentDeploymentCancelInput {
|
|
|
1798
1806
|
}
|
|
1799
1807
|
interface DeploymentDeploymentCancelOutput {
|
|
1800
1808
|
id: string;
|
|
1801
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1809
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1802
1810
|
builtAt: (string | null);
|
|
1803
1811
|
imageRef: (string | null);
|
|
1804
1812
|
commitSha: (string | null);
|
|
@@ -1824,7 +1832,7 @@ interface DeploymentDeploymentGetInput {
|
|
|
1824
1832
|
}
|
|
1825
1833
|
interface DeploymentDeploymentGetOutput {
|
|
1826
1834
|
id: string;
|
|
1827
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1835
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1828
1836
|
builtAt: (string | null);
|
|
1829
1837
|
imageRef: (string | null);
|
|
1830
1838
|
commitSha: (string | null);
|
|
@@ -1850,7 +1858,7 @@ interface DeploymentDeploymentListInput {
|
|
|
1850
1858
|
}
|
|
1851
1859
|
type DeploymentDeploymentListOutput = {
|
|
1852
1860
|
id: string;
|
|
1853
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
1861
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
1854
1862
|
builtAt: (string | null);
|
|
1855
1863
|
imageRef: (string | null);
|
|
1856
1864
|
commitSha: (string | null);
|
|
@@ -2387,7 +2395,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2387
2395
|
baseEnvironmentId: (string | null);
|
|
2388
2396
|
}
|
|
2389
2397
|
interface DeploymentEventsListByEnvironmentInput {
|
|
2390
|
-
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");
|
|
2391
2399
|
limit?: number;
|
|
2392
2400
|
since?: string;
|
|
2393
2401
|
until?: string;
|
|
@@ -2395,7 +2403,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2395
2403
|
}
|
|
2396
2404
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2397
2405
|
id: string;
|
|
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");
|
|
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");
|
|
2399
2407
|
payload: {
|
|
2400
2408
|
[k: string]: unknown;
|
|
2401
2409
|
};
|
|
@@ -2407,7 +2415,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2407
2415
|
environmentId: (string | null);
|
|
2408
2416
|
}[];
|
|
2409
2417
|
interface DeploymentEventsListByServiceInput {
|
|
2410
|
-
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");
|
|
2411
2419
|
limit?: number;
|
|
2412
2420
|
since?: string;
|
|
2413
2421
|
until?: string;
|
|
@@ -2416,7 +2424,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2416
2424
|
}
|
|
2417
2425
|
type DeploymentEventsListByServiceOutput = {
|
|
2418
2426
|
id: string;
|
|
2419
|
-
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");
|
|
2420
2428
|
payload: {
|
|
2421
2429
|
[k: string]: unknown;
|
|
2422
2430
|
};
|
|
@@ -2865,6 +2873,7 @@ interface DeploymentServiceCreateInput {
|
|
|
2865
2873
|
command?: string;
|
|
2866
2874
|
outputDir?: string;
|
|
2867
2875
|
};
|
|
2876
|
+
markdown?: boolean;
|
|
2868
2877
|
});
|
|
2869
2878
|
replicas?: number;
|
|
2870
2879
|
resources?: {
|
|
@@ -2918,6 +2927,7 @@ interface DeploymentServiceCreateOutput {
|
|
|
2918
2927
|
command?: string;
|
|
2919
2928
|
outputDir?: string;
|
|
2920
2929
|
};
|
|
2930
|
+
markdown?: boolean;
|
|
2921
2931
|
});
|
|
2922
2932
|
replicas: number;
|
|
2923
2933
|
createdAt: string;
|
|
@@ -2929,9 +2939,16 @@ interface DeploymentServiceCreateOutput {
|
|
|
2929
2939
|
};
|
|
2930
2940
|
};
|
|
2931
2941
|
updatedAt: string;
|
|
2942
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
2943
|
+
idleMinutes: number;
|
|
2944
|
+
scaleToZero: boolean;
|
|
2932
2945
|
containerPort: number;
|
|
2933
2946
|
environmentId: string;
|
|
2934
2947
|
lastReplicasRunning: number;
|
|
2948
|
+
scaleToZeroEligibility?: {
|
|
2949
|
+
reasons: string[];
|
|
2950
|
+
eligible: boolean;
|
|
2951
|
+
};
|
|
2935
2952
|
}
|
|
2936
2953
|
interface DeploymentServiceCreateOutputReadiness {
|
|
2937
2954
|
path: string;
|
|
@@ -3007,6 +3024,7 @@ interface DeploymentServiceGetOutput {
|
|
|
3007
3024
|
command?: string;
|
|
3008
3025
|
outputDir?: string;
|
|
3009
3026
|
};
|
|
3027
|
+
markdown?: boolean;
|
|
3010
3028
|
});
|
|
3011
3029
|
replicas: number;
|
|
3012
3030
|
createdAt: string;
|
|
@@ -3018,9 +3036,16 @@ interface DeploymentServiceGetOutput {
|
|
|
3018
3036
|
};
|
|
3019
3037
|
};
|
|
3020
3038
|
updatedAt: string;
|
|
3039
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3040
|
+
idleMinutes: number;
|
|
3041
|
+
scaleToZero: boolean;
|
|
3021
3042
|
containerPort: number;
|
|
3022
3043
|
environmentId: string;
|
|
3023
3044
|
lastReplicasRunning: number;
|
|
3045
|
+
scaleToZeroEligibility?: {
|
|
3046
|
+
reasons: string[];
|
|
3047
|
+
eligible: boolean;
|
|
3048
|
+
};
|
|
3024
3049
|
}
|
|
3025
3050
|
interface DeploymentServiceGetOutputReadiness {
|
|
3026
3051
|
path: string;
|
|
@@ -3067,6 +3092,7 @@ type DeploymentServiceListOutput = {
|
|
|
3067
3092
|
command?: string;
|
|
3068
3093
|
outputDir?: string;
|
|
3069
3094
|
};
|
|
3095
|
+
markdown?: boolean;
|
|
3070
3096
|
});
|
|
3071
3097
|
replicas: number;
|
|
3072
3098
|
createdAt: string;
|
|
@@ -3078,9 +3104,16 @@ type DeploymentServiceListOutput = {
|
|
|
3078
3104
|
};
|
|
3079
3105
|
};
|
|
3080
3106
|
updatedAt: string;
|
|
3107
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3108
|
+
idleMinutes: number;
|
|
3109
|
+
scaleToZero: boolean;
|
|
3081
3110
|
containerPort: number;
|
|
3082
3111
|
environmentId: string;
|
|
3083
3112
|
lastReplicasRunning: number;
|
|
3113
|
+
scaleToZeroEligibility?: {
|
|
3114
|
+
reasons: string[];
|
|
3115
|
+
eligible: boolean;
|
|
3116
|
+
};
|
|
3084
3117
|
}[];
|
|
3085
3118
|
interface DeploymentServiceListOutputReadiness {
|
|
3086
3119
|
path: string;
|
|
@@ -3097,13 +3130,14 @@ interface DeploymentServiceLogsInput {
|
|
|
3097
3130
|
}
|
|
3098
3131
|
interface DeploymentServiceLogsOutput {
|
|
3099
3132
|
lines: string[];
|
|
3133
|
+
sleepState?: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3100
3134
|
}
|
|
3101
3135
|
interface DeploymentServiceRedeployInput {
|
|
3102
3136
|
serviceId: string;
|
|
3103
3137
|
}
|
|
3104
3138
|
interface DeploymentServiceRedeployOutput {
|
|
3105
3139
|
id: string;
|
|
3106
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3140
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3107
3141
|
builtAt: (string | null);
|
|
3108
3142
|
imageRef: (string | null);
|
|
3109
3143
|
commitSha: (string | null);
|
|
@@ -3136,7 +3170,7 @@ interface DeploymentServiceRollbackInput {
|
|
|
3136
3170
|
}
|
|
3137
3171
|
interface DeploymentServiceRollbackOutput {
|
|
3138
3172
|
id: string;
|
|
3139
|
-
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed");
|
|
3173
|
+
status: ("Initializing" | "Building" | "Deploying" | "Active" | "Replaced" | "Crashed" | "Completed" | "Failed" | "Removed" | "Sleeping" | "Stopped" | "WakeFailed");
|
|
3140
3174
|
builtAt: (string | null);
|
|
3141
3175
|
imageRef: (string | null);
|
|
3142
3176
|
commitSha: (string | null);
|
|
@@ -3194,6 +3228,7 @@ interface DeploymentServiceScaleOutput {
|
|
|
3194
3228
|
command?: string;
|
|
3195
3229
|
outputDir?: string;
|
|
3196
3230
|
};
|
|
3231
|
+
markdown?: boolean;
|
|
3197
3232
|
});
|
|
3198
3233
|
replicas: number;
|
|
3199
3234
|
createdAt: string;
|
|
@@ -3205,9 +3240,16 @@ interface DeploymentServiceScaleOutput {
|
|
|
3205
3240
|
};
|
|
3206
3241
|
};
|
|
3207
3242
|
updatedAt: string;
|
|
3243
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3244
|
+
idleMinutes: number;
|
|
3245
|
+
scaleToZero: boolean;
|
|
3208
3246
|
containerPort: number;
|
|
3209
3247
|
environmentId: string;
|
|
3210
3248
|
lastReplicasRunning: number;
|
|
3249
|
+
scaleToZeroEligibility?: {
|
|
3250
|
+
reasons: string[];
|
|
3251
|
+
eligible: boolean;
|
|
3252
|
+
};
|
|
3211
3253
|
}
|
|
3212
3254
|
interface DeploymentServiceScaleOutputReadiness {
|
|
3213
3255
|
path: string;
|
|
@@ -3250,6 +3292,7 @@ interface DeploymentServiceUpdateInput {
|
|
|
3250
3292
|
command?: string;
|
|
3251
3293
|
outputDir?: string;
|
|
3252
3294
|
};
|
|
3295
|
+
markdown?: boolean;
|
|
3253
3296
|
});
|
|
3254
3297
|
replicas?: number;
|
|
3255
3298
|
resources?: {
|
|
@@ -3258,6 +3301,8 @@ interface DeploymentServiceUpdateInput {
|
|
|
3258
3301
|
memory?: string;
|
|
3259
3302
|
};
|
|
3260
3303
|
};
|
|
3304
|
+
idleMinutes?: number;
|
|
3305
|
+
scaleToZero?: boolean;
|
|
3261
3306
|
containerPort?: number;
|
|
3262
3307
|
}
|
|
3263
3308
|
interface DeploymentServiceUpdateInputReadiness {
|
|
@@ -3302,6 +3347,7 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3302
3347
|
command?: string;
|
|
3303
3348
|
outputDir?: string;
|
|
3304
3349
|
};
|
|
3350
|
+
markdown?: boolean;
|
|
3305
3351
|
});
|
|
3306
3352
|
replicas: number;
|
|
3307
3353
|
createdAt: string;
|
|
@@ -3313,9 +3359,16 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3313
3359
|
};
|
|
3314
3360
|
};
|
|
3315
3361
|
updatedAt: string;
|
|
3362
|
+
sleepState: ("awake" | "sleeping" | "waking" | "stopped" | "wake_failed");
|
|
3363
|
+
idleMinutes: number;
|
|
3364
|
+
scaleToZero: boolean;
|
|
3316
3365
|
containerPort: number;
|
|
3317
3366
|
environmentId: string;
|
|
3318
3367
|
lastReplicasRunning: number;
|
|
3368
|
+
scaleToZeroEligibility?: {
|
|
3369
|
+
reasons: string[];
|
|
3370
|
+
eligible: boolean;
|
|
3371
|
+
};
|
|
3319
3372
|
}
|
|
3320
3373
|
interface DeploymentServiceUpdateOutputReadiness {
|
|
3321
3374
|
path: string;
|
|
@@ -3326,6 +3379,12 @@ interface DeploymentServiceUpdateOutputReadiness {
|
|
|
3326
3379
|
successThreshold?: number;
|
|
3327
3380
|
initialDelaySeconds?: number;
|
|
3328
3381
|
}
|
|
3382
|
+
interface DeploymentServiceWakeInput {
|
|
3383
|
+
id: string;
|
|
3384
|
+
}
|
|
3385
|
+
interface DeploymentServiceWakeOutput {
|
|
3386
|
+
[k: string]: unknown;
|
|
3387
|
+
}
|
|
3329
3388
|
interface DeploymentSshCommandInput {
|
|
3330
3389
|
serviceId: string;
|
|
3331
3390
|
}
|
|
@@ -13147,6 +13206,194 @@ interface OrganizationSelectOutput {
|
|
|
13147
13206
|
};
|
|
13148
13207
|
activeProductId: (string | null);
|
|
13149
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
|
+
});
|
|
13150
13397
|
interface RealtimeArchiveExportInput {
|
|
13151
13398
|
/**
|
|
13152
13399
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -15377,6 +15624,7 @@ interface GeneratedClient {
|
|
|
15377
15624
|
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
15378
15625
|
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
15379
15626
|
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
15627
|
+
wake(input: DeploymentServiceWakeInput): Promise<DeploymentServiceWakeOutput>;
|
|
15380
15628
|
};
|
|
15381
15629
|
ssh: {
|
|
15382
15630
|
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
@@ -15597,6 +15845,34 @@ interface GeneratedClient {
|
|
|
15597
15845
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
15598
15846
|
};
|
|
15599
15847
|
};
|
|
15848
|
+
playground: {
|
|
15849
|
+
analytics: {
|
|
15850
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
15851
|
+
};
|
|
15852
|
+
billing: {
|
|
15853
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
15854
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
15855
|
+
};
|
|
15856
|
+
clickup: {
|
|
15857
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
15858
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
15859
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
15860
|
+
};
|
|
15861
|
+
gdrive: {
|
|
15862
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
15863
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
15864
|
+
};
|
|
15865
|
+
googleads: {
|
|
15866
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
15867
|
+
};
|
|
15868
|
+
lifecycle: {
|
|
15869
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
15870
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
15871
|
+
};
|
|
15872
|
+
webhook: {
|
|
15873
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
15874
|
+
};
|
|
15875
|
+
};
|
|
15600
15876
|
realtime: {
|
|
15601
15877
|
archive: {
|
|
15602
15878
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
@@ -15750,4 +16026,4 @@ interface GeneratedClient {
|
|
|
15750
16026
|
};
|
|
15751
16027
|
}
|
|
15752
16028
|
|
|
15753
|
-
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, DeploymentVcsConnectionListOutput 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, DeploymentSshKeyDeleteInput as dA, DeploymentSshKeyDeleteOutput as dB, DeploymentSshKeyListInput as dC, DeploymentSshKeyListOutput as dD, DeploymentSshKeyRegisterInput as dE, DeploymentSshKeyRegisterOutput as dF, DeploymentVariableListEnvInput as dG, DeploymentVariableListEnvOutput as dH, DeploymentVariableListProductInput as dI, DeploymentVariableListProductOutput as dJ, DeploymentVariableListInput as dK, DeploymentVariableListOutput as dL, DeploymentVariableSetEnvInput as dM, DeploymentVariableSetEnvOutput as dN, DeploymentVariableSetInput as dO, DeploymentVariableSetOutput as dP, DeploymentVariableSetProductInput as dQ, DeploymentVariableSetProductOutput as dR, DeploymentVariableUnsetEnvInput as dS, DeploymentVariableUnsetEnvOutput as dT, DeploymentVariableUnsetInput as dU, DeploymentVariableUnsetOutput as dV, DeploymentVariableUnsetProductInput as dW, DeploymentVariableUnsetProductOutput as dX, DeploymentVcsBranchListInput as dY, DeploymentVcsBranchListOutput as dZ, DeploymentVcsConnectionListInput 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, DeploymentSshCommandInput as dy, DeploymentSshCommandOutput as dz, BrainBackupStatusInput as e, MailDomainGetOutput as e$, DeploymentVcsRepoListInput as e0, DeploymentVcsRepoListOutput as e1, DeploymentVolumeCreateInput as e2, DeploymentVolumeCreateOutput as e3, DeploymentVolumeDeleteInput as e4, DeploymentVolumeDeleteOutput as e5, DeploymentVolumeDetachInput as e6, DeploymentVolumeDetachOutput as e7, DeploymentVolumeGetInput as e8, DeploymentVolumeGetOutput as e9, MailBroadcastGetInput as eA, MailBroadcastGetOutput as eB, MailBroadcastListInput as eC, MailBroadcastListOutput as eD, MailBroadcastQueueInput as eE, MailBroadcastQueueOutput as eF, MailBroadcastStatsInput as eG, MailBroadcastStatsOutput as eH, MailBroadcastUpdateInput as eI, MailBroadcastUpdateOutput as eJ, MailContactCreateInput as eK, MailContactCreateOutput as eL, MailContactDeleteInput as eM, MailContactDeleteOutput as eN, MailContactGetInput as eO, MailContactGetOutput as eP, MailContactListInput as eQ, MailContactListOutput as eR, MailContactUpdateInput as eS, MailContactUpdateOutput as eT, MailDomainAllowedListInput as eU, MailDomainAllowedListOutput as eV, MailDomainCreateInput as eW, MailDomainCreateOutput as eX, MailDomainDeleteInput as eY, MailDomainDeleteOutput as eZ, MailDomainGetInput as e_, DeploymentVolumeListInput as ea, DeploymentVolumeListOutput as eb, DeploymentVolumeResizeInput as ec, DeploymentVolumeResizeOutput as ed, MailApikeyCreateInput as ee, MailApikeyCreateOutput as ef, MailApikeyDeleteInput as eg, MailApikeyDeleteOutput as eh, MailApikeyListInput as ei, MailApikeyListOutput as ej, MailAudienceCreateInput as ek, MailAudienceCreateOutput as el, MailAudienceDeleteInput as em, MailAudienceDeleteOutput as en, MailAudienceGetInput as eo, MailAudienceGetOutput as ep, MailAudienceListInput as eq, MailAudienceListOutput as er, MailAudienceUpdateInput as es, MailAudienceUpdateOutput as et, MailBroadcastCancelInput as eu, MailBroadcastCancelOutput as ev, MailBroadcastCreateInput as ew, MailBroadcastCreateOutput as ex, MailBroadcastDeleteInput as ey, MailBroadcastDeleteOutput as ez, BrainBackupStatusOutput as f, OrganizationConnectorsApproveRequestOutput as f$, MailDomainListInput as f0, MailDomainListOutput as f1, MailDomainUpdateInput as f2, MailDomainUpdateOutput as f3, MailDomainVerifyInput as f4, MailDomainVerifyOutput as f5, MailEmailCancelInput as f6, MailEmailCancelOutput as f7, MailEmailGetInput as f8, MailEmailSendBatchInput as f9, MailTemplateUpdateOutput as fA, MailUsageGetInput as fB, MailUsageGetOutput as fC, MailWebhookCreateInput as fD, MailWebhookCreateOutput as fE, MailWebhookDeleteInput as fF, MailWebhookDeleteOutput as fG, MailWebhookDeliveriesListInput as fH, MailWebhookDeliveriesListOutput as fI, MailWebhookGetInput as fJ, MailWebhookGetOutput as fK, MailWebhookListInput as fL, MailWebhookListOutput as fM, MailWebhookUpdateInput as fN, MailWebhookUpdateOutput as fO, MailEmailGetOutput as fP, OrganizationAuthMeInput as fQ, OrganizationAuthMeOutput as fR, OrganizationBindingsListInput as fS, OrganizationBindingsListOutput as fT, OrganizationClickupInstallInput as fU, OrganizationClickupInstallOutput as fV, OrganizationClickupListInstallationsInput as fW, OrganizationClickupListInstallationsOutput as fX, OrganizationCloudflareInstallInput as fY, OrganizationCloudflareInstallOutput as fZ, OrganizationConnectorsApproveRequestInput as f_, MailEmailSendBatchOutput as fa, MailEmailSendInput as fb, MailEmailSendOutput as fc, MailEmailUpdateInput as fd, MailEmailUpdateOutput as fe, MailReputationGetInput as ff, MailReputationGetOutput as fg, MailStatsGetInput as fh, MailStatsGetOutput as fi, MailSuppressionAddInput as fj, MailSuppressionAddOutput as fk, MailSuppressionListInput as fl, MailSuppressionListOutput as fm, MailSuppressionRemoveInput as fn, MailSuppressionRemoveOutput as fo, MailTemplateCreateInput as fp, MailTemplateCreateOutput as fq, MailTemplateDeleteInput as fr, MailTemplateDeleteOutput as fs, MailTemplateGetInput as ft, MailTemplateGetOutput as fu, MailTemplateListInput as fv, MailTemplateListOutput as fw, MailTemplatePublishInput as fx, MailTemplatePublishOutput as fy, MailTemplateUpdateInput as fz, BrainBackupsListInput as g, OrganizationMemberRemoveOutput as g$, OrganizationConnectorsAttachInput as g0, OrganizationConnectorsAttachOutput as g1, OrganizationConnectorsDeleteInput as g2, OrganizationConnectorsDeleteOutput as g3, OrganizationConnectorsDenyRequestInput as g4, OrganizationConnectorsDenyRequestOutput as g5, OrganizationConnectorsDetachInput as g6, OrganizationConnectorsDetachOutput as g7, OrganizationConnectorsListAttachmentsInput as g8, OrganizationConnectorsListAttachmentsOutput as g9, OrganizationExtensionsListInput as gA, OrganizationExtensionsListOutput as gB, OrganizationExtensionsUninstallInput as gC, OrganizationExtensionsUninstallOutput 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_, OrganizationConnectorsListAvailableInput as ga, OrganizationConnectorsListAvailableOutput as gb, OrganizationConnectorsListOrgInput as gc, OrganizationConnectorsListOrgOutput as gd, OrganizationConnectorsListInput as ge, OrganizationConnectorsListOutput as gf, OrganizationConnectorsListRequestsInput as gg, OrganizationConnectorsListRequestsOutput as gh, OrganizationConnectorsRemoveInput as gi, OrganizationConnectorsRemoveOutput as gj, OrganizationConnectorsRequestInput as gk, OrganizationConnectorsRequestOutput as gl, OrganizationCreateInput as gm, OrganizationCreateOutput as gn, OrganizationDomainsAddInput as go, OrganizationDomainsAddOutput as gp, OrganizationDomainsGetInput as gq, OrganizationDomainsGetOutput as gr, OrganizationDomainsListInput as gs, OrganizationDomainsListOutput as gt, OrganizationDomainsRemoveInput as gu, OrganizationDomainsRemoveOutput as gv, OrganizationExtensionsInstallInput as gw, OrganizationExtensionsInstallOutput as gx, OrganizationExtensionsListInstalledInput as gy, OrganizationExtensionsListInstalledOutput as gz, BrainBackupsListOutput as h, RealtimeNamespaceGetOutput 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, OrganizationRolesListInput as hA, OrganizationRolesListOutput as hB, OrganizationRolesUpdateInput as hC, OrganizationRolesUpdateOutput as hD, OrganizationSelectInput as hE, OrganizationSelectOutput as hF, RealtimeArchiveExportInput as hG, RealtimeArchiveExportOutput as hH, RealtimeArchiveExportStatusInput as hI, RealtimeArchiveExportStatusOutput as hJ, RealtimeArchiveGetInput as hK, RealtimeArchiveGetOutput as hL, RealtimeGrantCreateInput as hM, RealtimeGrantCreateOutput as hN, RealtimeGrantListInput as hO, RealtimeGrantListOutput as hP, RealtimeGrantRevokeInput as hQ, RealtimeGrantRevokeOutput as hR, RealtimeHistoryGetInput as hS, RealtimeHistoryGetOutput as hT, RealtimeMessagesPublishInput as hU, RealtimeMessagesPublishOutput as hV, RealtimeNamespaceCreateInput as hW, RealtimeNamespaceCreateOutput as hX, RealtimeNamespaceDeleteInput as hY, RealtimeNamespaceDeleteOutput as hZ, RealtimeNamespaceGetInput 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, OrganizationRolesCreateInput as hu, OrganizationRolesCreateOutput as hv, OrganizationRolesDeleteInput as hw, OrganizationRolesDeleteOutput as hx, OrganizationRolesGetInput as hy, OrganizationRolesGetOutput as hz, BrainClickupChannelsListInput as i, TrackingGoogleadsFeedbackConfigGetOutput as i$, RealtimeNamespaceListInput as i0, RealtimeNamespaceListOutput as i1, RealtimeNamespaceUpdateInput as i2, RealtimeNamespaceUpdateOutput as i3, RealtimePresenceEnterInput as i4, RealtimePresenceEnterOutput as i5, RealtimePresenceGetInput as i6, RealtimePresenceGetOutput as i7, RealtimePresenceLeaveInput as i8, RealtimePresenceLeaveOutput as i9, TrackingApiKeysListInput as iA, TrackingApiKeysListOutput as iB, TrackingApiKeysRevokeInput as iC, TrackingApiKeysRevokeOutput as iD, TrackingApiKeysRotateInput as iE, TrackingApiKeysRotateOutput as iF, TrackingDomainsCreateInput as iG, TrackingDomainsCreateOutput as iH, TrackingDomainsDeleteInput as iI, TrackingDomainsDeleteOutput as iJ, TrackingDomainsGetInput as iK, TrackingDomainsGetOutput as iL, TrackingDomainsListInput as iM, TrackingDomainsListOutput as iN, TrackingDomainsVerifyInput as iO, TrackingDomainsVerifyOutput as iP, TrackingEventNamesArchiveInput as iQ, TrackingEventNamesArchiveOutput as iR, TrackingEventNamesListInput as iS, TrackingEventNamesListOutput as iT, TrackingEventNamesUnarchiveInput as iU, TrackingEventNamesUnarchiveOutput as iV, TrackingGoogleadsConnectionStatusInput as iW, TrackingGoogleadsConnectionStatusOutput as iX, TrackingGoogleadsConversionActionsInput as iY, TrackingGoogleadsConversionActionsOutput as iZ, TrackingGoogleadsFeedbackConfigGetInput as i_, RealtimePresenceStatsInput as ia, RealtimePresenceStatsOutput as ib, RealtimePresenceUpdateInput as ic, RealtimePresenceUpdateOutput as id, RealtimeStatusGetInput as ie, RealtimeStatusGetOutput as ig, RealtimeTokensCreateInput as ih, RealtimeTokensCreateOutput as ii, RealtimeWebhookCreateInput as ij, RealtimeWebhookCreateOutput as ik, RealtimeWebhookDeleteInput as il, RealtimeWebhookDeleteOutput as im, RealtimeWebhookDeliveriesListInput as io, RealtimeWebhookDeliveriesListOutput as ip, RealtimeWebhookGetInput as iq, RealtimeWebhookGetOutput as ir, RealtimeWebhookListInput as is, RealtimeWebhookListOutput as it, RealtimeWebhookSecretRotateInput as iu, RealtimeWebhookSecretRotateOutput as iv, RealtimeWebhookUpdateInput as iw, RealtimeWebhookUpdateOutput as ix, TrackingApiKeysCreateInput as iy, TrackingApiKeysCreateOutput as iz, BrainClickupChannelsListOutput as j, TrackingGoogleadsFeedbackConfigSetInput as j0, TrackingGoogleadsFeedbackConfigSetOutput as j1, TrackingGoogleadsFeedbackRunInput as j2, TrackingGoogleadsFeedbackRunOutput as j3, TrackingGoogleadsFeedbackStatusInput as j4, TrackingGoogleadsFeedbackStatusOutput as j5, TrackingGoogleadsFeedbackUploadsInput as j6, TrackingGoogleadsFeedbackUploadsOutput as j7, TrackingGoogleadsRoasReportInput as j8, TrackingGoogleadsRoasReportOutput as j9, TrackingProfilesGetInput as jA, TrackingProfilesGetOutput as jB, TrackingProfilesListInput as jC, TrackingProfilesListOutput as jD, TrackingReportsAttributedJourneyInput as jE, TrackingReportsAttributedJourneyOutput as jF, TrackingReportsRevenueBySourceInput as jG, TrackingReportsRevenueBySourceOutput as jH, TrackingReportsSourcePeopleInput as jI, TrackingReportsSourcePeopleOutput as jJ, TrackingSnippetsGetInput as jK, TrackingSnippetsGetOutput as jL, WaitlistConfigGetInput as jM, WaitlistConfigGetOutput as jN, WaitlistConfigUpsertInput as jO, WaitlistConfigUpsertOutput as jP, WaitlistEmbedGetInput as jQ, WaitlistEmbedGetOutput as jR, WaitlistInvitesSendInput as jS, WaitlistInvitesSendOutput as jT, WaitlistSignupsEraseInput as jU, WaitlistSignupsEraseOutput as jV, WaitlistSignupsFunnelInput as jW, WaitlistSignupsFunnelOutput as jX, WaitlistSignupsListInput as jY, WaitlistSignupsListOutput as jZ, TrackingGoogleadsSyncNowInput as ja, TrackingGoogleadsSyncNowOutput as jb, TrackingGoogleadsTrackingHealthInput as jc, TrackingGoogleadsTrackingHealthOutput as jd, TrackingGoogleadsUsVsPlatformInput as je, TrackingGoogleadsUsVsPlatformOutput as jf, TrackingIdentityHealthInput as jg, TrackingIdentityHealthOutput as jh, TrackingInstallDomainsCreateInput as ji, TrackingInstallDomainsCreateOutput as jj, TrackingInstallDomainsDeleteInput as jk, TrackingInstallDomainsDeleteOutput as jl, TrackingInstallDomainsListInput as jm, TrackingInstallDomainsListOutput as jn, TrackingLinkDomainsCreateInput as jo, TrackingLinkDomainsCreateOutput as jp, TrackingLinkDomainsDeleteInput as jq, TrackingLinkDomainsDeleteOutput as jr, TrackingLinkDomainsListInput as js, TrackingLinkDomainsListOutput as jt, TrackingLiveEventsListInput as ju, TrackingLiveEventsListOutput as jv, TrackingProfilesDeleteInput as jw, TrackingProfilesDeleteOutput as jx, TrackingProfilesExportInput as jy, TrackingProfilesExportOutput 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 };
|
|
16029
|
+
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, TrackingApiKeysListOutput as i$, PlaygroundLifecycleListEventsInput as i0, PlaygroundLifecycleListEventsOutput as i1, PlaygroundWebhookGetLastInput as i2, PlaygroundWebhookGetLastOutput as i3, RealtimeArchiveExportInput as i4, RealtimeArchiveExportOutput as i5, RealtimeArchiveExportStatusInput as i6, RealtimeArchiveExportStatusOutput as i7, RealtimeArchiveGetInput as i8, RealtimeArchiveGetOutput as i9, RealtimePresenceLeaveInput as iA, RealtimePresenceLeaveOutput as iB, RealtimePresenceStatsInput as iC, RealtimePresenceStatsOutput as iD, RealtimePresenceUpdateInput as iE, RealtimePresenceUpdateOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, TrackingApiKeysCreateInput as iY, TrackingApiKeysCreateOutput as iZ, TrackingApiKeysListInput as i_, RealtimeGrantCreateInput as ia, RealtimeGrantCreateOutput as ib, RealtimeGrantListInput as ic, RealtimeGrantListOutput as id, RealtimeGrantRevokeInput as ie, RealtimeGrantRevokeOutput as ig, RealtimeHistoryGetInput as ih, RealtimeHistoryGetOutput as ii, RealtimeMessagesPublishInput as ij, RealtimeMessagesPublishOutput as ik, RealtimeNamespaceCreateInput as il, RealtimeNamespaceCreateOutput as im, RealtimeNamespaceDeleteInput as io, RealtimeNamespaceDeleteOutput as ip, RealtimeNamespaceGetInput as iq, RealtimeNamespaceGetOutput as ir, RealtimeNamespaceListInput as is, RealtimeNamespaceListOutput as it, RealtimeNamespaceUpdateInput as iu, RealtimeNamespaceUpdateOutput as iv, RealtimePresenceEnterInput as iw, RealtimePresenceEnterOutput as ix, RealtimePresenceGetInput as iy, RealtimePresenceGetOutput as iz, BrainClickupChannelsListOutput as j, TrackingProfilesGetOutput as j$, TrackingApiKeysRevokeInput as j0, TrackingApiKeysRevokeOutput as j1, TrackingApiKeysRotateInput as j2, TrackingApiKeysRotateOutput as j3, TrackingDomainsCreateInput as j4, TrackingDomainsCreateOutput as j5, TrackingDomainsDeleteInput as j6, TrackingDomainsDeleteOutput as j7, TrackingDomainsGetInput as j8, TrackingDomainsGetOutput as j9, TrackingGoogleadsSyncNowInput as jA, TrackingGoogleadsSyncNowOutput as jB, TrackingGoogleadsTrackingHealthInput as jC, TrackingGoogleadsTrackingHealthOutput as jD, TrackingGoogleadsUsVsPlatformInput as jE, TrackingGoogleadsUsVsPlatformOutput as jF, TrackingIdentityHealthInput as jG, TrackingIdentityHealthOutput as jH, TrackingInstallDomainsCreateInput as jI, TrackingInstallDomainsCreateOutput as jJ, TrackingInstallDomainsDeleteInput as jK, TrackingInstallDomainsDeleteOutput as jL, TrackingInstallDomainsListInput as jM, TrackingInstallDomainsListOutput as jN, TrackingLinkDomainsCreateInput as jO, TrackingLinkDomainsCreateOutput as jP, TrackingLinkDomainsDeleteInput as jQ, TrackingLinkDomainsDeleteOutput as jR, TrackingLinkDomainsListInput as jS, TrackingLinkDomainsListOutput as jT, TrackingLiveEventsListInput as jU, TrackingLiveEventsListOutput as jV, TrackingProfilesDeleteInput as jW, TrackingProfilesDeleteOutput as jX, TrackingProfilesExportInput as jY, TrackingProfilesExportOutput as jZ, TrackingProfilesGetInput as j_, TrackingDomainsListInput as ja, TrackingDomainsListOutput as jb, TrackingDomainsVerifyInput as jc, TrackingDomainsVerifyOutput as jd, TrackingEventNamesArchiveInput as je, TrackingEventNamesArchiveOutput as jf, TrackingEventNamesListInput as jg, TrackingEventNamesListOutput as jh, TrackingEventNamesUnarchiveInput as ji, TrackingEventNamesUnarchiveOutput as jj, TrackingGoogleadsConnectionStatusInput as jk, TrackingGoogleadsConnectionStatusOutput as jl, TrackingGoogleadsConversionActionsInput as jm, TrackingGoogleadsConversionActionsOutput as jn, TrackingGoogleadsFeedbackConfigGetInput as jo, TrackingGoogleadsFeedbackConfigGetOutput as jp, TrackingGoogleadsFeedbackConfigSetInput as jq, TrackingGoogleadsFeedbackConfigSetOutput as jr, TrackingGoogleadsFeedbackRunInput as js, TrackingGoogleadsFeedbackRunOutput as jt, TrackingGoogleadsFeedbackStatusInput as ju, TrackingGoogleadsFeedbackStatusOutput as jv, TrackingGoogleadsFeedbackUploadsInput as jw, TrackingGoogleadsFeedbackUploadsOutput as jx, TrackingGoogleadsRoasReportInput as jy, TrackingGoogleadsRoasReportOutput as jz, BrainClickupConnectionsListInput as k, TrackingProfilesListInput as k0, TrackingProfilesListOutput as k1, TrackingReportsAttributedJourneyInput as k2, TrackingReportsAttributedJourneyOutput as k3, TrackingReportsRevenueBySourceInput as k4, TrackingReportsRevenueBySourceOutput as k5, TrackingReportsSourcePeopleInput as k6, TrackingReportsSourcePeopleOutput as k7, TrackingSnippetsGetInput as k8, TrackingSnippetsGetOutput as k9, WaitlistConfigGetInput as ka, WaitlistConfigGetOutput as kb, WaitlistConfigUpsertInput as kc, WaitlistConfigUpsertOutput as kd, WaitlistEmbedGetInput as ke, WaitlistEmbedGetOutput as kf, WaitlistInvitesSendInput as kg, WaitlistInvitesSendOutput as kh, WaitlistSignupsEraseInput as ki, WaitlistSignupsEraseOutput as kj, WaitlistSignupsFunnelInput as kk, WaitlistSignupsFunnelOutput as kl, WaitlistSignupsListInput as km, WaitlistSignupsListOutput as kn, 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 };
|