@lessly/sdk-app 30.2.0 → 30.3.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 (61) 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-C6_mJktu.d.cts → client.gen-BsUBUFNz.d.cts} +1834 -231
  10. package/dist/{client.gen-C6_mJktu.d.ts → client.gen-BsUBUFNz.d.ts} +1834 -231
  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 +534 -36
  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 +534 -36
  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 -5
  24. package/dist/organization/index.cjs.map +1 -1
  25. package/dist/organization/index.d.cts +2 -6
  26. package/dist/organization/index.d.ts +2 -6
  27. package/dist/organization/index.js +1 -5
  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/support/index.cjs +106 -0
  38. package/dist/support/index.cjs.map +1 -0
  39. package/dist/support/index.d.cts +84 -0
  40. package/dist/support/index.d.ts +84 -0
  41. package/dist/support/index.js +85 -0
  42. package/dist/support/index.js.map +1 -0
  43. package/dist/tracking/index.d.cts +1 -1
  44. package/dist/tracking/index.d.ts +1 -1
  45. package/dist/users/index.d.cts +1 -1
  46. package/dist/users/index.d.ts +1 -1
  47. package/dist/waitlist/index.d.cts +1 -1
  48. package/dist/waitlist/index.d.ts +1 -1
  49. package/package.json +12 -2
  50. package/src/gen/bindings.gen.ts +534 -36
  51. package/src/gen/brain/index.ts +1 -1
  52. package/src/gen/brain/queryOptions.gen.ts +0 -7
  53. package/src/gen/client.gen.ts +128 -8
  54. package/src/gen/manifest.gen.ts +1 -1
  55. package/src/gen/organization/index.ts +1 -1
  56. package/src/gen/organization/queryOptions.gen.ts +0 -6
  57. package/src/gen/playground/index.ts +3 -0
  58. package/src/gen/playground/queryOptions.gen.ts +86 -0
  59. package/src/gen/support/index.ts +3 -0
  60. package/src/gen/support/queryOptions.gen.ts +131 -0
  61. package/src/gen/types.gen.ts +1730 -118
@@ -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
  }
@@ -12750,7 +12660,6 @@ type OrganizationConnectorsListAvailableOutput = {
12750
12660
  externalId: string;
12751
12661
  displayName: string;
12752
12662
  requestStatus: (("pending" | "denied") | null);
12753
- organizationId: string;
12754
12663
  }[];
12755
12664
  interface OrganizationConnectorsListOrgInput {
12756
12665
  organizationId: string;
@@ -12834,12 +12743,6 @@ interface OrganizationDomainsAddOutput {
12834
12743
  createdAt: string;
12835
12744
  createdBy: string;
12836
12745
  productId: string;
12837
- managedDns: ({
12838
- tool: "organization_domains_set-mode";
12839
- provider: "cloudflare";
12840
- available: true;
12841
- providerConnectorId: string;
12842
- } | null);
12843
12746
  providerConnectorId: (string | null);
12844
12747
  }
12845
12748
  interface OrganizationDomainsGetInput {
@@ -12877,21 +12780,6 @@ interface OrganizationDomainsRemoveInput {
12877
12780
  interface OrganizationDomainsRemoveOutput {
12878
12781
  [k: string]: unknown;
12879
12782
  }
12880
- interface OrganizationDomainsSetModeInput {
12881
- mode: ("managed" | "external");
12882
- domainId: string;
12883
- productId: string;
12884
- providerConnectorId?: string;
12885
- }
12886
- interface OrganizationDomainsSetModeOutput {
12887
- id: string;
12888
- mode: ("external" | "managed");
12889
- domain: string;
12890
- createdAt: string;
12891
- createdBy: string;
12892
- productId: string;
12893
- providerConnectorId: (string | null);
12894
- }
12895
12783
  interface OrganizationExtensionsListInstalledInput {
12896
12784
  productId: string;
12897
12785
  }
@@ -12932,7 +12820,6 @@ interface OrganizationGithubInstallOutput {
12932
12820
  id: string;
12933
12821
  externalId: string;
12934
12822
  displayName: string;
12935
- organizationId: string;
12936
12823
  attachedToThisProduct: boolean;
12937
12824
  }[];
12938
12825
  }
@@ -12959,7 +12846,6 @@ interface OrganizationListOutput {
12959
12846
  role: ("owner" | "admin" | "member");
12960
12847
  active: boolean;
12961
12848
  blockedAt: (string | null);
12962
- blockReason: (("no_subscription" | "under_review") | null);
12963
12849
  }[];
12964
12850
  }
12965
12851
  interface OrganizationMemberAcceptInviteInput {
@@ -13482,6 +13368,194 @@ interface OrganizationSelectOutput {
13482
13368
  };
13483
13369
  activeProductId: (string | null);
13484
13370
  }
13371
+ interface PlaygroundAnalyticsOverviewInput {
13372
+ /**
13373
+ * Max records per entity in recent[]; omit for the endpoint default
13374
+ */
13375
+ limit?: number;
13376
+ }
13377
+ interface PlaygroundAnalyticsOverviewOutput {
13378
+ ok: boolean;
13379
+ minted: boolean;
13380
+ overview?: unknown;
13381
+ http_status: number;
13382
+ }
13383
+ interface PlaygroundBillingEntitlementsInput {
13384
+ }
13385
+ interface PlaygroundBillingEntitlementsOutput {
13386
+ ok: boolean;
13387
+ minted: boolean;
13388
+ http_status: number;
13389
+ entitlements?: unknown;
13390
+ }
13391
+ interface PlaygroundBillingRecordUsageInput {
13392
+ /**
13393
+ * Quantity of events to record against playground-events (SUM); defaults to 1
13394
+ */
13395
+ value?: number;
13396
+ }
13397
+ interface PlaygroundBillingRecordUsageOutput {
13398
+ minted: boolean;
13399
+ accepted: (number | null);
13400
+ recorded: boolean;
13401
+ duplicates: (number | null);
13402
+ http_status: number;
13403
+ }
13404
+ interface PlaygroundClickupCreateTaskInput {
13405
+ /**
13406
+ * Task title; defaults to a fixture label
13407
+ */
13408
+ name?: string;
13409
+ /**
13410
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
13411
+ */
13412
+ listId?: string;
13413
+ }
13414
+ interface PlaygroundClickupCreateTaskOutput {
13415
+ minted: boolean;
13416
+ task_id: (string | null);
13417
+ list_status: number;
13418
+ vend_status: number;
13419
+ clickup_status: number;
13420
+ installation_count: number;
13421
+ }
13422
+ interface PlaygroundClickupGetLastWebhookInput {
13423
+ }
13424
+ type PlaygroundClickupGetLastWebhookOutput = ({
13425
+ payload: string;
13426
+ event_id: string;
13427
+ provider: string;
13428
+ verified: boolean;
13429
+ product_id: string;
13430
+ occurred_at: string;
13431
+ connector_id: string;
13432
+ clickup_event: (string | null);
13433
+ receipt_count: number;
13434
+ } | {
13435
+ found: false;
13436
+ });
13437
+ interface PlaygroundClickupGetOverviewInput {
13438
+ }
13439
+ interface PlaygroundClickupGetOverviewOutput {
13440
+ team: ({
13441
+ teamId: string;
13442
+ teamName: string;
13443
+ } | null);
13444
+ lists: PlaygroundClickupGetOverviewOutputItems[];
13445
+ tasks: {
13446
+ id: string;
13447
+ name: string;
13448
+ status: (string | null);
13449
+ }[];
13450
+ minted: boolean;
13451
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
13452
+ list_status: number;
13453
+ vend_status: number;
13454
+ lists_status: number;
13455
+ tasks_status: number;
13456
+ spaces_status: number;
13457
+ folders_status: number;
13458
+ installation_count: number;
13459
+ }
13460
+ interface PlaygroundClickupGetOverviewOutputItems {
13461
+ id: string;
13462
+ name: string;
13463
+ }
13464
+ interface PlaygroundGdriveGetLastChangeInput {
13465
+ }
13466
+ type PlaygroundGdriveGetLastChangeOutput = ({
13467
+ file_id: string;
13468
+ removed: boolean;
13469
+ file_name: (string | null);
13470
+ mime_type: (string | null);
13471
+ product_id: string;
13472
+ occurred_at: string;
13473
+ connector_id: string;
13474
+ resource_state: string;
13475
+ } | {
13476
+ found: false;
13477
+ });
13478
+ interface PlaygroundGdriveReadFileInput {
13479
+ /**
13480
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
13481
+ */
13482
+ fileId?: string;
13483
+ }
13484
+ interface PlaygroundGdriveReadFileOutput {
13485
+ minted: boolean;
13486
+ file_id: (string | null);
13487
+ file_name: (string | null);
13488
+ mime_type: (string | null);
13489
+ file_count: number;
13490
+ get_status: number;
13491
+ list_status: number;
13492
+ vend_status: number;
13493
+ content_bytes: (number | null);
13494
+ }
13495
+ interface PlaygroundGoogleadsReadCustomerInput {
13496
+ }
13497
+ interface PlaygroundGoogleadsReadCustomerOutput {
13498
+ minted: boolean;
13499
+ vended: boolean;
13500
+ customer_id: (string | null);
13501
+ vend_status: number;
13502
+ result_count: number;
13503
+ search_status: number;
13504
+ login_customer_id: (string | null);
13505
+ }
13506
+ interface PlaygroundLifecycleGetStateInput {
13507
+ }
13508
+ interface PlaygroundLifecycleGetStateOutput {
13509
+ blocked: boolean;
13510
+ archived: boolean;
13511
+ productId: string;
13512
+ lastBlockTransition: ({
13513
+ eventId: string;
13514
+ eventName: string;
13515
+ productId: string;
13516
+ occurredAt: string;
13517
+ recordedAt: string;
13518
+ receiptCount: number;
13519
+ organizationId: string;
13520
+ cascadedFromOrg: boolean;
13521
+ } | null);
13522
+ lastArchiveTransition: ({
13523
+ eventId: string;
13524
+ eventName: string;
13525
+ productId: string;
13526
+ occurredAt: string;
13527
+ recordedAt: string;
13528
+ receiptCount: number;
13529
+ organizationId: string;
13530
+ cascadedFromOrg: boolean;
13531
+ } | null);
13532
+ }
13533
+ interface PlaygroundLifecycleListEventsInput {
13534
+ }
13535
+ type PlaygroundLifecycleListEventsOutput = {
13536
+ eventId: string;
13537
+ eventName: string;
13538
+ productId: string;
13539
+ occurredAt: string;
13540
+ recordedAt: string;
13541
+ receiptCount: number;
13542
+ organizationId: string;
13543
+ cascadedFromOrg: boolean;
13544
+ }[];
13545
+ interface PlaygroundWebhookGetLastInput {
13546
+ }
13547
+ type PlaygroundWebhookGetLastOutput = ({
13548
+ payload?: unknown;
13549
+ event_id: string;
13550
+ provider: string;
13551
+ verified: boolean;
13552
+ product_id: string;
13553
+ occurred_at: string;
13554
+ connector_id: string;
13555
+ delivery_count: number;
13556
+ } | {
13557
+ found: false;
13558
+ });
13485
13559
  interface RealtimeArchiveExportInput {
13486
13560
  /**
13487
13561
  * Only entries with ts <= to_ts (epoch ms)
@@ -14343,135 +14417,1604 @@ interface RealtimeWebhookUpdateOutput {
14343
14417
  updatedAt: string;
14344
14418
  description: (string | null);
14345
14419
  }
14346
- interface TrackingDomainsCreateInput {
14347
- host?: string;
14348
- records?: {
14349
- ttl?: number;
14350
- name?: string;
14351
- target: string;
14352
- recordType: string;
14353
- }[];
14354
- domainId: string;
14355
- }
14356
- interface TrackingDomainsCreateOutput {
14357
- binding: {
14358
- host: string;
14359
- status: ("pending" | "active" | "failed");
14360
- records: unknown[];
14361
- domainId: string;
14362
- bindingId: string;
14363
- createdAt: string;
14364
- productId: string;
14365
- updatedAt: string;
14366
- statusDetail: (string | null);
14367
- ownerExtension: string;
14368
- };
14369
- instructions: string[];
14370
- }
14371
- interface TrackingDomainsDeleteInput {
14372
- bindingId: string;
14373
- }
14374
- interface TrackingDomainsDeleteOutput {
14375
- ok: true;
14376
- }
14377
- interface TrackingDomainsGetInput {
14378
- bindingId: string;
14379
- }
14380
- interface TrackingDomainsGetOutput {
14381
- host: string;
14382
- status: ("pending" | "active" | "failed");
14383
- records: unknown[];
14384
- domainId: string;
14385
- bindingId: string;
14386
- createdAt: string;
14387
- productId: string;
14388
- updatedAt: string;
14389
- statusDetail: (string | null);
14390
- ownerExtension: string;
14391
- }
14392
- interface TrackingDomainsListInput {
14393
- }
14394
- interface TrackingDomainsListOutput {
14395
- domains: {
14396
- mode: ("external" | "managed");
14397
- domain: string;
14398
- domainId: string;
14399
- createdAt: string;
14400
- extensionCount: number;
14401
- }[];
14402
- bindings: {
14403
- host: string;
14404
- status: ("pending" | "active" | "failed");
14405
- records: unknown[];
14406
- domainId: string;
14407
- bindingId: string;
14408
- createdAt: string;
14409
- productId: string;
14410
- updatedAt: string;
14411
- statusDetail: (string | null);
14412
- ownerExtension: string;
14413
- }[];
14414
- }
14415
- interface TrackingDomainsVerifyInput {
14416
- bindingId: string;
14420
+ interface SupportAgentCreateInput {
14421
+ /**
14422
+ * Job title shown under the name, e.g. "Support engineer"
14423
+ */
14424
+ title?: string;
14425
+ /**
14426
+ * Absolute URL of the agent avatar image
14427
+ */
14428
+ avatarUrl?: string;
14429
+ /**
14430
+ * Name the end user sees next to this agent replies
14431
+ */
14432
+ displayName: string;
14433
+ /**
14434
+ * Lessly identity to bind this profile to, stored verbatim as an opaque string. It is never resolved, validated against the platform or enriched. Omit it for a bot or a backend profile. At most one agent per product may claim a given Lessly user
14435
+ */
14436
+ lesslyUserId?: string;
14417
14437
  }
14418
- interface TrackingDomainsVerifyOutput {
14419
- host: string;
14420
- status: ("pending" | "active" | "failed");
14421
- records: unknown[];
14422
- domainId: string;
14423
- bindingId: string;
14438
+ interface SupportAgentCreateOutput {
14439
+ /**
14440
+ * Agent id
14441
+ */
14442
+ id: string;
14443
+ /**
14444
+ * Job title shown under the name, or null if unset
14445
+ */
14446
+ title: (string | null);
14447
+ /**
14448
+ * A deactivated agent keeps its history but can no longer be put on a thread
14449
+ */
14450
+ isActive: boolean;
14451
+ /**
14452
+ * Avatar image URL, or null if unset
14453
+ */
14454
+ avatarUrl: (string | null);
14455
+ /**
14456
+ * ISO-8601 creation timestamp
14457
+ */
14424
14458
  createdAt: string;
14425
- productId: string;
14459
+ /**
14460
+ * ISO-8601 last-modification timestamp
14461
+ */
14426
14462
  updatedAt: string;
14427
- statusDetail: (string | null);
14428
- ownerExtension: string;
14429
- }
14430
- interface TrackingEventNamesArchiveInput {
14431
14463
  /**
14432
- * The event name to archive/unarchive
14464
+ * Name shown next to the agent replies
14433
14465
  */
14434
- name: string;
14466
+ displayName: string;
14467
+ /**
14468
+ * Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
14469
+ */
14470
+ lesslyUserId: (string | null);
14435
14471
  }
14436
- interface TrackingEventNamesArchiveOutput {
14437
- name: string;
14438
- status: ("active" | "archived");
14472
+ interface SupportAgentGetInput {
14473
+ /**
14474
+ * Agent id
14475
+ */
14476
+ id: string;
14439
14477
  }
14440
- interface TrackingEventNamesListInput {
14478
+ interface SupportAgentGetOutput {
14441
14479
  /**
14442
- * Sort column (default count)
14480
+ * Agent id
14443
14481
  */
14444
- sort?: ("count" | "last_seen" | "first_seen" | "name");
14482
+ id: string;
14445
14483
  /**
14446
- * Sort direction (default desc)
14484
+ * Job title shown under the name, or null if unset
14447
14485
  */
14448
- order?: ("asc" | "desc");
14486
+ title: (string | null);
14449
14487
  /**
14450
- * Case-insensitive substring match on the event name
14488
+ * A deactivated agent keeps its history but can no longer be put on a thread
14451
14489
  */
14452
- search?: string;
14490
+ isActive: boolean;
14453
14491
  /**
14454
- * Filter by status; omit for all
14492
+ * Avatar image URL, or null if unset
14455
14493
  */
14456
- status?: ("active" | "archived");
14457
- }
14458
- interface TrackingEventNamesListOutput {
14459
- names: {
14460
- name: string;
14461
- count: number;
14462
- status: string;
14463
- lastSeen: string;
14464
- firstSeen: string;
14465
- propsKeys: string[];
14466
- isConversion: boolean;
14467
- }[];
14468
- }
14469
- interface TrackingEventNamesUnarchiveInput {
14494
+ avatarUrl: (string | null);
14470
14495
  /**
14471
- * The event name to archive/unarchive
14496
+ * ISO-8601 creation timestamp
14472
14497
  */
14473
- name: string;
14474
- }
14498
+ createdAt: string;
14499
+ /**
14500
+ * ISO-8601 last-modification timestamp
14501
+ */
14502
+ updatedAt: string;
14503
+ /**
14504
+ * Name shown next to the agent replies
14505
+ */
14506
+ displayName: string;
14507
+ /**
14508
+ * Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
14509
+ */
14510
+ lesslyUserId: (string | null);
14511
+ }
14512
+ interface SupportAgentListInput {
14513
+ /**
14514
+ * Also return deactivated agents (default false)
14515
+ */
14516
+ includeInactive?: boolean;
14517
+ }
14518
+ interface SupportAgentListOutput {
14519
+ /**
14520
+ * The product support agents, by display name
14521
+ */
14522
+ agents: {
14523
+ /**
14524
+ * Agent id
14525
+ */
14526
+ id: string;
14527
+ /**
14528
+ * Job title shown under the name, or null if unset
14529
+ */
14530
+ title: (string | null);
14531
+ /**
14532
+ * A deactivated agent keeps its history but can no longer be put on a thread
14533
+ */
14534
+ isActive: boolean;
14535
+ /**
14536
+ * Avatar image URL, or null if unset
14537
+ */
14538
+ avatarUrl: (string | null);
14539
+ /**
14540
+ * ISO-8601 creation timestamp
14541
+ */
14542
+ createdAt: string;
14543
+ /**
14544
+ * ISO-8601 last-modification timestamp
14545
+ */
14546
+ updatedAt: string;
14547
+ /**
14548
+ * Name shown next to the agent replies
14549
+ */
14550
+ displayName: string;
14551
+ /**
14552
+ * Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
14553
+ */
14554
+ lesslyUserId: (string | null);
14555
+ }[];
14556
+ }
14557
+ interface SupportAgentUpdateInput {
14558
+ /**
14559
+ * Agent id
14560
+ */
14561
+ id: string;
14562
+ /**
14563
+ * New job title, or null to clear it
14564
+ */
14565
+ title?: (string | null);
14566
+ /**
14567
+ * Deactivate or reactivate. A deactivated agent keeps every message it wrote and every thread it already sits on, but cannot be assigned to another one
14568
+ */
14569
+ isActive?: boolean;
14570
+ /**
14571
+ * New avatar URL, or null to clear it
14572
+ */
14573
+ avatarUrl?: (string | null);
14574
+ /**
14575
+ * Name the end user sees next to this agent replies
14576
+ */
14577
+ displayName?: string;
14578
+ /**
14579
+ * Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
14580
+ */
14581
+ lesslyUserId?: (string | null);
14582
+ }
14583
+ interface SupportAgentUpdateOutput {
14584
+ /**
14585
+ * Agent id
14586
+ */
14587
+ id: string;
14588
+ /**
14589
+ * Job title shown under the name, or null if unset
14590
+ */
14591
+ title: (string | null);
14592
+ /**
14593
+ * A deactivated agent keeps its history but can no longer be put on a thread
14594
+ */
14595
+ isActive: boolean;
14596
+ /**
14597
+ * Avatar image URL, or null if unset
14598
+ */
14599
+ avatarUrl: (string | null);
14600
+ /**
14601
+ * ISO-8601 creation timestamp
14602
+ */
14603
+ createdAt: string;
14604
+ /**
14605
+ * ISO-8601 last-modification timestamp
14606
+ */
14607
+ updatedAt: string;
14608
+ /**
14609
+ * Name shown next to the agent replies
14610
+ */
14611
+ displayName: string;
14612
+ /**
14613
+ * Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
14614
+ */
14615
+ lesslyUserId: (string | null);
14616
+ }
14617
+ interface SupportAttachmentCreateInput {
14618
+ /**
14619
+ * Display name of the file, e.g. "invoice.pdf". Only the base name is used for the storage key; any directory part is discarded
14620
+ */
14621
+ fileName: string;
14622
+ /**
14623
+ * Thread the file belongs to. An attachment is created against a thread first and claimed by one of its messages later, when that message is posted
14624
+ */
14625
+ threadId: string;
14626
+ /**
14627
+ * Size of the file in bytes, at most 26214400. Declared up front so an oversized upload is refused before a URL is issued; finalize checks the real size again
14628
+ */
14629
+ sizeBytes: number;
14630
+ /**
14631
+ * MIME type of the file. The upload URL is signed for exactly this type, so the PUT must send the same Content-Type header or storage rejects it
14632
+ */
14633
+ contentType: string;
14634
+ }
14635
+ interface SupportAttachmentCreateOutput {
14636
+ /**
14637
+ * Attachment id
14638
+ */
14639
+ id: string;
14640
+ /**
14641
+ * pending: the row exists and an upload URL was issued, but no bytes have been confirmed. uploaded: finalize saw the object in storage. Only uploaded attachments can be attached to a message or downloaded
14642
+ */
14643
+ status: ("pending" | "uploaded");
14644
+ /**
14645
+ * Display name of the file
14646
+ */
14647
+ fileName: string;
14648
+ /**
14649
+ * Thread this attachment belongs to
14650
+ */
14651
+ threadId: string;
14652
+ /**
14653
+ * ISO-8601 creation timestamp
14654
+ */
14655
+ createdAt: string;
14656
+ /**
14657
+ * The message that carries this attachment, or null while nothing claims it yet
14658
+ */
14659
+ messageId: (string | null);
14660
+ /**
14661
+ * Size in bytes: what the caller declared while the attachment is pending, what storage reported once it is uploaded
14662
+ */
14663
+ sizeBytes: number;
14664
+ /**
14665
+ * Short-lived signed URL. PUT the file bytes here with the same Content-Type, then call support_attachment_finalize. The URL is a bearer credential for this one object
14666
+ */
14667
+ uploadUrl: string;
14668
+ /**
14669
+ * ISO-8601 timestamp of the confirmed upload, or null while pending
14670
+ */
14671
+ uploadedAt: (string | null);
14672
+ /**
14673
+ * MIME type declared when the attachment was created
14674
+ */
14675
+ contentType: string;
14676
+ /**
14677
+ * ISO-8601 moment the upload URL stops working
14678
+ */
14679
+ uploadExpiresAt: string;
14680
+ }
14681
+ interface SupportAttachmentFinalizeInput {
14682
+ /**
14683
+ * The attachment whose upload should be confirmed, as returned by the create call
14684
+ */
14685
+ attachmentId: string;
14686
+ }
14687
+ interface SupportAttachmentFinalizeOutput {
14688
+ /**
14689
+ * Attachment id
14690
+ */
14691
+ id: string;
14692
+ /**
14693
+ * pending: the row exists and an upload URL was issued, but no bytes have been confirmed. uploaded: finalize saw the object in storage. Only uploaded attachments can be attached to a message or downloaded
14694
+ */
14695
+ status: ("pending" | "uploaded");
14696
+ /**
14697
+ * Display name of the file
14698
+ */
14699
+ fileName: string;
14700
+ /**
14701
+ * Thread this attachment belongs to
14702
+ */
14703
+ threadId: string;
14704
+ /**
14705
+ * ISO-8601 creation timestamp
14706
+ */
14707
+ createdAt: string;
14708
+ /**
14709
+ * The message that carries this attachment, or null while nothing claims it yet
14710
+ */
14711
+ messageId: (string | null);
14712
+ /**
14713
+ * Size in bytes: what the caller declared while the attachment is pending, what storage reported once it is uploaded
14714
+ */
14715
+ sizeBytes: number;
14716
+ /**
14717
+ * ISO-8601 timestamp of the confirmed upload, or null while pending
14718
+ */
14719
+ uploadedAt: (string | null);
14720
+ /**
14721
+ * MIME type declared when the attachment was created
14722
+ */
14723
+ contentType: string;
14724
+ /**
14725
+ * Short-lived signed URL to read the uploaded file
14726
+ */
14727
+ downloadUrl: string;
14728
+ }
14729
+ interface SupportLabelCreateInput {
14730
+ /**
14731
+ * Label name as the customer wants to see it. Unique within the product
14732
+ */
14733
+ name: string;
14734
+ /**
14735
+ * Optional display colour as a six-digit hex string, e.g. #2563eb
14736
+ */
14737
+ color?: string;
14738
+ }
14739
+ interface SupportLabelCreateOutput {
14740
+ /**
14741
+ * Label id
14742
+ */
14743
+ id: string;
14744
+ /**
14745
+ * Label name, unique within the product
14746
+ */
14747
+ name: string;
14748
+ /**
14749
+ * Display colour as a hex string, or null if uncoloured
14750
+ */
14751
+ color: (string | null);
14752
+ /**
14753
+ * ISO-8601 creation timestamp
14754
+ */
14755
+ createdAt: string;
14756
+ }
14757
+ interface SupportLabelListInput {
14758
+ }
14759
+ interface SupportLabelListOutput {
14760
+ /**
14761
+ * The product label dictionary, by name
14762
+ */
14763
+ labels: {
14764
+ /**
14765
+ * Label id
14766
+ */
14767
+ id: string;
14768
+ /**
14769
+ * Label name, unique within the product
14770
+ */
14771
+ name: string;
14772
+ /**
14773
+ * Display colour as a hex string, or null if uncoloured
14774
+ */
14775
+ color: (string | null);
14776
+ /**
14777
+ * ISO-8601 creation timestamp
14778
+ */
14779
+ createdAt: string;
14780
+ }[];
14781
+ }
14782
+ interface SupportMessageCreateInput {
14783
+ /**
14784
+ * The message text, stored verbatim
14785
+ */
14786
+ body: string;
14787
+ /**
14788
+ * Id of the thread this message belongs to
14789
+ */
14790
+ threadId: string;
14791
+ /**
14792
+ * inbound: written by the external end user. outbound: written by support, going out to them
14793
+ */
14794
+ direction: ("inbound" | "outbound");
14795
+ /**
14796
+ * Defaults to public when omitted. Internal notes are never shown to the end user
14797
+ */
14798
+ visibility?: ("public" | "internal");
14799
+ /**
14800
+ * Files this message carries, created with support_attachment_create and confirmed with support_attachment_finalize beforehand. Each must be an uploaded attachment of the same thread that no other message already carries; otherwise the whole message is refused. At most 10 per message
14801
+ *
14802
+ * @maxItems 10
14803
+ */
14804
+ attachmentIds?: [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string] | [string, string, string, string, string, string] | [string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string] | [string, string, string, string, string, string, string, string, string, string];
14805
+ /**
14806
+ * The support agent of this product who wrote the message. Set this exactly when the message comes from inside the support contour; leave authorExternalId empty. An agent of another product is reported as not found
14807
+ */
14808
+ authorAgentId?: string;
14809
+ /**
14810
+ * Opaque identifier of the external end user in the client's own user base, stored verbatim. Set this exactly when the message comes from outside; leave authorAgentId empty
14811
+ */
14812
+ authorExternalId?: string;
14813
+ }
14814
+ interface SupportMessageCreateOutput {
14815
+ /**
14816
+ * Message id
14817
+ */
14818
+ id: string;
14819
+ /**
14820
+ * The message text, byte-identical to what was stored
14821
+ */
14822
+ body: string;
14823
+ /**
14824
+ * Thread this message belongs to
14825
+ */
14826
+ threadId: string;
14827
+ /**
14828
+ * ISO-8601 creation timestamp
14829
+ */
14830
+ createdAt: string;
14831
+ /**
14832
+ * inbound: written by the external end user. outbound: written by support, going out to them
14833
+ */
14834
+ direction: ("inbound" | "outbound");
14835
+ /**
14836
+ * public: part of the conversation the external end user sees. internal: a note between agents that never leaves the support contour
14837
+ */
14838
+ visibility: ("public" | "internal");
14839
+ /**
14840
+ * Files this message carries, each with a freshly signed download URL. Empty when there are none. Attachments whose upload was never confirmed are never listed here
14841
+ */
14842
+ attachments: {
14843
+ /**
14844
+ * Attachment id
14845
+ */
14846
+ id: string;
14847
+ /**
14848
+ * Display name of the file
14849
+ */
14850
+ fileName: string;
14851
+ /**
14852
+ * ISO-8601 timestamp of when the attachment was created
14853
+ */
14854
+ createdAt: string;
14855
+ /**
14856
+ * Size in bytes as reported by storage
14857
+ */
14858
+ sizeBytes: number;
14859
+ /**
14860
+ * MIME type of the file
14861
+ */
14862
+ contentType: string;
14863
+ /**
14864
+ * Short-lived signed URL to read the file. Re-read the message to get a fresh one
14865
+ */
14866
+ downloadUrl: string;
14867
+ }[];
14868
+ /**
14869
+ * The agent author, or null when the external end user wrote the message
14870
+ */
14871
+ authorAgentId: (string | null);
14872
+ /**
14873
+ * The external author, or null when an agent wrote the message
14874
+ */
14875
+ authorExternalId: (string | null);
14876
+ }
14877
+ interface SupportMessageListInput {
14878
+ /**
14879
+ * Page size, 1..100 (default 50)
14880
+ */
14881
+ limit?: number;
14882
+ /**
14883
+ * Number of messages to skip
14884
+ */
14885
+ offset?: number;
14886
+ /**
14887
+ * Thread whose messages to list. Messages exist only inside a thread
14888
+ */
14889
+ threadId: string;
14890
+ /**
14891
+ * Only messages in this direction
14892
+ */
14893
+ direction?: ("inbound" | "outbound");
14894
+ /**
14895
+ * Only messages with this visibility. Omit to get both public and internal
14896
+ */
14897
+ visibility?: ("public" | "internal");
14898
+ }
14899
+ interface SupportMessageListOutput {
14900
+ /**
14901
+ * Page size that was applied
14902
+ */
14903
+ limit: number;
14904
+ /**
14905
+ * Offset that was applied
14906
+ */
14907
+ offset: number;
14908
+ /**
14909
+ * The requested page of messages, oldest first — the conversation reads forward
14910
+ */
14911
+ messages: {
14912
+ /**
14913
+ * Message id
14914
+ */
14915
+ id: string;
14916
+ /**
14917
+ * The message text, byte-identical to what was stored
14918
+ */
14919
+ body: string;
14920
+ /**
14921
+ * Thread this message belongs to
14922
+ */
14923
+ threadId: string;
14924
+ /**
14925
+ * ISO-8601 creation timestamp
14926
+ */
14927
+ createdAt: string;
14928
+ /**
14929
+ * inbound: written by the external end user. outbound: written by support, going out to them
14930
+ */
14931
+ direction: ("inbound" | "outbound");
14932
+ /**
14933
+ * public: part of the conversation the external end user sees. internal: a note between agents that never leaves the support contour
14934
+ */
14935
+ visibility: ("public" | "internal");
14936
+ /**
14937
+ * Files this message carries, each with a freshly signed download URL. Empty when there are none. Attachments whose upload was never confirmed are never listed here
14938
+ */
14939
+ attachments: {
14940
+ /**
14941
+ * Attachment id
14942
+ */
14943
+ id: string;
14944
+ /**
14945
+ * Display name of the file
14946
+ */
14947
+ fileName: string;
14948
+ /**
14949
+ * ISO-8601 timestamp of when the attachment was created
14950
+ */
14951
+ createdAt: string;
14952
+ /**
14953
+ * Size in bytes as reported by storage
14954
+ */
14955
+ sizeBytes: number;
14956
+ /**
14957
+ * MIME type of the file
14958
+ */
14959
+ contentType: string;
14960
+ /**
14961
+ * Short-lived signed URL to read the file. Re-read the message to get a fresh one
14962
+ */
14963
+ downloadUrl: string;
14964
+ }[];
14965
+ /**
14966
+ * The agent author, or null when the external end user wrote the message
14967
+ */
14968
+ authorAgentId: (string | null);
14969
+ /**
14970
+ * The external author, or null when an agent wrote the message
14971
+ */
14972
+ authorExternalId: (string | null);
14973
+ }[];
14974
+ }
14975
+ interface SupportStatusArchiveInput {
14976
+ /**
14977
+ * Status id
14978
+ */
14979
+ id: string;
14980
+ /**
14981
+ * Live status every thread on the archived status moves to, in the same transaction
14982
+ */
14983
+ targetStatusId: string;
14984
+ }
14985
+ interface SupportStatusArchiveOutput {
14986
+ /**
14987
+ * Status id
14988
+ */
14989
+ id: string;
14990
+ /**
14991
+ * Status name, unique within the product
14992
+ */
14993
+ name: string;
14994
+ /**
14995
+ * Display colour as a hex string
14996
+ */
14997
+ color: string;
14998
+ /**
14999
+ * Sort order within the status dictionary
15000
+ */
15001
+ order: number;
15002
+ /**
15003
+ * Archived statuses stay readable but are not offered as targets
15004
+ */
15005
+ archived: boolean;
15006
+ /**
15007
+ * Lifecycle bucket the status belongs to
15008
+ */
15009
+ category: ("open" | "pending" | "resolved" | "closed");
15010
+ }
15011
+ interface SupportStatusCreateInput {
15012
+ /**
15013
+ * Status name as the customer wants to see it. Unique within the product
15014
+ */
15015
+ name: string;
15016
+ /**
15017
+ * Display colour as a six-digit hex string, e.g. #2563eb
15018
+ */
15019
+ color: string;
15020
+ /**
15021
+ * Sort order within the status dictionary, lowest first
15022
+ */
15023
+ order: number;
15024
+ /**
15025
+ * Lifecycle bucket the status belongs to. Automation and reporting read the category, never the name — so it cannot be changed once threads sit on the status
15026
+ */
15027
+ category: ("open" | "pending" | "resolved" | "closed");
15028
+ }
15029
+ interface SupportStatusCreateOutput {
15030
+ /**
15031
+ * Status id
15032
+ */
15033
+ id: string;
15034
+ /**
15035
+ * Status name, unique within the product
15036
+ */
15037
+ name: string;
15038
+ /**
15039
+ * Display colour as a hex string
15040
+ */
15041
+ color: string;
15042
+ /**
15043
+ * Sort order within the status dictionary
15044
+ */
15045
+ order: number;
15046
+ /**
15047
+ * Archived statuses stay readable but are not offered as targets
15048
+ */
15049
+ archived: boolean;
15050
+ /**
15051
+ * Lifecycle bucket the status belongs to
15052
+ */
15053
+ category: ("open" | "pending" | "resolved" | "closed");
15054
+ }
15055
+ interface SupportStatusListInput {
15056
+ /**
15057
+ * Also return archived statuses (default false)
15058
+ */
15059
+ includeArchived?: boolean;
15060
+ }
15061
+ interface SupportStatusListOutput {
15062
+ /**
15063
+ * The product status dictionary, in display order
15064
+ */
15065
+ statuses: {
15066
+ /**
15067
+ * Status id
15068
+ */
15069
+ id: string;
15070
+ /**
15071
+ * Status name, unique within the product
15072
+ */
15073
+ name: string;
15074
+ /**
15075
+ * Display colour as a hex string
15076
+ */
15077
+ color: string;
15078
+ /**
15079
+ * Sort order within the status dictionary
15080
+ */
15081
+ order: number;
15082
+ /**
15083
+ * Archived statuses stay readable but are not offered as targets
15084
+ */
15085
+ archived: boolean;
15086
+ /**
15087
+ * Lifecycle bucket the status belongs to
15088
+ */
15089
+ category: ("open" | "pending" | "resolved" | "closed");
15090
+ }[];
15091
+ }
15092
+ interface SupportStatusUpdateInput {
15093
+ /**
15094
+ * Status id
15095
+ */
15096
+ id: string;
15097
+ /**
15098
+ * Status name as the customer wants to see it. Unique within the product
15099
+ */
15100
+ name?: string;
15101
+ /**
15102
+ * Display colour as a six-digit hex string, e.g. #2563eb
15103
+ */
15104
+ color?: string;
15105
+ /**
15106
+ * Sort order within the status dictionary, lowest first
15107
+ */
15108
+ order?: number;
15109
+ /**
15110
+ * New lifecycle bucket. Refused while any thread references the status
15111
+ */
15112
+ category?: ("open" | "pending" | "resolved" | "closed");
15113
+ }
15114
+ interface SupportStatusUpdateOutput {
15115
+ /**
15116
+ * Status id
15117
+ */
15118
+ id: string;
15119
+ /**
15120
+ * Status name, unique within the product
15121
+ */
15122
+ name: string;
15123
+ /**
15124
+ * Display colour as a hex string
15125
+ */
15126
+ color: string;
15127
+ /**
15128
+ * Sort order within the status dictionary
15129
+ */
15130
+ order: number;
15131
+ /**
15132
+ * Archived statuses stay readable but are not offered as targets
15133
+ */
15134
+ archived: boolean;
15135
+ /**
15136
+ * Lifecycle bucket the status belongs to
15137
+ */
15138
+ category: ("open" | "pending" | "resolved" | "closed");
15139
+ }
15140
+ interface SupportThreadAssignInput {
15141
+ /**
15142
+ * Thread id
15143
+ */
15144
+ id: string;
15145
+ /**
15146
+ * Support agent of this product to put on the thread, or null to return it to the unassigned queue. An agent of another product is reported as not found
15147
+ */
15148
+ agentId: (string | null);
15149
+ }
15150
+ interface SupportThreadAssignOutput {
15151
+ /**
15152
+ * Thread id
15153
+ */
15154
+ id: string;
15155
+ /**
15156
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15157
+ */
15158
+ type: ("ticket" | "feedback");
15159
+ /**
15160
+ * Thread subject
15161
+ */
15162
+ title: string;
15163
+ /**
15164
+ * Every label on the thread, by name
15165
+ */
15166
+ labels: {
15167
+ /**
15168
+ * Label id
15169
+ */
15170
+ id: string;
15171
+ /**
15172
+ * Label name, unique within the product
15173
+ */
15174
+ name: string;
15175
+ /**
15176
+ * Display colour as a hex string, or null if uncoloured
15177
+ */
15178
+ color: (string | null);
15179
+ /**
15180
+ * ISO-8601 creation timestamp
15181
+ */
15182
+ createdAt: string;
15183
+ }[];
15184
+ /**
15185
+ * The status itself, joined in at read time
15186
+ */
15187
+ status: {
15188
+ /**
15189
+ * Status id
15190
+ */
15191
+ id: string;
15192
+ /**
15193
+ * Status name, unique within the product
15194
+ */
15195
+ name: string;
15196
+ /**
15197
+ * Display colour as a hex string
15198
+ */
15199
+ color: string;
15200
+ /**
15201
+ * Sort order within the status dictionary
15202
+ */
15203
+ order: number;
15204
+ /**
15205
+ * Archived statuses stay readable but are not offered as targets
15206
+ */
15207
+ archived: boolean;
15208
+ /**
15209
+ * Lifecycle bucket the status belongs to
15210
+ */
15211
+ category: ("open" | "pending" | "resolved" | "closed");
15212
+ };
15213
+ /**
15214
+ * Free-form client-owned JSON
15215
+ */
15216
+ metadata: {
15217
+ [k: string]: unknown;
15218
+ };
15219
+ /**
15220
+ * Thread priority
15221
+ */
15222
+ priority: ("low" | "normal" | "high" | "urgent");
15223
+ /**
15224
+ * Id of the status the thread sits on
15225
+ */
15226
+ statusId: string;
15227
+ /**
15228
+ * ISO-8601 creation timestamp
15229
+ */
15230
+ createdAt: string;
15231
+ /**
15232
+ * ISO-8601 last-modification timestamp
15233
+ */
15234
+ updatedAt: string;
15235
+ /**
15236
+ * ISO-8601 timestamp of the last reply, or null while there are none
15237
+ */
15238
+ lastReplyAt: (string | null);
15239
+ /**
15240
+ * Display name for the external author, if given
15241
+ */
15242
+ authorDisplay: (string | null);
15243
+ /**
15244
+ * Assigned agent, or null while unassigned
15245
+ */
15246
+ assignedAgentId: (string | null);
15247
+ /**
15248
+ * The external author, byte-identical to what was stored
15249
+ */
15250
+ authorExternalId: string;
15251
+ }
15252
+ interface SupportThreadCreateInput {
15253
+ /**
15254
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15255
+ */
15256
+ type: ("ticket" | "feedback");
15257
+ /**
15258
+ * Short human-readable subject of the thread
15259
+ */
15260
+ title: string;
15261
+ /**
15262
+ * Labels to put on the new thread
15263
+ *
15264
+ * @maxItems 50
15265
+ */
15266
+ labelIds?: string[];
15267
+ /**
15268
+ * Free-form client-owned JSON attached to the thread
15269
+ */
15270
+ metadata?: {
15271
+ [k: string]: unknown;
15272
+ };
15273
+ /**
15274
+ * Optional display name for the external author, as the client already knows it
15275
+ */
15276
+ authorDisplay?: string;
15277
+ /**
15278
+ * Opaque identifier of the external end user in the client's own user base. Stored verbatim: never resolved, normalised or enriched, and it is not a Lessly identity
15279
+ */
15280
+ authorExternalId: string;
15281
+ }
15282
+ interface SupportThreadCreateOutput {
15283
+ /**
15284
+ * Thread id
15285
+ */
15286
+ id: string;
15287
+ /**
15288
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15289
+ */
15290
+ type: ("ticket" | "feedback");
15291
+ /**
15292
+ * Thread subject
15293
+ */
15294
+ title: string;
15295
+ /**
15296
+ * Every label on the thread, by name
15297
+ */
15298
+ labels: {
15299
+ /**
15300
+ * Label id
15301
+ */
15302
+ id: string;
15303
+ /**
15304
+ * Label name, unique within the product
15305
+ */
15306
+ name: string;
15307
+ /**
15308
+ * Display colour as a hex string, or null if uncoloured
15309
+ */
15310
+ color: (string | null);
15311
+ /**
15312
+ * ISO-8601 creation timestamp
15313
+ */
15314
+ createdAt: string;
15315
+ }[];
15316
+ /**
15317
+ * The status itself, joined in at read time
15318
+ */
15319
+ status: {
15320
+ /**
15321
+ * Status id
15322
+ */
15323
+ id: string;
15324
+ /**
15325
+ * Status name, unique within the product
15326
+ */
15327
+ name: string;
15328
+ /**
15329
+ * Display colour as a hex string
15330
+ */
15331
+ color: string;
15332
+ /**
15333
+ * Sort order within the status dictionary
15334
+ */
15335
+ order: number;
15336
+ /**
15337
+ * Archived statuses stay readable but are not offered as targets
15338
+ */
15339
+ archived: boolean;
15340
+ /**
15341
+ * Lifecycle bucket the status belongs to
15342
+ */
15343
+ category: ("open" | "pending" | "resolved" | "closed");
15344
+ };
15345
+ /**
15346
+ * Free-form client-owned JSON
15347
+ */
15348
+ metadata: {
15349
+ [k: string]: unknown;
15350
+ };
15351
+ /**
15352
+ * Thread priority
15353
+ */
15354
+ priority: ("low" | "normal" | "high" | "urgent");
15355
+ /**
15356
+ * Id of the status the thread sits on
15357
+ */
15358
+ statusId: string;
15359
+ /**
15360
+ * ISO-8601 creation timestamp
15361
+ */
15362
+ createdAt: string;
15363
+ /**
15364
+ * ISO-8601 last-modification timestamp
15365
+ */
15366
+ updatedAt: string;
15367
+ /**
15368
+ * ISO-8601 timestamp of the last reply, or null while there are none
15369
+ */
15370
+ lastReplyAt: (string | null);
15371
+ /**
15372
+ * Display name for the external author, if given
15373
+ */
15374
+ authorDisplay: (string | null);
15375
+ /**
15376
+ * Assigned agent, or null while unassigned
15377
+ */
15378
+ assignedAgentId: (string | null);
15379
+ /**
15380
+ * The external author, byte-identical to what was stored
15381
+ */
15382
+ authorExternalId: string;
15383
+ }
15384
+ interface SupportThreadGetInput {
15385
+ /**
15386
+ * Thread id
15387
+ */
15388
+ id: string;
15389
+ }
15390
+ interface SupportThreadGetOutput {
15391
+ /**
15392
+ * Thread id
15393
+ */
15394
+ id: string;
15395
+ /**
15396
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15397
+ */
15398
+ type: ("ticket" | "feedback");
15399
+ /**
15400
+ * Thread subject
15401
+ */
15402
+ title: string;
15403
+ /**
15404
+ * Every label on the thread, by name
15405
+ */
15406
+ labels: {
15407
+ /**
15408
+ * Label id
15409
+ */
15410
+ id: string;
15411
+ /**
15412
+ * Label name, unique within the product
15413
+ */
15414
+ name: string;
15415
+ /**
15416
+ * Display colour as a hex string, or null if uncoloured
15417
+ */
15418
+ color: (string | null);
15419
+ /**
15420
+ * ISO-8601 creation timestamp
15421
+ */
15422
+ createdAt: string;
15423
+ }[];
15424
+ /**
15425
+ * The status itself, joined in at read time
15426
+ */
15427
+ status: {
15428
+ /**
15429
+ * Status id
15430
+ */
15431
+ id: string;
15432
+ /**
15433
+ * Status name, unique within the product
15434
+ */
15435
+ name: string;
15436
+ /**
15437
+ * Display colour as a hex string
15438
+ */
15439
+ color: string;
15440
+ /**
15441
+ * Sort order within the status dictionary
15442
+ */
15443
+ order: number;
15444
+ /**
15445
+ * Archived statuses stay readable but are not offered as targets
15446
+ */
15447
+ archived: boolean;
15448
+ /**
15449
+ * Lifecycle bucket the status belongs to
15450
+ */
15451
+ category: ("open" | "pending" | "resolved" | "closed");
15452
+ };
15453
+ /**
15454
+ * Free-form client-owned JSON
15455
+ */
15456
+ metadata: {
15457
+ [k: string]: unknown;
15458
+ };
15459
+ /**
15460
+ * Thread priority
15461
+ */
15462
+ priority: ("low" | "normal" | "high" | "urgent");
15463
+ /**
15464
+ * Id of the status the thread sits on
15465
+ */
15466
+ statusId: string;
15467
+ /**
15468
+ * ISO-8601 creation timestamp
15469
+ */
15470
+ createdAt: string;
15471
+ /**
15472
+ * ISO-8601 last-modification timestamp
15473
+ */
15474
+ updatedAt: string;
15475
+ /**
15476
+ * ISO-8601 timestamp of the last reply, or null while there are none
15477
+ */
15478
+ lastReplyAt: (string | null);
15479
+ /**
15480
+ * Display name for the external author, if given
15481
+ */
15482
+ authorDisplay: (string | null);
15483
+ /**
15484
+ * Assigned agent, or null while unassigned
15485
+ */
15486
+ assignedAgentId: (string | null);
15487
+ /**
15488
+ * The external author, byte-identical to what was stored
15489
+ */
15490
+ authorExternalId: string;
15491
+ }
15492
+ interface SupportThreadListInput {
15493
+ /**
15494
+ * Only threads of this type
15495
+ */
15496
+ type?: ("ticket" | "feedback");
15497
+ /**
15498
+ * Page size, 1..100 (default 25)
15499
+ */
15500
+ limit?: number;
15501
+ /**
15502
+ * Number of threads to skip
15503
+ */
15504
+ offset?: number;
15505
+ /**
15506
+ * Only threads whose status belongs to this category. Resolved through a join on the status dictionary — the category is never stored on the thread
15507
+ */
15508
+ category?: ("open" | "pending" | "resolved" | "closed");
15509
+ /**
15510
+ * Only threads carrying ALL of these labels. Every other filter here narrows the result and so does this one: each additional label id makes the answer smaller, never bigger
15511
+ */
15512
+ labelIds?: (string | string[]);
15513
+ /**
15514
+ * Only threads sitting on this exact status
15515
+ */
15516
+ statusId?: string;
15517
+ /**
15518
+ * Only threads created at or before this ISO-8601 timestamp
15519
+ */
15520
+ createdTo?: string;
15521
+ /**
15522
+ * Only threads created at or after this ISO-8601 timestamp
15523
+ */
15524
+ createdFrom?: string;
15525
+ /**
15526
+ * Only threads assigned to this agent
15527
+ */
15528
+ assignedAgentId?: string;
15529
+ /**
15530
+ * Only threads opened by this external author, matched verbatim
15531
+ */
15532
+ authorExternalId?: string;
15533
+ }
15534
+ interface SupportThreadListOutput {
15535
+ /**
15536
+ * Page size that was applied
15537
+ */
15538
+ limit: number;
15539
+ /**
15540
+ * Offset that was applied
15541
+ */
15542
+ offset: number;
15543
+ /**
15544
+ * The requested page of threads, newest first
15545
+ */
15546
+ threads: {
15547
+ /**
15548
+ * Thread id
15549
+ */
15550
+ id: string;
15551
+ /**
15552
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15553
+ */
15554
+ type: ("ticket" | "feedback");
15555
+ /**
15556
+ * Thread subject
15557
+ */
15558
+ title: string;
15559
+ /**
15560
+ * Every label on the thread, by name
15561
+ */
15562
+ labels: {
15563
+ /**
15564
+ * Label id
15565
+ */
15566
+ id: string;
15567
+ /**
15568
+ * Label name, unique within the product
15569
+ */
15570
+ name: string;
15571
+ /**
15572
+ * Display colour as a hex string, or null if uncoloured
15573
+ */
15574
+ color: (string | null);
15575
+ /**
15576
+ * ISO-8601 creation timestamp
15577
+ */
15578
+ createdAt: string;
15579
+ }[];
15580
+ /**
15581
+ * The status itself, joined in at read time
15582
+ */
15583
+ status: {
15584
+ /**
15585
+ * Status id
15586
+ */
15587
+ id: string;
15588
+ /**
15589
+ * Status name, unique within the product
15590
+ */
15591
+ name: string;
15592
+ /**
15593
+ * Display colour as a hex string
15594
+ */
15595
+ color: string;
15596
+ /**
15597
+ * Sort order within the status dictionary
15598
+ */
15599
+ order: number;
15600
+ /**
15601
+ * Archived statuses stay readable but are not offered as targets
15602
+ */
15603
+ archived: boolean;
15604
+ /**
15605
+ * Lifecycle bucket the status belongs to
15606
+ */
15607
+ category: ("open" | "pending" | "resolved" | "closed");
15608
+ };
15609
+ /**
15610
+ * Free-form client-owned JSON
15611
+ */
15612
+ metadata: {
15613
+ [k: string]: unknown;
15614
+ };
15615
+ /**
15616
+ * Thread priority
15617
+ */
15618
+ priority: ("low" | "normal" | "high" | "urgent");
15619
+ /**
15620
+ * Id of the status the thread sits on
15621
+ */
15622
+ statusId: string;
15623
+ /**
15624
+ * ISO-8601 creation timestamp
15625
+ */
15626
+ createdAt: string;
15627
+ /**
15628
+ * ISO-8601 last-modification timestamp
15629
+ */
15630
+ updatedAt: string;
15631
+ /**
15632
+ * ISO-8601 timestamp of the last reply, or null while there are none
15633
+ */
15634
+ lastReplyAt: (string | null);
15635
+ /**
15636
+ * Display name for the external author, if given
15637
+ */
15638
+ authorDisplay: (string | null);
15639
+ /**
15640
+ * Assigned agent, or null while unassigned
15641
+ */
15642
+ assignedAgentId: (string | null);
15643
+ /**
15644
+ * The external author, byte-identical to what was stored
15645
+ */
15646
+ authorExternalId: string;
15647
+ }[];
15648
+ }
15649
+ interface SupportThreadStatusSetInput {
15650
+ /**
15651
+ * Thread id
15652
+ */
15653
+ id: string;
15654
+ /**
15655
+ * Destination status of this product. Any status may follow any other — v1 has no transition rules. An archived status is refused
15656
+ */
15657
+ statusId: string;
15658
+ }
15659
+ interface SupportThreadStatusSetOutput {
15660
+ /**
15661
+ * Thread id
15662
+ */
15663
+ id: string;
15664
+ /**
15665
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15666
+ */
15667
+ type: ("ticket" | "feedback");
15668
+ /**
15669
+ * Thread subject
15670
+ */
15671
+ title: string;
15672
+ /**
15673
+ * Every label on the thread, by name
15674
+ */
15675
+ labels: {
15676
+ /**
15677
+ * Label id
15678
+ */
15679
+ id: string;
15680
+ /**
15681
+ * Label name, unique within the product
15682
+ */
15683
+ name: string;
15684
+ /**
15685
+ * Display colour as a hex string, or null if uncoloured
15686
+ */
15687
+ color: (string | null);
15688
+ /**
15689
+ * ISO-8601 creation timestamp
15690
+ */
15691
+ createdAt: string;
15692
+ }[];
15693
+ /**
15694
+ * The status itself, joined in at read time
15695
+ */
15696
+ status: {
15697
+ /**
15698
+ * Status id
15699
+ */
15700
+ id: string;
15701
+ /**
15702
+ * Status name, unique within the product
15703
+ */
15704
+ name: string;
15705
+ /**
15706
+ * Display colour as a hex string
15707
+ */
15708
+ color: string;
15709
+ /**
15710
+ * Sort order within the status dictionary
15711
+ */
15712
+ order: number;
15713
+ /**
15714
+ * Archived statuses stay readable but are not offered as targets
15715
+ */
15716
+ archived: boolean;
15717
+ /**
15718
+ * Lifecycle bucket the status belongs to
15719
+ */
15720
+ category: ("open" | "pending" | "resolved" | "closed");
15721
+ };
15722
+ /**
15723
+ * Free-form client-owned JSON
15724
+ */
15725
+ metadata: {
15726
+ [k: string]: unknown;
15727
+ };
15728
+ /**
15729
+ * Thread priority
15730
+ */
15731
+ priority: ("low" | "normal" | "high" | "urgent");
15732
+ /**
15733
+ * Id of the status the thread sits on
15734
+ */
15735
+ statusId: string;
15736
+ /**
15737
+ * ISO-8601 creation timestamp
15738
+ */
15739
+ createdAt: string;
15740
+ /**
15741
+ * ISO-8601 last-modification timestamp
15742
+ */
15743
+ updatedAt: string;
15744
+ /**
15745
+ * ISO-8601 timestamp of the last reply, or null while there are none
15746
+ */
15747
+ lastReplyAt: (string | null);
15748
+ /**
15749
+ * Display name for the external author, if given
15750
+ */
15751
+ authorDisplay: (string | null);
15752
+ /**
15753
+ * Assigned agent, or null while unassigned
15754
+ */
15755
+ assignedAgentId: (string | null);
15756
+ /**
15757
+ * The external author, byte-identical to what was stored
15758
+ */
15759
+ authorExternalId: string;
15760
+ }
15761
+ interface SupportThreadUpdateInput {
15762
+ /**
15763
+ * Thread id
15764
+ */
15765
+ id: string;
15766
+ /**
15767
+ * New subject of the thread
15768
+ */
15769
+ title?: string;
15770
+ /**
15771
+ * The complete new label set. Pass an empty array to remove every label
15772
+ *
15773
+ * @maxItems 50
15774
+ */
15775
+ labelIds?: string[];
15776
+ /**
15777
+ * Replaces the whole client-owned metadata object
15778
+ */
15779
+ metadata?: {
15780
+ [k: string]: unknown;
15781
+ };
15782
+ /**
15783
+ * New priority
15784
+ */
15785
+ priority?: ("low" | "normal" | "high" | "urgent");
15786
+ }
15787
+ interface SupportThreadUpdateOutput {
15788
+ /**
15789
+ * Thread id
15790
+ */
15791
+ id: string;
15792
+ /**
15793
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15794
+ */
15795
+ type: ("ticket" | "feedback");
15796
+ /**
15797
+ * Thread subject
15798
+ */
15799
+ title: string;
15800
+ /**
15801
+ * Every label on the thread, by name
15802
+ */
15803
+ labels: {
15804
+ /**
15805
+ * Label id
15806
+ */
15807
+ id: string;
15808
+ /**
15809
+ * Label name, unique within the product
15810
+ */
15811
+ name: string;
15812
+ /**
15813
+ * Display colour as a hex string, or null if uncoloured
15814
+ */
15815
+ color: (string | null);
15816
+ /**
15817
+ * ISO-8601 creation timestamp
15818
+ */
15819
+ createdAt: string;
15820
+ }[];
15821
+ /**
15822
+ * The status itself, joined in at read time
15823
+ */
15824
+ status: {
15825
+ /**
15826
+ * Status id
15827
+ */
15828
+ id: string;
15829
+ /**
15830
+ * Status name, unique within the product
15831
+ */
15832
+ name: string;
15833
+ /**
15834
+ * Display colour as a hex string
15835
+ */
15836
+ color: string;
15837
+ /**
15838
+ * Sort order within the status dictionary
15839
+ */
15840
+ order: number;
15841
+ /**
15842
+ * Archived statuses stay readable but are not offered as targets
15843
+ */
15844
+ archived: boolean;
15845
+ /**
15846
+ * Lifecycle bucket the status belongs to
15847
+ */
15848
+ category: ("open" | "pending" | "resolved" | "closed");
15849
+ };
15850
+ /**
15851
+ * Free-form client-owned JSON
15852
+ */
15853
+ metadata: {
15854
+ [k: string]: unknown;
15855
+ };
15856
+ /**
15857
+ * Thread priority
15858
+ */
15859
+ priority: ("low" | "normal" | "high" | "urgent");
15860
+ /**
15861
+ * Id of the status the thread sits on
15862
+ */
15863
+ statusId: string;
15864
+ /**
15865
+ * ISO-8601 creation timestamp
15866
+ */
15867
+ createdAt: string;
15868
+ /**
15869
+ * ISO-8601 last-modification timestamp
15870
+ */
15871
+ updatedAt: string;
15872
+ /**
15873
+ * ISO-8601 timestamp of the last reply, or null while there are none
15874
+ */
15875
+ lastReplyAt: (string | null);
15876
+ /**
15877
+ * Display name for the external author, if given
15878
+ */
15879
+ authorDisplay: (string | null);
15880
+ /**
15881
+ * Assigned agent, or null while unassigned
15882
+ */
15883
+ assignedAgentId: (string | null);
15884
+ /**
15885
+ * The external author, byte-identical to what was stored
15886
+ */
15887
+ authorExternalId: string;
15888
+ }
15889
+ interface TrackingDomainsCreateInput {
15890
+ host?: string;
15891
+ records?: {
15892
+ ttl?: number;
15893
+ name?: string;
15894
+ target: string;
15895
+ recordType: string;
15896
+ }[];
15897
+ domainId: string;
15898
+ }
15899
+ interface TrackingDomainsCreateOutput {
15900
+ binding: {
15901
+ host: string;
15902
+ status: ("pending" | "active" | "failed");
15903
+ records: unknown[];
15904
+ domainId: string;
15905
+ bindingId: string;
15906
+ createdAt: string;
15907
+ productId: string;
15908
+ updatedAt: string;
15909
+ statusDetail: (string | null);
15910
+ ownerExtension: string;
15911
+ };
15912
+ instructions: string[];
15913
+ }
15914
+ interface TrackingDomainsDeleteInput {
15915
+ bindingId: string;
15916
+ }
15917
+ interface TrackingDomainsDeleteOutput {
15918
+ ok: true;
15919
+ }
15920
+ interface TrackingDomainsGetInput {
15921
+ bindingId: string;
15922
+ }
15923
+ interface TrackingDomainsGetOutput {
15924
+ host: string;
15925
+ status: ("pending" | "active" | "failed");
15926
+ records: unknown[];
15927
+ domainId: string;
15928
+ bindingId: string;
15929
+ createdAt: string;
15930
+ productId: string;
15931
+ updatedAt: string;
15932
+ statusDetail: (string | null);
15933
+ ownerExtension: string;
15934
+ }
15935
+ interface TrackingDomainsListInput {
15936
+ }
15937
+ interface TrackingDomainsListOutput {
15938
+ domains: {
15939
+ mode: ("external" | "managed");
15940
+ domain: string;
15941
+ domainId: string;
15942
+ createdAt: string;
15943
+ extensionCount: number;
15944
+ }[];
15945
+ bindings: {
15946
+ host: string;
15947
+ status: ("pending" | "active" | "failed");
15948
+ records: unknown[];
15949
+ domainId: string;
15950
+ bindingId: string;
15951
+ createdAt: string;
15952
+ productId: string;
15953
+ updatedAt: string;
15954
+ statusDetail: (string | null);
15955
+ ownerExtension: string;
15956
+ }[];
15957
+ }
15958
+ interface TrackingDomainsVerifyInput {
15959
+ bindingId: string;
15960
+ }
15961
+ interface TrackingDomainsVerifyOutput {
15962
+ host: string;
15963
+ status: ("pending" | "active" | "failed");
15964
+ records: unknown[];
15965
+ domainId: string;
15966
+ bindingId: string;
15967
+ createdAt: string;
15968
+ productId: string;
15969
+ updatedAt: string;
15970
+ statusDetail: (string | null);
15971
+ ownerExtension: string;
15972
+ }
15973
+ interface TrackingEventNamesArchiveInput {
15974
+ /**
15975
+ * The event name to archive/unarchive
15976
+ */
15977
+ name: string;
15978
+ }
15979
+ interface TrackingEventNamesArchiveOutput {
15980
+ name: string;
15981
+ status: ("active" | "archived");
15982
+ }
15983
+ interface TrackingEventNamesListInput {
15984
+ /**
15985
+ * Sort column (default count)
15986
+ */
15987
+ sort?: ("count" | "last_seen" | "first_seen" | "name");
15988
+ /**
15989
+ * Sort direction (default desc)
15990
+ */
15991
+ order?: ("asc" | "desc");
15992
+ /**
15993
+ * Case-insensitive substring match on the event name
15994
+ */
15995
+ search?: string;
15996
+ /**
15997
+ * Filter by status; omit for all
15998
+ */
15999
+ status?: ("active" | "archived");
16000
+ }
16001
+ interface TrackingEventNamesListOutput {
16002
+ names: {
16003
+ name: string;
16004
+ count: number;
16005
+ status: string;
16006
+ lastSeen: string;
16007
+ firstSeen: string;
16008
+ propsKeys: string[];
16009
+ isConversion: boolean;
16010
+ }[];
16011
+ }
16012
+ interface TrackingEventNamesUnarchiveInput {
16013
+ /**
16014
+ * The event name to archive/unarchive
16015
+ */
16016
+ name: string;
16017
+ }
14475
16018
  interface TrackingEventNamesUnarchiveOutput {
14476
16019
  name: string;
14477
16020
  status: ("active" | "archived");
@@ -18022,9 +19565,6 @@ interface GeneratedClient {
18022
19565
  restore: {
18023
19566
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
18024
19567
  };
18025
- usage: {
18026
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
18027
- };
18028
19568
  };
18029
19569
  consent: {
18030
19570
  'config-cookie-domain': {
@@ -18379,7 +19919,6 @@ interface GeneratedClient {
18379
19919
  get(input: OrganizationDomainsGetInput): Promise<OrganizationDomainsGetOutput>;
18380
19920
  list(input: OrganizationDomainsListInput): Promise<OrganizationDomainsListOutput>;
18381
19921
  remove(input: OrganizationDomainsRemoveInput): Promise<OrganizationDomainsRemoveOutput>;
18382
- 'set-mode'(input: OrganizationDomainsSetModeInput): Promise<OrganizationDomainsSetModeOutput>;
18383
19922
  };
18384
19923
  extensions: {
18385
19924
  'list-installed'(input: OrganizationExtensionsListInstalledInput): Promise<OrganizationExtensionsListInstalledOutput>;
@@ -18447,6 +19986,34 @@ interface GeneratedClient {
18447
19986
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
18448
19987
  };
18449
19988
  };
19989
+ playground: {
19990
+ analytics: {
19991
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
19992
+ };
19993
+ billing: {
19994
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
19995
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
19996
+ };
19997
+ clickup: {
19998
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
19999
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
20000
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
20001
+ };
20002
+ gdrive: {
20003
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
20004
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
20005
+ };
20006
+ googleads: {
20007
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
20008
+ };
20009
+ lifecycle: {
20010
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
20011
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
20012
+ };
20013
+ webhook: {
20014
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
20015
+ };
20016
+ };
18450
20017
  realtime: {
18451
20018
  archive: {
18452
20019
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
@@ -18503,6 +20070,42 @@ interface GeneratedClient {
18503
20070
  rotate(input: RealtimeWebhookSecretRotateInput): Promise<RealtimeWebhookSecretRotateOutput>;
18504
20071
  };
18505
20072
  };
20073
+ support: {
20074
+ agent: {
20075
+ create(input: SupportAgentCreateInput): Promise<SupportAgentCreateOutput>;
20076
+ get(input: SupportAgentGetInput): Promise<SupportAgentGetOutput>;
20077
+ list(input: SupportAgentListInput): Promise<SupportAgentListOutput>;
20078
+ update(input: SupportAgentUpdateInput): Promise<SupportAgentUpdateOutput>;
20079
+ };
20080
+ attachment: {
20081
+ create(input: SupportAttachmentCreateInput): Promise<SupportAttachmentCreateOutput>;
20082
+ finalize(input: SupportAttachmentFinalizeInput): Promise<SupportAttachmentFinalizeOutput>;
20083
+ };
20084
+ label: {
20085
+ create(input: SupportLabelCreateInput): Promise<SupportLabelCreateOutput>;
20086
+ list(input: SupportLabelListInput): Promise<SupportLabelListOutput>;
20087
+ };
20088
+ message: {
20089
+ create(input: SupportMessageCreateInput): Promise<SupportMessageCreateOutput>;
20090
+ list(input: SupportMessageListInput): Promise<SupportMessageListOutput>;
20091
+ };
20092
+ status: {
20093
+ archive(input: SupportStatusArchiveInput): Promise<SupportStatusArchiveOutput>;
20094
+ create(input: SupportStatusCreateInput): Promise<SupportStatusCreateOutput>;
20095
+ list(input: SupportStatusListInput): Promise<SupportStatusListOutput>;
20096
+ update(input: SupportStatusUpdateInput): Promise<SupportStatusUpdateOutput>;
20097
+ };
20098
+ thread: {
20099
+ assign(input: SupportThreadAssignInput): Promise<SupportThreadAssignOutput>;
20100
+ create(input: SupportThreadCreateInput): Promise<SupportThreadCreateOutput>;
20101
+ get(input: SupportThreadGetInput): Promise<SupportThreadGetOutput>;
20102
+ list(input: SupportThreadListInput): Promise<SupportThreadListOutput>;
20103
+ update(input: SupportThreadUpdateInput): Promise<SupportThreadUpdateOutput>;
20104
+ };
20105
+ 'thread-status': {
20106
+ set(input: SupportThreadStatusSetInput): Promise<SupportThreadStatusSetOutput>;
20107
+ };
20108
+ };
18506
20109
  tracking: {
18507
20110
  domains: {
18508
20111
  create(input: TrackingDomainsCreateInput): Promise<TrackingDomainsCreateOutput>;
@@ -18674,4 +20277,4 @@ interface GeneratedClient {
18674
20277
  };
18675
20278
  }
18676
20279
 
18677
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSecurityMfaEnableOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductRevokeInvitationInput as hA, OrganizationProductRevokeInvitationOutput as hB, OrganizationProductSelectInput as hC, OrganizationProductSelectOutput as hD, OrganizationProductUpdateInput as hE, OrganizationProductUpdateOutput as hF, OrganizationPublicKeysCreateInput as hG, OrganizationPublicKeysCreateOutput as hH, OrganizationPublicKeysListInput as hI, OrganizationPublicKeysListOutput as hJ, OrganizationPublicKeysRevokeInput as hK, OrganizationPublicKeysRevokeOutput as hL, OrganizationPublicKeysUpdateScopeInput as hM, OrganizationPublicKeysUpdateScopeOutput as hN, OrganizationPublicRoutesListInput as hO, OrganizationPublicRoutesListOutput as hP, OrganizationRolesCreateInput as hQ, OrganizationRolesCreateOutput as hR, OrganizationRolesDeleteInput as hS, OrganizationRolesDeleteOutput as hT, OrganizationRolesGetInput as hU, OrganizationRolesGetOutput as hV, OrganizationRolesListInput as hW, OrganizationRolesListOutput as hX, OrganizationRolesUpdateInput as hY, OrganizationRolesUpdateOutput as hZ, OrganizationSecurityMfaEnableInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductAcceptInvitationInput as hm, OrganizationProductAcceptInvitationOutput as hn, OrganizationProductCreateInput as ho, OrganizationProductCreateOutput as hp, OrganizationProductInviteInput as hq, OrganizationProductInviteOutput as hr, OrganizationProductListInvitationsInput as hs, OrganizationProductListInvitationsOutput as ht, OrganizationProductListMembersInput as hu, OrganizationProductListMembersOutput as hv, OrganizationProductListInput as hw, OrganizationProductListOutput as hx, OrganizationProductListRolesInput as hy, OrganizationProductListRolesOutput as hz, BrainClickupChannelsListInput as i, TrackingDomainsDeleteOutput as i$, OrganizationSelectInput as i0, OrganizationSelectOutput as i1, RealtimeArchiveExportInput as i2, RealtimeArchiveExportOutput as i3, RealtimeArchiveExportStatusInput as i4, RealtimeArchiveExportStatusOutput as i5, RealtimeArchiveGetInput as i6, RealtimeArchiveGetOutput as i7, RealtimeGrantCreateInput as i8, RealtimeGrantCreateOutput as i9, RealtimePresenceStatsInput as iA, RealtimePresenceStatsOutput as iB, RealtimePresenceUpdateInput as iC, RealtimePresenceUpdateOutput as iD, RealtimePublicAccessStatusInput as iE, RealtimePublicAccessStatusOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, TrackingDomainsCreateInput as iY, TrackingDomainsCreateOutput as iZ, TrackingDomainsDeleteInput as i_, RealtimeGrantListInput as ia, RealtimeGrantListOutput as ib, RealtimeGrantRevokeInput as ic, RealtimeGrantRevokeOutput as id, RealtimeHistoryGetInput as ie, RealtimeHistoryGetOutput as ig, RealtimeMessagesPublishInput as ih, RealtimeMessagesPublishOutput as ii, RealtimeNamespaceCreateInput as ij, RealtimeNamespaceCreateOutput as ik, RealtimeNamespaceDeleteInput as il, RealtimeNamespaceDeleteOutput as im, RealtimeNamespaceGetInput as io, RealtimeNamespaceGetOutput as ip, RealtimeNamespaceListInput as iq, RealtimeNamespaceListOutput as ir, RealtimeNamespaceUpdateInput as is, RealtimeNamespaceUpdateOutput as it, RealtimePresenceEnterInput as iu, RealtimePresenceEnterOutput as iv, RealtimePresenceGetInput as iw, RealtimePresenceGetOutput as ix, RealtimePresenceLeaveInput as iy, RealtimePresenceLeaveOutput as iz, BrainClickupChannelsListOutput as j, TrackingReportsRevenueBySourceOutput as j$, TrackingDomainsGetInput as j0, TrackingDomainsGetOutput as j1, TrackingDomainsListInput as j2, TrackingDomainsListOutput as j3, TrackingDomainsVerifyInput as j4, TrackingDomainsVerifyOutput as j5, TrackingEventNamesArchiveInput as j6, TrackingEventNamesArchiveOutput as j7, TrackingEventNamesListInput as j8, TrackingEventNamesListOutput as j9, TrackingInstallDomainsCreateInput as jA, TrackingInstallDomainsCreateOutput as jB, TrackingInstallDomainsDeleteInput as jC, TrackingInstallDomainsDeleteOutput as jD, TrackingInstallDomainsListInput as jE, TrackingInstallDomainsListOutput as jF, TrackingLinkDomainsCreateInput as jG, TrackingLinkDomainsCreateOutput as jH, TrackingLinkDomainsDeleteInput as jI, TrackingLinkDomainsDeleteOutput as jJ, TrackingLinkDomainsListInput as jK, TrackingLinkDomainsListOutput as jL, TrackingLiveEventsListInput as jM, TrackingLiveEventsListOutput as jN, TrackingProfilesDeleteInput as jO, TrackingProfilesDeleteOutput as jP, TrackingProfilesExportInput as jQ, TrackingProfilesExportOutput as jR, TrackingProfilesGetInput as jS, TrackingProfilesGetOutput as jT, TrackingProfilesListInput as jU, TrackingProfilesListOutput as jV, TrackingReportsAttributedJourneyInput as jW, TrackingReportsAttributedJourneyOutput as jX, TrackingReportsEventVolumeInput as jY, TrackingReportsEventVolumeOutput as jZ, TrackingReportsRevenueBySourceInput as j_, TrackingEventNamesUnarchiveInput as ja, TrackingEventNamesUnarchiveOutput as jb, TrackingGoogleadsConnectionStatusInput as jc, TrackingGoogleadsConnectionStatusOutput as jd, TrackingGoogleadsConversionActionsInput as je, TrackingGoogleadsConversionActionsOutput as jf, TrackingGoogleadsFeedbackConfigGetInput as jg, TrackingGoogleadsFeedbackConfigGetOutput as jh, TrackingGoogleadsFeedbackConfigSetInput as ji, TrackingGoogleadsFeedbackConfigSetOutput as jj, TrackingGoogleadsFeedbackRunInput as jk, TrackingGoogleadsFeedbackRunOutput as jl, TrackingGoogleadsFeedbackStatusInput as jm, TrackingGoogleadsFeedbackStatusOutput as jn, TrackingGoogleadsFeedbackUploadsInput as jo, TrackingGoogleadsFeedbackUploadsOutput as jp, TrackingGoogleadsRoasReportInput as jq, TrackingGoogleadsRoasReportOutput as jr, TrackingGoogleadsSyncNowInput as js, TrackingGoogleadsSyncNowOutput as jt, TrackingGoogleadsTrackingHealthInput as ju, TrackingGoogleadsTrackingHealthOutput as jv, TrackingGoogleadsUsVsPlatformInput as jw, TrackingGoogleadsUsVsPlatformOutput as jx, TrackingIdentityHealthInput as jy, TrackingIdentityHealthOutput as jz, BrainClickupConnectionsListInput as k, UsersUsersUpdateOutput as k$, TrackingReportsSourcePeopleInput as k0, TrackingReportsSourcePeopleOutput as k1, TrackingSnippetsGetInput as k2, TrackingSnippetsGetOutput as k3, UsersApikeysCreateInput as k4, UsersApikeysCreateOutput as k5, UsersApikeysListInput as k6, UsersApikeysListOutput as k7, UsersApikeysRevokeInput as k8, UsersApikeysRevokeOutput as k9, UsersSessionsRevokeInput as kA, UsersSessionsRevokeOutput as kB, UsersStatsGetInput as kC, UsersStatsGetOutput as kD, UsersUsersBanInput as kE, UsersUsersBanOutput as kF, UsersUsersCreateInput as kG, UsersUsersCreateOutput as kH, UsersUsersDeleteInput as kI, UsersUsersDeleteOutput as kJ, UsersUsersEraseInput as kK, UsersUsersEraseOutput as kL, UsersUsersExportInput as kM, UsersUsersExportOutput as kN, UsersUsersGetInput as kO, UsersUsersGetOutput as kP, UsersUsersImportInput as kQ, UsersUsersImportOutput as kR, UsersUsersInviteInput as kS, UsersUsersInviteOutput as kT, UsersUsersListInput as kU, UsersUsersListOutput as kV, UsersUsersSetPrimaryIdentifierInput as kW, UsersUsersSetPrimaryIdentifierOutput as kX, UsersUsersUnbanInput as kY, UsersUsersUnbanOutput as kZ, UsersUsersUpdateInput as k_, UsersAuditListInput as ka, UsersAuditListOutput as kb, UsersConfigGetInput as kc, UsersConfigGetOutput as kd, UsersConfigUpsertInput as ke, UsersConfigUpsertOutput as kf, UsersFactorsListInput as kg, UsersFactorsListOutput as kh, UsersFactorsResetInput as ki, UsersFactorsResetOutput as kj, UsersKeysListInput as kk, UsersKeysListOutput as kl, UsersKeysRevokeInput as km, UsersKeysRevokeOutput as kn, UsersKeysRotateInput as ko, UsersKeysRotateOutput as kp, UsersOpsRetentionGetInput as kq, UsersOpsRetentionGetOutput as kr, UsersOpsSloGetInput as ks, UsersOpsSloGetOutput as kt, UsersSessionsGetInput as ku, UsersSessionsGetOutput as kv, UsersSessionsImpersonateInput as kw, UsersSessionsImpersonateOutput as kx, UsersSessionsListInput as ky, UsersSessionsListOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistEraseInput as l0, UsersWaitlistEraseOutput as l1, UsersWaitlistFunnelInput as l2, UsersWaitlistFunnelOutput as l3, UsersWaitlistImportInput as l4, UsersWaitlistImportOutput as l5, UsersWaitlistInviteInput as l6, UsersWaitlistInviteOutput as l7, UsersWaitlistListInput as l8, UsersWaitlistListOutput as l9, WaitlistSignupsListInput as lA, WaitlistSignupsListOutput as lB, UsersWebhooksCreateInput as la, UsersWebhooksCreateOutput as lb, UsersWebhooksDeleteInput as lc, UsersWebhooksDeleteOutput as ld, UsersWebhooksDeliveriesListInput as le, UsersWebhooksDeliveriesListOutput as lf, UsersWebhooksGetInput as lg, UsersWebhooksGetOutput as lh, UsersWebhooksListInput as li, UsersWebhooksListOutput as lj, UsersWebhooksRotateSecretInput as lk, UsersWebhooksRotateSecretOutput as ll, UsersWebhooksUpdateInput as lm, UsersWebhooksUpdateOutput as ln, WaitlistConfigGetInput as lo, WaitlistConfigGetOutput as lp, WaitlistConfigUpsertInput as lq, WaitlistConfigUpsertOutput as lr, WaitlistEmbedGetInput as ls, WaitlistEmbedGetOutput as lt, WaitlistInvitesSendInput as lu, WaitlistInvitesSendOutput as lv, WaitlistSignupsEraseInput as lw, WaitlistSignupsEraseOutput as lx, WaitlistSignupsFunnelInput as ly, WaitlistSignupsFunnelOutput 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 };
20280
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingCapsClearOutput 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, OrganizationBillingBudgetsGetInput as fW, OrganizationBillingBudgetsGetOutput as fX, OrganizationBillingBudgetsSetInput as fY, OrganizationBillingBudgetsSetOutput as fZ, OrganizationBillingCapsClearInput 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, OrganizationMemberListInvitationsOutput as g$, OrganizationBillingCapsSetInput as g0, OrganizationBillingCapsSetOutput as g1, OrganizationBindingsListInput as g2, OrganizationBindingsListOutput as g3, OrganizationClickupInstallInput as g4, OrganizationClickupInstallOutput as g5, OrganizationClickupListInstallationsInput as g6, OrganizationClickupListInstallationsOutput as g7, OrganizationCloudflareInstallInput as g8, OrganizationCloudflareInstallOutput as g9, OrganizationDomainsAddInput as gA, OrganizationDomainsAddOutput as gB, OrganizationDomainsGetInput as gC, OrganizationDomainsGetOutput as gD, OrganizationDomainsListInput as gE, OrganizationDomainsListOutput as gF, OrganizationDomainsRemoveInput as gG, OrganizationDomainsRemoveOutput as gH, OrganizationExtensionsListInstalledInput as gI, OrganizationExtensionsListInstalledOutput as gJ, OrganizationFeedbackSubmitInput as gK, OrganizationFeedbackSubmitOutput as gL, OrganizationGdriveInstallInput as gM, OrganizationGdriveInstallOutput as gN, OrganizationGithubInstallInput as gO, OrganizationGithubInstallOutput as gP, OrganizationGithubListInstallationsInput as gQ, OrganizationGithubListInstallationsOutput as gR, OrganizationGoogleadsInstallInput as gS, OrganizationGoogleadsInstallOutput as gT, OrganizationListInput as gU, OrganizationListOutput as gV, OrganizationMemberAcceptInviteInput as gW, OrganizationMemberAcceptInviteOutput as gX, OrganizationMemberInviteInput as gY, OrganizationMemberInviteOutput as gZ, OrganizationMemberListInvitationsInput as g_, OrganizationConnectorsApproveRequestInput as ga, OrganizationConnectorsApproveRequestOutput as gb, OrganizationConnectorsAttachInput as gc, OrganizationConnectorsAttachOutput as gd, OrganizationConnectorsDeleteInput as ge, OrganizationConnectorsDeleteOutput as gf, OrganizationConnectorsDenyRequestInput as gg, OrganizationConnectorsDenyRequestOutput as gh, OrganizationConnectorsDetachInput as gi, OrganizationConnectorsDetachOutput as gj, OrganizationConnectorsListAttachmentsInput as gk, OrganizationConnectorsListAttachmentsOutput as gl, OrganizationConnectorsListAvailableInput as gm, OrganizationConnectorsListAvailableOutput as gn, OrganizationConnectorsListOrgInput as go, OrganizationConnectorsListOrgOutput as gp, OrganizationConnectorsListInput as gq, OrganizationConnectorsListOutput as gr, OrganizationConnectorsListRequestsInput as gs, OrganizationConnectorsListRequestsOutput as gt, OrganizationConnectorsRemoveInput as gu, OrganizationConnectorsRemoveOutput as gv, OrganizationConnectorsRequestInput as gw, OrganizationConnectorsRequestOutput as gx, OrganizationCreateInput as gy, OrganizationCreateOutput as gz, BrainBackupsListOutput as h, PlaygroundAnalyticsOverviewOutput as h$, OrganizationMemberListProductAccessInput as h0, OrganizationMemberListProductAccessOutput as h1, OrganizationMemberListInput as h2, OrganizationMemberListOutput as h3, OrganizationMemberRemoveInput as h4, OrganizationMemberRemoveOutput as h5, OrganizationMemberRevokeInvitationInput as h6, OrganizationMemberRevokeInvitationOutput as h7, OrganizationMemberSetRoleInput as h8, OrganizationMemberSetRoleOutput as h9, OrganizationProductUpdateInput as hA, OrganizationProductUpdateOutput as hB, OrganizationPublicKeysCreateInput as hC, OrganizationPublicKeysCreateOutput as hD, OrganizationPublicKeysListInput as hE, OrganizationPublicKeysListOutput as hF, OrganizationPublicKeysRevokeInput as hG, OrganizationPublicKeysRevokeOutput as hH, OrganizationPublicKeysUpdateScopeInput as hI, OrganizationPublicKeysUpdateScopeOutput as hJ, OrganizationPublicRoutesListInput as hK, OrganizationPublicRoutesListOutput as hL, OrganizationRolesCreateInput as hM, OrganizationRolesCreateOutput as hN, OrganizationRolesDeleteInput as hO, OrganizationRolesDeleteOutput as hP, OrganizationRolesGetInput as hQ, OrganizationRolesGetOutput as hR, OrganizationRolesListInput as hS, OrganizationRolesListOutput as hT, OrganizationRolesUpdateInput as hU, OrganizationRolesUpdateOutput as hV, OrganizationSecurityMfaEnableInput as hW, OrganizationSecurityMfaEnableOutput as hX, OrganizationSelectInput as hY, OrganizationSelectOutput as hZ, PlaygroundAnalyticsOverviewInput as h_, OrganizationMemberShareProductInput as ha, OrganizationMemberShareProductOutput as hb, OrganizationMemberUnshareProductInput as hc, OrganizationMemberUnshareProductOutput as hd, OrganizationMembersAssignRoleInput as he, OrganizationMembersAssignRoleOutput as hf, OrganizationPermissionCatalogInput as hg, OrganizationPermissionCatalogOutput as hh, OrganizationProductAcceptInvitationInput as hi, OrganizationProductAcceptInvitationOutput as hj, OrganizationProductCreateInput as hk, OrganizationProductCreateOutput as hl, OrganizationProductInviteInput as hm, OrganizationProductInviteOutput as hn, OrganizationProductListInvitationsInput as ho, OrganizationProductListInvitationsOutput as hp, OrganizationProductListMembersInput as hq, OrganizationProductListMembersOutput as hr, OrganizationProductListInput as hs, OrganizationProductListOutput as ht, OrganizationProductListRolesInput as hu, OrganizationProductListRolesOutput as hv, OrganizationProductRevokeInvitationInput as hw, OrganizationProductRevokeInvitationOutput as hx, OrganizationProductSelectInput as hy, OrganizationProductSelectOutput as hz, BrainClickupChannelsListInput as i, RealtimeStatusGetOutput as i$, PlaygroundBillingEntitlementsInput as i0, PlaygroundBillingEntitlementsOutput as i1, PlaygroundBillingRecordUsageInput as i2, PlaygroundBillingRecordUsageOutput as i3, PlaygroundClickupCreateTaskInput as i4, PlaygroundClickupCreateTaskOutput as i5, PlaygroundClickupGetLastWebhookInput as i6, PlaygroundClickupGetLastWebhookOutput as i7, PlaygroundClickupGetOverviewInput as i8, PlaygroundClickupGetOverviewOutput as i9, RealtimeHistoryGetInput as iA, RealtimeHistoryGetOutput as iB, RealtimeMessagesPublishInput as iC, RealtimeMessagesPublishOutput as iD, RealtimeNamespaceCreateInput as iE, RealtimeNamespaceCreateOutput as iF, RealtimeNamespaceDeleteInput as iG, RealtimeNamespaceDeleteOutput as iH, RealtimeNamespaceGetInput as iI, RealtimeNamespaceGetOutput as iJ, RealtimeNamespaceListInput as iK, RealtimeNamespaceListOutput as iL, RealtimeNamespaceUpdateInput as iM, RealtimeNamespaceUpdateOutput as iN, RealtimePresenceEnterInput as iO, RealtimePresenceEnterOutput as iP, RealtimePresenceGetInput as iQ, RealtimePresenceGetOutput as iR, RealtimePresenceLeaveInput as iS, RealtimePresenceLeaveOutput as iT, RealtimePresenceStatsInput as iU, RealtimePresenceStatsOutput as iV, RealtimePresenceUpdateInput as iW, RealtimePresenceUpdateOutput as iX, RealtimePublicAccessStatusInput as iY, RealtimePublicAccessStatusOutput as iZ, RealtimeStatusGetInput as i_, PlaygroundGdriveGetLastChangeInput as ia, PlaygroundGdriveGetLastChangeOutput as ib, PlaygroundGdriveReadFileInput as ic, PlaygroundGdriveReadFileOutput as id, PlaygroundGoogleadsReadCustomerInput as ie, PlaygroundGoogleadsReadCustomerOutput as ig, PlaygroundLifecycleGetStateInput as ih, PlaygroundLifecycleGetStateOutput as ii, PlaygroundLifecycleListEventsInput as ij, PlaygroundLifecycleListEventsOutput as ik, PlaygroundWebhookGetLastInput as il, PlaygroundWebhookGetLastOutput as im, RealtimeArchiveExportInput as io, RealtimeArchiveExportOutput as ip, RealtimeArchiveExportStatusInput as iq, RealtimeArchiveExportStatusOutput as ir, RealtimeArchiveGetInput as is, RealtimeArchiveGetOutput as it, RealtimeGrantCreateInput as iu, RealtimeGrantCreateOutput as iv, RealtimeGrantListInput as iw, RealtimeGrantListOutput as ix, RealtimeGrantRevokeInput as iy, RealtimeGrantRevokeOutput as iz, BrainClickupChannelsListOutput as j, TrackingDomainsListOutput as j$, RealtimeTokensCreateInput as j0, RealtimeTokensCreateOutput as j1, RealtimeWebhookCreateInput as j2, RealtimeWebhookCreateOutput as j3, RealtimeWebhookDeleteInput as j4, RealtimeWebhookDeleteOutput as j5, RealtimeWebhookDeliveriesListInput as j6, RealtimeWebhookDeliveriesListOutput as j7, RealtimeWebhookGetInput as j8, RealtimeWebhookGetOutput as j9, SupportStatusArchiveInput as jA, SupportStatusArchiveOutput as jB, SupportStatusCreateInput as jC, SupportStatusCreateOutput as jD, SupportStatusListInput as jE, SupportStatusListOutput as jF, SupportStatusUpdateInput as jG, SupportStatusUpdateOutput as jH, SupportThreadAssignInput as jI, SupportThreadAssignOutput as jJ, SupportThreadCreateInput as jK, SupportThreadCreateOutput as jL, SupportThreadGetInput as jM, SupportThreadGetOutput as jN, SupportThreadListInput as jO, SupportThreadListOutput as jP, SupportThreadStatusSetInput as jQ, SupportThreadStatusSetOutput as jR, SupportThreadUpdateInput as jS, SupportThreadUpdateOutput as jT, TrackingDomainsCreateInput as jU, TrackingDomainsCreateOutput as jV, TrackingDomainsDeleteInput as jW, TrackingDomainsDeleteOutput as jX, TrackingDomainsGetInput as jY, TrackingDomainsGetOutput as jZ, TrackingDomainsListInput as j_, RealtimeWebhookListInput as ja, RealtimeWebhookListOutput as jb, RealtimeWebhookSecretRotateInput as jc, RealtimeWebhookSecretRotateOutput as jd, RealtimeWebhookUpdateInput as je, RealtimeWebhookUpdateOutput as jf, SupportAgentCreateInput as jg, SupportAgentCreateOutput as jh, SupportAgentGetInput as ji, SupportAgentGetOutput as jj, SupportAgentListInput as jk, SupportAgentListOutput as jl, SupportAgentUpdateInput as jm, SupportAgentUpdateOutput as jn, SupportAttachmentCreateInput as jo, SupportAttachmentCreateOutput as jp, SupportAttachmentFinalizeInput as jq, SupportAttachmentFinalizeOutput as jr, SupportLabelCreateInput as js, SupportLabelCreateOutput as jt, SupportLabelListInput as ju, SupportLabelListOutput as jv, SupportMessageCreateInput as jw, SupportMessageCreateOutput as jx, SupportMessageListInput as jy, SupportMessageListOutput as jz, BrainClickupConnectionsListInput as k, TrackingSnippetsGetOutput as k$, TrackingDomainsVerifyInput as k0, TrackingDomainsVerifyOutput as k1, TrackingEventNamesArchiveInput as k2, TrackingEventNamesArchiveOutput as k3, TrackingEventNamesListInput as k4, TrackingEventNamesListOutput as k5, TrackingEventNamesUnarchiveInput as k6, TrackingEventNamesUnarchiveOutput as k7, TrackingGoogleadsConnectionStatusInput as k8, TrackingGoogleadsConnectionStatusOutput as k9, TrackingInstallDomainsListInput as kA, TrackingInstallDomainsListOutput as kB, TrackingLinkDomainsCreateInput as kC, TrackingLinkDomainsCreateOutput as kD, TrackingLinkDomainsDeleteInput as kE, TrackingLinkDomainsDeleteOutput as kF, TrackingLinkDomainsListInput as kG, TrackingLinkDomainsListOutput as kH, TrackingLiveEventsListInput as kI, TrackingLiveEventsListOutput as kJ, TrackingProfilesDeleteInput as kK, TrackingProfilesDeleteOutput as kL, TrackingProfilesExportInput as kM, TrackingProfilesExportOutput as kN, TrackingProfilesGetInput as kO, TrackingProfilesGetOutput as kP, TrackingProfilesListInput as kQ, TrackingProfilesListOutput as kR, TrackingReportsAttributedJourneyInput as kS, TrackingReportsAttributedJourneyOutput as kT, TrackingReportsEventVolumeInput as kU, TrackingReportsEventVolumeOutput as kV, TrackingReportsRevenueBySourceInput as kW, TrackingReportsRevenueBySourceOutput as kX, TrackingReportsSourcePeopleInput as kY, TrackingReportsSourcePeopleOutput as kZ, TrackingSnippetsGetInput as k_, TrackingGoogleadsConversionActionsInput as ka, TrackingGoogleadsConversionActionsOutput as kb, TrackingGoogleadsFeedbackConfigGetInput as kc, TrackingGoogleadsFeedbackConfigGetOutput as kd, TrackingGoogleadsFeedbackConfigSetInput as ke, TrackingGoogleadsFeedbackConfigSetOutput as kf, TrackingGoogleadsFeedbackRunInput as kg, TrackingGoogleadsFeedbackRunOutput as kh, TrackingGoogleadsFeedbackStatusInput as ki, TrackingGoogleadsFeedbackStatusOutput as kj, TrackingGoogleadsFeedbackUploadsInput as kk, TrackingGoogleadsFeedbackUploadsOutput as kl, TrackingGoogleadsRoasReportInput as km, TrackingGoogleadsRoasReportOutput as kn, TrackingGoogleadsSyncNowInput as ko, TrackingGoogleadsSyncNowOutput as kp, TrackingGoogleadsTrackingHealthInput as kq, TrackingGoogleadsTrackingHealthOutput as kr, TrackingGoogleadsUsVsPlatformInput as ks, TrackingGoogleadsUsVsPlatformOutput as kt, TrackingIdentityHealthInput as ku, TrackingIdentityHealthOutput as kv, TrackingInstallDomainsCreateInput as kw, TrackingInstallDomainsCreateOutput as kx, TrackingInstallDomainsDeleteInput as ky, TrackingInstallDomainsDeleteOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistFunnelOutput as l$, UsersApikeysCreateInput as l0, UsersApikeysCreateOutput as l1, UsersApikeysListInput as l2, UsersApikeysListOutput as l3, UsersApikeysRevokeInput as l4, UsersApikeysRevokeOutput as l5, UsersAuditListInput as l6, UsersAuditListOutput as l7, UsersConfigGetInput as l8, UsersConfigGetOutput as l9, UsersUsersBanInput as lA, UsersUsersBanOutput as lB, UsersUsersCreateInput as lC, UsersUsersCreateOutput as lD, UsersUsersDeleteInput as lE, UsersUsersDeleteOutput as lF, UsersUsersEraseInput as lG, UsersUsersEraseOutput as lH, UsersUsersExportInput as lI, UsersUsersExportOutput as lJ, UsersUsersGetInput as lK, UsersUsersGetOutput as lL, UsersUsersImportInput as lM, UsersUsersImportOutput as lN, UsersUsersInviteInput as lO, UsersUsersInviteOutput as lP, UsersUsersListInput as lQ, UsersUsersListOutput as lR, UsersUsersSetPrimaryIdentifierInput as lS, UsersUsersSetPrimaryIdentifierOutput as lT, UsersUsersUnbanInput as lU, UsersUsersUnbanOutput as lV, UsersUsersUpdateInput as lW, UsersUsersUpdateOutput as lX, UsersWaitlistEraseInput as lY, UsersWaitlistEraseOutput as lZ, UsersWaitlistFunnelInput as l_, UsersConfigUpsertInput as la, UsersConfigUpsertOutput as lb, UsersFactorsListInput as lc, UsersFactorsListOutput as ld, UsersFactorsResetInput as le, UsersFactorsResetOutput as lf, UsersKeysListInput as lg, UsersKeysListOutput as lh, UsersKeysRevokeInput as li, UsersKeysRevokeOutput as lj, UsersKeysRotateInput as lk, UsersKeysRotateOutput as ll, UsersOpsRetentionGetInput as lm, UsersOpsRetentionGetOutput as ln, UsersOpsSloGetInput as lo, UsersOpsSloGetOutput as lp, UsersSessionsGetInput as lq, UsersSessionsGetOutput as lr, UsersSessionsImpersonateInput as ls, UsersSessionsImpersonateOutput as lt, UsersSessionsListInput as lu, UsersSessionsListOutput as lv, UsersSessionsRevokeInput as lw, UsersSessionsRevokeOutput as lx, UsersStatsGetInput as ly, UsersStatsGetOutput as lz, BrainClickupListsListInput as m, UsersWaitlistImportInput as m0, UsersWaitlistImportOutput as m1, UsersWaitlistInviteInput as m2, UsersWaitlistInviteOutput as m3, UsersWaitlistListInput as m4, UsersWaitlistListOutput as m5, UsersWebhooksCreateInput as m6, UsersWebhooksCreateOutput as m7, UsersWebhooksDeleteInput as m8, UsersWebhooksDeleteOutput as m9, UsersWebhooksDeliveriesListInput as ma, UsersWebhooksDeliveriesListOutput as mb, UsersWebhooksGetInput as mc, UsersWebhooksGetOutput as md, UsersWebhooksListInput as me, UsersWebhooksListOutput as mf, UsersWebhooksRotateSecretInput as mg, UsersWebhooksRotateSecretOutput as mh, UsersWebhooksUpdateInput as mi, UsersWebhooksUpdateOutput as mj, WaitlistConfigGetInput as mk, WaitlistConfigGetOutput as ml, WaitlistConfigUpsertInput as mm, WaitlistConfigUpsertOutput as mn, WaitlistEmbedGetInput as mo, WaitlistEmbedGetOutput as mp, WaitlistInvitesSendInput as mq, WaitlistInvitesSendOutput as mr, WaitlistSignupsEraseInput as ms, WaitlistSignupsEraseOutput as mt, WaitlistSignupsFunnelInput as mu, WaitlistSignupsFunnelOutput as mv, WaitlistSignupsListInput as mw, WaitlistSignupsListOutput as mx, 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 };