@lessly/sdk-app 20.0.0 → 22.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 (53) 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-BXg4Te77.d.cts → client.gen-Bh9hLF_d.d.cts} +365 -134
  10. package/dist/{client.gen-BXg4Te77.d.ts → client.gen-Bh9hLF_d.d.ts} +365 -134
  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 +91 -25
  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 +91 -25
  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/organization/index.d.cts +1 -1
  24. package/dist/organization/index.d.ts +1 -1
  25. package/dist/playground/index.cjs +66 -0
  26. package/dist/playground/index.cjs.map +1 -0
  27. package/dist/playground/index.d.cts +52 -0
  28. package/dist/playground/index.d.ts +52 -0
  29. package/dist/playground/index.js +53 -0
  30. package/dist/playground/index.js.map +1 -0
  31. package/dist/realtime/index.cjs +0 -15
  32. package/dist/realtime/index.cjs.map +1 -1
  33. package/dist/realtime/index.d.cts +2 -14
  34. package/dist/realtime/index.d.ts +2 -14
  35. package/dist/realtime/index.js +1 -13
  36. package/dist/realtime/index.js.map +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.d.cts +1 -1
  40. package/dist/users/index.d.ts +1 -1
  41. package/dist/waitlist/index.d.cts +1 -1
  42. package/dist/waitlist/index.d.ts +1 -1
  43. package/package.json +7 -2
  44. package/src/gen/bindings.gen.ts +91 -25
  45. package/src/gen/brain/index.ts +1 -1
  46. package/src/gen/brain/queryOptions.gen.ts +0 -7
  47. package/src/gen/client.gen.ts +52 -16
  48. package/src/gen/manifest.gen.ts +1 -1
  49. package/src/gen/playground/index.ts +3 -0
  50. package/src/gen/playground/queryOptions.gen.ts +86 -0
  51. package/src/gen/realtime/index.ts +1 -1
  52. package/src/gen/realtime/queryOptions.gen.ts +0 -19
  53. package/src/gen/types.gen.ts +358 -124
@@ -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
  }
@@ -1172,11 +1082,11 @@ interface ConsentProvidersCreateInput {
1172
1082
  /**
1173
1083
  * Human-readable description of why the cookie is set
1174
1084
  */
1175
- purpose?: string;
1085
+ purpose: string;
1176
1086
  /**
1177
1087
  * Duration like "2 years", "session", "30 days"
1178
1088
  */
1179
- storageDuration?: string;
1089
+ storageDuration: string;
1180
1090
  }[];
1181
1091
  /**
1182
1092
  * Consent category bucket — matches CHECK constraint on consent_providers.category
@@ -1280,11 +1190,11 @@ interface ConsentProvidersUpdateInput {
1280
1190
  /**
1281
1191
  * Human-readable description of why the cookie is set
1282
1192
  */
1283
- purpose?: string;
1193
+ purpose: string;
1284
1194
  /**
1285
1195
  * Duration like "2 years", "session", "30 days"
1286
1196
  */
1287
- storageDuration?: string;
1197
+ storageDuration: string;
1288
1198
  }[];
1289
1199
  /**
1290
1200
  * Consent category bucket — matches CHECK constraint on consent_providers.category
@@ -2485,7 +2395,7 @@ interface DeploymentEnvironmentUpdateOutput {
2485
2395
  baseEnvironmentId: (string | null);
2486
2396
  }
2487
2397
  interface DeploymentEventsListByEnvironmentInput {
2488
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
2398
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
2489
2399
  limit?: number;
2490
2400
  since?: string;
2491
2401
  until?: string;
@@ -2493,7 +2403,7 @@ interface DeploymentEventsListByEnvironmentInput {
2493
2403
  }
2494
2404
  type DeploymentEventsListByEnvironmentOutput = {
2495
2405
  id: string;
2496
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
2406
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
2497
2407
  payload: {
2498
2408
  [k: string]: unknown;
2499
2409
  };
@@ -2505,7 +2415,7 @@ type DeploymentEventsListByEnvironmentOutput = {
2505
2415
  environmentId: (string | null);
2506
2416
  }[];
2507
2417
  interface DeploymentEventsListByServiceInput {
2508
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
2418
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
2509
2419
  limit?: number;
2510
2420
  since?: string;
2511
2421
  until?: string;
@@ -2514,7 +2424,7 @@ interface DeploymentEventsListByServiceInput {
2514
2424
  }
2515
2425
  type DeploymentEventsListByServiceOutput = {
2516
2426
  id: string;
2517
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed");
2427
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled");
2518
2428
  payload: {
2519
2429
  [k: string]: unknown;
2520
2430
  };
@@ -13329,46 +13239,194 @@ interface OrganizationSelectOutput {
13329
13239
  };
13330
13240
  activeProductId: (string | null);
13331
13241
  }
13332
- interface RealtimeApikeyCreateInput {
13242
+ interface PlaygroundAnalyticsOverviewInput {
13333
13243
  /**
13334
- * Human-readable label for the key, e.g. "production backend"
13244
+ * Max records per entity in recent[]; omit for the endpoint default
13335
13245
  */
13336
- name: string;
13246
+ limit?: number;
13247
+ }
13248
+ interface PlaygroundAnalyticsOverviewOutput {
13249
+ ok: boolean;
13250
+ minted: boolean;
13251
+ overview?: unknown;
13252
+ http_status: number;
13253
+ }
13254
+ interface PlaygroundBillingEntitlementsInput {
13255
+ }
13256
+ interface PlaygroundBillingEntitlementsOutput {
13257
+ ok: boolean;
13258
+ minted: boolean;
13259
+ http_status: number;
13260
+ entitlements?: unknown;
13337
13261
  }
13338
- interface RealtimeApikeyCreateOutput {
13262
+ interface PlaygroundBillingRecordUsageInput {
13339
13263
  /**
13340
- * The full rtk_ secret. Shown once it cannot be retrieved again.
13264
+ * Quantity of events to record against playground-events (SUM); defaults to 1
13341
13265
  */
13342
- key: string;
13343
- apiKey: {
13344
- id: string;
13345
- name: string;
13346
- prefix: string;
13347
- createdAt: string;
13348
- revokedAt: (string | null);
13349
- };
13266
+ value?: number;
13350
13267
  }
13351
- interface RealtimeApikeyListInput {
13268
+ interface PlaygroundBillingRecordUsageOutput {
13269
+ minted: boolean;
13270
+ accepted: (number | null);
13271
+ recorded: boolean;
13272
+ duplicates: (number | null);
13273
+ http_status: number;
13352
13274
  }
13353
- interface RealtimeApikeyListOutput {
13354
- keys: {
13275
+ interface PlaygroundClickupCreateTaskInput {
13276
+ /**
13277
+ * Task title; defaults to a fixture label
13278
+ */
13279
+ name?: string;
13280
+ /**
13281
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
13282
+ */
13283
+ listId?: string;
13284
+ }
13285
+ interface PlaygroundClickupCreateTaskOutput {
13286
+ minted: boolean;
13287
+ task_id: (string | null);
13288
+ list_status: number;
13289
+ vend_status: number;
13290
+ clickup_status: number;
13291
+ installation_count: number;
13292
+ }
13293
+ interface PlaygroundClickupGetLastWebhookInput {
13294
+ }
13295
+ type PlaygroundClickupGetLastWebhookOutput = ({
13296
+ payload: string;
13297
+ event_id: string;
13298
+ provider: string;
13299
+ verified: boolean;
13300
+ product_id: string;
13301
+ occurred_at: string;
13302
+ connector_id: string;
13303
+ clickup_event: (string | null);
13304
+ receipt_count: number;
13305
+ } | {
13306
+ found: false;
13307
+ });
13308
+ interface PlaygroundClickupGetOverviewInput {
13309
+ }
13310
+ interface PlaygroundClickupGetOverviewOutput {
13311
+ team: ({
13312
+ teamId: string;
13313
+ teamName: string;
13314
+ } | null);
13315
+ lists: PlaygroundClickupGetOverviewOutputItems[];
13316
+ tasks: {
13355
13317
  id: string;
13356
13318
  name: string;
13357
- prefix: string;
13358
- createdAt: string;
13359
- revokedAt: (string | null);
13319
+ status: (string | null);
13360
13320
  }[];
13361
- }
13362
- interface RealtimeApikeyRevokeInput {
13363
- /**
13364
- * Api key id to revoke
13365
- */
13321
+ minted: boolean;
13322
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
13323
+ list_status: number;
13324
+ vend_status: number;
13325
+ lists_status: number;
13326
+ tasks_status: number;
13327
+ spaces_status: number;
13328
+ folders_status: number;
13329
+ installation_count: number;
13330
+ }
13331
+ interface PlaygroundClickupGetOverviewOutputItems {
13366
13332
  id: string;
13333
+ name: string;
13367
13334
  }
13368
- interface RealtimeApikeyRevokeOutput {
13369
- id: string;
13370
- revokedAt: string;
13335
+ interface PlaygroundGdriveGetLastChangeInput {
13336
+ }
13337
+ type PlaygroundGdriveGetLastChangeOutput = ({
13338
+ file_id: string;
13339
+ removed: boolean;
13340
+ file_name: (string | null);
13341
+ mime_type: (string | null);
13342
+ product_id: string;
13343
+ occurred_at: string;
13344
+ connector_id: string;
13345
+ resource_state: string;
13346
+ } | {
13347
+ found: false;
13348
+ });
13349
+ interface PlaygroundGdriveReadFileInput {
13350
+ /**
13351
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
13352
+ */
13353
+ fileId?: string;
13354
+ }
13355
+ interface PlaygroundGdriveReadFileOutput {
13356
+ minted: boolean;
13357
+ file_id: (string | null);
13358
+ file_name: (string | null);
13359
+ mime_type: (string | null);
13360
+ file_count: number;
13361
+ get_status: number;
13362
+ list_status: number;
13363
+ vend_status: number;
13364
+ content_bytes: (number | null);
13365
+ }
13366
+ interface PlaygroundGoogleadsReadCustomerInput {
13367
+ }
13368
+ interface PlaygroundGoogleadsReadCustomerOutput {
13369
+ minted: boolean;
13370
+ vended: boolean;
13371
+ customer_id: (string | null);
13372
+ vend_status: number;
13373
+ result_count: number;
13374
+ search_status: number;
13375
+ login_customer_id: (string | null);
13376
+ }
13377
+ interface PlaygroundLifecycleGetStateInput {
13378
+ }
13379
+ interface PlaygroundLifecycleGetStateOutput {
13380
+ blocked: boolean;
13381
+ archived: boolean;
13382
+ productId: string;
13383
+ lastBlockTransition: ({
13384
+ eventId: string;
13385
+ eventName: string;
13386
+ productId: string;
13387
+ occurredAt: string;
13388
+ recordedAt: string;
13389
+ receiptCount: number;
13390
+ organizationId: string;
13391
+ cascadedFromOrg: boolean;
13392
+ } | null);
13393
+ lastArchiveTransition: ({
13394
+ eventId: string;
13395
+ eventName: string;
13396
+ productId: string;
13397
+ occurredAt: string;
13398
+ recordedAt: string;
13399
+ receiptCount: number;
13400
+ organizationId: string;
13401
+ cascadedFromOrg: boolean;
13402
+ } | null);
13371
13403
  }
13404
+ interface PlaygroundLifecycleListEventsInput {
13405
+ }
13406
+ type PlaygroundLifecycleListEventsOutput = {
13407
+ eventId: string;
13408
+ eventName: string;
13409
+ productId: string;
13410
+ occurredAt: string;
13411
+ recordedAt: string;
13412
+ receiptCount: number;
13413
+ organizationId: string;
13414
+ cascadedFromOrg: boolean;
13415
+ }[];
13416
+ interface PlaygroundWebhookGetLastInput {
13417
+ }
13418
+ type PlaygroundWebhookGetLastOutput = ({
13419
+ payload?: unknown;
13420
+ event_id: string;
13421
+ provider: string;
13422
+ verified: boolean;
13423
+ product_id: string;
13424
+ occurred_at: string;
13425
+ connector_id: string;
13426
+ delivery_count: number;
13427
+ } | {
13428
+ found: false;
13429
+ });
13372
13430
  interface RealtimeArchiveExportInput {
13373
13431
  /**
13374
13432
  * Only entries with ts <= to_ts (epoch ms)
@@ -15324,6 +15382,56 @@ interface UsersConfigGetOutput {
15324
15382
  google: UsersConfigGetOutputGoogle;
15325
15383
  };
15326
15384
  };
15385
+ hosted: {
15386
+ /**
15387
+ * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
15388
+ */
15389
+ enabled: boolean;
15390
+ /**
15391
+ * Absolute https URL of a logo rendered above the form. Null renders no logo.
15392
+ */
15393
+ logoUrl: (string | null);
15394
+ /**
15395
+ * Terms link rendered in the footer. Null renders no link.
15396
+ */
15397
+ termsUrl: (string | null);
15398
+ /**
15399
+ * CSS colour of the body text.
15400
+ */
15401
+ textColor: string;
15402
+ /**
15403
+ * One line under the card. Null renders no footer.
15404
+ */
15405
+ footerText: (string | null);
15406
+ /**
15407
+ * Privacy-policy link rendered in the footer. Null renders no link.
15408
+ */
15409
+ privacyUrl: (string | null);
15410
+ /**
15411
+ * CSS colour for the submit button, the links and the focus ring.
15412
+ */
15413
+ accentColor: string;
15414
+ /**
15415
+ * Shown in the heading and the page title. Default "This product".
15416
+ */
15417
+ productName: string;
15418
+ /**
15419
+ * CSS length for the card and its controls, e.g. "12px".
15420
+ */
15421
+ borderRadius: string;
15422
+ /**
15423
+ * CSS colour of the card itself.
15424
+ */
15425
+ surfaceColor: string;
15426
+ /**
15427
+ * CSS colour of secondary text and hints.
15428
+ */
15429
+ mutedTextColor: string;
15430
+ /**
15431
+ * CSS colour of the page behind the card.
15432
+ */
15433
+ backgroundColor: string;
15434
+ };
15327
15435
  invite: {
15328
15436
  /**
15329
15437
  * How long an invite link stays usable, in days. Default 14.
@@ -15617,6 +15725,59 @@ interface UsersConfigUpsertInput {
15617
15725
  clientSecret?: (string | null);
15618
15726
  };
15619
15727
  };
15728
+ /**
15729
+ * The hosted sign-in / sign-up / recovery pages: whether they are served, and the product name, logo, colours and footer links they render with. Merged field-by-field, so setting one colour leaves the rest alone.
15730
+ */
15731
+ hosted?: {
15732
+ /**
15733
+ * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
15734
+ */
15735
+ enabled?: boolean;
15736
+ /**
15737
+ * Absolute https URL of a logo rendered above the form. Null renders no logo.
15738
+ */
15739
+ logoUrl?: (string | null);
15740
+ /**
15741
+ * Terms link rendered in the footer. Null renders no link.
15742
+ */
15743
+ termsUrl?: (string | null);
15744
+ /**
15745
+ * CSS colour of the body text.
15746
+ */
15747
+ textColor?: string;
15748
+ /**
15749
+ * One line under the card. Null renders no footer.
15750
+ */
15751
+ footerText?: (string | null);
15752
+ /**
15753
+ * Privacy-policy link rendered in the footer. Null renders no link.
15754
+ */
15755
+ privacyUrl?: (string | null);
15756
+ /**
15757
+ * CSS colour for the submit button, the links and the focus ring.
15758
+ */
15759
+ accentColor?: string;
15760
+ /**
15761
+ * Shown in the heading and the page title. Default "This product".
15762
+ */
15763
+ productName?: string;
15764
+ /**
15765
+ * CSS length for the card and its controls, e.g. "12px".
15766
+ */
15767
+ borderRadius?: string;
15768
+ /**
15769
+ * CSS colour of the card itself.
15770
+ */
15771
+ surfaceColor?: string;
15772
+ /**
15773
+ * CSS colour of secondary text and hints.
15774
+ */
15775
+ mutedTextColor?: string;
15776
+ /**
15777
+ * CSS colour of the page behind the card.
15778
+ */
15779
+ backgroundColor?: string;
15780
+ };
15620
15781
  /**
15621
15782
  * Invite lifetime and re-invite cooldown. Merged field-by-field.
15622
15783
  */
@@ -15961,6 +16122,56 @@ interface UsersConfigUpsertOutput {
15961
16122
  google: UsersConfigUpsertOutputGoogle;
15962
16123
  };
15963
16124
  };
16125
+ hosted: {
16126
+ /**
16127
+ * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
16128
+ */
16129
+ enabled: boolean;
16130
+ /**
16131
+ * Absolute https URL of a logo rendered above the form. Null renders no logo.
16132
+ */
16133
+ logoUrl: (string | null);
16134
+ /**
16135
+ * Terms link rendered in the footer. Null renders no link.
16136
+ */
16137
+ termsUrl: (string | null);
16138
+ /**
16139
+ * CSS colour of the body text.
16140
+ */
16141
+ textColor: string;
16142
+ /**
16143
+ * One line under the card. Null renders no footer.
16144
+ */
16145
+ footerText: (string | null);
16146
+ /**
16147
+ * Privacy-policy link rendered in the footer. Null renders no link.
16148
+ */
16149
+ privacyUrl: (string | null);
16150
+ /**
16151
+ * CSS colour for the submit button, the links and the focus ring.
16152
+ */
16153
+ accentColor: string;
16154
+ /**
16155
+ * Shown in the heading and the page title. Default "This product".
16156
+ */
16157
+ productName: string;
16158
+ /**
16159
+ * CSS length for the card and its controls, e.g. "12px".
16160
+ */
16161
+ borderRadius: string;
16162
+ /**
16163
+ * CSS colour of the card itself.
16164
+ */
16165
+ surfaceColor: string;
16166
+ /**
16167
+ * CSS colour of secondary text and hints.
16168
+ */
16169
+ mutedTextColor: string;
16170
+ /**
16171
+ * CSS colour of the page behind the card.
16172
+ */
16173
+ backgroundColor: string;
16174
+ };
15964
16175
  invite: {
15965
16176
  /**
15966
16177
  * How long an invite link stays usable, in days. Default 14.
@@ -17880,9 +18091,6 @@ interface GeneratedClient {
17880
18091
  restore: {
17881
18092
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
17882
18093
  };
17883
- usage: {
17884
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
17885
- };
17886
18094
  };
17887
18095
  consent: {
17888
18096
  'config-cookie-domain': {
@@ -18285,12 +18493,35 @@ interface GeneratedClient {
18285
18493
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
18286
18494
  };
18287
18495
  };
18288
- realtime: {
18289
- apikey: {
18290
- create(input: RealtimeApikeyCreateInput): Promise<RealtimeApikeyCreateOutput>;
18291
- list(input: RealtimeApikeyListInput): Promise<RealtimeApikeyListOutput>;
18292
- revoke(input: RealtimeApikeyRevokeInput): Promise<RealtimeApikeyRevokeOutput>;
18496
+ playground: {
18497
+ analytics: {
18498
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
18293
18499
  };
18500
+ billing: {
18501
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
18502
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
18503
+ };
18504
+ clickup: {
18505
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
18506
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
18507
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
18508
+ };
18509
+ gdrive: {
18510
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
18511
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
18512
+ };
18513
+ googleads: {
18514
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
18515
+ };
18516
+ lifecycle: {
18517
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
18518
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
18519
+ };
18520
+ webhook: {
18521
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
18522
+ };
18523
+ };
18524
+ realtime: {
18294
18525
  archive: {
18295
18526
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
18296
18527
  get(input: RealtimeArchiveGetInput): Promise<RealtimeArchiveGetOutput>;
@@ -18517,4 +18748,4 @@ interface GeneratedClient {
18517
18748
  };
18518
18749
  }
18519
18750
 
18520
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, OrganizationClickupListInstallationsOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, OrganizationAuthMeInput as fU, OrganizationAuthMeOutput as fV, OrganizationBindingsListInput as fW, OrganizationBindingsListOutput as fX, OrganizationClickupInstallInput as fY, OrganizationClickupInstallOutput as fZ, OrganizationClickupListInstallationsInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationMemberRemoveOutput as g$, OrganizationCloudflareInstallInput as g0, OrganizationCloudflareInstallOutput as g1, OrganizationConnectorsApproveRequestInput as g2, OrganizationConnectorsApproveRequestOutput as g3, OrganizationConnectorsAttachInput as g4, OrganizationConnectorsAttachOutput as g5, OrganizationConnectorsDeleteInput as g6, OrganizationConnectorsDeleteOutput as g7, OrganizationConnectorsDenyRequestInput as g8, OrganizationConnectorsDenyRequestOutput as g9, OrganizationExtensionsListInstalledInput as gA, OrganizationExtensionsListInstalledOutput as gB, OrganizationExtensionsListInput as gC, OrganizationExtensionsListOutput as gD, OrganizationFeedbackSubmitInput as gE, OrganizationFeedbackSubmitOutput as gF, OrganizationGdriveInstallInput as gG, OrganizationGdriveInstallOutput as gH, OrganizationGithubInstallInput as gI, OrganizationGithubInstallOutput as gJ, OrganizationGithubListInstallationsInput as gK, OrganizationGithubListInstallationsOutput as gL, OrganizationGoogleadsInstallInput as gM, OrganizationGoogleadsInstallOutput as gN, OrganizationListInput as gO, OrganizationListOutput as gP, OrganizationMemberAcceptInviteInput as gQ, OrganizationMemberAcceptInviteOutput as gR, OrganizationMemberInviteInput as gS, OrganizationMemberInviteOutput as gT, OrganizationMemberListInvitationsInput as gU, OrganizationMemberListInvitationsOutput as gV, OrganizationMemberListProductAccessInput as gW, OrganizationMemberListProductAccessOutput as gX, OrganizationMemberListInput as gY, OrganizationMemberListOutput as gZ, OrganizationMemberRemoveInput as g_, OrganizationConnectorsDetachInput as ga, OrganizationConnectorsDetachOutput as gb, OrganizationConnectorsListAttachmentsInput as gc, OrganizationConnectorsListAttachmentsOutput as gd, OrganizationConnectorsListAvailableInput as ge, OrganizationConnectorsListAvailableOutput as gf, OrganizationConnectorsListOrgInput as gg, OrganizationConnectorsListOrgOutput as gh, OrganizationConnectorsListInput as gi, OrganizationConnectorsListOutput as gj, OrganizationConnectorsListRequestsInput as gk, OrganizationConnectorsListRequestsOutput as gl, OrganizationConnectorsRemoveInput as gm, OrganizationConnectorsRemoveOutput as gn, OrganizationConnectorsRequestInput as go, OrganizationConnectorsRequestOutput as gp, OrganizationCreateInput as gq, OrganizationCreateOutput as gr, OrganizationDomainsAddInput as gs, OrganizationDomainsAddOutput as gt, OrganizationDomainsGetInput as gu, OrganizationDomainsGetOutput as gv, OrganizationDomainsListInput as gw, OrganizationDomainsListOutput as gx, OrganizationDomainsRemoveInput as gy, OrganizationDomainsRemoveOutput as gz, BrainBackupsListOutput as h, RealtimeGrantRevokeOutput as h$, OrganizationMemberRevokeInvitationInput as h0, OrganizationMemberRevokeInvitationOutput as h1, OrganizationMemberSetRoleInput as h2, OrganizationMemberSetRoleOutput as h3, OrganizationMemberShareProductInput as h4, OrganizationMemberShareProductOutput as h5, OrganizationMemberUnshareProductInput as h6, OrganizationMemberUnshareProductOutput as h7, OrganizationMembersAssignRoleInput as h8, OrganizationMembersAssignRoleOutput as h9, OrganizationRolesGetInput as hA, OrganizationRolesGetOutput as hB, OrganizationRolesListInput as hC, OrganizationRolesListOutput as hD, OrganizationRolesUpdateInput as hE, OrganizationRolesUpdateOutput as hF, OrganizationSecurityMfaEnableInput as hG, OrganizationSecurityMfaEnableOutput as hH, OrganizationSelectInput as hI, OrganizationSelectOutput as hJ, RealtimeApikeyCreateInput as hK, RealtimeApikeyCreateOutput as hL, RealtimeApikeyListInput as hM, RealtimeApikeyListOutput as hN, RealtimeApikeyRevokeInput as hO, RealtimeApikeyRevokeOutput as hP, RealtimeArchiveExportInput as hQ, RealtimeArchiveExportOutput as hR, RealtimeArchiveExportStatusInput as hS, RealtimeArchiveExportStatusOutput as hT, RealtimeArchiveGetInput as hU, RealtimeArchiveGetOutput as hV, RealtimeGrantCreateInput as hW, RealtimeGrantCreateOutput as hX, RealtimeGrantListInput as hY, RealtimeGrantListOutput as hZ, RealtimeGrantRevokeInput as h_, OrganizationPermissionCatalogInput as ha, OrganizationPermissionCatalogOutput as hb, OrganizationProductAcceptInvitationInput as hc, OrganizationProductAcceptInvitationOutput as hd, OrganizationProductCreateInput as he, OrganizationProductCreateOutput as hf, OrganizationProductInviteInput as hg, OrganizationProductInviteOutput as hh, OrganizationProductListInvitationsInput as hi, OrganizationProductListInvitationsOutput as hj, OrganizationProductListMembersInput as hk, OrganizationProductListMembersOutput as hl, OrganizationProductListInput as hm, OrganizationProductListOutput as hn, OrganizationProductListRolesInput as ho, OrganizationProductListRolesOutput as hp, OrganizationProductRevokeInvitationInput as hq, OrganizationProductRevokeInvitationOutput as hr, OrganizationProductSelectInput as hs, OrganizationProductSelectOutput as ht, OrganizationProductUpdateInput as hu, OrganizationProductUpdateOutput as hv, OrganizationRolesCreateInput as hw, OrganizationRolesCreateOutput as hx, OrganizationRolesDeleteInput as hy, OrganizationRolesDeleteOutput as hz, BrainClickupChannelsListInput as i, TrackingEventNamesArchiveOutput as i$, RealtimeHistoryGetInput as i0, RealtimeHistoryGetOutput as i1, RealtimeMessagesPublishInput as i2, RealtimeMessagesPublishOutput as i3, RealtimeNamespaceCreateInput as i4, RealtimeNamespaceCreateOutput as i5, RealtimeNamespaceDeleteInput as i6, RealtimeNamespaceDeleteOutput as i7, RealtimeNamespaceGetInput as i8, RealtimeNamespaceGetOutput as i9, RealtimeWebhookGetInput as iA, RealtimeWebhookGetOutput as iB, RealtimeWebhookListInput as iC, RealtimeWebhookListOutput as iD, RealtimeWebhookSecretRotateInput as iE, RealtimeWebhookSecretRotateOutput as iF, RealtimeWebhookUpdateInput as iG, RealtimeWebhookUpdateOutput as iH, TrackingApiKeysCreateInput as iI, TrackingApiKeysCreateOutput as iJ, TrackingApiKeysListInput as iK, TrackingApiKeysListOutput as iL, TrackingApiKeysRevokeInput as iM, TrackingApiKeysRevokeOutput as iN, TrackingApiKeysRotateInput as iO, TrackingApiKeysRotateOutput as iP, TrackingDomainsCreateInput as iQ, TrackingDomainsCreateOutput as iR, TrackingDomainsDeleteInput as iS, TrackingDomainsDeleteOutput as iT, TrackingDomainsGetInput as iU, TrackingDomainsGetOutput as iV, TrackingDomainsListInput as iW, TrackingDomainsListOutput as iX, TrackingDomainsVerifyInput as iY, TrackingDomainsVerifyOutput as iZ, TrackingEventNamesArchiveInput as i_, RealtimeNamespaceListInput as ia, RealtimeNamespaceListOutput as ib, RealtimeNamespaceUpdateInput as ic, RealtimeNamespaceUpdateOutput as id, RealtimePresenceEnterInput as ie, RealtimePresenceEnterOutput as ig, RealtimePresenceGetInput as ih, RealtimePresenceGetOutput as ii, RealtimePresenceLeaveInput as ij, RealtimePresenceLeaveOutput as ik, RealtimePresenceStatsInput as il, RealtimePresenceStatsOutput as im, RealtimePresenceUpdateInput as io, RealtimePresenceUpdateOutput as ip, RealtimeStatusGetInput as iq, RealtimeStatusGetOutput as ir, RealtimeTokensCreateInput as is, RealtimeTokensCreateOutput as it, RealtimeWebhookCreateInput as iu, RealtimeWebhookCreateOutput as iv, RealtimeWebhookDeleteInput as iw, RealtimeWebhookDeleteOutput as ix, RealtimeWebhookDeliveriesListInput as iy, RealtimeWebhookDeliveriesListOutput as iz, BrainClickupChannelsListOutput as j, UsersApikeysRevokeOutput as j$, TrackingEventNamesListInput as j0, TrackingEventNamesListOutput as j1, TrackingEventNamesUnarchiveInput as j2, TrackingEventNamesUnarchiveOutput as j3, TrackingGoogleadsConnectionStatusInput as j4, TrackingGoogleadsConnectionStatusOutput as j5, TrackingGoogleadsConversionActionsInput as j6, TrackingGoogleadsConversionActionsOutput as j7, TrackingGoogleadsFeedbackConfigGetInput as j8, TrackingGoogleadsFeedbackConfigGetOutput as j9, TrackingLinkDomainsDeleteInput as jA, TrackingLinkDomainsDeleteOutput as jB, TrackingLinkDomainsListInput as jC, TrackingLinkDomainsListOutput as jD, TrackingLiveEventsListInput as jE, TrackingLiveEventsListOutput as jF, TrackingProfilesDeleteInput as jG, TrackingProfilesDeleteOutput as jH, TrackingProfilesExportInput as jI, TrackingProfilesExportOutput as jJ, TrackingProfilesGetInput as jK, TrackingProfilesGetOutput as jL, TrackingProfilesListInput as jM, TrackingProfilesListOutput as jN, TrackingReportsAttributedJourneyInput as jO, TrackingReportsAttributedJourneyOutput as jP, TrackingReportsRevenueBySourceInput as jQ, TrackingReportsRevenueBySourceOutput as jR, TrackingReportsSourcePeopleInput as jS, TrackingReportsSourcePeopleOutput as jT, TrackingSnippetsGetInput as jU, TrackingSnippetsGetOutput as jV, UsersApikeysCreateInput as jW, UsersApikeysCreateOutput as jX, UsersApikeysListInput as jY, UsersApikeysListOutput as jZ, UsersApikeysRevokeInput as j_, TrackingGoogleadsFeedbackConfigSetInput as ja, TrackingGoogleadsFeedbackConfigSetOutput as jb, TrackingGoogleadsFeedbackRunInput as jc, TrackingGoogleadsFeedbackRunOutput as jd, TrackingGoogleadsFeedbackStatusInput as je, TrackingGoogleadsFeedbackStatusOutput as jf, TrackingGoogleadsFeedbackUploadsInput as jg, TrackingGoogleadsFeedbackUploadsOutput as jh, TrackingGoogleadsRoasReportInput as ji, TrackingGoogleadsRoasReportOutput as jj, TrackingGoogleadsSyncNowInput as jk, TrackingGoogleadsSyncNowOutput as jl, TrackingGoogleadsTrackingHealthInput as jm, TrackingGoogleadsTrackingHealthOutput as jn, TrackingGoogleadsUsVsPlatformInput as jo, TrackingGoogleadsUsVsPlatformOutput as jp, TrackingIdentityHealthInput as jq, TrackingIdentityHealthOutput as jr, TrackingInstallDomainsCreateInput as js, TrackingInstallDomainsCreateOutput as jt, TrackingInstallDomainsDeleteInput as ju, TrackingInstallDomainsDeleteOutput as jv, TrackingInstallDomainsListInput as jw, TrackingInstallDomainsListOutput as jx, TrackingLinkDomainsCreateInput as jy, TrackingLinkDomainsCreateOutput as jz, BrainClickupConnectionsListInput as k, UsersWaitlistListOutput as k$, UsersAuditListInput as k0, UsersAuditListOutput as k1, UsersConfigGetInput as k2, UsersConfigGetOutput as k3, UsersConfigUpsertInput as k4, UsersConfigUpsertOutput as k5, UsersFactorsListInput as k6, UsersFactorsListOutput as k7, UsersFactorsResetInput as k8, UsersFactorsResetOutput as k9, UsersUsersEraseInput as kA, UsersUsersEraseOutput as kB, UsersUsersExportInput as kC, UsersUsersExportOutput as kD, UsersUsersGetInput as kE, UsersUsersGetOutput as kF, UsersUsersImportInput as kG, UsersUsersImportOutput as kH, UsersUsersInviteInput as kI, UsersUsersInviteOutput as kJ, UsersUsersListInput as kK, UsersUsersListOutput as kL, UsersUsersSetPrimaryIdentifierInput as kM, UsersUsersSetPrimaryIdentifierOutput as kN, UsersUsersUnbanInput as kO, UsersUsersUnbanOutput as kP, UsersUsersUpdateInput as kQ, UsersUsersUpdateOutput as kR, UsersWaitlistEraseInput as kS, UsersWaitlistEraseOutput as kT, UsersWaitlistFunnelInput as kU, UsersWaitlistFunnelOutput as kV, UsersWaitlistImportInput as kW, UsersWaitlistImportOutput as kX, UsersWaitlistInviteInput as kY, UsersWaitlistInviteOutput as kZ, UsersWaitlistListInput as k_, UsersKeysListInput as ka, UsersKeysListOutput as kb, UsersKeysRevokeInput as kc, UsersKeysRevokeOutput as kd, UsersKeysRotateInput as ke, UsersKeysRotateOutput as kf, UsersOpsRetentionGetInput as kg, UsersOpsRetentionGetOutput as kh, UsersOpsSloGetInput as ki, UsersOpsSloGetOutput as kj, UsersSessionsGetInput as kk, UsersSessionsGetOutput as kl, UsersSessionsImpersonateInput as km, UsersSessionsImpersonateOutput as kn, UsersSessionsListInput as ko, UsersSessionsListOutput as kp, UsersSessionsRevokeInput as kq, UsersSessionsRevokeOutput as kr, UsersStatsGetInput as ks, UsersStatsGetOutput as kt, UsersUsersBanInput as ku, UsersUsersBanOutput as kv, UsersUsersCreateInput as kw, UsersUsersCreateOutput as kx, UsersUsersDeleteInput as ky, UsersUsersDeleteOutput as kz, BrainClickupConnectionsListOutput as l, UsersWebhooksCreateInput as l0, UsersWebhooksCreateOutput as l1, UsersWebhooksDeleteInput as l2, UsersWebhooksDeleteOutput as l3, UsersWebhooksDeliveriesListInput as l4, UsersWebhooksDeliveriesListOutput as l5, UsersWebhooksGetInput as l6, UsersWebhooksGetOutput as l7, UsersWebhooksListInput as l8, UsersWebhooksListOutput as l9, UsersWebhooksRotateSecretInput as la, UsersWebhooksRotateSecretOutput as lb, UsersWebhooksUpdateInput as lc, UsersWebhooksUpdateOutput as ld, WaitlistConfigGetInput as le, WaitlistConfigGetOutput as lf, WaitlistConfigUpsertInput as lg, WaitlistConfigUpsertOutput as lh, WaitlistEmbedGetInput as li, WaitlistEmbedGetOutput as lj, WaitlistInvitesSendInput as lk, WaitlistInvitesSendOutput as ll, WaitlistSignupsEraseInput as lm, WaitlistSignupsEraseOutput as ln, WaitlistSignupsFunnelInput as lo, WaitlistSignupsFunnelOutput as lp, WaitlistSignupsListInput as lq, WaitlistSignupsListOutput as lr, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
18751
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVcsBranchListOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentVariableListEnvInput as dI, DeploymentVariableListEnvOutput as dJ, DeploymentVariableListProductInput as dK, DeploymentVariableListProductOutput as dL, DeploymentVariableListInput as dM, DeploymentVariableListOutput as dN, DeploymentVariableSetEnvInput as dO, DeploymentVariableSetEnvOutput as dP, DeploymentVariableSetInput as dQ, DeploymentVariableSetOutput as dR, DeploymentVariableSetProductInput as dS, DeploymentVariableSetProductOutput as dT, DeploymentVariableUnsetEnvInput as dU, DeploymentVariableUnsetEnvOutput as dV, DeploymentVariableUnsetInput as dW, DeploymentVariableUnsetOutput as dX, DeploymentVariableUnsetProductInput as dY, DeploymentVariableUnsetProductOutput as dZ, DeploymentVcsBranchListInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainDeleteOutput as e$, DeploymentVcsConnectionListInput as e0, DeploymentVcsConnectionListOutput as e1, DeploymentVcsRepoListInput as e2, DeploymentVcsRepoListOutput as e3, DeploymentVolumeCreateInput as e4, DeploymentVolumeCreateOutput as e5, DeploymentVolumeDeleteInput as e6, DeploymentVolumeDeleteOutput as e7, DeploymentVolumeDetachInput as e8, DeploymentVolumeDetachOutput as e9, MailBroadcastDeleteInput as eA, MailBroadcastDeleteOutput as eB, MailBroadcastGetInput as eC, MailBroadcastGetOutput as eD, MailBroadcastListInput as eE, MailBroadcastListOutput as eF, MailBroadcastQueueInput as eG, MailBroadcastQueueOutput as eH, MailBroadcastStatsInput as eI, MailBroadcastStatsOutput as eJ, MailBroadcastUpdateInput as eK, MailBroadcastUpdateOutput as eL, MailContactCreateInput as eM, MailContactCreateOutput as eN, MailContactDeleteInput as eO, MailContactDeleteOutput as eP, MailContactGetInput as eQ, MailContactGetOutput as eR, MailContactListInput as eS, MailContactListOutput as eT, MailContactUpdateInput as eU, MailContactUpdateOutput as eV, MailDomainAllowedListInput as eW, MailDomainAllowedListOutput as eX, MailDomainCreateInput as eY, MailDomainCreateOutput as eZ, MailDomainDeleteInput as e_, DeploymentVolumeGetInput as ea, DeploymentVolumeGetOutput as eb, DeploymentVolumeListInput as ec, DeploymentVolumeListOutput as ed, DeploymentVolumeResizeInput as ee, DeploymentVolumeResizeOutput as ef, MailApikeyCreateInput as eg, MailApikeyCreateOutput as eh, MailApikeyDeleteInput as ei, MailApikeyDeleteOutput as ej, MailApikeyListInput as ek, MailApikeyListOutput as el, MailAudienceCreateInput as em, MailAudienceCreateOutput as en, MailAudienceDeleteInput as eo, MailAudienceDeleteOutput as ep, MailAudienceGetInput as eq, MailAudienceGetOutput as er, MailAudienceListInput as es, MailAudienceListOutput as et, MailAudienceUpdateInput as eu, MailAudienceUpdateOutput as ev, MailBroadcastCancelInput as ew, MailBroadcastCancelOutput as ex, MailBroadcastCreateInput as ey, MailBroadcastCreateOutput as ez, BrainBackupStatusOutput as f, OrganizationCloudflareInstallOutput as f$, MailDomainGetInput as f0, MailDomainGetOutput as f1, MailDomainListInput as f2, MailDomainListOutput as f3, MailDomainUpdateInput as f4, MailDomainUpdateOutput as f5, MailDomainVerifyInput as f6, MailDomainVerifyOutput as f7, MailEmailCancelInput as f8, MailEmailCancelOutput as f9, MailTemplatePublishOutput as fA, MailTemplateUpdateInput as fB, MailTemplateUpdateOutput as fC, MailUsageGetInput as fD, MailUsageGetOutput as fE, MailWebhookCreateInput as fF, MailWebhookCreateOutput as fG, MailWebhookDeleteInput as fH, MailWebhookDeleteOutput as fI, MailWebhookDeliveriesListInput as fJ, MailWebhookDeliveriesListOutput as fK, MailWebhookGetInput as fL, MailWebhookGetOutput as fM, MailWebhookListInput as fN, MailWebhookListOutput as fO, MailWebhookUpdateInput as fP, MailWebhookUpdateOutput as fQ, MailEmailGetOutput as fR, OrganizationAuthMeInput as fS, OrganizationAuthMeOutput as fT, OrganizationBindingsListInput as fU, OrganizationBindingsListOutput as fV, OrganizationClickupInstallInput as fW, OrganizationClickupInstallOutput as fX, OrganizationClickupListInstallationsInput as fY, OrganizationClickupListInstallationsOutput as fZ, OrganizationCloudflareInstallInput as f_, MailEmailGetInput as fa, MailEmailSendBatchInput as fb, MailEmailSendBatchOutput as fc, MailEmailSendInput as fd, MailEmailSendOutput as fe, MailEmailUpdateInput as ff, MailEmailUpdateOutput as fg, MailReputationGetInput as fh, MailReputationGetOutput as fi, MailStatsGetInput as fj, MailStatsGetOutput as fk, MailSuppressionAddInput as fl, MailSuppressionAddOutput as fm, MailSuppressionListInput as fn, MailSuppressionListOutput as fo, MailSuppressionRemoveInput as fp, MailSuppressionRemoveOutput as fq, MailTemplateCreateInput as fr, MailTemplateCreateOutput as fs, MailTemplateDeleteInput as ft, MailTemplateDeleteOutput as fu, MailTemplateGetInput as fv, MailTemplateGetOutput as fw, MailTemplateListInput as fx, MailTemplateListOutput as fy, MailTemplatePublishInput as fz, BrainBackupsListInput as g, OrganizationMemberRevokeInvitationOutput as g$, OrganizationConnectorsApproveRequestInput as g0, OrganizationConnectorsApproveRequestOutput as g1, OrganizationConnectorsAttachInput as g2, OrganizationConnectorsAttachOutput as g3, OrganizationConnectorsDeleteInput as g4, OrganizationConnectorsDeleteOutput as g5, OrganizationConnectorsDenyRequestInput as g6, OrganizationConnectorsDenyRequestOutput as g7, OrganizationConnectorsDetachInput as g8, OrganizationConnectorsDetachOutput as g9, OrganizationExtensionsListInput as gA, OrganizationExtensionsListOutput as gB, OrganizationFeedbackSubmitInput as gC, OrganizationFeedbackSubmitOutput as gD, OrganizationGdriveInstallInput as gE, OrganizationGdriveInstallOutput as gF, OrganizationGithubInstallInput as gG, OrganizationGithubInstallOutput as gH, OrganizationGithubListInstallationsInput as gI, OrganizationGithubListInstallationsOutput as gJ, OrganizationGoogleadsInstallInput as gK, OrganizationGoogleadsInstallOutput as gL, OrganizationListInput as gM, OrganizationListOutput as gN, OrganizationMemberAcceptInviteInput as gO, OrganizationMemberAcceptInviteOutput as gP, OrganizationMemberInviteInput as gQ, OrganizationMemberInviteOutput as gR, OrganizationMemberListInvitationsInput as gS, OrganizationMemberListInvitationsOutput as gT, OrganizationMemberListProductAccessInput as gU, OrganizationMemberListProductAccessOutput as gV, OrganizationMemberListInput as gW, OrganizationMemberListOutput as gX, OrganizationMemberRemoveInput as gY, OrganizationMemberRemoveOutput as gZ, OrganizationMemberRevokeInvitationInput as g_, OrganizationConnectorsListAttachmentsInput as ga, OrganizationConnectorsListAttachmentsOutput as gb, OrganizationConnectorsListAvailableInput as gc, OrganizationConnectorsListAvailableOutput as gd, OrganizationConnectorsListOrgInput as ge, OrganizationConnectorsListOrgOutput as gf, OrganizationConnectorsListInput as gg, OrganizationConnectorsListOutput as gh, OrganizationConnectorsListRequestsInput as gi, OrganizationConnectorsListRequestsOutput as gj, OrganizationConnectorsRemoveInput as gk, OrganizationConnectorsRemoveOutput as gl, OrganizationConnectorsRequestInput as gm, OrganizationConnectorsRequestOutput as gn, OrganizationCreateInput as go, OrganizationCreateOutput as gp, OrganizationDomainsAddInput as gq, OrganizationDomainsAddOutput as gr, OrganizationDomainsGetInput as gs, OrganizationDomainsGetOutput as gt, OrganizationDomainsListInput as gu, OrganizationDomainsListOutput as gv, OrganizationDomainsRemoveInput as gw, OrganizationDomainsRemoveOutput as gx, OrganizationExtensionsListInstalledInput as gy, OrganizationExtensionsListInstalledOutput as gz, BrainBackupsListOutput as h, PlaygroundLifecycleGetStateOutput as h$, OrganizationMemberSetRoleInput as h0, OrganizationMemberSetRoleOutput as h1, OrganizationMemberShareProductInput as h2, OrganizationMemberShareProductOutput as h3, OrganizationMemberUnshareProductInput as h4, OrganizationMemberUnshareProductOutput as h5, OrganizationMembersAssignRoleInput as h6, OrganizationMembersAssignRoleOutput as h7, OrganizationPermissionCatalogInput as h8, OrganizationPermissionCatalogOutput as h9, OrganizationRolesListInput as hA, OrganizationRolesListOutput as hB, OrganizationRolesUpdateInput as hC, OrganizationRolesUpdateOutput as hD, OrganizationSecurityMfaEnableInput as hE, OrganizationSecurityMfaEnableOutput as hF, OrganizationSelectInput as hG, OrganizationSelectOutput as hH, PlaygroundAnalyticsOverviewInput as hI, PlaygroundAnalyticsOverviewOutput as hJ, PlaygroundBillingEntitlementsInput as hK, PlaygroundBillingEntitlementsOutput as hL, PlaygroundBillingRecordUsageInput as hM, PlaygroundBillingRecordUsageOutput as hN, PlaygroundClickupCreateTaskInput as hO, PlaygroundClickupCreateTaskOutput as hP, PlaygroundClickupGetLastWebhookInput as hQ, PlaygroundClickupGetLastWebhookOutput as hR, PlaygroundClickupGetOverviewInput as hS, PlaygroundClickupGetOverviewOutput as hT, PlaygroundGdriveGetLastChangeInput as hU, PlaygroundGdriveGetLastChangeOutput as hV, PlaygroundGdriveReadFileInput as hW, PlaygroundGdriveReadFileOutput as hX, PlaygroundGoogleadsReadCustomerInput as hY, PlaygroundGoogleadsReadCustomerOutput as hZ, PlaygroundLifecycleGetStateInput as h_, OrganizationProductAcceptInvitationInput as ha, OrganizationProductAcceptInvitationOutput as hb, OrganizationProductCreateInput as hc, OrganizationProductCreateOutput as hd, OrganizationProductInviteInput as he, OrganizationProductInviteOutput as hf, OrganizationProductListInvitationsInput as hg, OrganizationProductListInvitationsOutput as hh, OrganizationProductListMembersInput as hi, OrganizationProductListMembersOutput as hj, OrganizationProductListInput as hk, OrganizationProductListOutput as hl, OrganizationProductListRolesInput as hm, OrganizationProductListRolesOutput as hn, OrganizationProductRevokeInvitationInput as ho, OrganizationProductRevokeInvitationOutput as hp, OrganizationProductSelectInput as hq, OrganizationProductSelectOutput as hr, OrganizationProductUpdateInput as hs, OrganizationProductUpdateOutput as ht, OrganizationRolesCreateInput as hu, OrganizationRolesCreateOutput as hv, OrganizationRolesDeleteInput as hw, OrganizationRolesDeleteOutput as hx, OrganizationRolesGetInput as hy, OrganizationRolesGetOutput as hz, BrainClickupChannelsListInput as i, TrackingApiKeysListOutput as i$, PlaygroundLifecycleListEventsInput as i0, PlaygroundLifecycleListEventsOutput as i1, PlaygroundWebhookGetLastInput as i2, PlaygroundWebhookGetLastOutput as i3, RealtimeArchiveExportInput as i4, RealtimeArchiveExportOutput as i5, RealtimeArchiveExportStatusInput as i6, RealtimeArchiveExportStatusOutput as i7, RealtimeArchiveGetInput as i8, RealtimeArchiveGetOutput as i9, RealtimePresenceLeaveInput as iA, RealtimePresenceLeaveOutput as iB, RealtimePresenceStatsInput as iC, RealtimePresenceStatsOutput as iD, RealtimePresenceUpdateInput as iE, RealtimePresenceUpdateOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, TrackingApiKeysCreateInput as iY, TrackingApiKeysCreateOutput as iZ, TrackingApiKeysListInput as i_, RealtimeGrantCreateInput as ia, RealtimeGrantCreateOutput as ib, RealtimeGrantListInput as ic, RealtimeGrantListOutput as id, RealtimeGrantRevokeInput as ie, RealtimeGrantRevokeOutput as ig, RealtimeHistoryGetInput as ih, RealtimeHistoryGetOutput as ii, RealtimeMessagesPublishInput as ij, RealtimeMessagesPublishOutput as ik, RealtimeNamespaceCreateInput as il, RealtimeNamespaceCreateOutput as im, RealtimeNamespaceDeleteInput as io, RealtimeNamespaceDeleteOutput as ip, RealtimeNamespaceGetInput as iq, RealtimeNamespaceGetOutput as ir, RealtimeNamespaceListInput as is, RealtimeNamespaceListOutput as it, RealtimeNamespaceUpdateInput as iu, RealtimeNamespaceUpdateOutput as iv, RealtimePresenceEnterInput as iw, RealtimePresenceEnterOutput as ix, RealtimePresenceGetInput as iy, RealtimePresenceGetOutput as iz, BrainClickupChannelsListOutput as j, TrackingProfilesGetOutput as j$, TrackingApiKeysRevokeInput as j0, TrackingApiKeysRevokeOutput as j1, TrackingApiKeysRotateInput as j2, TrackingApiKeysRotateOutput as j3, TrackingDomainsCreateInput as j4, TrackingDomainsCreateOutput as j5, TrackingDomainsDeleteInput as j6, TrackingDomainsDeleteOutput as j7, TrackingDomainsGetInput as j8, TrackingDomainsGetOutput as j9, TrackingGoogleadsSyncNowInput as jA, TrackingGoogleadsSyncNowOutput as jB, TrackingGoogleadsTrackingHealthInput as jC, TrackingGoogleadsTrackingHealthOutput as jD, TrackingGoogleadsUsVsPlatformInput as jE, TrackingGoogleadsUsVsPlatformOutput as jF, TrackingIdentityHealthInput as jG, TrackingIdentityHealthOutput as jH, TrackingInstallDomainsCreateInput as jI, TrackingInstallDomainsCreateOutput as jJ, TrackingInstallDomainsDeleteInput as jK, TrackingInstallDomainsDeleteOutput as jL, TrackingInstallDomainsListInput as jM, TrackingInstallDomainsListOutput as jN, TrackingLinkDomainsCreateInput as jO, TrackingLinkDomainsCreateOutput as jP, TrackingLinkDomainsDeleteInput as jQ, TrackingLinkDomainsDeleteOutput as jR, TrackingLinkDomainsListInput as jS, TrackingLinkDomainsListOutput as jT, TrackingLiveEventsListInput as jU, TrackingLiveEventsListOutput as jV, TrackingProfilesDeleteInput as jW, TrackingProfilesDeleteOutput as jX, TrackingProfilesExportInput as jY, TrackingProfilesExportOutput as jZ, TrackingProfilesGetInput as j_, TrackingDomainsListInput as ja, TrackingDomainsListOutput as jb, TrackingDomainsVerifyInput as jc, TrackingDomainsVerifyOutput as jd, TrackingEventNamesArchiveInput as je, TrackingEventNamesArchiveOutput as jf, TrackingEventNamesListInput as jg, TrackingEventNamesListOutput as jh, TrackingEventNamesUnarchiveInput as ji, TrackingEventNamesUnarchiveOutput as jj, TrackingGoogleadsConnectionStatusInput as jk, TrackingGoogleadsConnectionStatusOutput as jl, TrackingGoogleadsConversionActionsInput as jm, TrackingGoogleadsConversionActionsOutput as jn, TrackingGoogleadsFeedbackConfigGetInput as jo, TrackingGoogleadsFeedbackConfigGetOutput as jp, TrackingGoogleadsFeedbackConfigSetInput as jq, TrackingGoogleadsFeedbackConfigSetOutput as jr, TrackingGoogleadsFeedbackRunInput as js, TrackingGoogleadsFeedbackRunOutput as jt, TrackingGoogleadsFeedbackStatusInput as ju, TrackingGoogleadsFeedbackStatusOutput as jv, TrackingGoogleadsFeedbackUploadsInput as jw, TrackingGoogleadsFeedbackUploadsOutput as jx, TrackingGoogleadsRoasReportInput as jy, TrackingGoogleadsRoasReportOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersListOutput as k$, TrackingProfilesListInput as k0, TrackingProfilesListOutput as k1, TrackingReportsAttributedJourneyInput as k2, TrackingReportsAttributedJourneyOutput as k3, TrackingReportsRevenueBySourceInput as k4, TrackingReportsRevenueBySourceOutput as k5, TrackingReportsSourcePeopleInput as k6, TrackingReportsSourcePeopleOutput as k7, TrackingSnippetsGetInput as k8, TrackingSnippetsGetOutput as k9, UsersSessionsGetInput as kA, UsersSessionsGetOutput as kB, UsersSessionsImpersonateInput as kC, UsersSessionsImpersonateOutput as kD, UsersSessionsListInput as kE, UsersSessionsListOutput as kF, UsersSessionsRevokeInput as kG, UsersSessionsRevokeOutput as kH, UsersStatsGetInput as kI, UsersStatsGetOutput as kJ, UsersUsersBanInput as kK, UsersUsersBanOutput as kL, UsersUsersCreateInput as kM, UsersUsersCreateOutput as kN, UsersUsersDeleteInput as kO, UsersUsersDeleteOutput as kP, UsersUsersEraseInput as kQ, UsersUsersEraseOutput as kR, UsersUsersExportInput as kS, UsersUsersExportOutput as kT, UsersUsersGetInput as kU, UsersUsersGetOutput as kV, UsersUsersImportInput as kW, UsersUsersImportOutput as kX, UsersUsersInviteInput as kY, UsersUsersInviteOutput as kZ, UsersUsersListInput as k_, UsersApikeysCreateInput as ka, UsersApikeysCreateOutput as kb, UsersApikeysListInput as kc, UsersApikeysListOutput as kd, UsersApikeysRevokeInput as ke, UsersApikeysRevokeOutput as kf, UsersAuditListInput as kg, UsersAuditListOutput as kh, UsersConfigGetInput as ki, UsersConfigGetOutput as kj, UsersConfigUpsertInput as kk, UsersConfigUpsertOutput as kl, UsersFactorsListInput as km, UsersFactorsListOutput as kn, UsersFactorsResetInput as ko, UsersFactorsResetOutput as kp, UsersKeysListInput as kq, UsersKeysListOutput as kr, UsersKeysRevokeInput as ks, UsersKeysRevokeOutput as kt, UsersKeysRotateInput as ku, UsersKeysRotateOutput as kv, UsersOpsRetentionGetInput as kw, UsersOpsRetentionGetOutput as kx, UsersOpsSloGetInput as ky, UsersOpsSloGetOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersSetPrimaryIdentifierInput as l0, UsersUsersSetPrimaryIdentifierOutput as l1, UsersUsersUnbanInput as l2, UsersUsersUnbanOutput as l3, UsersUsersUpdateInput as l4, UsersUsersUpdateOutput as l5, UsersWaitlistEraseInput as l6, UsersWaitlistEraseOutput as l7, UsersWaitlistFunnelInput as l8, UsersWaitlistFunnelOutput as l9, WaitlistInvitesSendInput as lA, WaitlistInvitesSendOutput as lB, WaitlistSignupsEraseInput as lC, WaitlistSignupsEraseOutput as lD, WaitlistSignupsFunnelInput as lE, WaitlistSignupsFunnelOutput as lF, WaitlistSignupsListInput as lG, WaitlistSignupsListOutput as lH, UsersWaitlistImportInput as la, UsersWaitlistImportOutput as lb, UsersWaitlistInviteInput as lc, UsersWaitlistInviteOutput as ld, UsersWaitlistListInput as le, UsersWaitlistListOutput as lf, UsersWebhooksCreateInput as lg, UsersWebhooksCreateOutput as lh, UsersWebhooksDeleteInput as li, UsersWebhooksDeleteOutput as lj, UsersWebhooksDeliveriesListInput as lk, UsersWebhooksDeliveriesListOutput as ll, UsersWebhooksGetInput as lm, UsersWebhooksGetOutput as ln, UsersWebhooksListInput as lo, UsersWebhooksListOutput as lp, UsersWebhooksRotateSecretInput as lq, UsersWebhooksRotateSecretOutput as lr, UsersWebhooksUpdateInput as ls, UsersWebhooksUpdateOutput as lt, WaitlistConfigGetInput as lu, WaitlistConfigGetOutput as lv, WaitlistConfigUpsertInput as lw, WaitlistConfigUpsertOutput as lx, WaitlistEmbedGetInput as ly, WaitlistEmbedGetOutput as lz, BrainClickupListsListInput as m, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };