@lessly/sdk-app 39.1.0 → 41.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.
Files changed (57) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.cjs +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-Co3x1ZjK.d.cts → client.gen-CMLEyXO3.d.cts} +340 -99
  10. package/dist/{client.gen-Co3x1ZjK.d.ts → client.gen-CMLEyXO3.d.ts} +340 -99
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/deployment/index.d.cts +1 -1
  14. package/dist/deployment/index.d.ts +1 -1
  15. package/dist/index.cjs +148 -13
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +148 -13
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/observe/index.d.cts +1 -1
  24. package/dist/observe/index.d.ts +1 -1
  25. package/dist/organization/index.d.cts +1 -1
  26. package/dist/organization/index.d.ts +1 -1
  27. package/dist/playground/index.cjs +66 -0
  28. package/dist/playground/index.cjs.map +1 -0
  29. package/dist/playground/index.d.cts +52 -0
  30. package/dist/playground/index.d.ts +52 -0
  31. package/dist/playground/index.js +53 -0
  32. package/dist/playground/index.js.map +1 -0
  33. package/dist/realtime/index.d.cts +1 -1
  34. package/dist/realtime/index.d.ts +1 -1
  35. package/dist/support/index.d.cts +1 -1
  36. package/dist/support/index.d.ts +1 -1
  37. package/dist/tracking/index.d.cts +1 -1
  38. package/dist/tracking/index.d.ts +1 -1
  39. package/dist/users/index.cjs +10 -0
  40. package/dist/users/index.cjs.map +1 -1
  41. package/dist/users/index.d.cts +10 -2
  42. package/dist/users/index.d.ts +10 -2
  43. package/dist/users/index.js +9 -1
  44. package/dist/users/index.js.map +1 -1
  45. package/dist/waitlist/index.d.cts +1 -1
  46. package/dist/waitlist/index.d.ts +1 -1
  47. package/package.json +7 -2
  48. package/src/gen/bindings.gen.ts +148 -13
  49. package/src/gen/brain/index.ts +1 -1
  50. package/src/gen/brain/queryOptions.gen.ts +0 -7
  51. package/src/gen/client.gen.ts +60 -5
  52. package/src/gen/manifest.gen.ts +1 -1
  53. package/src/gen/playground/index.ts +3 -0
  54. package/src/gen/playground/queryOptions.gen.ts +86 -0
  55. package/src/gen/types.gen.ts +343 -97
  56. package/src/gen/users/index.ts +1 -1
  57. package/src/gen/users/queryOptions.gen.ts +13 -0
@@ -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
  }
@@ -1598,6 +1508,7 @@ interface DeploymentCanvasGetOutput {
1598
1508
  };
1599
1509
  markdown?: boolean;
1600
1510
  });
1511
+ tracing?: string;
1601
1512
  replicas: number;
1602
1513
  createdAt: string;
1603
1514
  dependsOn: string[];
@@ -2487,7 +2398,7 @@ interface DeploymentEnvironmentUpdateOutput {
2487
2398
  baseEnvironmentId: (string | null);
2488
2399
  }
2489
2400
  interface DeploymentEventsListByEnvironmentInput {
2490
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
2401
+ 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.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
2491
2402
  limit?: number;
2492
2403
  since?: string;
2493
2404
  until?: string;
@@ -2495,7 +2406,7 @@ interface DeploymentEventsListByEnvironmentInput {
2495
2406
  }
2496
2407
  type DeploymentEventsListByEnvironmentOutput = {
2497
2408
  id: string;
2498
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
2409
+ 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.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
2499
2410
  payload: {
2500
2411
  [k: string]: unknown;
2501
2412
  };
@@ -2507,7 +2418,7 @@ type DeploymentEventsListByEnvironmentOutput = {
2507
2418
  environmentId: (string | null);
2508
2419
  }[];
2509
2420
  interface DeploymentEventsListByServiceInput {
2510
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
2421
+ 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.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
2511
2422
  limit?: number;
2512
2423
  since?: string;
2513
2424
  until?: string;
@@ -2516,7 +2427,7 @@ interface DeploymentEventsListByServiceInput {
2516
2427
  }
2517
2428
  type DeploymentEventsListByServiceOutput = {
2518
2429
  id: string;
2519
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
2430
+ 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.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
2520
2431
  payload: {
2521
2432
  [k: string]: unknown;
2522
2433
  };
@@ -2967,6 +2878,10 @@ interface DeploymentServiceCreateInput {
2967
2878
  };
2968
2879
  markdown?: boolean;
2969
2880
  });
2881
+ /**
2882
+ * OTel SDK to inject into this service's pods: 'off' (none), 'node' or 'python'. Read when a deploy builds the workload — takes effect on the next deploy, running pods are untouched.
2883
+ */
2884
+ tracing?: ("off" | "node" | "python");
2970
2885
  replicas?: number;
2971
2886
  resources?: {
2972
2887
  limits?: {
@@ -3021,6 +2936,7 @@ interface DeploymentServiceCreateOutput {
3021
2936
  };
3022
2937
  markdown?: boolean;
3023
2938
  });
2939
+ tracing?: string;
3024
2940
  replicas: number;
3025
2941
  createdAt: string;
3026
2942
  dependsOn: string[];
@@ -3120,6 +3036,7 @@ interface DeploymentServiceGetOutput {
3120
3036
  };
3121
3037
  markdown?: boolean;
3122
3038
  });
3039
+ tracing?: string;
3123
3040
  replicas: number;
3124
3041
  createdAt: string;
3125
3042
  dependsOn: string[];
@@ -3190,6 +3107,7 @@ type DeploymentServiceListOutput = {
3190
3107
  };
3191
3108
  markdown?: boolean;
3192
3109
  });
3110
+ tracing?: string;
3193
3111
  replicas: number;
3194
3112
  createdAt: string;
3195
3113
  dependsOn: string[];
@@ -3328,6 +3246,7 @@ interface DeploymentServiceScaleOutput {
3328
3246
  };
3329
3247
  markdown?: boolean;
3330
3248
  });
3249
+ tracing?: string;
3331
3250
  replicas: number;
3332
3251
  createdAt: string;
3333
3252
  dependsOn: string[];
@@ -3394,6 +3313,10 @@ interface DeploymentServiceUpdateInput {
3394
3313
  };
3395
3314
  markdown?: boolean;
3396
3315
  });
3316
+ /**
3317
+ * OTel SDK to inject into this service's pods: 'off' (none), 'node' or 'python'. Read when a deploy builds the workload — takes effect on the next deploy, running pods are untouched.
3318
+ */
3319
+ tracing?: ("off" | "node" | "python");
3397
3320
  replicas?: number;
3398
3321
  resources?: {
3399
3322
  limits?: {
@@ -3450,6 +3373,7 @@ interface DeploymentServiceUpdateOutput {
3450
3373
  };
3451
3374
  markdown?: boolean;
3452
3375
  });
3376
+ tracing?: string;
3453
3377
  replicas: number;
3454
3378
  createdAt: string;
3455
3379
  dependsOn: string[];
@@ -14864,6 +14788,7 @@ interface OrganizationProductListAccessOutput {
14864
14788
  orgRoles: {
14865
14789
  id: string;
14866
14790
  name: string;
14791
+ description: (string | null);
14867
14792
  }[];
14868
14793
  canManage: boolean;
14869
14794
  inherited: {
@@ -15214,6 +15139,194 @@ interface OrganizationSupportThreadsListOutput {
15214
15139
  lastMessagePreview: (string | null);
15215
15140
  }[];
15216
15141
  }
15142
+ interface PlaygroundAnalyticsOverviewInput {
15143
+ /**
15144
+ * Max records per entity in recent[]; omit for the endpoint default
15145
+ */
15146
+ limit?: number;
15147
+ }
15148
+ interface PlaygroundAnalyticsOverviewOutput {
15149
+ ok: boolean;
15150
+ minted: boolean;
15151
+ overview?: unknown;
15152
+ http_status: number;
15153
+ }
15154
+ interface PlaygroundBillingEntitlementsInput {
15155
+ }
15156
+ interface PlaygroundBillingEntitlementsOutput {
15157
+ ok: boolean;
15158
+ minted: boolean;
15159
+ http_status: number;
15160
+ entitlements?: unknown;
15161
+ }
15162
+ interface PlaygroundBillingRecordUsageInput {
15163
+ /**
15164
+ * Quantity of events to record against playground-events (SUM); defaults to 1
15165
+ */
15166
+ value?: number;
15167
+ }
15168
+ interface PlaygroundBillingRecordUsageOutput {
15169
+ minted: boolean;
15170
+ accepted: (number | null);
15171
+ recorded: boolean;
15172
+ duplicates: (number | null);
15173
+ http_status: number;
15174
+ }
15175
+ interface PlaygroundClickupCreateTaskInput {
15176
+ /**
15177
+ * Task title; defaults to a fixture label
15178
+ */
15179
+ name?: string;
15180
+ /**
15181
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
15182
+ */
15183
+ listId?: string;
15184
+ }
15185
+ interface PlaygroundClickupCreateTaskOutput {
15186
+ minted: boolean;
15187
+ task_id: (string | null);
15188
+ list_status: number;
15189
+ vend_status: number;
15190
+ clickup_status: number;
15191
+ installation_count: number;
15192
+ }
15193
+ interface PlaygroundClickupGetLastWebhookInput {
15194
+ }
15195
+ type PlaygroundClickupGetLastWebhookOutput = ({
15196
+ payload: string;
15197
+ event_id: string;
15198
+ provider: string;
15199
+ verified: boolean;
15200
+ product_id: string;
15201
+ occurred_at: string;
15202
+ connector_id: string;
15203
+ clickup_event: (string | null);
15204
+ receipt_count: number;
15205
+ } | {
15206
+ found: false;
15207
+ });
15208
+ interface PlaygroundClickupGetOverviewInput {
15209
+ }
15210
+ interface PlaygroundClickupGetOverviewOutput {
15211
+ team: ({
15212
+ teamId: string;
15213
+ teamName: string;
15214
+ } | null);
15215
+ lists: PlaygroundClickupGetOverviewOutputItems[];
15216
+ tasks: {
15217
+ id: string;
15218
+ name: string;
15219
+ status: (string | null);
15220
+ }[];
15221
+ minted: boolean;
15222
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
15223
+ list_status: number;
15224
+ vend_status: number;
15225
+ lists_status: number;
15226
+ tasks_status: number;
15227
+ spaces_status: number;
15228
+ folders_status: number;
15229
+ installation_count: number;
15230
+ }
15231
+ interface PlaygroundClickupGetOverviewOutputItems {
15232
+ id: string;
15233
+ name: string;
15234
+ }
15235
+ interface PlaygroundGdriveGetLastChangeInput {
15236
+ }
15237
+ type PlaygroundGdriveGetLastChangeOutput = ({
15238
+ file_id: string;
15239
+ removed: boolean;
15240
+ file_name: (string | null);
15241
+ mime_type: (string | null);
15242
+ product_id: string;
15243
+ occurred_at: string;
15244
+ connector_id: string;
15245
+ resource_state: string;
15246
+ } | {
15247
+ found: false;
15248
+ });
15249
+ interface PlaygroundGdriveReadFileInput {
15250
+ /**
15251
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
15252
+ */
15253
+ fileId?: string;
15254
+ }
15255
+ interface PlaygroundGdriveReadFileOutput {
15256
+ minted: boolean;
15257
+ file_id: (string | null);
15258
+ file_name: (string | null);
15259
+ mime_type: (string | null);
15260
+ file_count: number;
15261
+ get_status: number;
15262
+ list_status: number;
15263
+ vend_status: number;
15264
+ content_bytes: (number | null);
15265
+ }
15266
+ interface PlaygroundGoogleadsReadCustomerInput {
15267
+ }
15268
+ interface PlaygroundGoogleadsReadCustomerOutput {
15269
+ minted: boolean;
15270
+ vended: boolean;
15271
+ customer_id: (string | null);
15272
+ vend_status: number;
15273
+ result_count: number;
15274
+ search_status: number;
15275
+ login_customer_id: (string | null);
15276
+ }
15277
+ interface PlaygroundLifecycleGetStateInput {
15278
+ }
15279
+ interface PlaygroundLifecycleGetStateOutput {
15280
+ blocked: boolean;
15281
+ archived: boolean;
15282
+ productId: string;
15283
+ lastBlockTransition: ({
15284
+ eventId: string;
15285
+ eventName: string;
15286
+ productId: string;
15287
+ occurredAt: string;
15288
+ recordedAt: string;
15289
+ receiptCount: number;
15290
+ organizationId: string;
15291
+ cascadedFromOrg: boolean;
15292
+ } | null);
15293
+ lastArchiveTransition: ({
15294
+ eventId: string;
15295
+ eventName: string;
15296
+ productId: string;
15297
+ occurredAt: string;
15298
+ recordedAt: string;
15299
+ receiptCount: number;
15300
+ organizationId: string;
15301
+ cascadedFromOrg: boolean;
15302
+ } | null);
15303
+ }
15304
+ interface PlaygroundLifecycleListEventsInput {
15305
+ }
15306
+ type PlaygroundLifecycleListEventsOutput = {
15307
+ eventId: string;
15308
+ eventName: string;
15309
+ productId: string;
15310
+ occurredAt: string;
15311
+ recordedAt: string;
15312
+ receiptCount: number;
15313
+ organizationId: string;
15314
+ cascadedFromOrg: boolean;
15315
+ }[];
15316
+ interface PlaygroundWebhookGetLastInput {
15317
+ }
15318
+ type PlaygroundWebhookGetLastOutput = ({
15319
+ payload?: unknown;
15320
+ event_id: string;
15321
+ provider: string;
15322
+ verified: boolean;
15323
+ product_id: string;
15324
+ occurred_at: string;
15325
+ connector_id: string;
15326
+ delivery_count: number;
15327
+ } | {
15328
+ found: false;
15329
+ });
15217
15330
  interface RealtimeArchiveExportInput {
15218
15331
  /**
15219
15332
  * Only entries with ts <= to_ts (epoch ms)
@@ -38588,6 +38701,24 @@ interface UsersConfigGetOutput {
38588
38701
  provider: "turnstile";
38589
38702
  riskElevated: boolean;
38590
38703
  };
38704
+ passkeys: {
38705
+ /**
38706
+ * The WebAuthn Relying Party ID — the product's own domain, without a scheme or port. Leave null to derive it from `allowedOrigins`, which works whenever they all sit on one host. Set it to the shared PARENT domain when they do not (`example.com` covering `app.example.com` and `www.example.com`); it must cover EVERY allowed origin or passkeys stay off. CHANGING IT ORPHANS every credential already enrolled — an authenticator only ever asserts a credential back to the RP ID it was created for.
38707
+ */
38708
+ rpId: (string | null);
38709
+ /**
38710
+ * The user-visible relying-party name the operating system's passkey prompt shows. Defaults to the RP ID.
38711
+ */
38712
+ rpName: (string | null);
38713
+ /**
38714
+ * Whether this product is a WebAuthn relying party: passkeys can be enrolled and offered as a sign-in strategy. Default false. Switching it on is not enough on its own — the product also needs at least one browser origin in `allowedOrigins` for the RP ID to be derived from.
38715
+ */
38716
+ enabled: boolean;
38717
+ /**
38718
+ * Whether the authenticator must verify the user (biometric, PIN) rather than merely being present. Default false, which asks for verification but accepts an assertion without it — at `aal1`. A verified assertion always mints `aal2`, whatever this says; setting it true refuses the unverified one outright.
38719
+ */
38720
+ requireUserVerification: boolean;
38721
+ };
38591
38722
  recovery: {
38592
38723
  /**
38593
38724
  * Offer the password-recovery flow at all. Default true.
@@ -38898,6 +39029,27 @@ interface UsersConfigUpsertInput {
38898
39029
  */
38899
39030
  riskElevated?: boolean;
38900
39031
  };
39032
+ /**
39033
+ * Passkey (WebAuthn) settings: whether this product is a relying party, the RP ID and name, and whether an assertion must be user-verified. Merged field-by-field. The `passkey` strategy is offered only when `enabled` is true AND an RP ID resolves.
39034
+ */
39035
+ passkeys?: {
39036
+ /**
39037
+ * The WebAuthn Relying Party ID — the product's own domain, without a scheme or port. Leave null to derive it from `allowedOrigins`, which works whenever they all sit on one host. Set it to the shared PARENT domain when they do not (`example.com` covering `app.example.com` and `www.example.com`); it must cover EVERY allowed origin or passkeys stay off. CHANGING IT ORPHANS every credential already enrolled — an authenticator only ever asserts a credential back to the RP ID it was created for.
39038
+ */
39039
+ rpId?: (string | null);
39040
+ /**
39041
+ * The user-visible relying-party name the operating system's passkey prompt shows. Defaults to the RP ID.
39042
+ */
39043
+ rpName?: (string | null);
39044
+ /**
39045
+ * Whether this product is a WebAuthn relying party: passkeys can be enrolled and offered as a sign-in strategy. Default false. Switching it on is not enough on its own — the product also needs at least one browser origin in `allowedOrigins` for the RP ID to be derived from.
39046
+ */
39047
+ enabled?: boolean;
39048
+ /**
39049
+ * Whether the authenticator must verify the user (biometric, PIN) rather than merely being present. Default false, which asks for verification but accepts an assertion without it — at `aal1`. A verified assertion always mints `aal2`, whatever this says; setting it true refuses the unverified one outright.
39050
+ */
39051
+ requireUserVerification?: boolean;
39052
+ };
38901
39053
  /**
38902
39054
  * Password-recovery settings (whether it is offered, how long a reset link lives). Merged field-by-field.
38903
39055
  */
@@ -39225,6 +39377,24 @@ interface UsersConfigUpsertOutput {
39225
39377
  provider: "turnstile";
39226
39378
  riskElevated: boolean;
39227
39379
  };
39380
+ passkeys: {
39381
+ /**
39382
+ * The WebAuthn Relying Party ID — the product's own domain, without a scheme or port. Leave null to derive it from `allowedOrigins`, which works whenever they all sit on one host. Set it to the shared PARENT domain when they do not (`example.com` covering `app.example.com` and `www.example.com`); it must cover EVERY allowed origin or passkeys stay off. CHANGING IT ORPHANS every credential already enrolled — an authenticator only ever asserts a credential back to the RP ID it was created for.
39383
+ */
39384
+ rpId: (string | null);
39385
+ /**
39386
+ * The user-visible relying-party name the operating system's passkey prompt shows. Defaults to the RP ID.
39387
+ */
39388
+ rpName: (string | null);
39389
+ /**
39390
+ * Whether this product is a WebAuthn relying party: passkeys can be enrolled and offered as a sign-in strategy. Default false. Switching it on is not enough on its own — the product also needs at least one browser origin in `allowedOrigins` for the RP ID to be derived from.
39391
+ */
39392
+ enabled: boolean;
39393
+ /**
39394
+ * Whether the authenticator must verify the user (biometric, PIN) rather than merely being present. Default false, which asks for verification but accepts an assertion without it — at `aal1`. A verified assertion always mints `aal2`, whatever this says; setting it true refuses the unverified one outright.
39395
+ */
39396
+ requireUserVerification: boolean;
39397
+ };
39228
39398
  recovery: {
39229
39399
  /**
39230
39400
  * Offer the password-recovery flow at all. Default true.
@@ -39415,7 +39585,7 @@ interface UsersFactorsListInput {
39415
39585
  }
39416
39586
  interface UsersFactorsListOutput {
39417
39587
  factors: {
39418
- type: ("totp" | "backup_codes");
39588
+ type: ("totp" | "backup_codes" | "webauthn");
39419
39589
  status: ("unverified" | "verified");
39420
39590
  createdAt: string;
39421
39591
  remaining: (number | null);
@@ -39715,6 +39885,48 @@ interface UsersOpsSloGetOutput {
39715
39885
  signInFailureBaseline: (number | null);
39716
39886
  };
39717
39887
  }
39888
+ interface UsersPasskeysListInput {
39889
+ /**
39890
+ * The end user whose passkeys to list.
39891
+ */
39892
+ userId: string;
39893
+ }
39894
+ interface UsersPasskeysListOutput {
39895
+ passkeys: {
39896
+ id: string;
39897
+ name: (string | null);
39898
+ aaguid: (string | null);
39899
+ backedUp: boolean;
39900
+ createdAt: string;
39901
+ signCount: number;
39902
+ lastUsedAt: (string | null);
39903
+ transports: string[];
39904
+ }[];
39905
+ }
39906
+ interface UsersPasskeysRevokeInput {
39907
+ /**
39908
+ * Why this credential is being revoked, and under which ticket. Recorded verbatim in the audit row — this is the whole point of the tool being audited.
39909
+ */
39910
+ reason: string;
39911
+ /**
39912
+ * The end user whose passkey is being revoked.
39913
+ */
39914
+ userId: string;
39915
+ /**
39916
+ * Which credential to revoke — the `id` from `users_passkeys_list`.
39917
+ */
39918
+ passkeyId: string;
39919
+ }
39920
+ interface UsersPasskeysRevokeOutput {
39921
+ /**
39922
+ * Present when the revoke was refused — today, only because it was the last way in.
39923
+ */
39924
+ error: ({
39925
+ code: string;
39926
+ message: string;
39927
+ } | null);
39928
+ status: ("deleted" | "failed");
39929
+ }
39718
39930
  interface UsersSessionsGetInput {
39719
39931
  /**
39720
39932
  * The session to read.
@@ -41160,9 +41372,6 @@ interface GeneratedClient {
41160
41372
  restore: {
41161
41373
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
41162
41374
  };
41163
- usage: {
41164
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
41165
- };
41166
41375
  };
41167
41376
  consent: {
41168
41377
  'config-cookie-domain': {
@@ -41644,6 +41853,34 @@ interface GeneratedClient {
41644
41853
  list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
41645
41854
  };
41646
41855
  };
41856
+ playground: {
41857
+ analytics: {
41858
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
41859
+ };
41860
+ billing: {
41861
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
41862
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
41863
+ };
41864
+ clickup: {
41865
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
41866
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
41867
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
41868
+ };
41869
+ gdrive: {
41870
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
41871
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
41872
+ };
41873
+ googleads: {
41874
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
41875
+ };
41876
+ lifecycle: {
41877
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
41878
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
41879
+ };
41880
+ webhook: {
41881
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
41882
+ };
41883
+ };
41647
41884
  realtime: {
41648
41885
  archive: {
41649
41886
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
@@ -41878,6 +42115,10 @@ interface GeneratedClient {
41878
42115
  'ops-slo': {
41879
42116
  get(input: UsersOpsSloGetInput): Promise<UsersOpsSloGetOutput>;
41880
42117
  };
42118
+ passkeys: {
42119
+ list(input: UsersPasskeysListInput): Promise<UsersPasskeysListOutput>;
42120
+ revoke(input: UsersPasskeysRevokeInput): Promise<UsersPasskeysRevokeOutput>;
42121
+ };
41881
42122
  sessions: {
41882
42123
  get(input: UsersSessionsGetInput): Promise<UsersSessionsGetOutput>;
41883
42124
  impersonate(input: UsersSessionsImpersonateInput): Promise<UsersSessionsImpersonateOutput>;
@@ -41943,4 +42184,4 @@ interface GeneratedClient {
41943
42184
  };
41944
42185
  }
41945
42186
 
41946
- 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, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput 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, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsEventsListOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, ObserveAlertsCreateInput as fW, ObserveAlertsCreateOutput as fX, ObserveAlertsDeleteInput as fY, ObserveAlertsDeleteOutput as fZ, ObserveAlertsEventsListInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationBillingCapsSetOutput as g$, ObserveAlertsGetInput as g0, ObserveAlertsGetOutput as g1, ObserveAlertsListInput as g2, ObserveAlertsListOutput as g3, ObserveAlertsUpdateInput as g4, ObserveAlertsUpdateOutput as g5, ObserveArtifactsDeleteInput as g6, ObserveArtifactsDeleteOutput as g7, ObserveArtifactsListInput as g8, ObserveArtifactsListOutput as g9, ObserveTracesSearchInput as gA, ObserveTracesSearchOutput as gB, ObserveWebhooksCreateInput as gC, ObserveWebhooksCreateOutput as gD, ObserveWebhooksDeleteInput as gE, ObserveWebhooksDeleteOutput as gF, ObserveWebhooksDeliveriesListInput as gG, ObserveWebhooksDeliveriesListOutput as gH, ObserveWebhooksGetInput as gI, ObserveWebhooksGetOutput as gJ, ObserveWebhooksListInput as gK, ObserveWebhooksListOutput as gL, ObserveWebhooksRedeliverInput as gM, ObserveWebhooksRedeliverOutput as gN, ObserveWebhooksRotateSecretInput as gO, ObserveWebhooksRotateSecretOutput as gP, ObserveWebhooksUpdateInput as gQ, ObserveWebhooksUpdateOutput as gR, OrganizationAuthMeInput as gS, OrganizationAuthMeOutput as gT, OrganizationBillingBudgetsGetInput as gU, OrganizationBillingBudgetsGetOutput as gV, OrganizationBillingBudgetsSetInput as gW, OrganizationBillingBudgetsSetOutput as gX, OrganizationBillingCapsClearInput as gY, OrganizationBillingCapsClearOutput as gZ, OrganizationBillingCapsSetInput as g_, ObserveArtifactsResolveInput as ga, ObserveArtifactsResolveOutput as gb, ObserveIssuesArchiveInput as gc, ObserveIssuesArchiveOutput as gd, ObserveIssuesAssignInput as ge, ObserveIssuesAssignOutput as gf, ObserveIssuesGetInput as gg, ObserveIssuesGetOutput as gh, ObserveIssuesListInput as gi, ObserveIssuesListOutput as gj, ObserveIssuesResolveInput as gk, ObserveIssuesResolveOutput as gl, ObserveKeysCreateInput as gm, ObserveKeysCreateOutput as gn, ObserveKeysListInput as go, ObserveKeysListOutput as gp, ObserveKeysRevokeInput as gq, ObserveKeysRevokeOutput as gr, ObserveLogsFacetsInput as gs, ObserveLogsFacetsOutput as gt, ObserveLogsSearchInput as gu, ObserveLogsSearchOutput as gv, ObserveLogsTailInput as gw, ObserveLogsTailOutput as gx, ObserveTracesGetInput as gy, ObserveTracesGetOutput as gz, BrainBackupsListOutput as h, OrganizationMemberListInvitationsOutput as h$, OrganizationBindingsListInput as h0, OrganizationBindingsListOutput as h1, OrganizationClickupInstallInput as h2, OrganizationClickupInstallOutput as h3, OrganizationClickupListInstallationsInput as h4, OrganizationClickupListInstallationsOutput as h5, OrganizationCloudflareInstallInput as h6, OrganizationCloudflareInstallOutput as h7, OrganizationConnectorsApproveRequestInput as h8, OrganizationConnectorsApproveRequestOutput as h9, OrganizationDomainsGetInput as hA, OrganizationDomainsGetOutput as hB, OrganizationDomainsListInput as hC, OrganizationDomainsListOutput as hD, OrganizationDomainsRemoveInput as hE, OrganizationDomainsRemoveOutput as hF, OrganizationDomainsSetModeInput as hG, OrganizationDomainsSetModeOutput as hH, OrganizationExtensionsListInstalledInput as hI, OrganizationExtensionsListInstalledOutput as hJ, OrganizationFeedbackSubmitInput as hK, OrganizationFeedbackSubmitOutput as hL, OrganizationGdriveInstallInput as hM, OrganizationGdriveInstallOutput as hN, OrganizationGithubInstallInput as hO, OrganizationGithubInstallOutput as hP, OrganizationGithubListInstallationsInput as hQ, OrganizationGithubListInstallationsOutput as hR, OrganizationGoogleadsInstallInput as hS, OrganizationGoogleadsInstallOutput as hT, OrganizationListInput as hU, OrganizationListOutput as hV, OrganizationMemberAcceptInviteInput as hW, OrganizationMemberAcceptInviteOutput as hX, OrganizationMemberInviteInput as hY, OrganizationMemberInviteOutput as hZ, OrganizationMemberListInvitationsInput as h_, OrganizationConnectorsAttachInput as ha, OrganizationConnectorsAttachOutput as hb, OrganizationConnectorsDeleteInput as hc, OrganizationConnectorsDeleteOutput as hd, OrganizationConnectorsDenyRequestInput as he, OrganizationConnectorsDenyRequestOutput as hf, OrganizationConnectorsDetachInput as hg, OrganizationConnectorsDetachOutput as hh, OrganizationConnectorsListAttachmentsInput as hi, OrganizationConnectorsListAttachmentsOutput as hj, OrganizationConnectorsListAvailableInput as hk, OrganizationConnectorsListAvailableOutput as hl, OrganizationConnectorsListOrgInput as hm, OrganizationConnectorsListOrgOutput as hn, OrganizationConnectorsListInput as ho, OrganizationConnectorsListOutput as hp, OrganizationConnectorsListRequestsInput as hq, OrganizationConnectorsListRequestsOutput as hr, OrganizationConnectorsRemoveInput as hs, OrganizationConnectorsRemoveOutput as ht, OrganizationConnectorsRequestInput as hu, OrganizationConnectorsRequestOutput as hv, OrganizationCreateInput as hw, OrganizationCreateOutput as hx, OrganizationDomainsAddInput as hy, OrganizationDomainsAddOutput as hz, BrainClickupChannelsListInput as i, OrganizationSupportThreadCreateOutput as i$, OrganizationMemberListProductAccessInput as i0, OrganizationMemberListProductAccessOutput as i1, OrganizationMemberListInput as i2, OrganizationMemberListOutput as i3, OrganizationMemberRemoveInput as i4, OrganizationMemberRemoveOutput as i5, OrganizationMemberRevokeInvitationInput as i6, OrganizationMemberRevokeInvitationOutput as i7, OrganizationMemberSetRoleInput as i8, OrganizationMemberSetRoleOutput as i9, OrganizationProductUpdateInput as iA, OrganizationProductUpdateOutput as iB, OrganizationPublicKeysCreateInput as iC, OrganizationPublicKeysCreateOutput as iD, OrganizationPublicKeysListInput as iE, OrganizationPublicKeysListOutput as iF, OrganizationPublicKeysRevokeInput as iG, OrganizationPublicKeysRevokeOutput as iH, OrganizationPublicKeysUpdateScopeInput as iI, OrganizationPublicKeysUpdateScopeOutput as iJ, OrganizationPublicRoutesListInput as iK, OrganizationPublicRoutesListOutput as iL, OrganizationRolesCreateInput as iM, OrganizationRolesCreateOutput as iN, OrganizationRolesDeleteInput as iO, OrganizationRolesDeleteOutput as iP, OrganizationRolesGetInput as iQ, OrganizationRolesGetOutput as iR, OrganizationRolesListInput as iS, OrganizationRolesListOutput as iT, OrganizationRolesUpdateInput as iU, OrganizationRolesUpdateOutput as iV, OrganizationSecurityMfaEnableInput as iW, OrganizationSecurityMfaEnableOutput as iX, OrganizationSelectInput as iY, OrganizationSelectOutput as iZ, OrganizationSupportThreadCreateInput as i_, OrganizationMemberShareProductInput as ia, OrganizationMemberShareProductOutput as ib, OrganizationMemberUnshareProductInput as ic, OrganizationMemberUnshareProductOutput as id, OrganizationMembersAssignRoleInput as ie, OrganizationMembersAssignRoleOutput as ig, OrganizationPermissionCatalogInput as ih, OrganizationPermissionCatalogOutput as ii, OrganizationProductCreateInput as ij, OrganizationProductCreateOutput as ik, OrganizationProductListAccessInput as il, OrganizationProductListAccessOutput as im, OrganizationProductListMembersInput as io, OrganizationProductListMembersOutput as ip, OrganizationProductListInput as iq, OrganizationProductListOutput as ir, OrganizationProductListRolesInput as is, OrganizationProductListRolesOutput as it, OrganizationProductRevokeAccessInput as iu, OrganizationProductRevokeAccessOutput as iv, OrganizationProductSelectInput as iw, OrganizationProductSelectOutput as ix, OrganizationProductSetAccessInput as iy, OrganizationProductSetAccessOutput as iz, BrainClickupChannelsListOutput as j, SupportAgentCreateOutput as j$, OrganizationSupportThreadGetInput as j0, OrganizationSupportThreadGetOutput as j1, OrganizationSupportThreadReplyInput as j2, OrganizationSupportThreadReplyOutput as j3, OrganizationSupportThreadsListInput as j4, OrganizationSupportThreadsListOutput as j5, RealtimeArchiveExportInput as j6, RealtimeArchiveExportOutput as j7, RealtimeArchiveExportStatusInput as j8, RealtimeArchiveExportStatusOutput as j9, RealtimePresenceLeaveInput as jA, RealtimePresenceLeaveOutput as jB, RealtimePresenceStatsInput as jC, RealtimePresenceStatsOutput as jD, RealtimePresenceUpdateInput as jE, RealtimePresenceUpdateOutput as jF, RealtimePublicAccessStatusInput as jG, RealtimePublicAccessStatusOutput as jH, RealtimeStatusGetInput as jI, RealtimeStatusGetOutput as jJ, RealtimeTokensCreateInput as jK, RealtimeTokensCreateOutput as jL, RealtimeWebhookCreateInput as jM, RealtimeWebhookCreateOutput as jN, RealtimeWebhookDeleteInput as jO, RealtimeWebhookDeleteOutput as jP, RealtimeWebhookDeliveriesListInput as jQ, RealtimeWebhookDeliveriesListOutput as jR, RealtimeWebhookGetInput as jS, RealtimeWebhookGetOutput as jT, RealtimeWebhookListInput as jU, RealtimeWebhookListOutput as jV, RealtimeWebhookSecretRotateInput as jW, RealtimeWebhookSecretRotateOutput as jX, RealtimeWebhookUpdateInput as jY, RealtimeWebhookUpdateOutput as jZ, SupportAgentCreateInput as j_, RealtimeArchiveGetInput as ja, RealtimeArchiveGetOutput as jb, RealtimeGrantCreateInput as jc, RealtimeGrantCreateOutput as jd, RealtimeGrantListInput as je, RealtimeGrantListOutput as jf, RealtimeGrantRevokeInput as jg, RealtimeGrantRevokeOutput as jh, RealtimeHistoryGetInput as ji, RealtimeHistoryGetOutput as jj, RealtimeMessagesPublishInput as jk, RealtimeMessagesPublishOutput as jl, RealtimeNamespaceCreateInput as jm, RealtimeNamespaceCreateOutput as jn, RealtimeNamespaceDeleteInput as jo, RealtimeNamespaceDeleteOutput as jp, RealtimeNamespaceGetInput as jq, RealtimeNamespaceGetOutput as jr, RealtimeNamespaceListInput as js, RealtimeNamespaceListOutput as jt, RealtimeNamespaceUpdateInput as ju, RealtimeNamespaceUpdateOutput as jv, RealtimePresenceEnterInput as jw, RealtimePresenceEnterOutput as jx, RealtimePresenceGetInput as jy, RealtimePresenceGetOutput as jz, BrainClickupConnectionsListInput as k, SupportThreadGetOutput as k$, SupportAgentGetInput as k0, SupportAgentGetOutput as k1, SupportAgentListInput as k2, SupportAgentListOutput as k3, SupportAgentUpdateInput as k4, SupportAgentUpdateOutput as k5, SupportAttachmentCreateInput as k6, SupportAttachmentCreateOutput as k7, SupportAttachmentFinalizeInput as k8, SupportAttachmentFinalizeOutput as k9, SupportStatusCreateInput as kA, SupportStatusCreateOutput as kB, SupportStatusListInput as kC, SupportStatusListOutput as kD, SupportStatusUpdateInput as kE, SupportStatusUpdateOutput as kF, SupportSurveyArchiveInput as kG, SupportSurveyArchiveOutput as kH, SupportSurveyCreateInput as kI, SupportSurveyCreateOutput as kJ, SupportSurveyGetInput as kK, SupportSurveyGetOutput as kL, SupportSurveyListInput as kM, SupportSurveyListOutput as kN, SupportSurveyPublishInput as kO, SupportSurveyPublishOutput as kP, SupportSurveyStatsInput as kQ, SupportSurveyStatsOutput as kR, SupportSurveyUnpublishInput as kS, SupportSurveyUnpublishOutput as kT, SupportSurveyUpdateInput as kU, SupportSurveyUpdateOutput as kV, SupportThreadAssignInput as kW, SupportThreadAssignOutput as kX, SupportThreadCreateInput as kY, SupportThreadCreateOutput as kZ, SupportThreadGetInput as k_, SupportLabelCreateInput as ka, SupportLabelCreateOutput as kb, SupportLabelListInput as kc, SupportLabelListOutput as kd, SupportMessageCreateInput as ke, SupportMessageCreateOutput as kf, SupportMessageListInput as kg, SupportMessageListOutput as kh, SupportResponseEscalateInput as ki, SupportResponseEscalateOutput as kj, SupportResponseGetInput as kk, SupportResponseGetOutput as kl, SupportResponseListInput as km, SupportResponseListOutput as kn, SupportRuleCreateInput as ko, SupportRuleCreateOutput as kp, SupportRuleDeleteInput as kq, SupportRuleDeleteOutput as kr, SupportRuleGetInput as ks, SupportRuleGetOutput as kt, SupportRuleListInput as ku, SupportRuleListOutput as kv, SupportRuleUpdateInput as kw, SupportRuleUpdateOutput as kx, SupportStatusArchiveInput as ky, SupportStatusArchiveOutput as kz, BrainClickupConnectionsListOutput as l, TrackingInstallDomainsCreateOutput as l$, SupportThreadListInput as l0, SupportThreadListOutput as l1, SupportThreadStatusSetInput as l2, SupportThreadStatusSetOutput as l3, SupportThreadUpdateInput as l4, SupportThreadUpdateOutput as l5, SupportWebhookCreateInput as l6, SupportWebhookCreateOutput as l7, SupportWebhookDeleteInput as l8, SupportWebhookDeleteOutput as l9, TrackingEventNamesUnarchiveInput as lA, TrackingEventNamesUnarchiveOutput as lB, TrackingGoogleadsConnectionStatusInput as lC, TrackingGoogleadsConnectionStatusOutput as lD, TrackingGoogleadsConversionActionsInput as lE, TrackingGoogleadsConversionActionsOutput as lF, TrackingGoogleadsFeedbackConfigGetInput as lG, TrackingGoogleadsFeedbackConfigGetOutput as lH, TrackingGoogleadsFeedbackConfigSetInput as lI, TrackingGoogleadsFeedbackConfigSetOutput as lJ, TrackingGoogleadsFeedbackRunInput as lK, TrackingGoogleadsFeedbackRunOutput as lL, TrackingGoogleadsFeedbackStatusInput as lM, TrackingGoogleadsFeedbackStatusOutput as lN, TrackingGoogleadsFeedbackUploadsInput as lO, TrackingGoogleadsFeedbackUploadsOutput as lP, TrackingGoogleadsRoasReportInput as lQ, TrackingGoogleadsRoasReportOutput as lR, TrackingGoogleadsSyncNowInput as lS, TrackingGoogleadsSyncNowOutput as lT, TrackingGoogleadsTrackingHealthInput as lU, TrackingGoogleadsTrackingHealthOutput as lV, TrackingGoogleadsUsVsPlatformInput as lW, TrackingGoogleadsUsVsPlatformOutput as lX, TrackingIdentityHealthInput as lY, TrackingIdentityHealthOutput as lZ, TrackingInstallDomainsCreateInput as l_, SupportWebhookDeliveriesListInput as la, SupportWebhookDeliveriesListOutput as lb, SupportWebhookGetInput as lc, SupportWebhookGetOutput as ld, SupportWebhookListInput as le, SupportWebhookListOutput as lf, SupportWebhookRedeliverInput as lg, SupportWebhookRedeliverOutput as lh, SupportWebhookRotateSecretInput as li, SupportWebhookRotateSecretOutput as lj, SupportWebhookUpdateInput as lk, SupportWebhookUpdateOutput as ll, TrackingDomainsCreateInput as lm, TrackingDomainsCreateOutput as ln, TrackingDomainsDeleteInput as lo, TrackingDomainsDeleteOutput as lp, TrackingDomainsGetInput as lq, TrackingDomainsGetOutput as lr, TrackingDomainsListInput as ls, TrackingDomainsListOutput as lt, TrackingDomainsVerifyInput as lu, TrackingDomainsVerifyOutput as lv, TrackingEventNamesArchiveInput as lw, TrackingEventNamesArchiveOutput as lx, TrackingEventNamesListInput as ly, TrackingEventNamesListOutput as lz, BrainClickupListsListInput as m, UsersSessionsRevokeOutput as m$, TrackingInstallDomainsDeleteInput as m0, TrackingInstallDomainsDeleteOutput as m1, TrackingInstallDomainsListInput as m2, TrackingInstallDomainsListOutput as m3, TrackingLinkDomainsCreateInput as m4, TrackingLinkDomainsCreateOutput as m5, TrackingLinkDomainsDeleteInput as m6, TrackingLinkDomainsDeleteOutput as m7, TrackingLinkDomainsListInput as m8, TrackingLinkDomainsListOutput as m9, UsersAuditListInput as mA, UsersAuditListOutput as mB, UsersConfigGetInput as mC, UsersConfigGetOutput as mD, UsersConfigUpsertInput as mE, UsersConfigUpsertOutput as mF, UsersFactorsListInput as mG, UsersFactorsListOutput as mH, UsersFactorsResetInput as mI, UsersFactorsResetOutput as mJ, UsersKeysListInput as mK, UsersKeysListOutput as mL, UsersKeysRevokeInput as mM, UsersKeysRevokeOutput as mN, UsersKeysRotateInput as mO, UsersKeysRotateOutput as mP, UsersOpsRetentionGetInput as mQ, UsersOpsRetentionGetOutput as mR, UsersOpsSloGetInput as mS, UsersOpsSloGetOutput as mT, UsersSessionsGetInput as mU, UsersSessionsGetOutput as mV, UsersSessionsImpersonateInput as mW, UsersSessionsImpersonateOutput as mX, UsersSessionsListInput as mY, UsersSessionsListOutput as mZ, UsersSessionsRevokeInput as m_, TrackingLiveEventsListInput as ma, TrackingLiveEventsListOutput as mb, TrackingProfilesDeleteInput as mc, TrackingProfilesDeleteOutput as md, TrackingProfilesExportInput as me, TrackingProfilesExportOutput as mf, TrackingProfilesGetInput as mg, TrackingProfilesGetOutput as mh, TrackingProfilesListInput as mi, TrackingProfilesListOutput as mj, TrackingReportsAttributedJourneyInput as mk, TrackingReportsAttributedJourneyOutput as ml, TrackingReportsEventVolumeInput as mm, TrackingReportsEventVolumeOutput as mn, TrackingReportsRevenueBySourceInput as mo, TrackingReportsRevenueBySourceOutput as mp, TrackingReportsSourcePeopleInput as mq, TrackingReportsSourcePeopleOutput as mr, TrackingSnippetsGetInput as ms, TrackingSnippetsGetOutput as mt, UsersApikeysCreateInput as mu, UsersApikeysCreateOutput as mv, UsersApikeysListInput as mw, UsersApikeysListOutput as mx, UsersApikeysRevokeInput as my, UsersApikeysRevokeOutput as mz, BrainClickupListsListOutput as n, WaitlistSignupsListOutput as n$, UsersStatsGetInput as n0, UsersStatsGetOutput as n1, UsersUsersBanInput as n2, UsersUsersBanOutput as n3, UsersUsersCreateInput as n4, UsersUsersCreateOutput as n5, UsersUsersDeleteInput as n6, UsersUsersDeleteOutput as n7, UsersUsersEraseInput as n8, UsersUsersEraseOutput as n9, UsersWebhooksCreateInput as nA, UsersWebhooksCreateOutput as nB, UsersWebhooksDeleteInput as nC, UsersWebhooksDeleteOutput as nD, UsersWebhooksDeliveriesListInput as nE, UsersWebhooksDeliveriesListOutput as nF, UsersWebhooksGetInput as nG, UsersWebhooksGetOutput as nH, UsersWebhooksListInput as nI, UsersWebhooksListOutput as nJ, UsersWebhooksRotateSecretInput as nK, UsersWebhooksRotateSecretOutput as nL, UsersWebhooksUpdateInput as nM, UsersWebhooksUpdateOutput as nN, WaitlistConfigGetInput as nO, WaitlistConfigGetOutput as nP, WaitlistConfigUpsertInput as nQ, WaitlistConfigUpsertOutput as nR, WaitlistEmbedGetInput as nS, WaitlistEmbedGetOutput as nT, WaitlistInvitesSendInput as nU, WaitlistInvitesSendOutput as nV, WaitlistSignupsEraseInput as nW, WaitlistSignupsEraseOutput as nX, WaitlistSignupsFunnelInput as nY, WaitlistSignupsFunnelOutput as nZ, WaitlistSignupsListInput as n_, UsersUsersExportInput as na, UsersUsersExportOutput as nb, UsersUsersGetInput as nc, UsersUsersGetOutput as nd, UsersUsersImportInput as ne, UsersUsersImportOutput as nf, UsersUsersInviteInput as ng, UsersUsersInviteOutput as nh, UsersUsersListInput as ni, UsersUsersListOutput as nj, UsersUsersSetPrimaryIdentifierInput as nk, UsersUsersSetPrimaryIdentifierOutput as nl, UsersUsersUnbanInput as nm, UsersUsersUnbanOutput as nn, UsersUsersUpdateInput as no, UsersUsersUpdateOutput as np, UsersWaitlistEraseInput as nq, UsersWaitlistEraseOutput as nr, UsersWaitlistFunnelInput as ns, UsersWaitlistFunnelOutput as nt, UsersWaitlistImportInput as nu, UsersWaitlistImportOutput as nv, UsersWaitlistInviteInput as nw, UsersWaitlistInviteOutput as nx, UsersWaitlistListInput as ny, UsersWaitlistListOutput as nz, 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 };
42187
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsGetOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationBindingsListOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveWebhooksCreateInput as gA, ObserveWebhooksCreateOutput as gB, ObserveWebhooksDeleteInput as gC, ObserveWebhooksDeleteOutput as gD, ObserveWebhooksDeliveriesListInput as gE, ObserveWebhooksDeliveriesListOutput as gF, ObserveWebhooksGetInput as gG, ObserveWebhooksGetOutput as gH, ObserveWebhooksListInput as gI, ObserveWebhooksListOutput as gJ, ObserveWebhooksRedeliverInput as gK, ObserveWebhooksRedeliverOutput as gL, ObserveWebhooksRotateSecretInput as gM, ObserveWebhooksRotateSecretOutput as gN, ObserveWebhooksUpdateInput as gO, ObserveWebhooksUpdateOutput as gP, OrganizationAuthMeInput as gQ, OrganizationAuthMeOutput as gR, OrganizationBillingBudgetsGetInput as gS, OrganizationBillingBudgetsGetOutput as gT, OrganizationBillingBudgetsSetInput as gU, OrganizationBillingBudgetsSetOutput as gV, OrganizationBillingCapsClearInput as gW, OrganizationBillingCapsClearOutput as gX, OrganizationBillingCapsSetInput as gY, OrganizationBillingCapsSetOutput as gZ, OrganizationBindingsListInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesGetInput as ge, ObserveIssuesGetOutput as gf, ObserveIssuesListInput as gg, ObserveIssuesListOutput as gh, ObserveIssuesResolveInput as gi, ObserveIssuesResolveOutput as gj, ObserveKeysCreateInput as gk, ObserveKeysCreateOutput as gl, ObserveKeysListInput as gm, ObserveKeysListOutput as gn, ObserveKeysRevokeInput as go, ObserveKeysRevokeOutput as gp, ObserveLogsFacetsInput as gq, ObserveLogsFacetsOutput as gr, ObserveLogsSearchInput as gs, ObserveLogsSearchOutput as gt, ObserveLogsTailInput as gu, ObserveLogsTailOutput as gv, ObserveTracesGetInput as gw, ObserveTracesGetOutput as gx, ObserveTracesSearchInput as gy, ObserveTracesSearchOutput as gz, BrainBackupsListOutput as h, OrganizationMemberListProductAccessOutput as h$, OrganizationClickupInstallInput as h0, OrganizationClickupInstallOutput as h1, OrganizationClickupListInstallationsInput as h2, OrganizationClickupListInstallationsOutput as h3, OrganizationCloudflareInstallInput as h4, OrganizationCloudflareInstallOutput as h5, OrganizationConnectorsApproveRequestInput as h6, OrganizationConnectorsApproveRequestOutput as h7, OrganizationConnectorsAttachInput as h8, OrganizationConnectorsAttachOutput as h9, OrganizationDomainsListInput as hA, OrganizationDomainsListOutput as hB, OrganizationDomainsRemoveInput as hC, OrganizationDomainsRemoveOutput as hD, OrganizationDomainsSetModeInput as hE, OrganizationDomainsSetModeOutput as hF, OrganizationExtensionsListInstalledInput as hG, OrganizationExtensionsListInstalledOutput as hH, OrganizationFeedbackSubmitInput as hI, OrganizationFeedbackSubmitOutput as hJ, OrganizationGdriveInstallInput as hK, OrganizationGdriveInstallOutput as hL, OrganizationGithubInstallInput as hM, OrganizationGithubInstallOutput as hN, OrganizationGithubListInstallationsInput as hO, OrganizationGithubListInstallationsOutput as hP, OrganizationGoogleadsInstallInput as hQ, OrganizationGoogleadsInstallOutput as hR, OrganizationListInput as hS, OrganizationListOutput as hT, OrganizationMemberAcceptInviteInput as hU, OrganizationMemberAcceptInviteOutput as hV, OrganizationMemberInviteInput as hW, OrganizationMemberInviteOutput as hX, OrganizationMemberListInvitationsInput as hY, OrganizationMemberListInvitationsOutput as hZ, OrganizationMemberListProductAccessInput as h_, OrganizationConnectorsDeleteInput as ha, OrganizationConnectorsDeleteOutput as hb, OrganizationConnectorsDenyRequestInput as hc, OrganizationConnectorsDenyRequestOutput as hd, OrganizationConnectorsDetachInput as he, OrganizationConnectorsDetachOutput as hf, OrganizationConnectorsListAttachmentsInput as hg, OrganizationConnectorsListAttachmentsOutput as hh, OrganizationConnectorsListAvailableInput as hi, OrganizationConnectorsListAvailableOutput as hj, OrganizationConnectorsListOrgInput as hk, OrganizationConnectorsListOrgOutput as hl, OrganizationConnectorsListInput as hm, OrganizationConnectorsListOutput as hn, OrganizationConnectorsListRequestsInput as ho, OrganizationConnectorsListRequestsOutput as hp, OrganizationConnectorsRemoveInput as hq, OrganizationConnectorsRemoveOutput as hr, OrganizationConnectorsRequestInput as hs, OrganizationConnectorsRequestOutput as ht, OrganizationCreateInput as hu, OrganizationCreateOutput as hv, OrganizationDomainsAddInput as hw, OrganizationDomainsAddOutput as hx, OrganizationDomainsGetInput as hy, OrganizationDomainsGetOutput as hz, BrainClickupChannelsListInput as i, OrganizationSupportThreadGetOutput as i$, OrganizationMemberListInput as i0, OrganizationMemberListOutput as i1, OrganizationMemberRemoveInput as i2, OrganizationMemberRemoveOutput as i3, OrganizationMemberRevokeInvitationInput as i4, OrganizationMemberRevokeInvitationOutput as i5, OrganizationMemberSetRoleInput as i6, OrganizationMemberSetRoleOutput as i7, OrganizationMemberShareProductInput as i8, OrganizationMemberShareProductOutput as i9, OrganizationPublicKeysCreateInput as iA, OrganizationPublicKeysCreateOutput as iB, OrganizationPublicKeysListInput as iC, OrganizationPublicKeysListOutput as iD, OrganizationPublicKeysRevokeInput as iE, OrganizationPublicKeysRevokeOutput as iF, OrganizationPublicKeysUpdateScopeInput as iG, OrganizationPublicKeysUpdateScopeOutput as iH, OrganizationPublicRoutesListInput as iI, OrganizationPublicRoutesListOutput as iJ, OrganizationRolesCreateInput as iK, OrganizationRolesCreateOutput as iL, OrganizationRolesDeleteInput as iM, OrganizationRolesDeleteOutput as iN, OrganizationRolesGetInput as iO, OrganizationRolesGetOutput as iP, OrganizationRolesListInput as iQ, OrganizationRolesListOutput as iR, OrganizationRolesUpdateInput as iS, OrganizationRolesUpdateOutput as iT, OrganizationSecurityMfaEnableInput as iU, OrganizationSecurityMfaEnableOutput as iV, OrganizationSelectInput as iW, OrganizationSelectOutput as iX, OrganizationSupportThreadCreateInput as iY, OrganizationSupportThreadCreateOutput as iZ, OrganizationSupportThreadGetInput as i_, OrganizationMemberUnshareProductInput as ia, OrganizationMemberUnshareProductOutput as ib, OrganizationMembersAssignRoleInput as ic, OrganizationMembersAssignRoleOutput as id, OrganizationPermissionCatalogInput as ie, OrganizationPermissionCatalogOutput as ig, OrganizationProductCreateInput as ih, OrganizationProductCreateOutput as ii, OrganizationProductListAccessInput as ij, OrganizationProductListAccessOutput as ik, OrganizationProductListMembersInput as il, OrganizationProductListMembersOutput as im, OrganizationProductListInput as io, OrganizationProductListOutput as ip, OrganizationProductListRolesInput as iq, OrganizationProductListRolesOutput as ir, OrganizationProductRevokeAccessInput as is, OrganizationProductRevokeAccessOutput as it, OrganizationProductSelectInput as iu, OrganizationProductSelectOutput as iv, OrganizationProductSetAccessInput as iw, OrganizationProductSetAccessOutput as ix, OrganizationProductUpdateInput as iy, OrganizationProductUpdateOutput as iz, BrainClickupChannelsListOutput as j, RealtimePresenceUpdateOutput as j$, OrganizationSupportThreadReplyInput as j0, OrganizationSupportThreadReplyOutput as j1, OrganizationSupportThreadsListInput as j2, OrganizationSupportThreadsListOutput as j3, PlaygroundAnalyticsOverviewInput as j4, PlaygroundAnalyticsOverviewOutput as j5, PlaygroundBillingEntitlementsInput as j6, PlaygroundBillingEntitlementsOutput as j7, PlaygroundBillingRecordUsageInput as j8, PlaygroundBillingRecordUsageOutput as j9, RealtimeGrantListInput as jA, RealtimeGrantListOutput as jB, RealtimeGrantRevokeInput as jC, RealtimeGrantRevokeOutput as jD, RealtimeHistoryGetInput as jE, RealtimeHistoryGetOutput as jF, RealtimeMessagesPublishInput as jG, RealtimeMessagesPublishOutput as jH, RealtimeNamespaceCreateInput as jI, RealtimeNamespaceCreateOutput as jJ, RealtimeNamespaceDeleteInput as jK, RealtimeNamespaceDeleteOutput as jL, RealtimeNamespaceGetInput as jM, RealtimeNamespaceGetOutput as jN, RealtimeNamespaceListInput as jO, RealtimeNamespaceListOutput as jP, RealtimeNamespaceUpdateInput as jQ, RealtimeNamespaceUpdateOutput as jR, RealtimePresenceEnterInput as jS, RealtimePresenceEnterOutput as jT, RealtimePresenceGetInput as jU, RealtimePresenceGetOutput as jV, RealtimePresenceLeaveInput as jW, RealtimePresenceLeaveOutput as jX, RealtimePresenceStatsInput as jY, RealtimePresenceStatsOutput as jZ, RealtimePresenceUpdateInput as j_, PlaygroundClickupCreateTaskInput as ja, PlaygroundClickupCreateTaskOutput as jb, PlaygroundClickupGetLastWebhookInput as jc, PlaygroundClickupGetLastWebhookOutput as jd, PlaygroundClickupGetOverviewInput as je, PlaygroundClickupGetOverviewOutput as jf, PlaygroundGdriveGetLastChangeInput as jg, PlaygroundGdriveGetLastChangeOutput as jh, PlaygroundGdriveReadFileInput as ji, PlaygroundGdriveReadFileOutput as jj, PlaygroundGoogleadsReadCustomerInput as jk, PlaygroundGoogleadsReadCustomerOutput as jl, PlaygroundLifecycleGetStateInput as jm, PlaygroundLifecycleGetStateOutput as jn, PlaygroundLifecycleListEventsInput as jo, PlaygroundLifecycleListEventsOutput as jp, PlaygroundWebhookGetLastInput as jq, PlaygroundWebhookGetLastOutput as jr, RealtimeArchiveExportInput as js, RealtimeArchiveExportOutput as jt, RealtimeArchiveExportStatusInput as ju, RealtimeArchiveExportStatusOutput as jv, RealtimeArchiveGetInput as jw, RealtimeArchiveGetOutput as jx, RealtimeGrantCreateInput as jy, RealtimeGrantCreateOutput as jz, BrainClickupConnectionsListInput as k, SupportStatusUpdateOutput as k$, RealtimePublicAccessStatusInput as k0, RealtimePublicAccessStatusOutput as k1, RealtimeStatusGetInput as k2, RealtimeStatusGetOutput as k3, RealtimeTokensCreateInput as k4, RealtimeTokensCreateOutput as k5, RealtimeWebhookCreateInput as k6, RealtimeWebhookCreateOutput as k7, RealtimeWebhookDeleteInput as k8, RealtimeWebhookDeleteOutput as k9, SupportMessageCreateInput as kA, SupportMessageCreateOutput as kB, SupportMessageListInput as kC, SupportMessageListOutput as kD, SupportResponseEscalateInput as kE, SupportResponseEscalateOutput as kF, SupportResponseGetInput as kG, SupportResponseGetOutput as kH, SupportResponseListInput as kI, SupportResponseListOutput as kJ, SupportRuleCreateInput as kK, SupportRuleCreateOutput as kL, SupportRuleDeleteInput as kM, SupportRuleDeleteOutput as kN, SupportRuleGetInput as kO, SupportRuleGetOutput as kP, SupportRuleListInput as kQ, SupportRuleListOutput as kR, SupportRuleUpdateInput as kS, SupportRuleUpdateOutput as kT, SupportStatusArchiveInput as kU, SupportStatusArchiveOutput as kV, SupportStatusCreateInput as kW, SupportStatusCreateOutput as kX, SupportStatusListInput as kY, SupportStatusListOutput as kZ, SupportStatusUpdateInput as k_, RealtimeWebhookDeliveriesListInput as ka, RealtimeWebhookDeliveriesListOutput as kb, RealtimeWebhookGetInput as kc, RealtimeWebhookGetOutput as kd, RealtimeWebhookListInput as ke, RealtimeWebhookListOutput as kf, RealtimeWebhookSecretRotateInput as kg, RealtimeWebhookSecretRotateOutput as kh, RealtimeWebhookUpdateInput as ki, RealtimeWebhookUpdateOutput as kj, SupportAgentCreateInput as kk, SupportAgentCreateOutput as kl, SupportAgentGetInput as km, SupportAgentGetOutput as kn, SupportAgentListInput as ko, SupportAgentListOutput as kp, SupportAgentUpdateInput as kq, SupportAgentUpdateOutput as kr, SupportAttachmentCreateInput as ks, SupportAttachmentCreateOutput as kt, SupportAttachmentFinalizeInput as ku, SupportAttachmentFinalizeOutput as kv, SupportLabelCreateInput as kw, SupportLabelCreateOutput as kx, SupportLabelListInput as ky, SupportLabelListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsConversionActionsOutput as l$, SupportSurveyArchiveInput as l0, SupportSurveyArchiveOutput as l1, SupportSurveyCreateInput as l2, SupportSurveyCreateOutput as l3, SupportSurveyGetInput as l4, SupportSurveyGetOutput as l5, SupportSurveyListInput as l6, SupportSurveyListOutput as l7, SupportSurveyPublishInput as l8, SupportSurveyPublishOutput as l9, SupportWebhookListInput as lA, SupportWebhookListOutput as lB, SupportWebhookRedeliverInput as lC, SupportWebhookRedeliverOutput as lD, SupportWebhookRotateSecretInput as lE, SupportWebhookRotateSecretOutput as lF, SupportWebhookUpdateInput as lG, SupportWebhookUpdateOutput as lH, TrackingDomainsCreateInput as lI, TrackingDomainsCreateOutput as lJ, TrackingDomainsDeleteInput as lK, TrackingDomainsDeleteOutput as lL, TrackingDomainsGetInput as lM, TrackingDomainsGetOutput as lN, TrackingDomainsListInput as lO, TrackingDomainsListOutput as lP, TrackingDomainsVerifyInput as lQ, TrackingDomainsVerifyOutput as lR, TrackingEventNamesArchiveInput as lS, TrackingEventNamesArchiveOutput as lT, TrackingEventNamesListInput as lU, TrackingEventNamesListOutput as lV, TrackingEventNamesUnarchiveInput as lW, TrackingEventNamesUnarchiveOutput as lX, TrackingGoogleadsConnectionStatusInput as lY, TrackingGoogleadsConnectionStatusOutput as lZ, TrackingGoogleadsConversionActionsInput as l_, SupportSurveyStatsInput as la, SupportSurveyStatsOutput as lb, SupportSurveyUnpublishInput as lc, SupportSurveyUnpublishOutput as ld, SupportSurveyUpdateInput as le, SupportSurveyUpdateOutput as lf, SupportThreadAssignInput as lg, SupportThreadAssignOutput as lh, SupportThreadCreateInput as li, SupportThreadCreateOutput as lj, SupportThreadGetInput as lk, SupportThreadGetOutput as ll, SupportThreadListInput as lm, SupportThreadListOutput as ln, SupportThreadStatusSetInput as lo, SupportThreadStatusSetOutput as lp, SupportThreadUpdateInput as lq, SupportThreadUpdateOutput as lr, SupportWebhookCreateInput as ls, SupportWebhookCreateOutput as lt, SupportWebhookDeleteInput as lu, SupportWebhookDeleteOutput as lv, SupportWebhookDeliveriesListInput as lw, SupportWebhookDeliveriesListOutput as lx, SupportWebhookGetInput as ly, SupportWebhookGetOutput as lz, BrainClickupListsListInput as m, UsersConfigUpsertOutput as m$, TrackingGoogleadsFeedbackConfigGetInput as m0, TrackingGoogleadsFeedbackConfigGetOutput as m1, TrackingGoogleadsFeedbackConfigSetInput as m2, TrackingGoogleadsFeedbackConfigSetOutput as m3, TrackingGoogleadsFeedbackRunInput as m4, TrackingGoogleadsFeedbackRunOutput as m5, TrackingGoogleadsFeedbackStatusInput as m6, TrackingGoogleadsFeedbackStatusOutput as m7, TrackingGoogleadsFeedbackUploadsInput as m8, TrackingGoogleadsFeedbackUploadsOutput as m9, TrackingProfilesExportInput as mA, TrackingProfilesExportOutput as mB, TrackingProfilesGetInput as mC, TrackingProfilesGetOutput as mD, TrackingProfilesListInput as mE, TrackingProfilesListOutput as mF, TrackingReportsAttributedJourneyInput as mG, TrackingReportsAttributedJourneyOutput as mH, TrackingReportsEventVolumeInput as mI, TrackingReportsEventVolumeOutput as mJ, TrackingReportsRevenueBySourceInput as mK, TrackingReportsRevenueBySourceOutput as mL, TrackingReportsSourcePeopleInput as mM, TrackingReportsSourcePeopleOutput as mN, TrackingSnippetsGetInput as mO, TrackingSnippetsGetOutput as mP, UsersApikeysCreateInput as mQ, UsersApikeysCreateOutput as mR, UsersApikeysListInput as mS, UsersApikeysListOutput as mT, UsersApikeysRevokeInput as mU, UsersApikeysRevokeOutput as mV, UsersAuditListInput as mW, UsersAuditListOutput as mX, UsersConfigGetInput as mY, UsersConfigGetOutput as mZ, UsersConfigUpsertInput as m_, TrackingGoogleadsRoasReportInput as ma, TrackingGoogleadsRoasReportOutput as mb, TrackingGoogleadsSyncNowInput as mc, TrackingGoogleadsSyncNowOutput as md, TrackingGoogleadsTrackingHealthInput as me, TrackingGoogleadsTrackingHealthOutput as mf, TrackingGoogleadsUsVsPlatformInput as mg, TrackingGoogleadsUsVsPlatformOutput as mh, TrackingIdentityHealthInput as mi, TrackingIdentityHealthOutput as mj, TrackingInstallDomainsCreateInput as mk, TrackingInstallDomainsCreateOutput as ml, TrackingInstallDomainsDeleteInput as mm, TrackingInstallDomainsDeleteOutput as mn, TrackingInstallDomainsListInput as mo, TrackingInstallDomainsListOutput as mp, TrackingLinkDomainsCreateInput as mq, TrackingLinkDomainsCreateOutput as mr, TrackingLinkDomainsDeleteInput as ms, TrackingLinkDomainsDeleteOutput as mt, TrackingLinkDomainsListInput as mu, TrackingLinkDomainsListOutput as mv, TrackingLiveEventsListInput as mw, TrackingLiveEventsListOutput as mx, TrackingProfilesDeleteInput as my, TrackingProfilesDeleteOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksCreateOutput as n$, UsersFactorsListInput as n0, UsersFactorsListOutput as n1, UsersFactorsResetInput as n2, UsersFactorsResetOutput as n3, UsersKeysListInput as n4, UsersKeysListOutput as n5, UsersKeysRevokeInput as n6, UsersKeysRevokeOutput as n7, UsersKeysRotateInput as n8, UsersKeysRotateOutput as n9, UsersUsersExportInput as nA, UsersUsersExportOutput as nB, UsersUsersGetInput as nC, UsersUsersGetOutput as nD, UsersUsersImportInput as nE, UsersUsersImportOutput as nF, UsersUsersInviteInput as nG, UsersUsersInviteOutput as nH, UsersUsersListInput as nI, UsersUsersListOutput as nJ, UsersUsersSetPrimaryIdentifierInput as nK, UsersUsersSetPrimaryIdentifierOutput as nL, UsersUsersUnbanInput as nM, UsersUsersUnbanOutput as nN, UsersUsersUpdateInput as nO, UsersUsersUpdateOutput as nP, UsersWaitlistEraseInput as nQ, UsersWaitlistEraseOutput as nR, UsersWaitlistFunnelInput as nS, UsersWaitlistFunnelOutput as nT, UsersWaitlistImportInput as nU, UsersWaitlistImportOutput as nV, UsersWaitlistInviteInput as nW, UsersWaitlistInviteOutput as nX, UsersWaitlistListInput as nY, UsersWaitlistListOutput as nZ, UsersWebhooksCreateInput as n_, UsersOpsRetentionGetInput as na, UsersOpsRetentionGetOutput as nb, UsersOpsSloGetInput as nc, UsersOpsSloGetOutput as nd, UsersPasskeysListInput as ne, UsersPasskeysListOutput as nf, UsersPasskeysRevokeInput as ng, UsersPasskeysRevokeOutput as nh, UsersSessionsGetInput as ni, UsersSessionsGetOutput as nj, UsersSessionsImpersonateInput as nk, UsersSessionsImpersonateOutput as nl, UsersSessionsListInput as nm, UsersSessionsListOutput as nn, UsersSessionsRevokeInput as no, UsersSessionsRevokeOutput as np, UsersStatsGetInput as nq, UsersStatsGetOutput as nr, UsersUsersBanInput as ns, UsersUsersBanOutput as nt, UsersUsersCreateInput as nu, UsersUsersCreateOutput as nv, UsersUsersDeleteInput as nw, UsersUsersDeleteOutput as nx, UsersUsersEraseInput as ny, UsersUsersEraseOutput as nz, BrainClickupSpacesListInput as o, UsersWebhooksDeleteInput as o0, UsersWebhooksDeleteOutput as o1, UsersWebhooksDeliveriesListInput as o2, UsersWebhooksDeliveriesListOutput as o3, UsersWebhooksGetInput as o4, UsersWebhooksGetOutput as o5, UsersWebhooksListInput as o6, UsersWebhooksListOutput as o7, UsersWebhooksRotateSecretInput as o8, UsersWebhooksRotateSecretOutput as o9, UsersWebhooksUpdateInput as oa, UsersWebhooksUpdateOutput as ob, WaitlistConfigGetInput as oc, WaitlistConfigGetOutput as od, WaitlistConfigUpsertInput as oe, WaitlistConfigUpsertOutput as of, WaitlistEmbedGetInput as og, WaitlistEmbedGetOutput as oh, WaitlistInvitesSendInput as oi, WaitlistInvitesSendOutput as oj, WaitlistSignupsEraseInput as ok, WaitlistSignupsEraseOutput as ol, WaitlistSignupsFunnelInput as om, WaitlistSignupsFunnelOutput as on, WaitlistSignupsListInput as oo, WaitlistSignupsListOutput as op, 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 };