@lessly/sdk-app 17.3.1 → 18.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-BmxQbFSk.d.cts → client.gen-ZzwZ64Qc.d.cts} +223 -115
  10. package/dist/{client.gen-BmxQbFSk.d.ts → client.gen-ZzwZ64Qc.d.ts} +223 -115
  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 +104 -43
  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 +104 -43
  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.cjs +0 -10
  24. package/dist/organization/index.cjs.map +1 -1
  25. package/dist/organization/index.d.cts +2 -10
  26. package/dist/organization/index.d.ts +2 -10
  27. package/dist/organization/index.js +1 -9
  28. package/dist/organization/index.js.map +1 -1
  29. package/dist/playground/index.cjs +66 -0
  30. package/dist/playground/index.cjs.map +1 -0
  31. package/dist/playground/index.d.cts +52 -0
  32. package/dist/playground/index.d.ts +52 -0
  33. package/dist/playground/index.js +53 -0
  34. package/dist/playground/index.js.map +1 -0
  35. package/dist/realtime/index.d.cts +1 -1
  36. package/dist/realtime/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.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 +104 -43
  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 -11
  48. package/src/gen/manifest.gen.ts +1 -1
  49. package/src/gen/organization/index.ts +1 -1
  50. package/src/gen/organization/queryOptions.gen.ts +0 -12
  51. package/src/gen/playground/index.ts +3 -0
  52. package/src/gen/playground/queryOptions.gen.ts +86 -0
  53. package/src/gen/types.gen.ts +226 -115
@@ -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
  }
@@ -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
  };
@@ -12824,13 +12734,6 @@ interface OrganizationDomainsRemoveInput {
12824
12734
  interface OrganizationDomainsRemoveOutput {
12825
12735
  [k: string]: unknown;
12826
12736
  }
12827
- interface OrganizationExtensionsInstallInput {
12828
- productId: string;
12829
- extensionId: string;
12830
- }
12831
- interface OrganizationExtensionsInstallOutput {
12832
- message: string;
12833
- }
12834
12737
  interface OrganizationExtensionsListInput {
12835
12738
  }
12836
12739
  interface OrganizationExtensionsListOutput {
@@ -12858,16 +12761,9 @@ interface OrganizationExtensionsListInstalledOutput {
12858
12761
  manifest: {
12859
12762
  [k: string]: unknown;
12860
12763
  };
12861
- installedAt: string;
12764
+ registeredAt: string;
12862
12765
  }[];
12863
12766
  }
12864
- interface OrganizationExtensionsUninstallInput {
12865
- productId: string;
12866
- extensionId: string;
12867
- }
12868
- interface OrganizationExtensionsUninstallOutput {
12869
- message: string;
12870
- }
12871
12767
  interface OrganizationFeedbackSubmitInput {
12872
12768
  page?: string;
12873
12769
  title: string;
@@ -12917,6 +12813,7 @@ interface OrganizationListOutput {
12917
12813
  name: string;
12918
12814
  role: ("owner" | "admin" | "member");
12919
12815
  active: boolean;
12816
+ blockedAt: (string | null);
12920
12817
  }[];
12921
12818
  }
12922
12819
  interface OrganizationMemberAcceptInviteInput {
@@ -13342,6 +13239,194 @@ interface OrganizationSelectOutput {
13342
13239
  };
13343
13240
  activeProductId: (string | null);
13344
13241
  }
13242
+ interface PlaygroundAnalyticsOverviewInput {
13243
+ /**
13244
+ * Max records per entity in recent[]; omit for the endpoint default
13245
+ */
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;
13261
+ }
13262
+ interface PlaygroundBillingRecordUsageInput {
13263
+ /**
13264
+ * Quantity of events to record against playground-events (SUM); defaults to 1
13265
+ */
13266
+ value?: number;
13267
+ }
13268
+ interface PlaygroundBillingRecordUsageOutput {
13269
+ minted: boolean;
13270
+ accepted: (number | null);
13271
+ recorded: boolean;
13272
+ duplicates: (number | null);
13273
+ http_status: number;
13274
+ }
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: {
13317
+ id: string;
13318
+ name: string;
13319
+ status: (string | null);
13320
+ }[];
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 {
13332
+ id: string;
13333
+ name: string;
13334
+ }
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);
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
+ });
13345
13430
  interface RealtimeApikeyCreateInput {
13346
13431
  /**
13347
13432
  * Human-readable label for the key, e.g. "production backend"
@@ -18046,9 +18131,6 @@ interface GeneratedClient {
18046
18131
  restore: {
18047
18132
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
18048
18133
  };
18049
- usage: {
18050
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
18051
- };
18052
18134
  };
18053
18135
  consent: {
18054
18136
  'config-cookie-domain': {
@@ -18394,10 +18476,8 @@ interface GeneratedClient {
18394
18476
  remove(input: OrganizationDomainsRemoveInput): Promise<OrganizationDomainsRemoveOutput>;
18395
18477
  };
18396
18478
  extensions: {
18397
- install(input: OrganizationExtensionsInstallInput): Promise<OrganizationExtensionsInstallOutput>;
18398
18479
  list(input: OrganizationExtensionsListInput): Promise<OrganizationExtensionsListOutput>;
18399
18480
  'list-installed'(input: OrganizationExtensionsListInstalledInput): Promise<OrganizationExtensionsListInstalledOutput>;
18400
- uninstall(input: OrganizationExtensionsUninstallInput): Promise<OrganizationExtensionsUninstallOutput>;
18401
18481
  };
18402
18482
  feedback: {
18403
18483
  submit(input: OrganizationFeedbackSubmitInput): Promise<OrganizationFeedbackSubmitOutput>;
@@ -18453,6 +18533,34 @@ interface GeneratedClient {
18453
18533
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
18454
18534
  };
18455
18535
  };
18536
+ playground: {
18537
+ analytics: {
18538
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
18539
+ };
18540
+ billing: {
18541
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
18542
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
18543
+ };
18544
+ clickup: {
18545
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
18546
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
18547
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
18548
+ };
18549
+ gdrive: {
18550
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
18551
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
18552
+ };
18553
+ googleads: {
18554
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
18555
+ };
18556
+ lifecycle: {
18557
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
18558
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
18559
+ };
18560
+ webhook: {
18561
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
18562
+ };
18563
+ };
18456
18564
  realtime: {
18457
18565
  apikey: {
18458
18566
  create(input: RealtimeApikeyCreateInput): Promise<RealtimeApikeyCreateOutput>;
@@ -18685,4 +18793,4 @@ interface GeneratedClient {
18685
18793
  };
18686
18794
  }
18687
18795
 
18688
- 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, OrganizationMemberListProductAccessOutput 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, OrganizationExtensionsInstallInput as gA, OrganizationExtensionsInstallOutput as gB, OrganizationExtensionsListInstalledInput as gC, OrganizationExtensionsListInstalledOutput as gD, OrganizationExtensionsListInput as gE, OrganizationExtensionsListOutput as gF, OrganizationExtensionsUninstallInput as gG, OrganizationExtensionsUninstallOutput as gH, OrganizationFeedbackSubmitInput as gI, OrganizationFeedbackSubmitOutput as gJ, OrganizationGdriveInstallInput as gK, OrganizationGdriveInstallOutput as gL, OrganizationGithubInstallInput as gM, OrganizationGithubInstallOutput as gN, OrganizationGithubListInstallationsInput as gO, OrganizationGithubListInstallationsOutput as gP, OrganizationGoogleadsInstallInput as gQ, OrganizationGoogleadsInstallOutput as gR, OrganizationListInput as gS, OrganizationListOutput as gT, OrganizationMemberAcceptInviteInput as gU, OrganizationMemberAcceptInviteOutput as gV, OrganizationMemberInviteInput as gW, OrganizationMemberInviteOutput as gX, OrganizationMemberListInvitationsInput as gY, OrganizationMemberListInvitationsOutput as gZ, OrganizationMemberListProductAccessInput as g_, OrganizationConnectorsDetachInput as ga, OrganizationConnectorsDetachOutput as gb, OrganizationConnectorsListAttachmentsInput as gc, OrganizationConnectorsListAttachmentsOutput as gd, OrganizationConnectorsListAvailableInput as ge, OrganizationConnectorsListAvailableOutput as gf, OrganizationConnectorsListOrgInput as gg, OrganizationConnectorsListOrgOutput as gh, OrganizationConnectorsListInput as gi, OrganizationConnectorsListOutput as gj, OrganizationConnectorsListRequestsInput as gk, OrganizationConnectorsListRequestsOutput as gl, OrganizationConnectorsRemoveInput as gm, OrganizationConnectorsRemoveOutput as gn, OrganizationConnectorsRequestInput as go, OrganizationConnectorsRequestOutput as gp, OrganizationCreateInput as gq, OrganizationCreateOutput as gr, OrganizationDomainsAddInput as gs, OrganizationDomainsAddOutput as gt, OrganizationDomainsGetInput as gu, OrganizationDomainsGetOutput as gv, OrganizationDomainsListInput as gw, OrganizationDomainsListOutput as gx, OrganizationDomainsRemoveInput as gy, OrganizationDomainsRemoveOutput as gz, BrainBackupsListOutput as h, RealtimeGrantCreateOutput as h$, OrganizationMemberListInput as h0, OrganizationMemberListOutput as h1, OrganizationMemberRemoveInput as h2, OrganizationMemberRemoveOutput as h3, OrganizationMemberRevokeInvitationInput as h4, OrganizationMemberRevokeInvitationOutput as h5, OrganizationMemberSetRoleInput as h6, OrganizationMemberSetRoleOutput as h7, OrganizationMemberShareProductInput as h8, OrganizationMemberShareProductOutput as h9, OrganizationRolesCreateInput as hA, OrganizationRolesCreateOutput as hB, OrganizationRolesDeleteInput as hC, OrganizationRolesDeleteOutput as hD, OrganizationRolesGetInput as hE, OrganizationRolesGetOutput as hF, OrganizationRolesListInput as hG, OrganizationRolesListOutput as hH, OrganizationRolesUpdateInput as hI, OrganizationRolesUpdateOutput as hJ, OrganizationSecurityMfaEnableInput as hK, OrganizationSecurityMfaEnableOutput as hL, OrganizationSelectInput as hM, OrganizationSelectOutput as hN, RealtimeApikeyCreateInput as hO, RealtimeApikeyCreateOutput as hP, RealtimeApikeyListInput as hQ, RealtimeApikeyListOutput as hR, RealtimeApikeyRevokeInput as hS, RealtimeApikeyRevokeOutput as hT, RealtimeArchiveExportInput as hU, RealtimeArchiveExportOutput as hV, RealtimeArchiveExportStatusInput as hW, RealtimeArchiveExportStatusOutput as hX, RealtimeArchiveGetInput as hY, RealtimeArchiveGetOutput as hZ, RealtimeGrantCreateInput as h_, OrganizationMemberUnshareProductInput as ha, OrganizationMemberUnshareProductOutput as hb, OrganizationMembersAssignRoleInput as hc, OrganizationMembersAssignRoleOutput as hd, OrganizationPermissionCatalogInput as he, OrganizationPermissionCatalogOutput as hf, OrganizationProductAcceptInvitationInput as hg, OrganizationProductAcceptInvitationOutput as hh, OrganizationProductCreateInput as hi, OrganizationProductCreateOutput as hj, OrganizationProductInviteInput as hk, OrganizationProductInviteOutput as hl, OrganizationProductListInvitationsInput as hm, OrganizationProductListInvitationsOutput as hn, OrganizationProductListMembersInput as ho, OrganizationProductListMembersOutput as hp, OrganizationProductListInput as hq, OrganizationProductListOutput as hr, OrganizationProductListRolesInput as hs, OrganizationProductListRolesOutput as ht, OrganizationProductRevokeInvitationInput as hu, OrganizationProductRevokeInvitationOutput as hv, OrganizationProductSelectInput as hw, OrganizationProductSelectOutput as hx, OrganizationProductUpdateInput as hy, OrganizationProductUpdateOutput as hz, BrainClickupChannelsListInput as i, TrackingDomainsListOutput as i$, RealtimeGrantListInput as i0, RealtimeGrantListOutput as i1, RealtimeGrantRevokeInput as i2, RealtimeGrantRevokeOutput as i3, RealtimeHistoryGetInput as i4, RealtimeHistoryGetOutput as i5, RealtimeMessagesPublishInput as i6, RealtimeMessagesPublishOutput as i7, RealtimeNamespaceCreateInput as i8, RealtimeNamespaceCreateOutput as i9, RealtimeWebhookDeleteInput as iA, RealtimeWebhookDeleteOutput as iB, RealtimeWebhookDeliveriesListInput as iC, RealtimeWebhookDeliveriesListOutput as iD, RealtimeWebhookGetInput as iE, RealtimeWebhookGetOutput as iF, RealtimeWebhookListInput as iG, RealtimeWebhookListOutput as iH, RealtimeWebhookSecretRotateInput as iI, RealtimeWebhookSecretRotateOutput as iJ, RealtimeWebhookUpdateInput as iK, RealtimeWebhookUpdateOutput as iL, TrackingApiKeysCreateInput as iM, TrackingApiKeysCreateOutput as iN, TrackingApiKeysListInput as iO, TrackingApiKeysListOutput as iP, TrackingApiKeysRevokeInput as iQ, TrackingApiKeysRevokeOutput as iR, TrackingApiKeysRotateInput as iS, TrackingApiKeysRotateOutput as iT, TrackingDomainsCreateInput as iU, TrackingDomainsCreateOutput as iV, TrackingDomainsDeleteInput as iW, TrackingDomainsDeleteOutput as iX, TrackingDomainsGetInput as iY, TrackingDomainsGetOutput as iZ, TrackingDomainsListInput as i_, RealtimeNamespaceDeleteInput as ia, RealtimeNamespaceDeleteOutput as ib, RealtimeNamespaceGetInput as ic, RealtimeNamespaceGetOutput as id, RealtimeNamespaceListInput as ie, RealtimeNamespaceListOutput as ig, RealtimeNamespaceUpdateInput as ih, RealtimeNamespaceUpdateOutput as ii, RealtimePresenceEnterInput as ij, RealtimePresenceEnterOutput as ik, RealtimePresenceGetInput as il, RealtimePresenceGetOutput as im, RealtimePresenceLeaveInput as io, RealtimePresenceLeaveOutput as ip, RealtimePresenceStatsInput as iq, RealtimePresenceStatsOutput as ir, RealtimePresenceUpdateInput as is, RealtimePresenceUpdateOutput as it, RealtimeStatusGetInput as iu, RealtimeStatusGetOutput as iv, RealtimeTokensCreateInput as iw, RealtimeTokensCreateOutput as ix, RealtimeWebhookCreateInput as iy, RealtimeWebhookCreateOutput as iz, BrainClickupChannelsListOutput as j, UsersApikeysCreateOutput as j$, TrackingDomainsVerifyInput as j0, TrackingDomainsVerifyOutput as j1, TrackingEventNamesArchiveInput as j2, TrackingEventNamesArchiveOutput as j3, TrackingEventNamesListInput as j4, TrackingEventNamesListOutput as j5, TrackingEventNamesUnarchiveInput as j6, TrackingEventNamesUnarchiveOutput as j7, TrackingGoogleadsConnectionStatusInput as j8, TrackingGoogleadsConnectionStatusOutput as j9, TrackingInstallDomainsListInput as jA, TrackingInstallDomainsListOutput as jB, TrackingLinkDomainsCreateInput as jC, TrackingLinkDomainsCreateOutput as jD, TrackingLinkDomainsDeleteInput as jE, TrackingLinkDomainsDeleteOutput as jF, TrackingLinkDomainsListInput as jG, TrackingLinkDomainsListOutput as jH, TrackingLiveEventsListInput as jI, TrackingLiveEventsListOutput as jJ, TrackingProfilesDeleteInput as jK, TrackingProfilesDeleteOutput as jL, TrackingProfilesExportInput as jM, TrackingProfilesExportOutput as jN, TrackingProfilesGetInput as jO, TrackingProfilesGetOutput as jP, TrackingProfilesListInput as jQ, TrackingProfilesListOutput as jR, TrackingReportsAttributedJourneyInput as jS, TrackingReportsAttributedJourneyOutput as jT, TrackingReportsRevenueBySourceInput as jU, TrackingReportsRevenueBySourceOutput as jV, TrackingReportsSourcePeopleInput as jW, TrackingReportsSourcePeopleOutput as jX, TrackingSnippetsGetInput as jY, TrackingSnippetsGetOutput as jZ, UsersApikeysCreateInput as j_, TrackingGoogleadsConversionActionsInput as ja, TrackingGoogleadsConversionActionsOutput as jb, TrackingGoogleadsFeedbackConfigGetInput as jc, TrackingGoogleadsFeedbackConfigGetOutput as jd, TrackingGoogleadsFeedbackConfigSetInput as je, TrackingGoogleadsFeedbackConfigSetOutput as jf, TrackingGoogleadsFeedbackRunInput as jg, TrackingGoogleadsFeedbackRunOutput as jh, TrackingGoogleadsFeedbackStatusInput as ji, TrackingGoogleadsFeedbackStatusOutput as jj, TrackingGoogleadsFeedbackUploadsInput as jk, TrackingGoogleadsFeedbackUploadsOutput as jl, TrackingGoogleadsRoasReportInput as jm, TrackingGoogleadsRoasReportOutput as jn, TrackingGoogleadsSyncNowInput as jo, TrackingGoogleadsSyncNowOutput as jp, TrackingGoogleadsTrackingHealthInput as jq, TrackingGoogleadsTrackingHealthOutput as jr, TrackingGoogleadsUsVsPlatformInput as js, TrackingGoogleadsUsVsPlatformOutput as jt, TrackingIdentityHealthInput as ju, TrackingIdentityHealthOutput as jv, TrackingInstallDomainsCreateInput as jw, TrackingInstallDomainsCreateOutput as jx, TrackingInstallDomainsDeleteInput as jy, TrackingInstallDomainsDeleteOutput as jz, BrainClickupConnectionsListInput as k, UsersWaitlistImportOutput as k$, UsersApikeysListInput as k0, UsersApikeysListOutput as k1, UsersApikeysRevokeInput as k2, UsersApikeysRevokeOutput as k3, UsersAuditListInput as k4, UsersAuditListOutput as k5, UsersConfigGetInput as k6, UsersConfigGetOutput as k7, UsersConfigUpsertInput as k8, UsersConfigUpsertOutput as k9, UsersUsersCreateInput as kA, UsersUsersCreateOutput as kB, UsersUsersDeleteInput as kC, UsersUsersDeleteOutput as kD, UsersUsersEraseInput as kE, UsersUsersEraseOutput as kF, UsersUsersExportInput as kG, UsersUsersExportOutput as kH, UsersUsersGetInput as kI, UsersUsersGetOutput as kJ, UsersUsersImportInput as kK, UsersUsersImportOutput as kL, UsersUsersInviteInput as kM, UsersUsersInviteOutput as kN, UsersUsersListInput as kO, UsersUsersListOutput as kP, UsersUsersSetPrimaryIdentifierInput as kQ, UsersUsersSetPrimaryIdentifierOutput as kR, UsersUsersUnbanInput as kS, UsersUsersUnbanOutput as kT, UsersUsersUpdateInput as kU, UsersUsersUpdateOutput as kV, UsersWaitlistEraseInput as kW, UsersWaitlistEraseOutput as kX, UsersWaitlistFunnelInput as kY, UsersWaitlistFunnelOutput as kZ, UsersWaitlistImportInput as k_, UsersFactorsListInput as ka, UsersFactorsListOutput as kb, UsersFactorsResetInput as kc, UsersFactorsResetOutput as kd, UsersKeysListInput as ke, UsersKeysListOutput as kf, UsersKeysRevokeInput as kg, UsersKeysRevokeOutput as kh, UsersKeysRotateInput as ki, UsersKeysRotateOutput as kj, UsersOpsRetentionGetInput as kk, UsersOpsRetentionGetOutput as kl, UsersOpsSloGetInput as km, UsersOpsSloGetOutput as kn, UsersSessionsGetInput as ko, UsersSessionsGetOutput as kp, UsersSessionsImpersonateInput as kq, UsersSessionsImpersonateOutput as kr, UsersSessionsListInput as ks, UsersSessionsListOutput as kt, UsersSessionsRevokeInput as ku, UsersSessionsRevokeOutput as kv, UsersStatsGetInput as kw, UsersStatsGetOutput as kx, UsersUsersBanInput as ky, UsersUsersBanOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistInviteInput as l0, UsersWaitlistInviteOutput as l1, UsersWaitlistListInput as l2, UsersWaitlistListOutput as l3, UsersWebhooksCreateInput as l4, UsersWebhooksCreateOutput as l5, UsersWebhooksDeleteInput as l6, UsersWebhooksDeleteOutput as l7, UsersWebhooksDeliveriesListInput as l8, UsersWebhooksDeliveriesListOutput as l9, UsersWebhooksGetInput as la, UsersWebhooksGetOutput as lb, UsersWebhooksListInput as lc, UsersWebhooksListOutput as ld, UsersWebhooksRotateSecretInput as le, UsersWebhooksRotateSecretOutput as lf, UsersWebhooksUpdateInput as lg, UsersWebhooksUpdateOutput as lh, WaitlistConfigGetInput as li, WaitlistConfigGetOutput as lj, WaitlistConfigUpsertInput as lk, WaitlistConfigUpsertOutput as ll, WaitlistEmbedGetInput as lm, WaitlistEmbedGetOutput as ln, WaitlistInvitesSendInput as lo, WaitlistInvitesSendOutput as lp, WaitlistSignupsEraseInput as lq, WaitlistSignupsEraseOutput as lr, WaitlistSignupsFunnelInput as ls, WaitlistSignupsFunnelOutput as lt, WaitlistSignupsListInput as lu, WaitlistSignupsListOutput as lv, 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 };
18796
+ 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, RealtimeWebhookSecretRotateOutput as i$, PlaygroundLifecycleListEventsInput as i0, PlaygroundLifecycleListEventsOutput as i1, PlaygroundWebhookGetLastInput as i2, PlaygroundWebhookGetLastOutput as i3, RealtimeApikeyCreateInput as i4, RealtimeApikeyCreateOutput as i5, RealtimeApikeyListInput as i6, RealtimeApikeyListOutput as i7, RealtimeApikeyRevokeInput as i8, RealtimeApikeyRevokeOutput as i9, RealtimeNamespaceUpdateInput as iA, RealtimeNamespaceUpdateOutput as iB, RealtimePresenceEnterInput as iC, RealtimePresenceEnterOutput as iD, RealtimePresenceGetInput as iE, RealtimePresenceGetOutput as iF, RealtimePresenceLeaveInput as iG, RealtimePresenceLeaveOutput as iH, RealtimePresenceStatsInput as iI, RealtimePresenceStatsOutput as iJ, RealtimePresenceUpdateInput as iK, RealtimePresenceUpdateOutput as iL, RealtimeStatusGetInput as iM, RealtimeStatusGetOutput as iN, RealtimeTokensCreateInput as iO, RealtimeTokensCreateOutput as iP, RealtimeWebhookCreateInput as iQ, RealtimeWebhookCreateOutput as iR, RealtimeWebhookDeleteInput as iS, RealtimeWebhookDeleteOutput as iT, RealtimeWebhookDeliveriesListInput as iU, RealtimeWebhookDeliveriesListOutput as iV, RealtimeWebhookGetInput as iW, RealtimeWebhookGetOutput as iX, RealtimeWebhookListInput as iY, RealtimeWebhookListOutput as iZ, RealtimeWebhookSecretRotateInput as i_, RealtimeArchiveExportInput as ia, RealtimeArchiveExportOutput as ib, RealtimeArchiveExportStatusInput as ic, RealtimeArchiveExportStatusOutput as id, RealtimeArchiveGetInput as ie, RealtimeArchiveGetOutput as ig, RealtimeGrantCreateInput as ih, RealtimeGrantCreateOutput as ii, RealtimeGrantListInput as ij, RealtimeGrantListOutput as ik, RealtimeGrantRevokeInput as il, RealtimeGrantRevokeOutput as im, RealtimeHistoryGetInput as io, RealtimeHistoryGetOutput as ip, RealtimeMessagesPublishInput as iq, RealtimeMessagesPublishOutput as ir, RealtimeNamespaceCreateInput as is, RealtimeNamespaceCreateOutput as it, RealtimeNamespaceDeleteInput as iu, RealtimeNamespaceDeleteOutput as iv, RealtimeNamespaceGetInput as iw, RealtimeNamespaceGetOutput as ix, RealtimeNamespaceListInput as iy, RealtimeNamespaceListOutput as iz, BrainClickupChannelsListOutput as j, TrackingLiveEventsListOutput as j$, RealtimeWebhookUpdateInput as j0, RealtimeWebhookUpdateOutput as j1, TrackingApiKeysCreateInput as j2, TrackingApiKeysCreateOutput as j3, TrackingApiKeysListInput as j4, TrackingApiKeysListOutput as j5, TrackingApiKeysRevokeInput as j6, TrackingApiKeysRevokeOutput as j7, TrackingApiKeysRotateInput as j8, TrackingApiKeysRotateOutput as j9, TrackingGoogleadsFeedbackStatusInput as jA, TrackingGoogleadsFeedbackStatusOutput as jB, TrackingGoogleadsFeedbackUploadsInput as jC, TrackingGoogleadsFeedbackUploadsOutput as jD, TrackingGoogleadsRoasReportInput as jE, TrackingGoogleadsRoasReportOutput as jF, TrackingGoogleadsSyncNowInput as jG, TrackingGoogleadsSyncNowOutput as jH, TrackingGoogleadsTrackingHealthInput as jI, TrackingGoogleadsTrackingHealthOutput as jJ, TrackingGoogleadsUsVsPlatformInput as jK, TrackingGoogleadsUsVsPlatformOutput as jL, TrackingIdentityHealthInput as jM, TrackingIdentityHealthOutput as jN, TrackingInstallDomainsCreateInput as jO, TrackingInstallDomainsCreateOutput as jP, TrackingInstallDomainsDeleteInput as jQ, TrackingInstallDomainsDeleteOutput as jR, TrackingInstallDomainsListInput as jS, TrackingInstallDomainsListOutput as jT, TrackingLinkDomainsCreateInput as jU, TrackingLinkDomainsCreateOutput as jV, TrackingLinkDomainsDeleteInput as jW, TrackingLinkDomainsDeleteOutput as jX, TrackingLinkDomainsListInput as jY, TrackingLinkDomainsListOutput as jZ, TrackingLiveEventsListInput as j_, TrackingDomainsCreateInput as ja, TrackingDomainsCreateOutput as jb, TrackingDomainsDeleteInput as jc, TrackingDomainsDeleteOutput as jd, TrackingDomainsGetInput as je, TrackingDomainsGetOutput as jf, TrackingDomainsListInput as jg, TrackingDomainsListOutput as jh, TrackingDomainsVerifyInput as ji, TrackingDomainsVerifyOutput as jj, TrackingEventNamesArchiveInput as jk, TrackingEventNamesArchiveOutput as jl, TrackingEventNamesListInput as jm, TrackingEventNamesListOutput as jn, TrackingEventNamesUnarchiveInput as jo, TrackingEventNamesUnarchiveOutput as jp, TrackingGoogleadsConnectionStatusInput as jq, TrackingGoogleadsConnectionStatusOutput as jr, TrackingGoogleadsConversionActionsInput as js, TrackingGoogleadsConversionActionsOutput as jt, TrackingGoogleadsFeedbackConfigGetInput as ju, TrackingGoogleadsFeedbackConfigGetOutput as jv, TrackingGoogleadsFeedbackConfigSetInput as jw, TrackingGoogleadsFeedbackConfigSetOutput as jx, TrackingGoogleadsFeedbackRunInput as jy, TrackingGoogleadsFeedbackRunOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersGetOutput as k$, TrackingProfilesDeleteInput as k0, TrackingProfilesDeleteOutput as k1, TrackingProfilesExportInput as k2, TrackingProfilesExportOutput as k3, TrackingProfilesGetInput as k4, TrackingProfilesGetOutput as k5, TrackingProfilesListInput as k6, TrackingProfilesListOutput as k7, TrackingReportsAttributedJourneyInput as k8, TrackingReportsAttributedJourneyOutput as k9, UsersKeysRotateInput as kA, UsersKeysRotateOutput as kB, UsersOpsRetentionGetInput as kC, UsersOpsRetentionGetOutput as kD, UsersOpsSloGetInput as kE, UsersOpsSloGetOutput as kF, UsersSessionsGetInput as kG, UsersSessionsGetOutput as kH, UsersSessionsImpersonateInput as kI, UsersSessionsImpersonateOutput as kJ, UsersSessionsListInput as kK, UsersSessionsListOutput as kL, UsersSessionsRevokeInput as kM, UsersSessionsRevokeOutput as kN, UsersStatsGetInput as kO, UsersStatsGetOutput as kP, UsersUsersBanInput as kQ, UsersUsersBanOutput as kR, UsersUsersCreateInput as kS, UsersUsersCreateOutput as kT, UsersUsersDeleteInput as kU, UsersUsersDeleteOutput as kV, UsersUsersEraseInput as kW, UsersUsersEraseOutput as kX, UsersUsersExportInput as kY, UsersUsersExportOutput as kZ, UsersUsersGetInput as k_, TrackingReportsRevenueBySourceInput as ka, TrackingReportsRevenueBySourceOutput as kb, TrackingReportsSourcePeopleInput as kc, TrackingReportsSourcePeopleOutput as kd, TrackingSnippetsGetInput as ke, TrackingSnippetsGetOutput as kf, UsersApikeysCreateInput as kg, UsersApikeysCreateOutput as kh, UsersApikeysListInput as ki, UsersApikeysListOutput as kj, UsersApikeysRevokeInput as kk, UsersApikeysRevokeOutput as kl, UsersAuditListInput as km, UsersAuditListOutput as kn, UsersConfigGetInput as ko, UsersConfigGetOutput as kp, UsersConfigUpsertInput as kq, UsersConfigUpsertOutput as kr, UsersFactorsListInput as ks, UsersFactorsListOutput as kt, UsersFactorsResetInput as ku, UsersFactorsResetOutput as kv, UsersKeysListInput as kw, UsersKeysListOutput as kx, UsersKeysRevokeInput as ky, UsersKeysRevokeOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersImportInput as l0, UsersUsersImportOutput as l1, UsersUsersInviteInput as l2, UsersUsersInviteOutput as l3, UsersUsersListInput as l4, UsersUsersListOutput as l5, UsersUsersSetPrimaryIdentifierInput as l6, UsersUsersSetPrimaryIdentifierOutput as l7, UsersUsersUnbanInput as l8, UsersUsersUnbanOutput as l9, WaitlistConfigGetInput as lA, WaitlistConfigGetOutput as lB, WaitlistConfigUpsertInput as lC, WaitlistConfigUpsertOutput as lD, WaitlistEmbedGetInput as lE, WaitlistEmbedGetOutput as lF, WaitlistInvitesSendInput as lG, WaitlistInvitesSendOutput as lH, WaitlistSignupsEraseInput as lI, WaitlistSignupsEraseOutput as lJ, WaitlistSignupsFunnelInput as lK, WaitlistSignupsFunnelOutput as lL, WaitlistSignupsListInput as lM, WaitlistSignupsListOutput as lN, UsersUsersUpdateInput as la, UsersUsersUpdateOutput as lb, UsersWaitlistEraseInput as lc, UsersWaitlistEraseOutput as ld, UsersWaitlistFunnelInput as le, UsersWaitlistFunnelOutput as lf, UsersWaitlistImportInput as lg, UsersWaitlistImportOutput as lh, UsersWaitlistInviteInput as li, UsersWaitlistInviteOutput as lj, UsersWaitlistListInput as lk, UsersWaitlistListOutput as ll, UsersWebhooksCreateInput as lm, UsersWebhooksCreateOutput as ln, UsersWebhooksDeleteInput as lo, UsersWebhooksDeleteOutput as lp, UsersWebhooksDeliveriesListInput as lq, UsersWebhooksDeliveriesListOutput as lr, UsersWebhooksGetInput as ls, UsersWebhooksGetOutput as lt, UsersWebhooksListInput as lu, UsersWebhooksListOutput as lv, UsersWebhooksRotateSecretInput as lw, UsersWebhooksRotateSecretOutput as lx, UsersWebhooksUpdateInput as ly, UsersWebhooksUpdateOutput 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 };
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, av as ConsentConfigCookieDomainUpsertInput, aw as ConsentConfigCookieDomainUpsertOutput, ax as ConsentConfigCustomizationUpsertInput, ay as ConsentConfigCustomizationUpsertOutput, az as ConsentConfigFloatingIconUpsertInput, aA as ConsentConfigFloatingIconUpsertOutput, aB as ConsentConfigThemeUpsertInput, aC as ConsentConfigThemeUpsertOutput, aD as ConsentDashboardConfigGetInput, aE as ConsentDashboardConfigGetOutput, aF as ConsentDashboardDecisionsListInput, aG as ConsentDashboardDecisionsListOutput, aH as ConsentDashboardEmbedSnippetGetInput, aI as ConsentDashboardEmbedSnippetGetOutput, aJ as ConsentDashboardStatsGetInput, aK as ConsentDashboardStatsGetOutput, aL as ConsentEmbedGetInput, aM as ConsentEmbedGetOutput, aN as ConsentProvidersCreateInput, aO as ConsentProvidersCreateOutput, aP as ConsentProvidersDeleteInput, aQ as ConsentProvidersDeleteOutput, aR as ConsentProvidersListInput, aS as ConsentProvidersListOutput, aT as ConsentProvidersUpdateInput, aU as ConsentProvidersUpdateOutput, aV as ConsentRecordsExportInput, aW as ConsentRecordsExportOutput, aX as ConsentStatsGetInput, aY as ConsentStatsGetOutput } from '../client.gen-BmxQbFSk.cjs';
1
+ import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-ZzwZ64Qc.cjs';
2
2
 
3
3
  declare const consentConfigCookieDomainUpsertMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, av as ConsentConfigCookieDomainUpsertInput, aw as ConsentConfigCookieDomainUpsertOutput, ax as ConsentConfigCustomizationUpsertInput, ay as ConsentConfigCustomizationUpsertOutput, az as ConsentConfigFloatingIconUpsertInput, aA as ConsentConfigFloatingIconUpsertOutput, aB as ConsentConfigThemeUpsertInput, aC as ConsentConfigThemeUpsertOutput, aD as ConsentDashboardConfigGetInput, aE as ConsentDashboardConfigGetOutput, aF as ConsentDashboardDecisionsListInput, aG as ConsentDashboardDecisionsListOutput, aH as ConsentDashboardEmbedSnippetGetInput, aI as ConsentDashboardEmbedSnippetGetOutput, aJ as ConsentDashboardStatsGetInput, aK as ConsentDashboardStatsGetOutput, aL as ConsentEmbedGetInput, aM as ConsentEmbedGetOutput, aN as ConsentProvidersCreateInput, aO as ConsentProvidersCreateOutput, aP as ConsentProvidersDeleteInput, aQ as ConsentProvidersDeleteOutput, aR as ConsentProvidersListInput, aS as ConsentProvidersListOutput, aT as ConsentProvidersUpdateInput, aU as ConsentProvidersUpdateOutput, aV as ConsentRecordsExportInput, aW as ConsentRecordsExportOutput, aX as ConsentStatsGetInput, aY as ConsentStatsGetOutput } from '../client.gen-BmxQbFSk.js';
1
+ import { G as GeneratedClient, at as ConsentConfigCookieDomainUpsertInput, au as ConsentConfigCookieDomainUpsertOutput, av as ConsentConfigCustomizationUpsertInput, aw as ConsentConfigCustomizationUpsertOutput, ax as ConsentConfigFloatingIconUpsertInput, ay as ConsentConfigFloatingIconUpsertOutput, az as ConsentConfigThemeUpsertInput, aA as ConsentConfigThemeUpsertOutput, aB as ConsentDashboardConfigGetInput, aC as ConsentDashboardConfigGetOutput, aD as ConsentDashboardDecisionsListInput, aE as ConsentDashboardDecisionsListOutput, aF as ConsentDashboardEmbedSnippetGetInput, aG as ConsentDashboardEmbedSnippetGetOutput, aH as ConsentDashboardStatsGetInput, aI as ConsentDashboardStatsGetOutput, aJ as ConsentEmbedGetInput, aK as ConsentEmbedGetOutput, aL as ConsentProvidersCreateInput, aM as ConsentProvidersCreateOutput, aN as ConsentProvidersDeleteInput, aO as ConsentProvidersDeleteOutput, aP as ConsentProvidersListInput, aQ as ConsentProvidersListOutput, aR as ConsentProvidersUpdateInput, aS as ConsentProvidersUpdateOutput, aT as ConsentRecordsExportInput, aU as ConsentRecordsExportOutput, aV as ConsentStatsGetInput, aW as ConsentStatsGetOutput } from '../client.gen-ZzwZ64Qc.js';
2
2
 
3
3
  declare const consentConfigCookieDomainUpsertMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];
@@ -1,4 +1,4 @@
1
- import { G as GeneratedClient, aZ as DeploymentAlertCreateInput, a_ as DeploymentAlertCreateOutput, a$ as DeploymentAlertDeleteInput, b0 as DeploymentAlertDeleteOutput, b1 as DeploymentAlertEventsListInput, b2 as DeploymentAlertEventsListOutput, b3 as DeploymentAlertListInput, b4 as DeploymentAlertListOutput, b5 as DeploymentAlertUpdateInput, b6 as DeploymentAlertUpdateOutput, b7 as DeploymentAnalyticsQueryInput, b8 as DeploymentAnalyticsQueryOutput, b9 as DeploymentAuditListInput, ba as DeploymentAuditListOutput, bb as DeploymentBuildGetInput, bc as DeploymentBuildGetOutput, bd as DeploymentBuildListInput, be as DeploymentBuildListOutput, bf as DeploymentBuildLogsInput, bg as DeploymentBuildLogsOutput, bh as DeploymentCanvasGetInput, bi as DeploymentCanvasGetOutput, bj as DeploymentCanvasMoveNodeInput, bk as DeploymentCanvasMoveNodeOutput, bl as DeploymentCloudSqlBackfillLogFlagsInput, bm as DeploymentCloudSqlBackfillLogFlagsOutput, bn as DeploymentCloudSqlDatabaseAttachInput, bo as DeploymentCloudSqlDatabaseAttachOutput, bp as DeploymentCloudSqlDatabaseCreateInput, bq as DeploymentCloudSqlDatabaseCreateOutput, br as DeploymentCloudSqlDatabaseDeleteInput, bs as DeploymentCloudSqlDatabaseDeleteOutput, bt as DeploymentCloudSqlDatabaseDetachInput, bu as DeploymentCloudSqlDatabaseDetachOutput, bv as DeploymentCloudSqlDatabaseGetInput, bw as DeploymentCloudSqlDatabaseGetOutput, bx as DeploymentCloudSqlDatabaseListInput, by as DeploymentCloudSqlDatabaseListOutput, bz as DeploymentCloudSqlInstanceBackupListInput, bA as DeploymentCloudSqlInstanceBackupListOutput, bB as DeploymentCloudSqlInstanceBackupInput, bC as DeploymentCloudSqlInstanceBackupOutput, bD as DeploymentCloudSqlInstanceCreateInput, bE as DeploymentCloudSqlInstanceCreateOutput, bF as DeploymentCloudSqlInstanceDeleteInput, bG as DeploymentCloudSqlInstanceDeleteOutput, bH as DeploymentCloudSqlInstanceGetInput, bI as DeploymentCloudSqlInstanceGetOutput, bJ as DeploymentCloudSqlInstanceListInput, bK as DeploymentCloudSqlInstanceListOutput, bL as DeploymentCloudSqlInstanceResizeInput, bM as DeploymentCloudSqlInstanceResizeOutput, bN as DeploymentCloudSqlInstanceRestoreInput, bO as DeploymentCloudSqlInstanceRestoreOutput, bP as DeploymentCloudSqlLogsInput, bQ as DeploymentCloudSqlLogsOutput, bR as DeploymentDeploymentCancelInput, bS as DeploymentDeploymentCancelOutput, bT as DeploymentDeploymentGetInput, bU as DeploymentDeploymentGetOutput, bV as DeploymentDeploymentListInput, bW as DeploymentDeploymentListOutput, bX as DeploymentDomainAddInput, bY as DeploymentDomainAddOutput, bZ as DeploymentDomainAllowedListInput, b_ as DeploymentDomainAllowedListOutput, b$ as DeploymentDomainGetInput, c0 as DeploymentDomainGetOutput, c1 as DeploymentDomainListByServiceInput, c2 as DeploymentDomainListByServiceOutput, c3 as DeploymentDomainListInput, c4 as DeploymentDomainListOutput, c5 as DeploymentDomainRedirectWwwInput, c6 as DeploymentDomainRedirectWwwOutput, c7 as DeploymentDomainRemoveInput, c8 as DeploymentDomainRemoveOutput, c9 as DeploymentDomainRoutesAddInput, ca as DeploymentDomainRoutesAddOutput, cb as DeploymentDomainRoutesListInput, cc as DeploymentDomainRoutesListOutput, cd as DeploymentDomainRoutesRemoveInput, ce as DeploymentDomainRoutesRemoveOutput, cf as DeploymentDomainRoutesUpdateInput, cg as DeploymentDomainRoutesUpdateOutput, ch as DeploymentDomainVerifyInput, ci as DeploymentDomainVerifyOutput, cj as DeploymentEnvironmentCreateInput, ck as DeploymentEnvironmentCreateOutput, cl as DeploymentEnvironmentDeleteInput, cm as DeploymentEnvironmentDeleteOutput, cn as DeploymentEnvironmentForkInput, co as DeploymentEnvironmentForkOutput, cp as DeploymentEnvironmentGetInput, cq as DeploymentEnvironmentGetOutput, cr as DeploymentEnvironmentListInput, cs as DeploymentEnvironmentListOutput, ct as DeploymentEnvironmentReconcileInput, cu as DeploymentEnvironmentReconcileOutput, cv as DeploymentEnvironmentUpdateInput, cw as DeploymentEnvironmentUpdateOutput, cx as DeploymentEventsListByEnvironmentInput, cy as DeploymentEventsListByEnvironmentOutput, cz as DeploymentEventsListByServiceInput, cA as DeploymentEventsListByServiceOutput, cB as DeploymentManagedServiceBackupListInput, cC as DeploymentManagedServiceBackupListOutput, cD as DeploymentManagedServiceBackupInput, cE as DeploymentManagedServiceBackupOutput, cF as DeploymentManagedServiceConnectInfoInput, cG as DeploymentManagedServiceConnectInfoOutput, cH as DeploymentManagedServiceDeleteInput, cI as DeploymentManagedServiceDeleteOutput, cJ as DeploymentManagedServiceGetInput, cK as DeploymentManagedServiceGetOutput, cL as DeploymentManagedServiceListInput, cM as DeploymentManagedServiceListOutput, cN as DeploymentManagedServiceLogsInput, cO as DeploymentManagedServiceLogsOutput, cP as DeploymentManagedServiceProvisionInput, cQ as DeploymentManagedServiceProvisionOutput, cR as DeploymentManagedServiceReconcileInput, cS as DeploymentManagedServiceReconcileOutput, cT as DeploymentManagedServiceResizeInput, cU as DeploymentManagedServiceResizeOutput, cV as DeploymentManagedServiceRestoreInput, cW as DeploymentManagedServiceRestoreOutput, cX as DeploymentManagedServiceStartInput, cY as DeploymentManagedServiceStartOutput, cZ as DeploymentManagedServiceStopInput, c_ as DeploymentManagedServiceStopOutput, c$ as DeploymentManagedServiceTypesInput, d0 as DeploymentManagedServiceTypesOutput, d1 as DeploymentMetricsGetInput, d2 as DeploymentMetricsGetOutput, d3 as DeploymentPreviewEnvironmentCreateInput, d4 as DeploymentPreviewEnvironmentCreateOutput, d5 as DeploymentPreviewEnvironmentDeleteInput, d6 as DeploymentPreviewEnvironmentDeleteOutput, d7 as DeploymentPreviewEnvironmentListInput, d8 as DeploymentPreviewEnvironmentListOutput, d9 as DeploymentPreviewPolicyGetInput, da as DeploymentPreviewPolicyGetOutput, db as DeploymentPreviewPolicySetInput, dc as DeploymentPreviewPolicySetOutput, dd as DeploymentServiceCreateInput, de as DeploymentServiceCreateOutput, df as DeploymentServiceDeleteInput, dg as DeploymentServiceDeleteOutput, dh as DeploymentServiceExecInput, di as DeploymentServiceExecOutput, dj as DeploymentServiceGetInput, dk as DeploymentServiceGetOutput, dl as DeploymentServiceListInput, dm as DeploymentServiceListOutput, dn as DeploymentServiceLogsInput, dp as DeploymentServiceLogsOutput, dq as DeploymentServiceRedeployInput, dr as DeploymentServiceRedeployOutput, ds as DeploymentServiceRestartInput, dt as DeploymentServiceRestartOutput, du as DeploymentServiceRollbackInput, dv as DeploymentServiceRollbackOutput, dw as DeploymentServiceScaleInput, dx as DeploymentServiceScaleOutput, dy as DeploymentServiceUpdateInput, dz as DeploymentServiceUpdateOutput, dA as DeploymentServiceWakeInput, dB as DeploymentServiceWakeOutput, dC as DeploymentSshCommandInput, dD as DeploymentSshCommandOutput, dE as DeploymentSshKeyDeleteInput, dF as DeploymentSshKeyDeleteOutput, dG as DeploymentSshKeyListInput, dH as DeploymentSshKeyListOutput, dI as DeploymentSshKeyRegisterInput, dJ as DeploymentSshKeyRegisterOutput, dK as DeploymentVariableListEnvInput, dL as DeploymentVariableListEnvOutput, dM as DeploymentVariableListProductInput, dN as DeploymentVariableListProductOutput, dO as DeploymentVariableListInput, dP as DeploymentVariableListOutput, dQ as DeploymentVariableSetEnvInput, dR as DeploymentVariableSetEnvOutput, dS as DeploymentVariableSetInput, dT as DeploymentVariableSetOutput, dU as DeploymentVariableSetProductInput, dV as DeploymentVariableSetProductOutput, dW as DeploymentVariableUnsetEnvInput, dX as DeploymentVariableUnsetEnvOutput, dY as DeploymentVariableUnsetInput, dZ as DeploymentVariableUnsetOutput, d_ as DeploymentVariableUnsetProductInput, d$ as DeploymentVariableUnsetProductOutput, e0 as DeploymentVcsBranchListInput, e1 as DeploymentVcsBranchListOutput, e2 as DeploymentVcsConnectionListInput, e3 as DeploymentVcsConnectionListOutput, e4 as DeploymentVcsRepoListInput, e5 as DeploymentVcsRepoListOutput, e6 as DeploymentVolumeCreateInput, e7 as DeploymentVolumeCreateOutput, e8 as DeploymentVolumeDeleteInput, e9 as DeploymentVolumeDeleteOutput, ea as DeploymentVolumeDetachInput, eb as DeploymentVolumeDetachOutput, ec as DeploymentVolumeGetInput, ed as DeploymentVolumeGetOutput, ee as DeploymentVolumeListInput, ef as DeploymentVolumeListOutput, eg as DeploymentVolumeResizeInput, eh as DeploymentVolumeResizeOutput } from '../client.gen-BmxQbFSk.cjs';
1
+ import { G as GeneratedClient, aX as DeploymentAlertCreateInput, aY as DeploymentAlertCreateOutput, aZ as DeploymentAlertDeleteInput, a_ as DeploymentAlertDeleteOutput, a$ as DeploymentAlertEventsListInput, b0 as DeploymentAlertEventsListOutput, b1 as DeploymentAlertListInput, b2 as DeploymentAlertListOutput, b3 as DeploymentAlertUpdateInput, b4 as DeploymentAlertUpdateOutput, b5 as DeploymentAnalyticsQueryInput, b6 as DeploymentAnalyticsQueryOutput, b7 as DeploymentAuditListInput, b8 as DeploymentAuditListOutput, b9 as DeploymentBuildGetInput, ba as DeploymentBuildGetOutput, bb as DeploymentBuildListInput, bc as DeploymentBuildListOutput, bd as DeploymentBuildLogsInput, be as DeploymentBuildLogsOutput, bf as DeploymentCanvasGetInput, bg as DeploymentCanvasGetOutput, bh as DeploymentCanvasMoveNodeInput, bi as DeploymentCanvasMoveNodeOutput, bj as DeploymentCloudSqlBackfillLogFlagsInput, bk as DeploymentCloudSqlBackfillLogFlagsOutput, bl as DeploymentCloudSqlDatabaseAttachInput, bm as DeploymentCloudSqlDatabaseAttachOutput, bn as DeploymentCloudSqlDatabaseCreateInput, bo as DeploymentCloudSqlDatabaseCreateOutput, bp as DeploymentCloudSqlDatabaseDeleteInput, bq as DeploymentCloudSqlDatabaseDeleteOutput, br as DeploymentCloudSqlDatabaseDetachInput, bs as DeploymentCloudSqlDatabaseDetachOutput, bt as DeploymentCloudSqlDatabaseGetInput, bu as DeploymentCloudSqlDatabaseGetOutput, bv as DeploymentCloudSqlDatabaseListInput, bw as DeploymentCloudSqlDatabaseListOutput, bx as DeploymentCloudSqlInstanceBackupListInput, by as DeploymentCloudSqlInstanceBackupListOutput, bz as DeploymentCloudSqlInstanceBackupInput, bA as DeploymentCloudSqlInstanceBackupOutput, bB as DeploymentCloudSqlInstanceCreateInput, bC as DeploymentCloudSqlInstanceCreateOutput, bD as DeploymentCloudSqlInstanceDeleteInput, bE as DeploymentCloudSqlInstanceDeleteOutput, bF as DeploymentCloudSqlInstanceGetInput, bG as DeploymentCloudSqlInstanceGetOutput, bH as DeploymentCloudSqlInstanceListInput, bI as DeploymentCloudSqlInstanceListOutput, bJ as DeploymentCloudSqlInstanceResizeInput, bK as DeploymentCloudSqlInstanceResizeOutput, bL as DeploymentCloudSqlInstanceRestoreInput, bM as DeploymentCloudSqlInstanceRestoreOutput, bN as DeploymentCloudSqlLogsInput, bO as DeploymentCloudSqlLogsOutput, bP as DeploymentDeploymentCancelInput, bQ as DeploymentDeploymentCancelOutput, bR as DeploymentDeploymentGetInput, bS as DeploymentDeploymentGetOutput, bT as DeploymentDeploymentListInput, bU as DeploymentDeploymentListOutput, bV as DeploymentDomainAddInput, bW as DeploymentDomainAddOutput, bX as DeploymentDomainAllowedListInput, bY as DeploymentDomainAllowedListOutput, bZ as DeploymentDomainGetInput, b_ as DeploymentDomainGetOutput, b$ as DeploymentDomainListByServiceInput, c0 as DeploymentDomainListByServiceOutput, c1 as DeploymentDomainListInput, c2 as DeploymentDomainListOutput, c3 as DeploymentDomainRedirectWwwInput, c4 as DeploymentDomainRedirectWwwOutput, c5 as DeploymentDomainRemoveInput, c6 as DeploymentDomainRemoveOutput, c7 as DeploymentDomainRoutesAddInput, c8 as DeploymentDomainRoutesAddOutput, c9 as DeploymentDomainRoutesListInput, ca as DeploymentDomainRoutesListOutput, cb as DeploymentDomainRoutesRemoveInput, cc as DeploymentDomainRoutesRemoveOutput, cd as DeploymentDomainRoutesUpdateInput, ce as DeploymentDomainRoutesUpdateOutput, cf as DeploymentDomainVerifyInput, cg as DeploymentDomainVerifyOutput, ch as DeploymentEnvironmentCreateInput, ci as DeploymentEnvironmentCreateOutput, cj as DeploymentEnvironmentDeleteInput, ck as DeploymentEnvironmentDeleteOutput, cl as DeploymentEnvironmentForkInput, cm as DeploymentEnvironmentForkOutput, cn as DeploymentEnvironmentGetInput, co as DeploymentEnvironmentGetOutput, cp as DeploymentEnvironmentListInput, cq as DeploymentEnvironmentListOutput, cr as DeploymentEnvironmentReconcileInput, cs as DeploymentEnvironmentReconcileOutput, ct as DeploymentEnvironmentUpdateInput, cu as DeploymentEnvironmentUpdateOutput, cv as DeploymentEventsListByEnvironmentInput, cw as DeploymentEventsListByEnvironmentOutput, cx as DeploymentEventsListByServiceInput, cy as DeploymentEventsListByServiceOutput, cz as DeploymentManagedServiceBackupListInput, cA as DeploymentManagedServiceBackupListOutput, cB as DeploymentManagedServiceBackupInput, cC as DeploymentManagedServiceBackupOutput, cD as DeploymentManagedServiceConnectInfoInput, cE as DeploymentManagedServiceConnectInfoOutput, cF as DeploymentManagedServiceDeleteInput, cG as DeploymentManagedServiceDeleteOutput, cH as DeploymentManagedServiceGetInput, cI as DeploymentManagedServiceGetOutput, cJ as DeploymentManagedServiceListInput, cK as DeploymentManagedServiceListOutput, cL as DeploymentManagedServiceLogsInput, cM as DeploymentManagedServiceLogsOutput, cN as DeploymentManagedServiceProvisionInput, cO as DeploymentManagedServiceProvisionOutput, cP as DeploymentManagedServiceReconcileInput, cQ as DeploymentManagedServiceReconcileOutput, cR as DeploymentManagedServiceResizeInput, cS as DeploymentManagedServiceResizeOutput, cT as DeploymentManagedServiceRestoreInput, cU as DeploymentManagedServiceRestoreOutput, cV as DeploymentManagedServiceStartInput, cW as DeploymentManagedServiceStartOutput, cX as DeploymentManagedServiceStopInput, cY as DeploymentManagedServiceStopOutput, cZ as DeploymentManagedServiceTypesInput, c_ as DeploymentManagedServiceTypesOutput, c$ as DeploymentMetricsGetInput, d0 as DeploymentMetricsGetOutput, d1 as DeploymentPreviewEnvironmentCreateInput, d2 as DeploymentPreviewEnvironmentCreateOutput, d3 as DeploymentPreviewEnvironmentDeleteInput, d4 as DeploymentPreviewEnvironmentDeleteOutput, d5 as DeploymentPreviewEnvironmentListInput, d6 as DeploymentPreviewEnvironmentListOutput, d7 as DeploymentPreviewPolicyGetInput, d8 as DeploymentPreviewPolicyGetOutput, d9 as DeploymentPreviewPolicySetInput, da as DeploymentPreviewPolicySetOutput, db as DeploymentServiceCreateInput, dc as DeploymentServiceCreateOutput, dd as DeploymentServiceDeleteInput, de as DeploymentServiceDeleteOutput, df as DeploymentServiceExecInput, dg as DeploymentServiceExecOutput, dh as DeploymentServiceGetInput, di as DeploymentServiceGetOutput, dj as DeploymentServiceListInput, dk as DeploymentServiceListOutput, dl as DeploymentServiceLogsInput, dm as DeploymentServiceLogsOutput, dn as DeploymentServiceRedeployInput, dp as DeploymentServiceRedeployOutput, dq as DeploymentServiceRestartInput, dr as DeploymentServiceRestartOutput, ds as DeploymentServiceRollbackInput, dt as DeploymentServiceRollbackOutput, du as DeploymentServiceScaleInput, dv as DeploymentServiceScaleOutput, dw as DeploymentServiceUpdateInput, dx as DeploymentServiceUpdateOutput, dy as DeploymentServiceWakeInput, dz as DeploymentServiceWakeOutput, dA as DeploymentSshCommandInput, dB as DeploymentSshCommandOutput, dC as DeploymentSshKeyDeleteInput, dD as DeploymentSshKeyDeleteOutput, dE as DeploymentSshKeyListInput, dF as DeploymentSshKeyListOutput, dG as DeploymentSshKeyRegisterInput, dH as DeploymentSshKeyRegisterOutput, dI as DeploymentVariableListEnvInput, dJ as DeploymentVariableListEnvOutput, dK as DeploymentVariableListProductInput, dL as DeploymentVariableListProductOutput, dM as DeploymentVariableListInput, dN as DeploymentVariableListOutput, dO as DeploymentVariableSetEnvInput, dP as DeploymentVariableSetEnvOutput, dQ as DeploymentVariableSetInput, dR as DeploymentVariableSetOutput, dS as DeploymentVariableSetProductInput, dT as DeploymentVariableSetProductOutput, dU as DeploymentVariableUnsetEnvInput, dV as DeploymentVariableUnsetEnvOutput, dW as DeploymentVariableUnsetInput, dX as DeploymentVariableUnsetOutput, dY as DeploymentVariableUnsetProductInput, dZ as DeploymentVariableUnsetProductOutput, d_ as DeploymentVcsBranchListInput, d$ as DeploymentVcsBranchListOutput, e0 as DeploymentVcsConnectionListInput, e1 as DeploymentVcsConnectionListOutput, e2 as DeploymentVcsRepoListInput, e3 as DeploymentVcsRepoListOutput, e4 as DeploymentVolumeCreateInput, e5 as DeploymentVolumeCreateOutput, e6 as DeploymentVolumeDeleteInput, e7 as DeploymentVolumeDeleteOutput, e8 as DeploymentVolumeDetachInput, e9 as DeploymentVolumeDetachOutput, ea as DeploymentVolumeGetInput, eb as DeploymentVolumeGetOutput, ec as DeploymentVolumeListInput, ed as DeploymentVolumeListOutput, ee as DeploymentVolumeResizeInput, ef as DeploymentVolumeResizeOutput } from '../client.gen-ZzwZ64Qc.cjs';
2
2
 
3
3
  declare const deploymentAlertCreateMutationOptions: (sdk: GeneratedClient) => {
4
4
  mutationKey: string[];