@lessly/sdk-app 42.2.0 → 43.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.cjs +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-Cyz4I2yE.d.cts → client.gen-BE8VaNrU.d.cts} +476 -94
  10. package/dist/{client.gen-Cyz4I2yE.d.ts → client.gen-BE8VaNrU.d.ts} +476 -94
  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 +153 -13
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +153 -13
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/observe/index.cjs +15 -0
  24. package/dist/observe/index.cjs.map +1 -1
  25. package/dist/observe/index.d.cts +14 -2
  26. package/dist/observe/index.d.ts +14 -2
  27. package/dist/observe/index.js +13 -1
  28. package/dist/observe/index.js.map +1 -1
  29. package/dist/organization/index.d.cts +1 -1
  30. package/dist/organization/index.d.ts +1 -1
  31. package/dist/playground/index.cjs +66 -0
  32. package/dist/playground/index.cjs.map +1 -0
  33. package/dist/playground/index.d.cts +52 -0
  34. package/dist/playground/index.d.ts +52 -0
  35. package/dist/playground/index.js +53 -0
  36. package/dist/playground/index.js.map +1 -0
  37. package/dist/realtime/index.d.cts +1 -1
  38. package/dist/realtime/index.d.ts +1 -1
  39. package/dist/support/index.d.cts +1 -1
  40. package/dist/support/index.d.ts +1 -1
  41. package/dist/tracking/index.d.cts +1 -1
  42. package/dist/tracking/index.d.ts +1 -1
  43. package/dist/users/index.d.cts +1 -1
  44. package/dist/users/index.d.ts +1 -1
  45. package/dist/waitlist/index.d.cts +1 -1
  46. package/dist/waitlist/index.d.ts +1 -1
  47. package/package.json +7 -2
  48. package/src/gen/bindings.gen.ts +153 -13
  49. package/src/gen/brain/index.ts +1 -1
  50. package/src/gen/brain/queryOptions.gen.ts +0 -7
  51. package/src/gen/client.gen.ts +61 -5
  52. package/src/gen/manifest.gen.ts +1 -1
  53. package/src/gen/observe/index.ts +1 -1
  54. package/src/gen/observe/queryOptions.gen.ts +21 -0
  55. package/src/gen/playground/index.ts +3 -0
  56. package/src/gen/playground/queryOptions.gen.ts +86 -0
  57. package/src/gen/types.gen.ts +482 -92
@@ -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
  }
@@ -13062,6 +12972,10 @@ interface ObserveIssuesArchiveOutput {
13062
12972
  * Where the error appears to come from, or null
13063
12973
  */
13064
12974
  culprit: (string | null);
12975
+ /**
12976
+ * Service the most recent event came from, or null if none was reported
12977
+ */
12978
+ service: (string | null);
13065
12979
  /**
13066
12980
  * Who owns the issue, or null if unassigned
13067
12981
  */
@@ -13094,6 +13008,14 @@ interface ObserveIssuesArchiveOutput {
13094
13008
  * Stable grouping hash the issue is keyed on
13095
13009
  */
13096
13010
  fingerprint: string;
13011
+ /**
13012
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13013
+ */
13014
+ lastEventId: (string | null);
13015
+ /**
13016
+ * Release the most recent event was reported from, or null if none was reported
13017
+ */
13018
+ lastRelease: (string | null);
13097
13019
  /**
13098
13020
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13099
13021
  */
@@ -13138,6 +13060,10 @@ interface ObserveIssuesAssignOutput {
13138
13060
  * Where the error appears to come from, or null
13139
13061
  */
13140
13062
  culprit: (string | null);
13063
+ /**
13064
+ * Service the most recent event came from, or null if none was reported
13065
+ */
13066
+ service: (string | null);
13141
13067
  /**
13142
13068
  * Who owns the issue, or null if unassigned
13143
13069
  */
@@ -13170,6 +13096,14 @@ interface ObserveIssuesAssignOutput {
13170
13096
  * Stable grouping hash the issue is keyed on
13171
13097
  */
13172
13098
  fingerprint: string;
13099
+ /**
13100
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13101
+ */
13102
+ lastEventId: (string | null);
13103
+ /**
13104
+ * Release the most recent event was reported from, or null if none was reported
13105
+ */
13106
+ lastRelease: (string | null);
13173
13107
  /**
13174
13108
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13175
13109
  */
@@ -13187,6 +13121,160 @@ interface ObserveIssuesAssignOutput {
13187
13121
  */
13188
13122
  groupingVersion: string;
13189
13123
  }
13124
+ interface ObserveIssuesEventInput {
13125
+ /**
13126
+ * Identifier of the issue
13127
+ */
13128
+ id: string;
13129
+ /**
13130
+ * Which event to read; omit to read the most recent one. Must be an event of this issue
13131
+ */
13132
+ eventId?: string;
13133
+ }
13134
+ interface ObserveIssuesEventOutput {
13135
+ /**
13136
+ * The event, or null when the issue has no event id or the event is no longer stored — events live 30 days and an issue outlives them. Neither case is an error
13137
+ */
13138
+ event: ({
13139
+ /**
13140
+ * Distribution of the release. Sentry-source events only
13141
+ */
13142
+ dist: (string | null);
13143
+ /**
13144
+ * Tags the emitter attached; empty when it attached none
13145
+ */
13146
+ tags: {
13147
+ [k: string]: string;
13148
+ };
13149
+ /**
13150
+ * Severity the emitter reported. Always null for an OTel event
13151
+ */
13152
+ level: (string | null);
13153
+ /**
13154
+ * Span the event belongs to, or null when untraced
13155
+ */
13156
+ spanId: (string | null);
13157
+ /**
13158
+ * Release the event was reported from. Always null for an OTel event — a span carries no release
13159
+ */
13160
+ release: (string | null);
13161
+ /**
13162
+ * SDK that reported the event. Always null for an OTel event: a span names its instrumentation scope, which is not the SDK
13163
+ */
13164
+ sdkName: (string | null);
13165
+ /**
13166
+ * Service the event came from, or null
13167
+ */
13168
+ service: (string | null);
13169
+ /**
13170
+ * Trace the event belongs to, or null when untraced
13171
+ */
13172
+ traceId: (string | null);
13173
+ /**
13174
+ * Full URL of the span, from url.full or the legacy http.url. Null when the span carries neither
13175
+ */
13176
+ urlFull: (string | null);
13177
+ /**
13178
+ * The event contexts exactly as stored, unparsed. Sentry-source events only, null for OTel
13179
+ */
13180
+ contexts: (string | null);
13181
+ /**
13182
+ * Platform the emitter reported. Always null for an OTel event
13183
+ */
13184
+ platform: (string | null);
13185
+ /**
13186
+ * Name of the span the exception happened in. OTel-source events only
13187
+ */
13188
+ spanName: (string | null);
13189
+ /**
13190
+ * Matched route template of the span, from http.route. Null when the span carries none
13191
+ */
13192
+ httpRoute: (string | null);
13193
+ /**
13194
+ * Attributes of that span. OTel-source events only, null for Sentry
13195
+ */
13196
+ attributes: ({
13197
+ [k: string]: string;
13198
+ } | null);
13199
+ /**
13200
+ * HTTP method of the span, from http.request.method or the legacy http.method. Null when the span carries neither
13201
+ */
13202
+ httpMethod: (string | null);
13203
+ /**
13204
+ * ISO 8601 timestamp of the event. For an OTel event this is the exception itself, not the start of the span it happened in
13205
+ */
13206
+ occurredAt: string;
13207
+ /**
13208
+ * Version of that SDK, or null
13209
+ */
13210
+ sdkVersion: (string | null);
13211
+ /**
13212
+ * The breadcrumb trail exactly as stored, unparsed. Sentry-source events only, null for OTel
13213
+ */
13214
+ breadcrumbs: (string | null);
13215
+ /**
13216
+ * Environment the event was reported in, or null
13217
+ */
13218
+ environment: (string | null);
13219
+ /**
13220
+ * Address the span was talking to, from server.address or the legacy net.peer.name. Null when the span carries neither
13221
+ */
13222
+ serverAddress: (string | null);
13223
+ /**
13224
+ * Response status of the span, from http.response.status_code or the legacy http.status_code. Null when the span carries neither or the value is not a number
13225
+ */
13226
+ httpStatusCode: (number | null);
13227
+ } | null);
13228
+ /**
13229
+ * Which store the event id addresses, derived from its shape. Null when there is no event id
13230
+ */
13231
+ source: (("sentry" | "otel") | null);
13232
+ /**
13233
+ * Identifier of the event that was read, or null when the issue has recorded no event id yet
13234
+ */
13235
+ eventId: (string | null);
13236
+ /**
13237
+ * Identifier of the issue the event belongs to
13238
+ */
13239
+ issueId: string;
13240
+ }
13241
+ interface ObserveIssuesEventsInput {
13242
+ /**
13243
+ * Identifier of the issue
13244
+ */
13245
+ id: string;
13246
+ /**
13247
+ * How many events to return, newest first. 1-100, default 50
13248
+ */
13249
+ limit?: number;
13250
+ /**
13251
+ * The nextCursor of the previous page; omit for the first page
13252
+ */
13253
+ cursor?: string;
13254
+ }
13255
+ interface ObserveIssuesEventsOutput {
13256
+ /**
13257
+ * The events, newest first
13258
+ */
13259
+ rows: {
13260
+ /**
13261
+ * Which store the event id addresses
13262
+ */
13263
+ source: ("sentry" | "otel");
13264
+ /**
13265
+ * Identifier of the event; pass it to observe_issues_event to open it
13266
+ */
13267
+ eventId: string;
13268
+ /**
13269
+ * ISO 8601 timestamp of the event
13270
+ */
13271
+ occurredAt: string;
13272
+ }[];
13273
+ /**
13274
+ * Pass back as cursor for the next page; null when the last page was reached
13275
+ */
13276
+ nextCursor: (string | null);
13277
+ }
13190
13278
  interface ObserveIssuesGetInput {
13191
13279
  /**
13192
13280
  * Identifier of the issue
@@ -13252,6 +13340,10 @@ interface ObserveIssuesGetOutput {
13252
13340
  * Where the error appears to come from, or null
13253
13341
  */
13254
13342
  culprit: (string | null);
13343
+ /**
13344
+ * Service the most recent event came from, or null if none was reported
13345
+ */
13346
+ service: (string | null);
13255
13347
  /**
13256
13348
  * Who owns the issue, or null if unassigned
13257
13349
  */
@@ -13284,6 +13376,14 @@ interface ObserveIssuesGetOutput {
13284
13376
  * Stable grouping hash the issue is keyed on
13285
13377
  */
13286
13378
  fingerprint: string;
13379
+ /**
13380
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13381
+ */
13382
+ lastEventId: (string | null);
13383
+ /**
13384
+ * Release the most recent event was reported from, or null if none was reported
13385
+ */
13386
+ lastRelease: (string | null);
13287
13387
  /**
13288
13388
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13289
13389
  */
@@ -13301,6 +13401,47 @@ interface ObserveIssuesGetOutput {
13301
13401
  */
13302
13402
  groupingVersion: string;
13303
13403
  }
13404
+ interface ObserveIssuesHistogramInput {
13405
+ /**
13406
+ * Identifier of the issue
13407
+ */
13408
+ id: string;
13409
+ /**
13410
+ * How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
13411
+ */
13412
+ window?: string;
13413
+ }
13414
+ interface ObserveIssuesHistogramOutput {
13415
+ /**
13416
+ * ISO 8601 end of the last bucket, exclusive
13417
+ */
13418
+ to: string;
13419
+ /**
13420
+ * ISO 8601 start of the first bucket
13421
+ */
13422
+ from: string;
13423
+ /**
13424
+ * The window that was counted, e.g. "24h"
13425
+ */
13426
+ window: string;
13427
+ /**
13428
+ * Every bucket of the window, oldest first. Quiet buckets are zeros, never gaps
13429
+ */
13430
+ buckets: {
13431
+ /**
13432
+ * How many events landed on the issue inside it; zero is a real answer
13433
+ */
13434
+ count: number;
13435
+ /**
13436
+ * ISO 8601 start of the bucket
13437
+ */
13438
+ bucket: string;
13439
+ }[];
13440
+ /**
13441
+ * Width of one bucket in seconds, derived from the window
13442
+ */
13443
+ bucketSeconds: number;
13444
+ }
13304
13445
  interface ObserveIssuesListInput {
13305
13446
  /**
13306
13447
  * How many issues to return, most recently seen first. 1-200, default 50
@@ -13332,6 +13473,10 @@ type ObserveIssuesListOutput = {
13332
13473
  * Where the error appears to come from, or null
13333
13474
  */
13334
13475
  culprit: (string | null);
13476
+ /**
13477
+ * Service the most recent event came from, or null if none was reported
13478
+ */
13479
+ service: (string | null);
13335
13480
  /**
13336
13481
  * Who owns the issue, or null if unassigned
13337
13482
  */
@@ -13364,6 +13509,14 @@ type ObserveIssuesListOutput = {
13364
13509
  * Stable grouping hash the issue is keyed on
13365
13510
  */
13366
13511
  fingerprint: string;
13512
+ /**
13513
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13514
+ */
13515
+ lastEventId: (string | null);
13516
+ /**
13517
+ * Release the most recent event was reported from, or null if none was reported
13518
+ */
13519
+ lastRelease: (string | null);
13367
13520
  /**
13368
13521
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13369
13522
  */
@@ -13404,6 +13557,10 @@ interface ObserveIssuesResolveOutput {
13404
13557
  * Where the error appears to come from, or null
13405
13558
  */
13406
13559
  culprit: (string | null);
13560
+ /**
13561
+ * Service the most recent event came from, or null if none was reported
13562
+ */
13563
+ service: (string | null);
13407
13564
  /**
13408
13565
  * Who owns the issue, or null if unassigned
13409
13566
  */
@@ -13436,6 +13593,14 @@ interface ObserveIssuesResolveOutput {
13436
13593
  * Stable grouping hash the issue is keyed on
13437
13594
  */
13438
13595
  fingerprint: string;
13596
+ /**
13597
+ * Identifier of the most recent event that landed on the issue, or null for issues rolled up before this was recorded
13598
+ */
13599
+ lastEventId: (string | null);
13600
+ /**
13601
+ * Release the most recent event was reported from, or null if none was reported
13602
+ */
13603
+ lastRelease: (string | null);
13439
13604
  /**
13440
13605
  * ISO 8601 timestamp of the last regression, or null if it never regressed
13441
13606
  */
@@ -15047,6 +15212,7 @@ interface OrganizationProductListAccessOutput {
15047
15212
  orgRoles: {
15048
15213
  id: string;
15049
15214
  name: string;
15215
+ description: (string | null);
15050
15216
  }[];
15051
15217
  canManage: boolean;
15052
15218
  inherited: {
@@ -15397,6 +15563,194 @@ interface OrganizationSupportThreadsListOutput {
15397
15563
  lastMessagePreview: (string | null);
15398
15564
  }[];
15399
15565
  }
15566
+ interface PlaygroundAnalyticsOverviewInput {
15567
+ /**
15568
+ * Max records per entity in recent[]; omit for the endpoint default
15569
+ */
15570
+ limit?: number;
15571
+ }
15572
+ interface PlaygroundAnalyticsOverviewOutput {
15573
+ ok: boolean;
15574
+ minted: boolean;
15575
+ overview?: unknown;
15576
+ http_status: number;
15577
+ }
15578
+ interface PlaygroundBillingEntitlementsInput {
15579
+ }
15580
+ interface PlaygroundBillingEntitlementsOutput {
15581
+ ok: boolean;
15582
+ minted: boolean;
15583
+ http_status: number;
15584
+ entitlements?: unknown;
15585
+ }
15586
+ interface PlaygroundBillingRecordUsageInput {
15587
+ /**
15588
+ * Quantity of events to record against playground-events (SUM); defaults to 1
15589
+ */
15590
+ value?: number;
15591
+ }
15592
+ interface PlaygroundBillingRecordUsageOutput {
15593
+ minted: boolean;
15594
+ accepted: (number | null);
15595
+ recorded: boolean;
15596
+ duplicates: (number | null);
15597
+ http_status: number;
15598
+ }
15599
+ interface PlaygroundClickupCreateTaskInput {
15600
+ /**
15601
+ * Task title; defaults to a fixture label
15602
+ */
15603
+ name?: string;
15604
+ /**
15605
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
15606
+ */
15607
+ listId?: string;
15608
+ }
15609
+ interface PlaygroundClickupCreateTaskOutput {
15610
+ minted: boolean;
15611
+ task_id: (string | null);
15612
+ list_status: number;
15613
+ vend_status: number;
15614
+ clickup_status: number;
15615
+ installation_count: number;
15616
+ }
15617
+ interface PlaygroundClickupGetLastWebhookInput {
15618
+ }
15619
+ type PlaygroundClickupGetLastWebhookOutput = ({
15620
+ payload: string;
15621
+ event_id: string;
15622
+ provider: string;
15623
+ verified: boolean;
15624
+ product_id: string;
15625
+ occurred_at: string;
15626
+ connector_id: string;
15627
+ clickup_event: (string | null);
15628
+ receipt_count: number;
15629
+ } | {
15630
+ found: false;
15631
+ });
15632
+ interface PlaygroundClickupGetOverviewInput {
15633
+ }
15634
+ interface PlaygroundClickupGetOverviewOutput {
15635
+ team: ({
15636
+ teamId: string;
15637
+ teamName: string;
15638
+ } | null);
15639
+ lists: PlaygroundClickupGetOverviewOutputItems[];
15640
+ tasks: {
15641
+ id: string;
15642
+ name: string;
15643
+ status: (string | null);
15644
+ }[];
15645
+ minted: boolean;
15646
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
15647
+ list_status: number;
15648
+ vend_status: number;
15649
+ lists_status: number;
15650
+ tasks_status: number;
15651
+ spaces_status: number;
15652
+ folders_status: number;
15653
+ installation_count: number;
15654
+ }
15655
+ interface PlaygroundClickupGetOverviewOutputItems {
15656
+ id: string;
15657
+ name: string;
15658
+ }
15659
+ interface PlaygroundGdriveGetLastChangeInput {
15660
+ }
15661
+ type PlaygroundGdriveGetLastChangeOutput = ({
15662
+ file_id: string;
15663
+ removed: boolean;
15664
+ file_name: (string | null);
15665
+ mime_type: (string | null);
15666
+ product_id: string;
15667
+ occurred_at: string;
15668
+ connector_id: string;
15669
+ resource_state: string;
15670
+ } | {
15671
+ found: false;
15672
+ });
15673
+ interface PlaygroundGdriveReadFileInput {
15674
+ /**
15675
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
15676
+ */
15677
+ fileId?: string;
15678
+ }
15679
+ interface PlaygroundGdriveReadFileOutput {
15680
+ minted: boolean;
15681
+ file_id: (string | null);
15682
+ file_name: (string | null);
15683
+ mime_type: (string | null);
15684
+ file_count: number;
15685
+ get_status: number;
15686
+ list_status: number;
15687
+ vend_status: number;
15688
+ content_bytes: (number | null);
15689
+ }
15690
+ interface PlaygroundGoogleadsReadCustomerInput {
15691
+ }
15692
+ interface PlaygroundGoogleadsReadCustomerOutput {
15693
+ minted: boolean;
15694
+ vended: boolean;
15695
+ customer_id: (string | null);
15696
+ vend_status: number;
15697
+ result_count: number;
15698
+ search_status: number;
15699
+ login_customer_id: (string | null);
15700
+ }
15701
+ interface PlaygroundLifecycleGetStateInput {
15702
+ }
15703
+ interface PlaygroundLifecycleGetStateOutput {
15704
+ blocked: boolean;
15705
+ archived: boolean;
15706
+ productId: string;
15707
+ lastBlockTransition: ({
15708
+ eventId: string;
15709
+ eventName: string;
15710
+ productId: string;
15711
+ occurredAt: string;
15712
+ recordedAt: string;
15713
+ receiptCount: number;
15714
+ organizationId: string;
15715
+ cascadedFromOrg: boolean;
15716
+ } | null);
15717
+ lastArchiveTransition: ({
15718
+ eventId: string;
15719
+ eventName: string;
15720
+ productId: string;
15721
+ occurredAt: string;
15722
+ recordedAt: string;
15723
+ receiptCount: number;
15724
+ organizationId: string;
15725
+ cascadedFromOrg: boolean;
15726
+ } | null);
15727
+ }
15728
+ interface PlaygroundLifecycleListEventsInput {
15729
+ }
15730
+ type PlaygroundLifecycleListEventsOutput = {
15731
+ eventId: string;
15732
+ eventName: string;
15733
+ productId: string;
15734
+ occurredAt: string;
15735
+ recordedAt: string;
15736
+ receiptCount: number;
15737
+ organizationId: string;
15738
+ cascadedFromOrg: boolean;
15739
+ }[];
15740
+ interface PlaygroundWebhookGetLastInput {
15741
+ }
15742
+ type PlaygroundWebhookGetLastOutput = ({
15743
+ payload?: unknown;
15744
+ event_id: string;
15745
+ provider: string;
15746
+ verified: boolean;
15747
+ product_id: string;
15748
+ occurred_at: string;
15749
+ connector_id: string;
15750
+ delivery_count: number;
15751
+ } | {
15752
+ found: false;
15753
+ });
15400
15754
  interface RealtimeArchiveExportInput {
15401
15755
  /**
15402
15756
  * Only entries with ts <= to_ts (epoch ms)
@@ -41442,9 +41796,6 @@ interface GeneratedClient {
41442
41796
  restore: {
41443
41797
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
41444
41798
  };
41445
- usage: {
41446
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
41447
- };
41448
41799
  };
41449
41800
  consent: {
41450
41801
  'config-cookie-domain': {
@@ -41774,7 +42125,10 @@ interface GeneratedClient {
41774
42125
  issues: {
41775
42126
  archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
41776
42127
  assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
42128
+ event(input: ObserveIssuesEventInput): Promise<ObserveIssuesEventOutput>;
42129
+ events(input: ObserveIssuesEventsInput): Promise<ObserveIssuesEventsOutput>;
41777
42130
  get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
42131
+ histogram(input: ObserveIssuesHistogramInput): Promise<ObserveIssuesHistogramOutput>;
41778
42132
  list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
41779
42133
  resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
41780
42134
  };
@@ -41930,6 +42284,34 @@ interface GeneratedClient {
41930
42284
  list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
41931
42285
  };
41932
42286
  };
42287
+ playground: {
42288
+ analytics: {
42289
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
42290
+ };
42291
+ billing: {
42292
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
42293
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
42294
+ };
42295
+ clickup: {
42296
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
42297
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
42298
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
42299
+ };
42300
+ gdrive: {
42301
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
42302
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
42303
+ };
42304
+ googleads: {
42305
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
42306
+ };
42307
+ lifecycle: {
42308
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
42309
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
42310
+ };
42311
+ webhook: {
42312
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
42313
+ };
42314
+ };
41933
42315
  realtime: {
41934
42316
  archive: {
41935
42317
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
@@ -42233,4 +42615,4 @@ interface GeneratedClient {
42233
42615
  };
42234
42616
  }
42235
42617
 
42236
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsEventsListOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, ObserveAlertsCreateInput as fW, ObserveAlertsCreateOutput as fX, ObserveAlertsDeleteInput as fY, ObserveAlertsDeleteOutput as fZ, ObserveAlertsEventsListInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationBillingBudgetsSetOutput as g$, ObserveAlertsGetInput as g0, ObserveAlertsGetOutput as g1, ObserveAlertsListInput as g2, ObserveAlertsListOutput as g3, ObserveAlertsUpdateInput as g4, ObserveAlertsUpdateOutput as g5, ObserveArtifactsDeleteInput as g6, ObserveArtifactsDeleteOutput as g7, ObserveArtifactsListInput as g8, ObserveArtifactsListOutput as g9, ObserveMetricsQueryInput as gA, ObserveMetricsQueryOutput as gB, ObserveTracesGetInput as gC, ObserveTracesGetOutput as gD, ObserveTracesSearchInput as gE, ObserveTracesSearchOutput as gF, ObserveWebhooksCreateInput as gG, ObserveWebhooksCreateOutput as gH, ObserveWebhooksDeleteInput as gI, ObserveWebhooksDeleteOutput as gJ, ObserveWebhooksDeliveriesListInput as gK, ObserveWebhooksDeliveriesListOutput as gL, ObserveWebhooksGetInput as gM, ObserveWebhooksGetOutput as gN, ObserveWebhooksListInput as gO, ObserveWebhooksListOutput as gP, ObserveWebhooksRedeliverInput as gQ, ObserveWebhooksRedeliverOutput as gR, ObserveWebhooksRotateSecretInput as gS, ObserveWebhooksRotateSecretOutput as gT, ObserveWebhooksUpdateInput as gU, ObserveWebhooksUpdateOutput as gV, OrganizationAuthMeInput as gW, OrganizationAuthMeOutput as gX, OrganizationBillingBudgetsGetInput as gY, OrganizationBillingBudgetsGetOutput as gZ, OrganizationBillingBudgetsSetInput as g_, ObserveArtifactsResolveInput as ga, ObserveArtifactsResolveOutput as gb, ObserveIssuesArchiveInput as gc, ObserveIssuesArchiveOutput as gd, ObserveIssuesAssignInput as ge, ObserveIssuesAssignOutput as gf, ObserveIssuesGetInput as gg, ObserveIssuesGetOutput as gh, ObserveIssuesListInput as gi, ObserveIssuesListOutput as gj, ObserveIssuesResolveInput as gk, ObserveIssuesResolveOutput as gl, ObserveKeysCreateInput as gm, ObserveKeysCreateOutput as gn, ObserveKeysListInput as go, ObserveKeysListOutput as gp, ObserveKeysRevokeInput as gq, ObserveKeysRevokeOutput as gr, ObserveLogsFacetsInput as gs, ObserveLogsFacetsOutput as gt, ObserveLogsSearchInput as gu, ObserveLogsSearchOutput as gv, ObserveLogsTailInput as gw, ObserveLogsTailOutput as gx, ObserveMetricsListInput as gy, ObserveMetricsListOutput as gz, BrainBackupsListOutput as h, OrganizationMemberAcceptInviteOutput as h$, OrganizationBillingCapsClearInput as h0, OrganizationBillingCapsClearOutput as h1, OrganizationBillingCapsSetInput as h2, OrganizationBillingCapsSetOutput as h3, OrganizationBindingsListInput as h4, OrganizationBindingsListOutput as h5, OrganizationClickupInstallInput as h6, OrganizationClickupInstallOutput as h7, OrganizationClickupListInstallationsInput as h8, OrganizationClickupListInstallationsOutput as h9, OrganizationCreateInput as hA, OrganizationCreateOutput as hB, OrganizationDomainsAddInput as hC, OrganizationDomainsAddOutput as hD, OrganizationDomainsGetInput as hE, OrganizationDomainsGetOutput as hF, OrganizationDomainsListInput as hG, OrganizationDomainsListOutput as hH, OrganizationDomainsRemoveInput as hI, OrganizationDomainsRemoveOutput as hJ, OrganizationDomainsSetModeInput as hK, OrganizationDomainsSetModeOutput as hL, OrganizationExtensionsListInstalledInput as hM, OrganizationExtensionsListInstalledOutput as hN, OrganizationFeedbackSubmitInput as hO, OrganizationFeedbackSubmitOutput as hP, OrganizationGdriveInstallInput as hQ, OrganizationGdriveInstallOutput as hR, OrganizationGithubInstallInput as hS, OrganizationGithubInstallOutput as hT, OrganizationGithubListInstallationsInput as hU, OrganizationGithubListInstallationsOutput as hV, OrganizationGoogleadsInstallInput as hW, OrganizationGoogleadsInstallOutput as hX, OrganizationListInput as hY, OrganizationListOutput as hZ, OrganizationMemberAcceptInviteInput as h_, OrganizationCloudflareInstallInput as ha, OrganizationCloudflareInstallOutput as hb, OrganizationConnectorsApproveRequestInput as hc, OrganizationConnectorsApproveRequestOutput as hd, OrganizationConnectorsAttachInput as he, OrganizationConnectorsAttachOutput as hf, OrganizationConnectorsDeleteInput as hg, OrganizationConnectorsDeleteOutput as hh, OrganizationConnectorsDenyRequestInput as hi, OrganizationConnectorsDenyRequestOutput as hj, OrganizationConnectorsDetachInput as hk, OrganizationConnectorsDetachOutput as hl, OrganizationConnectorsListAttachmentsInput as hm, OrganizationConnectorsListAttachmentsOutput as hn, OrganizationConnectorsListAvailableInput as ho, OrganizationConnectorsListAvailableOutput as hp, OrganizationConnectorsListOrgInput as hq, OrganizationConnectorsListOrgOutput as hr, OrganizationConnectorsListInput as hs, OrganizationConnectorsListOutput as ht, OrganizationConnectorsListRequestsInput as hu, OrganizationConnectorsListRequestsOutput as hv, OrganizationConnectorsRemoveInput as hw, OrganizationConnectorsRemoveOutput as hx, OrganizationConnectorsRequestInput as hy, OrganizationConnectorsRequestOutput as hz, BrainClickupChannelsListInput as i, OrganizationSecurityMfaEnableOutput as i$, OrganizationMemberInviteInput as i0, OrganizationMemberInviteOutput as i1, OrganizationMemberListInvitationsInput as i2, OrganizationMemberListInvitationsOutput as i3, OrganizationMemberListProductAccessInput as i4, OrganizationMemberListProductAccessOutput as i5, OrganizationMemberListInput as i6, OrganizationMemberListOutput as i7, OrganizationMemberRemoveInput as i8, OrganizationMemberRemoveOutput as i9, OrganizationProductSelectInput as iA, OrganizationProductSelectOutput as iB, OrganizationProductSetAccessInput as iC, OrganizationProductSetAccessOutput as iD, OrganizationProductUpdateInput as iE, OrganizationProductUpdateOutput as iF, OrganizationPublicKeysCreateInput as iG, OrganizationPublicKeysCreateOutput as iH, OrganizationPublicKeysListInput as iI, OrganizationPublicKeysListOutput as iJ, OrganizationPublicKeysRevokeInput as iK, OrganizationPublicKeysRevokeOutput as iL, OrganizationPublicKeysUpdateScopeInput as iM, OrganizationPublicKeysUpdateScopeOutput as iN, OrganizationPublicRoutesListInput as iO, OrganizationPublicRoutesListOutput as iP, OrganizationRolesCreateInput as iQ, OrganizationRolesCreateOutput as iR, OrganizationRolesDeleteInput as iS, OrganizationRolesDeleteOutput as iT, OrganizationRolesGetInput as iU, OrganizationRolesGetOutput as iV, OrganizationRolesListInput as iW, OrganizationRolesListOutput as iX, OrganizationRolesUpdateInput as iY, OrganizationRolesUpdateOutput as iZ, OrganizationSecurityMfaEnableInput as i_, OrganizationMemberRevokeInvitationInput as ia, OrganizationMemberRevokeInvitationOutput as ib, OrganizationMemberSetRoleInput as ic, OrganizationMemberSetRoleOutput as id, OrganizationMemberShareProductInput as ie, OrganizationMemberShareProductOutput as ig, OrganizationMemberUnshareProductInput as ih, OrganizationMemberUnshareProductOutput as ii, OrganizationMembersAssignRoleInput as ij, OrganizationMembersAssignRoleOutput as ik, OrganizationPermissionCatalogInput as il, OrganizationPermissionCatalogOutput as im, OrganizationProductCreateInput as io, OrganizationProductCreateOutput as ip, OrganizationProductListAccessInput as iq, OrganizationProductListAccessOutput as ir, OrganizationProductListMembersInput as is, OrganizationProductListMembersOutput as it, OrganizationProductListInput as iu, OrganizationProductListOutput as iv, OrganizationProductListRolesInput as iw, OrganizationProductListRolesOutput as ix, OrganizationProductRevokeAccessInput as iy, OrganizationProductRevokeAccessOutput as iz, BrainClickupChannelsListOutput as j, RealtimeWebhookSecretRotateOutput as j$, OrganizationSelectInput as j0, OrganizationSelectOutput as j1, OrganizationSupportThreadCreateInput as j2, OrganizationSupportThreadCreateOutput as j3, OrganizationSupportThreadGetInput as j4, OrganizationSupportThreadGetOutput as j5, OrganizationSupportThreadReplyInput as j6, OrganizationSupportThreadReplyOutput as j7, OrganizationSupportThreadsListInput as j8, OrganizationSupportThreadsListOutput as j9, RealtimePresenceEnterInput as jA, RealtimePresenceEnterOutput as jB, RealtimePresenceGetInput as jC, RealtimePresenceGetOutput as jD, RealtimePresenceLeaveInput as jE, RealtimePresenceLeaveOutput as jF, RealtimePresenceStatsInput as jG, RealtimePresenceStatsOutput as jH, RealtimePresenceUpdateInput as jI, RealtimePresenceUpdateOutput as jJ, RealtimePublicAccessStatusInput as jK, RealtimePublicAccessStatusOutput as jL, RealtimeStatusGetInput as jM, RealtimeStatusGetOutput as jN, RealtimeTokensCreateInput as jO, RealtimeTokensCreateOutput as jP, RealtimeWebhookCreateInput as jQ, RealtimeWebhookCreateOutput as jR, RealtimeWebhookDeleteInput as jS, RealtimeWebhookDeleteOutput as jT, RealtimeWebhookDeliveriesListInput as jU, RealtimeWebhookDeliveriesListOutput as jV, RealtimeWebhookGetInput as jW, RealtimeWebhookGetOutput as jX, RealtimeWebhookListInput as jY, RealtimeWebhookListOutput as jZ, RealtimeWebhookSecretRotateInput as j_, RealtimeArchiveExportInput as ja, RealtimeArchiveExportOutput as jb, RealtimeArchiveExportStatusInput as jc, RealtimeArchiveExportStatusOutput as jd, RealtimeArchiveGetInput as je, RealtimeArchiveGetOutput as jf, RealtimeGrantCreateInput as jg, RealtimeGrantCreateOutput as jh, RealtimeGrantListInput as ji, RealtimeGrantListOutput as jj, RealtimeGrantRevokeInput as jk, RealtimeGrantRevokeOutput as jl, RealtimeHistoryGetInput as jm, RealtimeHistoryGetOutput as jn, RealtimeMessagesPublishInput as jo, RealtimeMessagesPublishOutput as jp, RealtimeNamespaceCreateInput as jq, RealtimeNamespaceCreateOutput as jr, RealtimeNamespaceDeleteInput as js, RealtimeNamespaceDeleteOutput as jt, RealtimeNamespaceGetInput as ju, RealtimeNamespaceGetOutput as jv, RealtimeNamespaceListInput as jw, RealtimeNamespaceListOutput as jx, RealtimeNamespaceUpdateInput as jy, RealtimeNamespaceUpdateOutput as jz, BrainClickupConnectionsListInput as k, SupportThreadAssignOutput as k$, RealtimeWebhookUpdateInput as k0, RealtimeWebhookUpdateOutput as k1, SupportAgentCreateInput as k2, SupportAgentCreateOutput as k3, SupportAgentGetInput as k4, SupportAgentGetOutput as k5, SupportAgentListInput as k6, SupportAgentListOutput as k7, SupportAgentUpdateInput as k8, SupportAgentUpdateOutput as k9, SupportRuleUpdateInput as kA, SupportRuleUpdateOutput as kB, SupportStatusArchiveInput as kC, SupportStatusArchiveOutput as kD, SupportStatusCreateInput as kE, SupportStatusCreateOutput as kF, SupportStatusListInput as kG, SupportStatusListOutput as kH, SupportStatusUpdateInput as kI, SupportStatusUpdateOutput as kJ, SupportSurveyArchiveInput as kK, SupportSurveyArchiveOutput as kL, SupportSurveyCreateInput as kM, SupportSurveyCreateOutput as kN, SupportSurveyGetInput as kO, SupportSurveyGetOutput as kP, SupportSurveyListInput as kQ, SupportSurveyListOutput as kR, SupportSurveyPublishInput as kS, SupportSurveyPublishOutput as kT, SupportSurveyStatsInput as kU, SupportSurveyStatsOutput as kV, SupportSurveyUnpublishInput as kW, SupportSurveyUnpublishOutput as kX, SupportSurveyUpdateInput as kY, SupportSurveyUpdateOutput as kZ, SupportThreadAssignInput as k_, SupportAttachmentCreateInput as ka, SupportAttachmentCreateOutput as kb, SupportAttachmentFinalizeInput as kc, SupportAttachmentFinalizeOutput as kd, SupportLabelCreateInput as ke, SupportLabelCreateOutput as kf, SupportLabelListInput as kg, SupportLabelListOutput as kh, SupportMessageCreateInput as ki, SupportMessageCreateOutput as kj, SupportMessageListInput as kk, SupportMessageListOutput as kl, SupportResponseEscalateInput as km, SupportResponseEscalateOutput as kn, SupportResponseGetInput as ko, SupportResponseGetOutput as kp, SupportResponseListInput as kq, SupportResponseListOutput as kr, SupportRuleCreateInput as ks, SupportRuleCreateOutput as kt, SupportRuleDeleteInput as ku, SupportRuleDeleteOutput as kv, SupportRuleGetInput as kw, SupportRuleGetOutput as kx, SupportRuleListInput as ky, SupportRuleListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsUsVsPlatformOutput as l$, SupportThreadCreateInput as l0, SupportThreadCreateOutput as l1, SupportThreadGetInput as l2, SupportThreadGetOutput as l3, SupportThreadListInput as l4, SupportThreadListOutput as l5, SupportThreadStatusSetInput as l6, SupportThreadStatusSetOutput as l7, SupportThreadUpdateInput as l8, SupportThreadUpdateOutput as l9, TrackingEventNamesArchiveInput as lA, TrackingEventNamesArchiveOutput as lB, TrackingEventNamesListInput as lC, TrackingEventNamesListOutput as lD, TrackingEventNamesUnarchiveInput as lE, TrackingEventNamesUnarchiveOutput as lF, TrackingGoogleadsConnectionStatusInput as lG, TrackingGoogleadsConnectionStatusOutput as lH, TrackingGoogleadsConversionActionsInput as lI, TrackingGoogleadsConversionActionsOutput as lJ, TrackingGoogleadsFeedbackConfigGetInput as lK, TrackingGoogleadsFeedbackConfigGetOutput as lL, TrackingGoogleadsFeedbackConfigSetInput as lM, TrackingGoogleadsFeedbackConfigSetOutput as lN, TrackingGoogleadsFeedbackRunInput as lO, TrackingGoogleadsFeedbackRunOutput as lP, TrackingGoogleadsFeedbackStatusInput as lQ, TrackingGoogleadsFeedbackStatusOutput as lR, TrackingGoogleadsFeedbackUploadsInput as lS, TrackingGoogleadsFeedbackUploadsOutput as lT, TrackingGoogleadsRoasReportInput as lU, TrackingGoogleadsRoasReportOutput as lV, TrackingGoogleadsSyncNowInput as lW, TrackingGoogleadsSyncNowOutput as lX, TrackingGoogleadsTrackingHealthInput as lY, TrackingGoogleadsTrackingHealthOutput as lZ, TrackingGoogleadsUsVsPlatformInput as l_, SupportWebhookCreateInput as la, SupportWebhookCreateOutput as lb, SupportWebhookDeleteInput as lc, SupportWebhookDeleteOutput as ld, SupportWebhookDeliveriesListInput as le, SupportWebhookDeliveriesListOutput as lf, SupportWebhookGetInput as lg, SupportWebhookGetOutput as lh, SupportWebhookListInput as li, SupportWebhookListOutput as lj, SupportWebhookRedeliverInput as lk, SupportWebhookRedeliverOutput as ll, SupportWebhookRotateSecretInput as lm, SupportWebhookRotateSecretOutput as ln, SupportWebhookUpdateInput as lo, SupportWebhookUpdateOutput as lp, TrackingDomainsCreateInput as lq, TrackingDomainsCreateOutput as lr, TrackingDomainsDeleteInput as ls, TrackingDomainsDeleteOutput as lt, TrackingDomainsGetInput as lu, TrackingDomainsGetOutput as lv, TrackingDomainsListInput as lw, TrackingDomainsListOutput as lx, TrackingDomainsVerifyInput as ly, TrackingDomainsVerifyOutput as lz, BrainClickupListsListInput as m, UsersPasskeysRevokeOutput as m$, TrackingIdentityHealthInput as m0, TrackingIdentityHealthOutput as m1, TrackingInstallDomainsCreateInput as m2, TrackingInstallDomainsCreateOutput as m3, TrackingInstallDomainsDeleteInput as m4, TrackingInstallDomainsDeleteOutput as m5, TrackingInstallDomainsListInput as m6, TrackingInstallDomainsListOutput as m7, TrackingLinkDomainsCreateInput as m8, TrackingLinkDomainsCreateOutput as m9, UsersApikeysListInput as mA, UsersApikeysListOutput as mB, UsersApikeysRevokeInput as mC, UsersApikeysRevokeOutput as mD, UsersAuditListInput as mE, UsersAuditListOutput as mF, UsersConfigGetInput as mG, UsersConfigGetOutput as mH, UsersConfigUpsertInput as mI, UsersConfigUpsertOutput as mJ, UsersFactorsListInput as mK, UsersFactorsListOutput as mL, UsersFactorsResetInput as mM, UsersFactorsResetOutput as mN, UsersKeysListInput as mO, UsersKeysListOutput as mP, UsersKeysRevokeInput as mQ, UsersKeysRevokeOutput as mR, UsersKeysRotateInput as mS, UsersKeysRotateOutput as mT, UsersOpsRetentionGetInput as mU, UsersOpsRetentionGetOutput as mV, UsersOpsSloGetInput as mW, UsersOpsSloGetOutput as mX, UsersPasskeysListInput as mY, UsersPasskeysListOutput as mZ, UsersPasskeysRevokeInput as m_, TrackingLinkDomainsDeleteInput as ma, TrackingLinkDomainsDeleteOutput as mb, TrackingLinkDomainsListInput as mc, TrackingLinkDomainsListOutput as md, TrackingLiveEventsListInput as me, TrackingLiveEventsListOutput as mf, TrackingProfilesDeleteInput as mg, TrackingProfilesDeleteOutput as mh, TrackingProfilesExportInput as mi, TrackingProfilesExportOutput as mj, TrackingProfilesGetInput as mk, TrackingProfilesGetOutput as ml, TrackingProfilesListInput as mm, TrackingProfilesListOutput as mn, TrackingReportsAttributedJourneyInput as mo, TrackingReportsAttributedJourneyOutput as mp, TrackingReportsEventVolumeInput as mq, TrackingReportsEventVolumeOutput as mr, TrackingReportsRevenueBySourceInput as ms, TrackingReportsRevenueBySourceOutput as mt, TrackingReportsSourcePeopleInput as mu, TrackingReportsSourcePeopleOutput as mv, TrackingSnippetsGetInput as mw, TrackingSnippetsGetOutput as mx, UsersApikeysCreateInput as my, UsersApikeysCreateOutput as mz, BrainClickupListsListOutput as n, WaitlistEmbedGetOutput as n$, UsersSessionsGetInput as n0, UsersSessionsGetOutput as n1, UsersSessionsImpersonateInput as n2, UsersSessionsImpersonateOutput as n3, UsersSessionsListInput as n4, UsersSessionsListOutput as n5, UsersSessionsRevokeInput as n6, UsersSessionsRevokeOutput as n7, UsersStatsGetInput as n8, UsersStatsGetOutput as n9, UsersWaitlistFunnelInput as nA, UsersWaitlistFunnelOutput as nB, UsersWaitlistImportInput as nC, UsersWaitlistImportOutput as nD, UsersWaitlistInviteInput as nE, UsersWaitlistInviteOutput as nF, UsersWaitlistListInput as nG, UsersWaitlistListOutput as nH, UsersWebhooksCreateInput as nI, UsersWebhooksCreateOutput as nJ, UsersWebhooksDeleteInput as nK, UsersWebhooksDeleteOutput as nL, UsersWebhooksDeliveriesListInput as nM, UsersWebhooksDeliveriesListOutput as nN, UsersWebhooksGetInput as nO, UsersWebhooksGetOutput as nP, UsersWebhooksListInput as nQ, UsersWebhooksListOutput as nR, UsersWebhooksRotateSecretInput as nS, UsersWebhooksRotateSecretOutput as nT, UsersWebhooksUpdateInput as nU, UsersWebhooksUpdateOutput as nV, WaitlistConfigGetInput as nW, WaitlistConfigGetOutput as nX, WaitlistConfigUpsertInput as nY, WaitlistConfigUpsertOutput as nZ, WaitlistEmbedGetInput as n_, UsersUsersBanInput as na, UsersUsersBanOutput as nb, UsersUsersCreateInput as nc, UsersUsersCreateOutput as nd, UsersUsersDeleteInput as ne, UsersUsersDeleteOutput as nf, UsersUsersEraseInput as ng, UsersUsersEraseOutput as nh, UsersUsersExportInput as ni, UsersUsersExportOutput as nj, UsersUsersGetInput as nk, UsersUsersGetOutput as nl, UsersUsersImportInput as nm, UsersUsersImportOutput as nn, UsersUsersInviteInput as no, UsersUsersInviteOutput as np, UsersUsersListInput as nq, UsersUsersListOutput as nr, UsersUsersSetPrimaryIdentifierInput as ns, UsersUsersSetPrimaryIdentifierOutput as nt, UsersUsersUnbanInput as nu, UsersUsersUnbanOutput as nv, UsersUsersUpdateInput as nw, UsersUsersUpdateOutput as nx, UsersWaitlistEraseInput as ny, UsersWaitlistEraseOutput as nz, BrainClickupSpacesListInput as o, WaitlistInvitesSendInput as o0, WaitlistInvitesSendOutput as o1, WaitlistSignupsEraseInput as o2, WaitlistSignupsEraseOutput as o3, WaitlistSignupsFunnelInput as o4, WaitlistSignupsFunnelOutput as o5, WaitlistSignupsListInput as o6, WaitlistSignupsListOutput as o7, 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 };
42618
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveAlertsGetOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationAuthMeOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveLogsTailInput as gA, ObserveLogsTailOutput as gB, ObserveMetricsListInput as gC, ObserveMetricsListOutput as gD, ObserveMetricsQueryInput as gE, ObserveMetricsQueryOutput as gF, ObserveTracesGetInput as gG, ObserveTracesGetOutput as gH, ObserveTracesSearchInput as gI, ObserveTracesSearchOutput as gJ, ObserveWebhooksCreateInput as gK, ObserveWebhooksCreateOutput as gL, ObserveWebhooksDeleteInput as gM, ObserveWebhooksDeleteOutput as gN, ObserveWebhooksDeliveriesListInput as gO, ObserveWebhooksDeliveriesListOutput as gP, ObserveWebhooksGetInput as gQ, ObserveWebhooksGetOutput as gR, ObserveWebhooksListInput as gS, ObserveWebhooksListOutput as gT, ObserveWebhooksRedeliverInput as gU, ObserveWebhooksRedeliverOutput as gV, ObserveWebhooksRotateSecretInput as gW, ObserveWebhooksRotateSecretOutput as gX, ObserveWebhooksUpdateInput as gY, ObserveWebhooksUpdateOutput as gZ, OrganizationAuthMeInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesEventInput as ge, ObserveIssuesEventOutput as gf, ObserveIssuesEventsInput as gg, ObserveIssuesEventsOutput as gh, ObserveIssuesGetInput as gi, ObserveIssuesGetOutput as gj, ObserveIssuesHistogramInput as gk, ObserveIssuesHistogramOutput as gl, ObserveIssuesListInput as gm, ObserveIssuesListOutput as gn, ObserveIssuesResolveInput as go, ObserveIssuesResolveOutput as gp, ObserveKeysCreateInput as gq, ObserveKeysCreateOutput as gr, ObserveKeysListInput as gs, ObserveKeysListOutput as gt, ObserveKeysRevokeInput as gu, ObserveKeysRevokeOutput as gv, ObserveLogsFacetsInput as gw, ObserveLogsFacetsOutput as gx, ObserveLogsSearchInput as gy, ObserveLogsSearchOutput as gz, BrainBackupsListOutput as h, OrganizationGoogleadsInstallOutput as h$, OrganizationBillingBudgetsGetInput as h0, OrganizationBillingBudgetsGetOutput as h1, OrganizationBillingBudgetsSetInput as h2, OrganizationBillingBudgetsSetOutput as h3, OrganizationBillingCapsClearInput as h4, OrganizationBillingCapsClearOutput as h5, OrganizationBillingCapsSetInput as h6, OrganizationBillingCapsSetOutput as h7, OrganizationBindingsListInput as h8, OrganizationBindingsListOutput as h9, OrganizationConnectorsRemoveInput as hA, OrganizationConnectorsRemoveOutput as hB, OrganizationConnectorsRequestInput as hC, OrganizationConnectorsRequestOutput as hD, OrganizationCreateInput as hE, OrganizationCreateOutput as hF, OrganizationDomainsAddInput as hG, OrganizationDomainsAddOutput as hH, OrganizationDomainsGetInput as hI, OrganizationDomainsGetOutput as hJ, OrganizationDomainsListInput as hK, OrganizationDomainsListOutput as hL, OrganizationDomainsRemoveInput as hM, OrganizationDomainsRemoveOutput as hN, OrganizationDomainsSetModeInput as hO, OrganizationDomainsSetModeOutput as hP, OrganizationExtensionsListInstalledInput as hQ, OrganizationExtensionsListInstalledOutput as hR, OrganizationFeedbackSubmitInput as hS, OrganizationFeedbackSubmitOutput as hT, OrganizationGdriveInstallInput as hU, OrganizationGdriveInstallOutput as hV, OrganizationGithubInstallInput as hW, OrganizationGithubInstallOutput as hX, OrganizationGithubListInstallationsInput as hY, OrganizationGithubListInstallationsOutput as hZ, OrganizationGoogleadsInstallInput as h_, OrganizationClickupInstallInput as ha, OrganizationClickupInstallOutput as hb, OrganizationClickupListInstallationsInput as hc, OrganizationClickupListInstallationsOutput as hd, OrganizationCloudflareInstallInput as he, OrganizationCloudflareInstallOutput as hf, OrganizationConnectorsApproveRequestInput as hg, OrganizationConnectorsApproveRequestOutput as hh, OrganizationConnectorsAttachInput as hi, OrganizationConnectorsAttachOutput as hj, OrganizationConnectorsDeleteInput as hk, OrganizationConnectorsDeleteOutput as hl, OrganizationConnectorsDenyRequestInput as hm, OrganizationConnectorsDenyRequestOutput as hn, OrganizationConnectorsDetachInput as ho, OrganizationConnectorsDetachOutput as hp, OrganizationConnectorsListAttachmentsInput as hq, OrganizationConnectorsListAttachmentsOutput as hr, OrganizationConnectorsListAvailableInput as hs, OrganizationConnectorsListAvailableOutput as ht, OrganizationConnectorsListOrgInput as hu, OrganizationConnectorsListOrgOutput as hv, OrganizationConnectorsListInput as hw, OrganizationConnectorsListOutput as hx, OrganizationConnectorsListRequestsInput as hy, OrganizationConnectorsListRequestsOutput as hz, BrainClickupChannelsListInput as i, OrganizationRolesListOutput as i$, OrganizationListInput as i0, OrganizationListOutput as i1, OrganizationMemberAcceptInviteInput as i2, OrganizationMemberAcceptInviteOutput as i3, OrganizationMemberInviteInput as i4, OrganizationMemberInviteOutput as i5, OrganizationMemberListInvitationsInput as i6, OrganizationMemberListInvitationsOutput as i7, OrganizationMemberListProductAccessInput as i8, OrganizationMemberListProductAccessOutput as i9, OrganizationProductListRolesInput as iA, OrganizationProductListRolesOutput as iB, OrganizationProductRevokeAccessInput as iC, OrganizationProductRevokeAccessOutput as iD, OrganizationProductSelectInput as iE, OrganizationProductSelectOutput as iF, OrganizationProductSetAccessInput as iG, OrganizationProductSetAccessOutput as iH, OrganizationProductUpdateInput as iI, OrganizationProductUpdateOutput as iJ, OrganizationPublicKeysCreateInput as iK, OrganizationPublicKeysCreateOutput as iL, OrganizationPublicKeysListInput as iM, OrganizationPublicKeysListOutput as iN, OrganizationPublicKeysRevokeInput as iO, OrganizationPublicKeysRevokeOutput as iP, OrganizationPublicKeysUpdateScopeInput as iQ, OrganizationPublicKeysUpdateScopeOutput as iR, OrganizationPublicRoutesListInput as iS, OrganizationPublicRoutesListOutput as iT, OrganizationRolesCreateInput as iU, OrganizationRolesCreateOutput as iV, OrganizationRolesDeleteInput as iW, OrganizationRolesDeleteOutput as iX, OrganizationRolesGetInput as iY, OrganizationRolesGetOutput as iZ, OrganizationRolesListInput as i_, OrganizationMemberListInput as ia, OrganizationMemberListOutput as ib, OrganizationMemberRemoveInput as ic, OrganizationMemberRemoveOutput as id, OrganizationMemberRevokeInvitationInput as ie, OrganizationMemberRevokeInvitationOutput as ig, OrganizationMemberSetRoleInput as ih, OrganizationMemberSetRoleOutput as ii, OrganizationMemberShareProductInput as ij, OrganizationMemberShareProductOutput as ik, OrganizationMemberUnshareProductInput as il, OrganizationMemberUnshareProductOutput as im, OrganizationMembersAssignRoleInput as io, OrganizationMembersAssignRoleOutput as ip, OrganizationPermissionCatalogInput as iq, OrganizationPermissionCatalogOutput as ir, OrganizationProductCreateInput as is, OrganizationProductCreateOutput as it, OrganizationProductListAccessInput as iu, OrganizationProductListAccessOutput as iv, OrganizationProductListMembersInput as iw, OrganizationProductListMembersOutput as ix, OrganizationProductListInput as iy, OrganizationProductListOutput as iz, BrainClickupChannelsListOutput as j, RealtimeNamespaceUpdateOutput as j$, OrganizationRolesUpdateInput as j0, OrganizationRolesUpdateOutput as j1, OrganizationSecurityMfaEnableInput as j2, OrganizationSecurityMfaEnableOutput as j3, OrganizationSelectInput as j4, OrganizationSelectOutput as j5, OrganizationSupportThreadCreateInput as j6, OrganizationSupportThreadCreateOutput as j7, OrganizationSupportThreadGetInput as j8, OrganizationSupportThreadGetOutput as j9, PlaygroundWebhookGetLastInput as jA, PlaygroundWebhookGetLastOutput as jB, RealtimeArchiveExportInput as jC, RealtimeArchiveExportOutput as jD, RealtimeArchiveExportStatusInput as jE, RealtimeArchiveExportStatusOutput as jF, RealtimeArchiveGetInput as jG, RealtimeArchiveGetOutput as jH, RealtimeGrantCreateInput as jI, RealtimeGrantCreateOutput as jJ, RealtimeGrantListInput as jK, RealtimeGrantListOutput as jL, RealtimeGrantRevokeInput as jM, RealtimeGrantRevokeOutput as jN, RealtimeHistoryGetInput as jO, RealtimeHistoryGetOutput as jP, RealtimeMessagesPublishInput as jQ, RealtimeMessagesPublishOutput as jR, RealtimeNamespaceCreateInput as jS, RealtimeNamespaceCreateOutput as jT, RealtimeNamespaceDeleteInput as jU, RealtimeNamespaceDeleteOutput as jV, RealtimeNamespaceGetInput as jW, RealtimeNamespaceGetOutput as jX, RealtimeNamespaceListInput as jY, RealtimeNamespaceListOutput as jZ, RealtimeNamespaceUpdateInput as j_, OrganizationSupportThreadReplyInput as ja, OrganizationSupportThreadReplyOutput as jb, OrganizationSupportThreadsListInput as jc, OrganizationSupportThreadsListOutput as jd, PlaygroundAnalyticsOverviewInput as je, PlaygroundAnalyticsOverviewOutput as jf, PlaygroundBillingEntitlementsInput as jg, PlaygroundBillingEntitlementsOutput as jh, PlaygroundBillingRecordUsageInput as ji, PlaygroundBillingRecordUsageOutput as jj, PlaygroundClickupCreateTaskInput as jk, PlaygroundClickupCreateTaskOutput as jl, PlaygroundClickupGetLastWebhookInput as jm, PlaygroundClickupGetLastWebhookOutput as jn, PlaygroundClickupGetOverviewInput as jo, PlaygroundClickupGetOverviewOutput as jp, PlaygroundGdriveGetLastChangeInput as jq, PlaygroundGdriveGetLastChangeOutput as jr, PlaygroundGdriveReadFileInput as js, PlaygroundGdriveReadFileOutput as jt, PlaygroundGoogleadsReadCustomerInput as ju, PlaygroundGoogleadsReadCustomerOutput as jv, PlaygroundLifecycleGetStateInput as jw, PlaygroundLifecycleGetStateOutput as jx, PlaygroundLifecycleListEventsInput as jy, PlaygroundLifecycleListEventsOutput as jz, BrainClickupConnectionsListInput as k, SupportRuleListOutput as k$, RealtimePresenceEnterInput as k0, RealtimePresenceEnterOutput as k1, RealtimePresenceGetInput as k2, RealtimePresenceGetOutput as k3, RealtimePresenceLeaveInput as k4, RealtimePresenceLeaveOutput as k5, RealtimePresenceStatsInput as k6, RealtimePresenceStatsOutput as k7, RealtimePresenceUpdateInput as k8, RealtimePresenceUpdateOutput as k9, SupportAgentUpdateInput as kA, SupportAgentUpdateOutput as kB, SupportAttachmentCreateInput as kC, SupportAttachmentCreateOutput as kD, SupportAttachmentFinalizeInput as kE, SupportAttachmentFinalizeOutput as kF, SupportLabelCreateInput as kG, SupportLabelCreateOutput as kH, SupportLabelListInput as kI, SupportLabelListOutput as kJ, SupportMessageCreateInput as kK, SupportMessageCreateOutput as kL, SupportMessageListInput as kM, SupportMessageListOutput as kN, SupportResponseEscalateInput as kO, SupportResponseEscalateOutput as kP, SupportResponseGetInput as kQ, SupportResponseGetOutput as kR, SupportResponseListInput as kS, SupportResponseListOutput as kT, SupportRuleCreateInput as kU, SupportRuleCreateOutput as kV, SupportRuleDeleteInput as kW, SupportRuleDeleteOutput as kX, SupportRuleGetInput as kY, SupportRuleGetOutput as kZ, SupportRuleListInput as k_, RealtimePublicAccessStatusInput as ka, RealtimePublicAccessStatusOutput as kb, RealtimeStatusGetInput as kc, RealtimeStatusGetOutput as kd, RealtimeTokensCreateInput as ke, RealtimeTokensCreateOutput as kf, RealtimeWebhookCreateInput as kg, RealtimeWebhookCreateOutput as kh, RealtimeWebhookDeleteInput as ki, RealtimeWebhookDeleteOutput as kj, RealtimeWebhookDeliveriesListInput as kk, RealtimeWebhookDeliveriesListOutput as kl, RealtimeWebhookGetInput as km, RealtimeWebhookGetOutput as kn, RealtimeWebhookListInput as ko, RealtimeWebhookListOutput as kp, RealtimeWebhookSecretRotateInput as kq, RealtimeWebhookSecretRotateOutput as kr, RealtimeWebhookUpdateInput as ks, RealtimeWebhookUpdateOutput as kt, SupportAgentCreateInput as ku, SupportAgentCreateOutput as kv, SupportAgentGetInput as kw, SupportAgentGetOutput as kx, SupportAgentListInput as ky, SupportAgentListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingDomainsVerifyOutput as l$, SupportRuleUpdateInput as l0, SupportRuleUpdateOutput as l1, SupportStatusArchiveInput as l2, SupportStatusArchiveOutput as l3, SupportStatusCreateInput as l4, SupportStatusCreateOutput as l5, SupportStatusListInput as l6, SupportStatusListOutput as l7, SupportStatusUpdateInput as l8, SupportStatusUpdateOutput as l9, SupportThreadUpdateInput as lA, SupportThreadUpdateOutput as lB, SupportWebhookCreateInput as lC, SupportWebhookCreateOutput as lD, SupportWebhookDeleteInput as lE, SupportWebhookDeleteOutput as lF, SupportWebhookDeliveriesListInput as lG, SupportWebhookDeliveriesListOutput as lH, SupportWebhookGetInput as lI, SupportWebhookGetOutput as lJ, SupportWebhookListInput as lK, SupportWebhookListOutput as lL, SupportWebhookRedeliverInput as lM, SupportWebhookRedeliverOutput as lN, SupportWebhookRotateSecretInput as lO, SupportWebhookRotateSecretOutput as lP, SupportWebhookUpdateInput as lQ, SupportWebhookUpdateOutput as lR, TrackingDomainsCreateInput as lS, TrackingDomainsCreateOutput as lT, TrackingDomainsDeleteInput as lU, TrackingDomainsDeleteOutput as lV, TrackingDomainsGetInput as lW, TrackingDomainsGetOutput as lX, TrackingDomainsListInput as lY, TrackingDomainsListOutput as lZ, TrackingDomainsVerifyInput as l_, SupportSurveyArchiveInput as la, SupportSurveyArchiveOutput as lb, SupportSurveyCreateInput as lc, SupportSurveyCreateOutput as ld, SupportSurveyGetInput as le, SupportSurveyGetOutput as lf, SupportSurveyListInput as lg, SupportSurveyListOutput as lh, SupportSurveyPublishInput as li, SupportSurveyPublishOutput as lj, SupportSurveyStatsInput as lk, SupportSurveyStatsOutput as ll, SupportSurveyUnpublishInput as lm, SupportSurveyUnpublishOutput as ln, SupportSurveyUpdateInput as lo, SupportSurveyUpdateOutput as lp, SupportThreadAssignInput as lq, SupportThreadAssignOutput as lr, SupportThreadCreateInput as ls, SupportThreadCreateOutput as lt, SupportThreadGetInput as lu, SupportThreadGetOutput as lv, SupportThreadListInput as lw, SupportThreadListOutput as lx, SupportThreadStatusSetInput as ly, SupportThreadStatusSetOutput as lz, BrainClickupListsListInput as m, UsersApikeysCreateOutput as m$, TrackingEventNamesArchiveInput as m0, TrackingEventNamesArchiveOutput as m1, TrackingEventNamesListInput as m2, TrackingEventNamesListOutput as m3, TrackingEventNamesUnarchiveInput as m4, TrackingEventNamesUnarchiveOutput as m5, TrackingGoogleadsConnectionStatusInput as m6, TrackingGoogleadsConnectionStatusOutput as m7, TrackingGoogleadsConversionActionsInput as m8, TrackingGoogleadsConversionActionsOutput as m9, TrackingLinkDomainsCreateInput as mA, TrackingLinkDomainsCreateOutput as mB, TrackingLinkDomainsDeleteInput as mC, TrackingLinkDomainsDeleteOutput as mD, TrackingLinkDomainsListInput as mE, TrackingLinkDomainsListOutput as mF, TrackingLiveEventsListInput as mG, TrackingLiveEventsListOutput as mH, TrackingProfilesDeleteInput as mI, TrackingProfilesDeleteOutput as mJ, TrackingProfilesExportInput as mK, TrackingProfilesExportOutput as mL, TrackingProfilesGetInput as mM, TrackingProfilesGetOutput as mN, TrackingProfilesListInput as mO, TrackingProfilesListOutput as mP, TrackingReportsAttributedJourneyInput as mQ, TrackingReportsAttributedJourneyOutput as mR, TrackingReportsEventVolumeInput as mS, TrackingReportsEventVolumeOutput as mT, TrackingReportsRevenueBySourceInput as mU, TrackingReportsRevenueBySourceOutput as mV, TrackingReportsSourcePeopleInput as mW, TrackingReportsSourcePeopleOutput as mX, TrackingSnippetsGetInput as mY, TrackingSnippetsGetOutput as mZ, UsersApikeysCreateInput as m_, TrackingGoogleadsFeedbackConfigGetInput as ma, TrackingGoogleadsFeedbackConfigGetOutput as mb, TrackingGoogleadsFeedbackConfigSetInput as mc, TrackingGoogleadsFeedbackConfigSetOutput as md, TrackingGoogleadsFeedbackRunInput as me, TrackingGoogleadsFeedbackRunOutput as mf, TrackingGoogleadsFeedbackStatusInput as mg, TrackingGoogleadsFeedbackStatusOutput as mh, TrackingGoogleadsFeedbackUploadsInput as mi, TrackingGoogleadsFeedbackUploadsOutput as mj, TrackingGoogleadsRoasReportInput as mk, TrackingGoogleadsRoasReportOutput as ml, TrackingGoogleadsSyncNowInput as mm, TrackingGoogleadsSyncNowOutput as mn, TrackingGoogleadsTrackingHealthInput as mo, TrackingGoogleadsTrackingHealthOutput as mp, TrackingGoogleadsUsVsPlatformInput as mq, TrackingGoogleadsUsVsPlatformOutput as mr, TrackingIdentityHealthInput as ms, TrackingIdentityHealthOutput as mt, TrackingInstallDomainsCreateInput as mu, TrackingInstallDomainsCreateOutput as mv, TrackingInstallDomainsDeleteInput as mw, TrackingInstallDomainsDeleteOutput as mx, TrackingInstallDomainsListInput as my, TrackingInstallDomainsListOutput as mz, BrainClickupListsListOutput as n, UsersWaitlistEraseOutput as n$, UsersApikeysListInput as n0, UsersApikeysListOutput as n1, UsersApikeysRevokeInput as n2, UsersApikeysRevokeOutput as n3, UsersAuditListInput as n4, UsersAuditListOutput as n5, UsersConfigGetInput as n6, UsersConfigGetOutput as n7, UsersConfigUpsertInput as n8, UsersConfigUpsertOutput as n9, UsersStatsGetInput as nA, UsersStatsGetOutput as nB, UsersUsersBanInput as nC, UsersUsersBanOutput as nD, UsersUsersCreateInput as nE, UsersUsersCreateOutput as nF, UsersUsersDeleteInput as nG, UsersUsersDeleteOutput as nH, UsersUsersEraseInput as nI, UsersUsersEraseOutput as nJ, UsersUsersExportInput as nK, UsersUsersExportOutput as nL, UsersUsersGetInput as nM, UsersUsersGetOutput as nN, UsersUsersImportInput as nO, UsersUsersImportOutput as nP, UsersUsersInviteInput as nQ, UsersUsersInviteOutput as nR, UsersUsersListInput as nS, UsersUsersListOutput as nT, UsersUsersSetPrimaryIdentifierInput as nU, UsersUsersSetPrimaryIdentifierOutput as nV, UsersUsersUnbanInput as nW, UsersUsersUnbanOutput as nX, UsersUsersUpdateInput as nY, UsersUsersUpdateOutput as nZ, UsersWaitlistEraseInput as n_, UsersFactorsListInput as na, UsersFactorsListOutput as nb, UsersFactorsResetInput as nc, UsersFactorsResetOutput as nd, UsersKeysListInput as ne, UsersKeysListOutput as nf, UsersKeysRevokeInput as ng, UsersKeysRevokeOutput as nh, UsersKeysRotateInput as ni, UsersKeysRotateOutput as nj, UsersOpsRetentionGetInput as nk, UsersOpsRetentionGetOutput as nl, UsersOpsSloGetInput as nm, UsersOpsSloGetOutput as nn, UsersPasskeysListInput as no, UsersPasskeysListOutput as np, UsersPasskeysRevokeInput as nq, UsersPasskeysRevokeOutput as nr, UsersSessionsGetInput as ns, UsersSessionsGetOutput as nt, UsersSessionsImpersonateInput as nu, UsersSessionsImpersonateOutput as nv, UsersSessionsListInput as nw, UsersSessionsListOutput as nx, UsersSessionsRevokeInput as ny, UsersSessionsRevokeOutput as nz, BrainClickupSpacesListInput as o, UsersWaitlistFunnelInput as o0, UsersWaitlistFunnelOutput as o1, UsersWaitlistImportInput as o2, UsersWaitlistImportOutput as o3, UsersWaitlistInviteInput as o4, UsersWaitlistInviteOutput as o5, UsersWaitlistListInput as o6, UsersWaitlistListOutput as o7, UsersWebhooksCreateInput as o8, UsersWebhooksCreateOutput as o9, UsersWebhooksDeleteInput as oa, UsersWebhooksDeleteOutput as ob, UsersWebhooksDeliveriesListInput as oc, UsersWebhooksDeliveriesListOutput as od, UsersWebhooksGetInput as oe, UsersWebhooksGetOutput as of, UsersWebhooksListInput as og, UsersWebhooksListOutput as oh, UsersWebhooksRotateSecretInput as oi, UsersWebhooksRotateSecretOutput as oj, UsersWebhooksUpdateInput as ok, UsersWebhooksUpdateOutput as ol, WaitlistConfigGetInput as om, WaitlistConfigGetOutput as on, WaitlistConfigUpsertInput as oo, WaitlistConfigUpsertOutput as op, WaitlistEmbedGetInput as oq, WaitlistEmbedGetOutput as or, WaitlistInvitesSendInput as os, WaitlistInvitesSendOutput as ot, WaitlistSignupsEraseInput as ou, WaitlistSignupsEraseOutput as ov, WaitlistSignupsFunnelInput as ow, WaitlistSignupsFunnelOutput as ox, WaitlistSignupsListInput as oy, WaitlistSignupsListOutput as oz, 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 };