@lessly/sdk-app 33.0.0 → 35.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 (44) 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.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-B81KzIal.d.cts → client.gen-CvgJUdcU.d.cts} +1378 -90
  6. package/dist/{client.gen-B81KzIal.d.ts → client.gen-CvgJUdcU.d.ts} +1378 -90
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/deployment/index.d.cts +1 -1
  10. package/dist/deployment/index.d.ts +1 -1
  11. package/dist/index.cjs +181 -0
  12. package/dist/index.cjs.map +1 -1
  13. package/dist/index.d.cts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +181 -0
  16. package/dist/index.js.map +1 -1
  17. package/dist/mail/index.d.cts +2 -2
  18. package/dist/mail/index.d.ts +2 -2
  19. package/dist/observe/index.d.cts +1 -1
  20. package/dist/observe/index.d.ts +1 -1
  21. package/dist/organization/index.d.cts +1 -1
  22. package/dist/organization/index.d.ts +1 -1
  23. package/dist/playground/index.d.cts +1 -1
  24. package/dist/playground/index.d.ts +1 -1
  25. package/dist/realtime/index.d.cts +1 -1
  26. package/dist/realtime/index.d.ts +1 -1
  27. package/dist/support/index.cjs +55 -0
  28. package/dist/support/index.cjs.map +1 -1
  29. package/dist/support/index.d.cts +46 -2
  30. package/dist/support/index.d.ts +46 -2
  31. package/dist/support/index.js +45 -1
  32. package/dist/support/index.js.map +1 -1
  33. package/dist/tracking/index.d.cts +1 -1
  34. package/dist/tracking/index.d.ts +1 -1
  35. package/dist/users/index.d.cts +1 -1
  36. package/dist/users/index.d.ts +1 -1
  37. package/dist/waitlist/index.d.cts +1 -1
  38. package/dist/waitlist/index.d.ts +1 -1
  39. package/package.json +2 -2
  40. package/src/gen/bindings.gen.ts +181 -0
  41. package/src/gen/client.gen.ts +37 -0
  42. package/src/gen/support/index.ts +1 -1
  43. package/src/gen/support/queryOptions.gen.ts +71 -0
  44. package/src/gen/types.gen.ts +1273 -5
@@ -15874,170 +15874,1443 @@ interface SupportMessageListOutput {
15874
15874
  */
15875
15875
  nextCursor: (string | null);
15876
15876
  }
15877
+ interface SupportResponseEscalateInput {
15878
+ /**
15879
+ * Response id
15880
+ */
15881
+ id: string;
15882
+ }
15883
+ interface SupportResponseEscalateOutput {
15884
+ /**
15885
+ * The feedback thread that was opened
15886
+ */
15887
+ thread: {
15888
+ /**
15889
+ * Thread id
15890
+ */
15891
+ id: string;
15892
+ /**
15893
+ * ticket: the end user wants something fixed. feedback: unsolicited input
15894
+ */
15895
+ type: ("ticket" | "feedback");
15896
+ /**
15897
+ * Thread subject
15898
+ */
15899
+ title: string;
15900
+ /**
15901
+ * Every label on the thread, by name
15902
+ */
15903
+ labels: {
15904
+ /**
15905
+ * Label id
15906
+ */
15907
+ id: string;
15908
+ /**
15909
+ * Label name, unique within the product
15910
+ */
15911
+ name: string;
15912
+ /**
15913
+ * Display colour as a hex string, or null if uncoloured
15914
+ */
15915
+ color: (string | null);
15916
+ /**
15917
+ * ISO-8601 creation timestamp
15918
+ */
15919
+ createdAt: string;
15920
+ }[];
15921
+ /**
15922
+ * The score the client supplied at creation, or null while the thread is unrated
15923
+ */
15924
+ rating: (number | null);
15925
+ /**
15926
+ * The status itself, joined in at read time
15927
+ */
15928
+ status: {
15929
+ /**
15930
+ * Status id
15931
+ */
15932
+ id: string;
15933
+ /**
15934
+ * Status name, unique within the product
15935
+ */
15936
+ name: string;
15937
+ /**
15938
+ * Display colour as a hex string
15939
+ */
15940
+ color: string;
15941
+ /**
15942
+ * Sort order within the status dictionary
15943
+ */
15944
+ order: number;
15945
+ /**
15946
+ * Archived statuses stay readable but are not offered as targets
15947
+ */
15948
+ archived: boolean;
15949
+ /**
15950
+ * Lifecycle bucket the status belongs to
15951
+ */
15952
+ category: ("open" | "pending" | "resolved" | "closed");
15953
+ };
15954
+ /**
15955
+ * Free-form client-owned JSON
15956
+ */
15957
+ metadata: {
15958
+ [k: string]: unknown;
15959
+ };
15960
+ /**
15961
+ * Thread priority
15962
+ */
15963
+ priority: ("low" | "normal" | "high" | "urgent");
15964
+ /**
15965
+ * Id of the status the thread sits on
15966
+ */
15967
+ statusId: string;
15968
+ /**
15969
+ * ISO-8601 creation timestamp
15970
+ */
15971
+ createdAt: string;
15972
+ /**
15973
+ * ISO-8601 last-modification timestamp
15974
+ */
15975
+ updatedAt: string;
15976
+ /**
15977
+ * ISO-8601 timestamp of the last reply, or null while there are none
15978
+ */
15979
+ lastReplyAt: (string | null);
15980
+ /**
15981
+ * Display name for the external author, if given
15982
+ */
15983
+ authorDisplay: (string | null);
15984
+ /**
15985
+ * Assigned agent, or null while unassigned
15986
+ */
15987
+ assignedAgentId: (string | null);
15988
+ /**
15989
+ * The external author, byte-identical to what was stored
15990
+ */
15991
+ authorExternalId: string;
15992
+ };
15993
+ /**
15994
+ * The response, with escalatedThreadId now set
15995
+ */
15996
+ response: {
15997
+ /**
15998
+ * Response id
15999
+ */
16000
+ id: string;
16001
+ /**
16002
+ * The answer of the first nps or rating question, raw and never rescaled, or null when neither was answered. Null is not zero — 0 is a real score at the bottom of an NPS scale
16003
+ */
16004
+ score: (number | null);
16005
+ /**
16006
+ * Answers keyed by question id, exactly as stored
16007
+ */
16008
+ answers: {
16009
+ [k: string]: unknown;
16010
+ };
16011
+ /**
16012
+ * Free-form client-owned JSON
16013
+ */
16014
+ metadata: {
16015
+ [k: string]: unknown;
16016
+ };
16017
+ /**
16018
+ * The survey that was answered
16019
+ */
16020
+ surveyId: string;
16021
+ /**
16022
+ * Whether the respondent reached the end
16023
+ */
16024
+ completed: boolean;
16025
+ /**
16026
+ * ISO-8601 creation timestamp
16027
+ */
16028
+ createdAt: string;
16029
+ /**
16030
+ * ISO-8601 last-modification timestamp
16031
+ */
16032
+ updatedAt: string;
16033
+ /**
16034
+ * The respondent, byte-identical to what was stored
16035
+ */
16036
+ authorExternalId: string;
16037
+ /**
16038
+ * The feedback thread this response was escalated into, or null while it has not been
16039
+ */
16040
+ escalatedThreadId: (string | null);
16041
+ };
16042
+ }
16043
+ interface SupportResponseGetInput {
16044
+ /**
16045
+ * Response id
16046
+ */
16047
+ id: string;
16048
+ }
16049
+ interface SupportResponseGetOutput {
16050
+ /**
16051
+ * Response id
16052
+ */
16053
+ id: string;
16054
+ /**
16055
+ * The answer of the first nps or rating question, raw and never rescaled, or null when neither was answered. Null is not zero — 0 is a real score at the bottom of an NPS scale
16056
+ */
16057
+ score: (number | null);
16058
+ /**
16059
+ * Answers keyed by question id, exactly as stored
16060
+ */
16061
+ answers: {
16062
+ [k: string]: unknown;
16063
+ };
16064
+ /**
16065
+ * Free-form client-owned JSON
16066
+ */
16067
+ metadata: {
16068
+ [k: string]: unknown;
16069
+ };
16070
+ /**
16071
+ * The survey that was answered
16072
+ */
16073
+ surveyId: string;
16074
+ /**
16075
+ * Whether the respondent reached the end
16076
+ */
16077
+ completed: boolean;
16078
+ /**
16079
+ * ISO-8601 creation timestamp
16080
+ */
16081
+ createdAt: string;
16082
+ /**
16083
+ * ISO-8601 last-modification timestamp
16084
+ */
16085
+ updatedAt: string;
16086
+ /**
16087
+ * The respondent, byte-identical to what was stored
16088
+ */
16089
+ authorExternalId: string;
16090
+ /**
16091
+ * The feedback thread this response was escalated into, or null while it has not been
16092
+ */
16093
+ escalatedThreadId: (string | null);
16094
+ }
16095
+ interface SupportResponseListInput {
16096
+ /**
16097
+ * Only responses created at or before this ISO-8601 timestamp
16098
+ */
16099
+ to?: string;
16100
+ /**
16101
+ * Only responses created at or after this ISO-8601 timestamp
16102
+ */
16103
+ from?: string;
16104
+ /**
16105
+ * Page size, 1..100 (default 25)
16106
+ */
16107
+ limit?: number;
16108
+ /**
16109
+ * Number of responses to skip
16110
+ */
16111
+ offset?: number;
16112
+ /**
16113
+ * Only responses scored at or below this value (inclusive). A response with no score matches neither bound — not even at the bottom of the scale
16114
+ */
16115
+ scoreMax?: number;
16116
+ /**
16117
+ * Only responses scored at or above this value (inclusive). A response with no score matches neither bound — not even at the bottom of the scale
16118
+ */
16119
+ scoreMin?: number;
16120
+ /**
16121
+ * Required: responses are always read one survey at a time
16122
+ */
16123
+ surveyId: string;
16124
+ /**
16125
+ * true: only responses that reached the end. false: only partial ones
16126
+ */
16127
+ completed?: (boolean | ("true" | "false"));
16128
+ }
16129
+ interface SupportResponseListOutput {
16130
+ /**
16131
+ * Page size that was applied
16132
+ */
16133
+ limit: number;
16134
+ /**
16135
+ * Offset that was applied
16136
+ */
16137
+ offset: number;
16138
+ /**
16139
+ * The requested page of responses, newest first
16140
+ */
16141
+ responses: {
16142
+ /**
16143
+ * Response id
16144
+ */
16145
+ id: string;
16146
+ /**
16147
+ * The answer of the first nps or rating question, raw and never rescaled, or null when neither was answered. Null is not zero — 0 is a real score at the bottom of an NPS scale
16148
+ */
16149
+ score: (number | null);
16150
+ /**
16151
+ * Answers keyed by question id, exactly as stored
16152
+ */
16153
+ answers: {
16154
+ [k: string]: unknown;
16155
+ };
16156
+ /**
16157
+ * Free-form client-owned JSON
16158
+ */
16159
+ metadata: {
16160
+ [k: string]: unknown;
16161
+ };
16162
+ /**
16163
+ * The survey that was answered
16164
+ */
16165
+ surveyId: string;
16166
+ /**
16167
+ * Whether the respondent reached the end
16168
+ */
16169
+ completed: boolean;
16170
+ /**
16171
+ * ISO-8601 creation timestamp
16172
+ */
16173
+ createdAt: string;
16174
+ /**
16175
+ * ISO-8601 last-modification timestamp
16176
+ */
16177
+ updatedAt: string;
16178
+ /**
16179
+ * The respondent, byte-identical to what was stored
16180
+ */
16181
+ authorExternalId: string;
16182
+ /**
16183
+ * The feedback thread this response was escalated into, or null while it has not been
16184
+ */
16185
+ escalatedThreadId: (string | null);
16186
+ }[];
16187
+ }
15877
16188
  interface SupportStatusArchiveInput {
15878
16189
  /**
15879
16190
  * Status id
15880
16191
  */
15881
16192
  id: string;
15882
16193
  /**
15883
- * Live status every thread on the archived status moves to, in the same transaction
16194
+ * Live status every thread on the archived status moves to, in the same transaction
16195
+ */
16196
+ targetStatusId: string;
16197
+ }
16198
+ interface SupportStatusArchiveOutput {
16199
+ /**
16200
+ * Status id
16201
+ */
16202
+ id: string;
16203
+ /**
16204
+ * Status name, unique within the product
16205
+ */
16206
+ name: string;
16207
+ /**
16208
+ * Display colour as a hex string
16209
+ */
16210
+ color: string;
16211
+ /**
16212
+ * Sort order within the status dictionary
16213
+ */
16214
+ order: number;
16215
+ /**
16216
+ * Archived statuses stay readable but are not offered as targets
16217
+ */
16218
+ archived: boolean;
16219
+ /**
16220
+ * Lifecycle bucket the status belongs to
16221
+ */
16222
+ category: ("open" | "pending" | "resolved" | "closed");
16223
+ }
16224
+ interface SupportStatusCreateInput {
16225
+ /**
16226
+ * Status name as the customer wants to see it. Unique within the product
16227
+ */
16228
+ name: string;
16229
+ /**
16230
+ * Display colour as a six-digit hex string, e.g. #2563eb
16231
+ */
16232
+ color: string;
16233
+ /**
16234
+ * Sort order within the status dictionary, lowest first
16235
+ */
16236
+ order: number;
16237
+ /**
16238
+ * Lifecycle bucket the status belongs to. Automation and reporting read the category, never the name — so it cannot be changed once threads sit on the status
16239
+ */
16240
+ category: ("open" | "pending" | "resolved" | "closed");
16241
+ }
16242
+ interface SupportStatusCreateOutput {
16243
+ /**
16244
+ * Status id
16245
+ */
16246
+ id: string;
16247
+ /**
16248
+ * Status name, unique within the product
16249
+ */
16250
+ name: string;
16251
+ /**
16252
+ * Display colour as a hex string
16253
+ */
16254
+ color: string;
16255
+ /**
16256
+ * Sort order within the status dictionary
16257
+ */
16258
+ order: number;
16259
+ /**
16260
+ * Archived statuses stay readable but are not offered as targets
16261
+ */
16262
+ archived: boolean;
16263
+ /**
16264
+ * Lifecycle bucket the status belongs to
16265
+ */
16266
+ category: ("open" | "pending" | "resolved" | "closed");
16267
+ }
16268
+ interface SupportStatusListInput {
16269
+ /**
16270
+ * Also return archived statuses (default false)
16271
+ */
16272
+ includeArchived?: boolean;
16273
+ }
16274
+ interface SupportStatusListOutput {
16275
+ /**
16276
+ * The product status dictionary, in display order
16277
+ */
16278
+ statuses: {
16279
+ /**
16280
+ * Status id
16281
+ */
16282
+ id: string;
16283
+ /**
16284
+ * Status name, unique within the product
16285
+ */
16286
+ name: string;
16287
+ /**
16288
+ * Display colour as a hex string
16289
+ */
16290
+ color: string;
16291
+ /**
16292
+ * Sort order within the status dictionary
16293
+ */
16294
+ order: number;
16295
+ /**
16296
+ * Archived statuses stay readable but are not offered as targets
16297
+ */
16298
+ archived: boolean;
16299
+ /**
16300
+ * Lifecycle bucket the status belongs to
16301
+ */
16302
+ category: ("open" | "pending" | "resolved" | "closed");
16303
+ }[];
16304
+ }
16305
+ interface SupportStatusUpdateInput {
16306
+ /**
16307
+ * Status id
16308
+ */
16309
+ id: string;
16310
+ /**
16311
+ * Status name as the customer wants to see it. Unique within the product
16312
+ */
16313
+ name?: string;
16314
+ /**
16315
+ * Display colour as a six-digit hex string, e.g. #2563eb
16316
+ */
16317
+ color?: string;
16318
+ /**
16319
+ * Sort order within the status dictionary, lowest first
16320
+ */
16321
+ order?: number;
16322
+ /**
16323
+ * New lifecycle bucket. Refused while any thread references the status
16324
+ */
16325
+ category?: ("open" | "pending" | "resolved" | "closed");
16326
+ }
16327
+ interface SupportStatusUpdateOutput {
16328
+ /**
16329
+ * Status id
16330
+ */
16331
+ id: string;
16332
+ /**
16333
+ * Status name, unique within the product
16334
+ */
16335
+ name: string;
16336
+ /**
16337
+ * Display colour as a hex string
16338
+ */
16339
+ color: string;
16340
+ /**
16341
+ * Sort order within the status dictionary
16342
+ */
16343
+ order: number;
16344
+ /**
16345
+ * Archived statuses stay readable but are not offered as targets
16346
+ */
16347
+ archived: boolean;
16348
+ /**
16349
+ * Lifecycle bucket the status belongs to
16350
+ */
16351
+ category: ("open" | "pending" | "resolved" | "closed");
16352
+ }
16353
+ interface SupportSurveyArchiveInput {
16354
+ /**
16355
+ * Survey id
16356
+ */
16357
+ id: string;
16358
+ }
16359
+ interface SupportSurveyArchiveOutput {
16360
+ /**
16361
+ * Survey id
16362
+ */
16363
+ id: string;
16364
+ /**
16365
+ * What this survey is called
16366
+ */
16367
+ name: string;
16368
+ /**
16369
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16370
+ */
16371
+ status: ("draft" | "published" | "archived");
16372
+ /**
16373
+ * ISO-8601 creation timestamp
16374
+ */
16375
+ createdAt: string;
16376
+ /**
16377
+ * The ordered question set, exactly as stored
16378
+ */
16379
+ questions: {
16380
+ /**
16381
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16382
+ */
16383
+ id: string;
16384
+ /**
16385
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16386
+ */
16387
+ skip?: {
16388
+ [k: string]: string;
16389
+ };
16390
+ /**
16391
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16392
+ */
16393
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16394
+ /**
16395
+ * The question as the respondent reads it
16396
+ */
16397
+ label: string;
16398
+ /**
16399
+ * The rating scale. rating only — nps is fixed 0..10
16400
+ */
16401
+ scale?: {
16402
+ /**
16403
+ * Top of the scale, at most 10
16404
+ */
16405
+ max: number;
16406
+ /**
16407
+ * Bottom of the scale: 0 or 1
16408
+ */
16409
+ min: (0 | 1);
16410
+ };
16411
+ /**
16412
+ * The choices. radio and checkbox only
16413
+ *
16414
+ * @minItems 1
16415
+ * @maxItems 50
16416
+ */
16417
+ options?: [
16418
+ {
16419
+ /**
16420
+ * Client-owned id of the option, unique within the question
16421
+ */
16422
+ id: string;
16423
+ /**
16424
+ * What the respondent reads
16425
+ */
16426
+ label: string;
16427
+ },
16428
+ ...({
16429
+ /**
16430
+ * Client-owned id of the option, unique within the question
16431
+ */
16432
+ id: string;
16433
+ /**
16434
+ * What the respondent reads
16435
+ */
16436
+ label: string;
16437
+ })[]
16438
+ ];
16439
+ /**
16440
+ * When true, a response marked completed must answer it. Never valid on a statement
16441
+ */
16442
+ required?: boolean;
16443
+ }[];
16444
+ /**
16445
+ * ISO-8601 last-modification timestamp
16446
+ */
16447
+ updatedAt: string;
16448
+ }
16449
+ interface SupportSurveyCreateInput {
16450
+ /**
16451
+ * What this survey is called. It becomes the title of an escalated feedback thread
16452
+ */
16453
+ name: string;
16454
+ /**
16455
+ * The initial question set. Omit it to open an empty draft and fill it in later
16456
+ *
16457
+ * @maxItems 100
16458
+ */
16459
+ questions?: {
16460
+ /**
16461
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16462
+ */
16463
+ id: string;
16464
+ /**
16465
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16466
+ */
16467
+ skip?: {
16468
+ [k: string]: string;
16469
+ };
16470
+ /**
16471
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16472
+ */
16473
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16474
+ /**
16475
+ * The question as the respondent reads it
16476
+ */
16477
+ label: string;
16478
+ /**
16479
+ * The rating scale. rating only — nps is fixed 0..10
16480
+ */
16481
+ scale?: {
16482
+ /**
16483
+ * Top of the scale, at most 10
16484
+ */
16485
+ max: number;
16486
+ /**
16487
+ * Bottom of the scale: 0 or 1
16488
+ */
16489
+ min: (0 | 1);
16490
+ };
16491
+ /**
16492
+ * The choices. radio and checkbox only
16493
+ *
16494
+ * @minItems 1
16495
+ * @maxItems 50
16496
+ */
16497
+ options?: [
16498
+ {
16499
+ /**
16500
+ * Client-owned id of the option, unique within the question
16501
+ */
16502
+ id: string;
16503
+ /**
16504
+ * What the respondent reads
16505
+ */
16506
+ label: string;
16507
+ },
16508
+ ...({
16509
+ /**
16510
+ * Client-owned id of the option, unique within the question
16511
+ */
16512
+ id: string;
16513
+ /**
16514
+ * What the respondent reads
16515
+ */
16516
+ label: string;
16517
+ })[]
16518
+ ];
16519
+ /**
16520
+ * When true, a response marked completed must answer it. Never valid on a statement
16521
+ */
16522
+ required?: boolean;
16523
+ }[];
16524
+ }
16525
+ interface SupportSurveyCreateOutput {
16526
+ /**
16527
+ * Survey id
16528
+ */
16529
+ id: string;
16530
+ /**
16531
+ * What this survey is called
16532
+ */
16533
+ name: string;
16534
+ /**
16535
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16536
+ */
16537
+ status: ("draft" | "published" | "archived");
16538
+ /**
16539
+ * ISO-8601 creation timestamp
16540
+ */
16541
+ createdAt: string;
16542
+ /**
16543
+ * The ordered question set, exactly as stored
16544
+ */
16545
+ questions: {
16546
+ /**
16547
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16548
+ */
16549
+ id: string;
16550
+ /**
16551
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16552
+ */
16553
+ skip?: {
16554
+ [k: string]: string;
16555
+ };
16556
+ /**
16557
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16558
+ */
16559
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16560
+ /**
16561
+ * The question as the respondent reads it
16562
+ */
16563
+ label: string;
16564
+ /**
16565
+ * The rating scale. rating only — nps is fixed 0..10
16566
+ */
16567
+ scale?: {
16568
+ /**
16569
+ * Top of the scale, at most 10
16570
+ */
16571
+ max: number;
16572
+ /**
16573
+ * Bottom of the scale: 0 or 1
16574
+ */
16575
+ min: (0 | 1);
16576
+ };
16577
+ /**
16578
+ * The choices. radio and checkbox only
16579
+ *
16580
+ * @minItems 1
16581
+ * @maxItems 50
16582
+ */
16583
+ options?: [
16584
+ {
16585
+ /**
16586
+ * Client-owned id of the option, unique within the question
16587
+ */
16588
+ id: string;
16589
+ /**
16590
+ * What the respondent reads
16591
+ */
16592
+ label: string;
16593
+ },
16594
+ ...({
16595
+ /**
16596
+ * Client-owned id of the option, unique within the question
16597
+ */
16598
+ id: string;
16599
+ /**
16600
+ * What the respondent reads
16601
+ */
16602
+ label: string;
16603
+ })[]
16604
+ ];
16605
+ /**
16606
+ * When true, a response marked completed must answer it. Never valid on a statement
16607
+ */
16608
+ required?: boolean;
16609
+ }[];
16610
+ /**
16611
+ * ISO-8601 last-modification timestamp
16612
+ */
16613
+ updatedAt: string;
16614
+ }
16615
+ interface SupportSurveyGetInput {
16616
+ /**
16617
+ * Survey id
16618
+ */
16619
+ id: string;
16620
+ }
16621
+ interface SupportSurveyGetOutput {
16622
+ /**
16623
+ * Survey id
16624
+ */
16625
+ id: string;
16626
+ /**
16627
+ * What this survey is called
16628
+ */
16629
+ name: string;
16630
+ /**
16631
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16632
+ */
16633
+ status: ("draft" | "published" | "archived");
16634
+ /**
16635
+ * ISO-8601 creation timestamp
16636
+ */
16637
+ createdAt: string;
16638
+ /**
16639
+ * The ordered question set, exactly as stored
16640
+ */
16641
+ questions: {
16642
+ /**
16643
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16644
+ */
16645
+ id: string;
16646
+ /**
16647
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16648
+ */
16649
+ skip?: {
16650
+ [k: string]: string;
16651
+ };
16652
+ /**
16653
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16654
+ */
16655
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16656
+ /**
16657
+ * The question as the respondent reads it
16658
+ */
16659
+ label: string;
16660
+ /**
16661
+ * The rating scale. rating only — nps is fixed 0..10
16662
+ */
16663
+ scale?: {
16664
+ /**
16665
+ * Top of the scale, at most 10
16666
+ */
16667
+ max: number;
16668
+ /**
16669
+ * Bottom of the scale: 0 or 1
16670
+ */
16671
+ min: (0 | 1);
16672
+ };
16673
+ /**
16674
+ * The choices. radio and checkbox only
16675
+ *
16676
+ * @minItems 1
16677
+ * @maxItems 50
16678
+ */
16679
+ options?: [
16680
+ {
16681
+ /**
16682
+ * Client-owned id of the option, unique within the question
16683
+ */
16684
+ id: string;
16685
+ /**
16686
+ * What the respondent reads
16687
+ */
16688
+ label: string;
16689
+ },
16690
+ ...({
16691
+ /**
16692
+ * Client-owned id of the option, unique within the question
16693
+ */
16694
+ id: string;
16695
+ /**
16696
+ * What the respondent reads
16697
+ */
16698
+ label: string;
16699
+ })[]
16700
+ ];
16701
+ /**
16702
+ * When true, a response marked completed must answer it. Never valid on a statement
16703
+ */
16704
+ required?: boolean;
16705
+ }[];
16706
+ /**
16707
+ * ISO-8601 last-modification timestamp
16708
+ */
16709
+ updatedAt: string;
16710
+ }
16711
+ interface SupportSurveyListInput {
16712
+ /**
16713
+ * Page size, 1..100 (default 25)
16714
+ */
16715
+ limit?: number;
16716
+ /**
16717
+ * Number of surveys to skip
16718
+ */
16719
+ offset?: number;
16720
+ /**
16721
+ * Only surveys in this lifecycle state
16722
+ */
16723
+ status?: ("draft" | "published" | "archived");
16724
+ }
16725
+ interface SupportSurveyListOutput {
16726
+ /**
16727
+ * Page size that was applied
16728
+ */
16729
+ limit: number;
16730
+ /**
16731
+ * Offset that was applied
16732
+ */
16733
+ offset: number;
16734
+ /**
16735
+ * The requested page of surveys, newest first
16736
+ */
16737
+ surveys: {
16738
+ /**
16739
+ * Survey id
16740
+ */
16741
+ id: string;
16742
+ /**
16743
+ * What this survey is called
16744
+ */
16745
+ name: string;
16746
+ /**
16747
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16748
+ */
16749
+ status: ("draft" | "published" | "archived");
16750
+ /**
16751
+ * ISO-8601 creation timestamp
16752
+ */
16753
+ createdAt: string;
16754
+ /**
16755
+ * The ordered question set, exactly as stored
16756
+ */
16757
+ questions: {
16758
+ /**
16759
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16760
+ */
16761
+ id: string;
16762
+ /**
16763
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16764
+ */
16765
+ skip?: {
16766
+ [k: string]: string;
16767
+ };
16768
+ /**
16769
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16770
+ */
16771
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16772
+ /**
16773
+ * The question as the respondent reads it
16774
+ */
16775
+ label: string;
16776
+ /**
16777
+ * The rating scale. rating only — nps is fixed 0..10
16778
+ */
16779
+ scale?: {
16780
+ /**
16781
+ * Top of the scale, at most 10
16782
+ */
16783
+ max: number;
16784
+ /**
16785
+ * Bottom of the scale: 0 or 1
16786
+ */
16787
+ min: (0 | 1);
16788
+ };
16789
+ /**
16790
+ * The choices. radio and checkbox only
16791
+ *
16792
+ * @minItems 1
16793
+ * @maxItems 50
16794
+ */
16795
+ options?: [
16796
+ {
16797
+ /**
16798
+ * Client-owned id of the option, unique within the question
16799
+ */
16800
+ id: string;
16801
+ /**
16802
+ * What the respondent reads
16803
+ */
16804
+ label: string;
16805
+ },
16806
+ ...({
16807
+ /**
16808
+ * Client-owned id of the option, unique within the question
16809
+ */
16810
+ id: string;
16811
+ /**
16812
+ * What the respondent reads
16813
+ */
16814
+ label: string;
16815
+ })[]
16816
+ ];
16817
+ /**
16818
+ * When true, a response marked completed must answer it. Never valid on a statement
16819
+ */
16820
+ required?: boolean;
16821
+ }[];
16822
+ /**
16823
+ * ISO-8601 last-modification timestamp
16824
+ */
16825
+ updatedAt: string;
16826
+ }[];
16827
+ }
16828
+ interface SupportSurveyPublishInput {
16829
+ /**
16830
+ * Survey id
16831
+ */
16832
+ id: string;
16833
+ }
16834
+ interface SupportSurveyPublishOutput {
16835
+ /**
16836
+ * Survey id
16837
+ */
16838
+ id: string;
16839
+ /**
16840
+ * What this survey is called
16841
+ */
16842
+ name: string;
16843
+ /**
16844
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16845
+ */
16846
+ status: ("draft" | "published" | "archived");
16847
+ /**
16848
+ * ISO-8601 creation timestamp
16849
+ */
16850
+ createdAt: string;
16851
+ /**
16852
+ * The ordered question set, exactly as stored
16853
+ */
16854
+ questions: {
16855
+ /**
16856
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
16857
+ */
16858
+ id: string;
16859
+ /**
16860
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
16861
+ */
16862
+ skip?: {
16863
+ [k: string]: string;
16864
+ };
16865
+ /**
16866
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16867
+ */
16868
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16869
+ /**
16870
+ * The question as the respondent reads it
16871
+ */
16872
+ label: string;
16873
+ /**
16874
+ * The rating scale. rating only — nps is fixed 0..10
16875
+ */
16876
+ scale?: {
16877
+ /**
16878
+ * Top of the scale, at most 10
16879
+ */
16880
+ max: number;
16881
+ /**
16882
+ * Bottom of the scale: 0 or 1
16883
+ */
16884
+ min: (0 | 1);
16885
+ };
16886
+ /**
16887
+ * The choices. radio and checkbox only
16888
+ *
16889
+ * @minItems 1
16890
+ * @maxItems 50
16891
+ */
16892
+ options?: [
16893
+ {
16894
+ /**
16895
+ * Client-owned id of the option, unique within the question
16896
+ */
16897
+ id: string;
16898
+ /**
16899
+ * What the respondent reads
16900
+ */
16901
+ label: string;
16902
+ },
16903
+ ...({
16904
+ /**
16905
+ * Client-owned id of the option, unique within the question
16906
+ */
16907
+ id: string;
16908
+ /**
16909
+ * What the respondent reads
16910
+ */
16911
+ label: string;
16912
+ })[]
16913
+ ];
16914
+ /**
16915
+ * When true, a response marked completed must answer it. Never valid on a statement
16916
+ */
16917
+ required?: boolean;
16918
+ }[];
16919
+ /**
16920
+ * ISO-8601 last-modification timestamp
15884
16921
  */
15885
- targetStatusId: string;
16922
+ updatedAt: string;
15886
16923
  }
15887
- interface SupportStatusArchiveOutput {
16924
+ interface SupportSurveyStatsInput {
15888
16925
  /**
15889
- * Status id
16926
+ * Survey id
15890
16927
  */
15891
16928
  id: string;
15892
16929
  /**
15893
- * Status name, unique within the product
16930
+ * End of the window, ISO-8601, inclusive. Defaults to now
15894
16931
  */
15895
- name: string;
16932
+ to?: string;
15896
16933
  /**
15897
- * Display colour as a hex string
16934
+ * Start of the window, ISO-8601, inclusive. Defaults to 30 days ago — omitting it means "recently", never "since the beginning"
15898
16935
  */
15899
- color: string;
16936
+ from?: string;
16937
+ }
16938
+ interface SupportSurveyStatsOutput {
15900
16939
  /**
15901
- * Sort order within the status dictionary
16940
+ * ISO-8601 end of the window that was actually applied
15902
16941
  */
15903
- order: number;
16942
+ to: string;
15904
16943
  /**
15905
- * Archived statuses stay readable but are not offered as targets
16944
+ * The NPS block, or null when the survey asks no nps question
15906
16945
  */
15907
- archived: boolean;
16946
+ nps: ({
16947
+ /**
16948
+ * Percentage of promoters minus percentage of detractors, over everyone who answered — passives dilute rather than vanish — rounded once on the difference. Null when nobody answered, which is not the same as zero
16949
+ */
16950
+ score: (number | null);
16951
+ /**
16952
+ * How many responses gave a value in 0..10
16953
+ */
16954
+ answered: number;
16955
+ /**
16956
+ * Answers of 7 or 8
16957
+ */
16958
+ passives: number;
16959
+ /**
16960
+ * Answers of 9 or 10
16961
+ */
16962
+ promoters: number;
16963
+ /**
16964
+ * Answers of 6 or below
16965
+ */
16966
+ detractors: number;
16967
+ /**
16968
+ * The first nps question of the survey — the one this scores
16969
+ */
16970
+ questionId: string;
16971
+ } | null);
15908
16972
  /**
15909
- * Lifecycle bucket the status belongs to
16973
+ * ISO-8601 start of the window that was actually applied
15910
16974
  */
15911
- category: ("open" | "pending" | "resolved" | "closed");
15912
- }
15913
- interface SupportStatusCreateInput {
16975
+ from: string;
15914
16976
  /**
15915
- * Status name as the customer wants to see it. Unique within the product
16977
+ * The survey these numbers describe
15916
16978
  */
15917
- name: string;
16979
+ surveyId: string;
15918
16980
  /**
15919
- * Display colour as a six-digit hex string, e.g. #2563eb
16981
+ * Every question of the survey, answered or not
15920
16982
  */
15921
- color: string;
16983
+ questions: {
16984
+ /**
16985
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
16986
+ */
16987
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
16988
+ /**
16989
+ * The question as the respondent read it
16990
+ */
16991
+ label: string;
16992
+ /**
16993
+ * rating and nps: the mean to two decimals, or null when nothing was answered. Null for every other type
16994
+ */
16995
+ average: (number | null);
16996
+ /**
16997
+ * radio and checkbox: every option the question declares, in its declared order, including the ones nobody picked. Null for every other type
16998
+ */
16999
+ options: ({
17000
+ /**
17001
+ * How many responses picked it
17002
+ */
17003
+ count: number;
17004
+ /**
17005
+ * The option label, as the survey declares it
17006
+ */
17007
+ label: string;
17008
+ /**
17009
+ * The option this count belongs to
17010
+ */
17011
+ optionId: string;
17012
+ }[] | null);
17013
+ /**
17014
+ * How many responses answered it. An empty checkbox selection is not an answer
17015
+ */
17016
+ answered: number;
17017
+ /**
17018
+ * The question this aggregate belongs to
17019
+ */
17020
+ questionId: string;
17021
+ /**
17022
+ * rating and nps: how many responses gave each value, ascending. Null for every other type
17023
+ */
17024
+ distribution: ({
17025
+ /**
17026
+ * How many responses gave it
17027
+ */
17028
+ count: number;
17029
+ /**
17030
+ * The value that was given
17031
+ */
17032
+ score: number;
17033
+ }[] | null);
17034
+ }[];
15922
17035
  /**
15923
- * Sort order within the status dictionary, lowest first
17036
+ * The response counts over the window
15924
17037
  */
15925
- order: number;
17038
+ responses: {
17039
+ /**
17040
+ * Responses submitted in the window
17041
+ */
17042
+ total: number;
17043
+ /**
17044
+ * How many of them reached the end
17045
+ */
17046
+ completed: number;
17047
+ };
17048
+ }
17049
+ interface SupportSurveyUnpublishInput {
15926
17050
  /**
15927
- * Lifecycle bucket the status belongs to. Automation and reporting read the category, never the name — so it cannot be changed once threads sit on the status
17051
+ * Survey id
15928
17052
  */
15929
- category: ("open" | "pending" | "resolved" | "closed");
17053
+ id: string;
15930
17054
  }
15931
- interface SupportStatusCreateOutput {
17055
+ interface SupportSurveyUnpublishOutput {
15932
17056
  /**
15933
- * Status id
17057
+ * Survey id
15934
17058
  */
15935
17059
  id: string;
15936
17060
  /**
15937
- * Status name, unique within the product
17061
+ * What this survey is called
15938
17062
  */
15939
17063
  name: string;
15940
17064
  /**
15941
- * Display colour as a hex string
15942
- */
15943
- color: string;
15944
- /**
15945
- * Sort order within the status dictionary
15946
- */
15947
- order: number;
15948
- /**
15949
- * Archived statuses stay readable but are not offered as targets
15950
- */
15951
- archived: boolean;
15952
- /**
15953
- * Lifecycle bucket the status belongs to
17065
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
15954
17066
  */
15955
- category: ("open" | "pending" | "resolved" | "closed");
15956
- }
15957
- interface SupportStatusListInput {
17067
+ status: ("draft" | "published" | "archived");
15958
17068
  /**
15959
- * Also return archived statuses (default false)
17069
+ * ISO-8601 creation timestamp
15960
17070
  */
15961
- includeArchived?: boolean;
15962
- }
15963
- interface SupportStatusListOutput {
17071
+ createdAt: string;
15964
17072
  /**
15965
- * The product status dictionary, in display order
17073
+ * The ordered question set, exactly as stored
15966
17074
  */
15967
- statuses: {
17075
+ questions: {
15968
17076
  /**
15969
- * Status id
17077
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
15970
17078
  */
15971
17079
  id: string;
15972
17080
  /**
15973
- * Status name, unique within the product
17081
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
15974
17082
  */
15975
- name: string;
17083
+ skip?: {
17084
+ [k: string]: string;
17085
+ };
15976
17086
  /**
15977
- * Display colour as a hex string
17087
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
15978
17088
  */
15979
- color: string;
17089
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
15980
17090
  /**
15981
- * Sort order within the status dictionary
17091
+ * The question as the respondent reads it
15982
17092
  */
15983
- order: number;
17093
+ label: string;
15984
17094
  /**
15985
- * Archived statuses stay readable but are not offered as targets
17095
+ * The rating scale. rating only nps is fixed 0..10
15986
17096
  */
15987
- archived: boolean;
17097
+ scale?: {
17098
+ /**
17099
+ * Top of the scale, at most 10
17100
+ */
17101
+ max: number;
17102
+ /**
17103
+ * Bottom of the scale: 0 or 1
17104
+ */
17105
+ min: (0 | 1);
17106
+ };
15988
17107
  /**
15989
- * Lifecycle bucket the status belongs to
17108
+ * The choices. radio and checkbox only
17109
+ *
17110
+ * @minItems 1
17111
+ * @maxItems 50
15990
17112
  */
15991
- category: ("open" | "pending" | "resolved" | "closed");
17113
+ options?: [
17114
+ {
17115
+ /**
17116
+ * Client-owned id of the option, unique within the question
17117
+ */
17118
+ id: string;
17119
+ /**
17120
+ * What the respondent reads
17121
+ */
17122
+ label: string;
17123
+ },
17124
+ ...({
17125
+ /**
17126
+ * Client-owned id of the option, unique within the question
17127
+ */
17128
+ id: string;
17129
+ /**
17130
+ * What the respondent reads
17131
+ */
17132
+ label: string;
17133
+ })[]
17134
+ ];
17135
+ /**
17136
+ * When true, a response marked completed must answer it. Never valid on a statement
17137
+ */
17138
+ required?: boolean;
15992
17139
  }[];
17140
+ /**
17141
+ * ISO-8601 last-modification timestamp
17142
+ */
17143
+ updatedAt: string;
15993
17144
  }
15994
- interface SupportStatusUpdateInput {
17145
+ interface SupportSurveyUpdateInput {
15995
17146
  /**
15996
- * Status id
17147
+ * Survey id
15997
17148
  */
15998
17149
  id: string;
15999
17150
  /**
16000
- * Status name as the customer wants to see it. Unique within the product
17151
+ * New name
16001
17152
  */
16002
17153
  name?: string;
16003
17154
  /**
16004
- * Display colour as a six-digit hex string, e.g. #2563eb
16005
- */
16006
- color?: string;
16007
- /**
16008
- * Sort order within the status dictionary, lowest first
16009
- */
16010
- order?: number;
16011
- /**
16012
- * New lifecycle bucket. Refused while any thread references the status
17155
+ * The complete new question set, replacing the old one. Pass [] to empty the draft
17156
+ *
17157
+ * @maxItems 100
16013
17158
  */
16014
- category?: ("open" | "pending" | "resolved" | "closed");
17159
+ questions?: {
17160
+ /**
17161
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
17162
+ */
17163
+ id: string;
17164
+ /**
17165
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
17166
+ */
17167
+ skip?: {
17168
+ [k: string]: string;
17169
+ };
17170
+ /**
17171
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
17172
+ */
17173
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
17174
+ /**
17175
+ * The question as the respondent reads it
17176
+ */
17177
+ label: string;
17178
+ /**
17179
+ * The rating scale. rating only — nps is fixed 0..10
17180
+ */
17181
+ scale?: {
17182
+ /**
17183
+ * Top of the scale, at most 10
17184
+ */
17185
+ max: number;
17186
+ /**
17187
+ * Bottom of the scale: 0 or 1
17188
+ */
17189
+ min: (0 | 1);
17190
+ };
17191
+ /**
17192
+ * The choices. radio and checkbox only
17193
+ *
17194
+ * @minItems 1
17195
+ * @maxItems 50
17196
+ */
17197
+ options?: [
17198
+ {
17199
+ /**
17200
+ * Client-owned id of the option, unique within the question
17201
+ */
17202
+ id: string;
17203
+ /**
17204
+ * What the respondent reads
17205
+ */
17206
+ label: string;
17207
+ },
17208
+ ...({
17209
+ /**
17210
+ * Client-owned id of the option, unique within the question
17211
+ */
17212
+ id: string;
17213
+ /**
17214
+ * What the respondent reads
17215
+ */
17216
+ label: string;
17217
+ })[]
17218
+ ];
17219
+ /**
17220
+ * When true, a response marked completed must answer it. Never valid on a statement
17221
+ */
17222
+ required?: boolean;
17223
+ }[];
16015
17224
  }
16016
- interface SupportStatusUpdateOutput {
17225
+ interface SupportSurveyUpdateOutput {
16017
17226
  /**
16018
- * Status id
17227
+ * Survey id
16019
17228
  */
16020
17229
  id: string;
16021
17230
  /**
16022
- * Status name, unique within the product
17231
+ * What this survey is called
16023
17232
  */
16024
17233
  name: string;
16025
17234
  /**
16026
- * Display colour as a hex string
17235
+ * draft: editable, not answerable. published: answerable, frozen. archived: terminal, neither editable nor answerable, and there is no way back
16027
17236
  */
16028
- color: string;
17237
+ status: ("draft" | "published" | "archived");
16029
17238
  /**
16030
- * Sort order within the status dictionary
17239
+ * ISO-8601 creation timestamp
16031
17240
  */
16032
- order: number;
17241
+ createdAt: string;
16033
17242
  /**
16034
- * Archived statuses stay readable but are not offered as targets
17243
+ * The ordered question set, exactly as stored
16035
17244
  */
16036
- archived: boolean;
17245
+ questions: {
17246
+ /**
17247
+ * Client-owned id of the question, unique within the survey. Answers are keyed by it
17248
+ */
17249
+ id: string;
17250
+ /**
17251
+ * Branching, radio only: option id -> the question id to jump to, or 'end' to finish. Targets must be later questions; publish refuses anything else
17252
+ */
17253
+ skip?: {
17254
+ [k: string]: string;
17255
+ };
17256
+ /**
17257
+ * reaction: a free string the client owns (an emoji). text: free prose. radio: one option. checkbox: any number of options. rating: an integer on a declared scale. nps: an integer 0..10. statement: displayed, never answered
17258
+ */
17259
+ type: ("reaction" | "text" | "radio" | "checkbox" | "rating" | "nps" | "statement");
17260
+ /**
17261
+ * The question as the respondent reads it
17262
+ */
17263
+ label: string;
17264
+ /**
17265
+ * The rating scale. rating only — nps is fixed 0..10
17266
+ */
17267
+ scale?: {
17268
+ /**
17269
+ * Top of the scale, at most 10
17270
+ */
17271
+ max: number;
17272
+ /**
17273
+ * Bottom of the scale: 0 or 1
17274
+ */
17275
+ min: (0 | 1);
17276
+ };
17277
+ /**
17278
+ * The choices. radio and checkbox only
17279
+ *
17280
+ * @minItems 1
17281
+ * @maxItems 50
17282
+ */
17283
+ options?: [
17284
+ {
17285
+ /**
17286
+ * Client-owned id of the option, unique within the question
17287
+ */
17288
+ id: string;
17289
+ /**
17290
+ * What the respondent reads
17291
+ */
17292
+ label: string;
17293
+ },
17294
+ ...({
17295
+ /**
17296
+ * Client-owned id of the option, unique within the question
17297
+ */
17298
+ id: string;
17299
+ /**
17300
+ * What the respondent reads
17301
+ */
17302
+ label: string;
17303
+ })[]
17304
+ ];
17305
+ /**
17306
+ * When true, a response marked completed must answer it. Never valid on a statement
17307
+ */
17308
+ required?: boolean;
17309
+ }[];
16037
17310
  /**
16038
- * Lifecycle bucket the status belongs to
17311
+ * ISO-8601 last-modification timestamp
16039
17312
  */
16040
- category: ("open" | "pending" | "resolved" | "closed");
17313
+ updatedAt: string;
16041
17314
  }
16042
17315
  interface SupportThreadAssignInput {
16043
17316
  /**
@@ -16834,11 +18107,11 @@ interface SupportWebhookCreateInput {
16834
18107
  */
16835
18108
  url: string;
16836
18109
  /**
16837
- * Event types this endpoint subscribes to. One or more of support.message.created, support.thread.status-changed, support.thread.assigned
18110
+ * Event types this endpoint subscribes to. One or more of support.message.created, support.thread.status-changed, support.thread.assigned, support.survey.published, support.response.created
16838
18111
  *
16839
18112
  * @minItems 1
16840
18113
  */
16841
- eventTypes: [("support.message.created" | "support.thread.status-changed" | "support.thread.assigned"), ...(("support.message.created" | "support.thread.status-changed" | "support.thread.assigned"))[]];
18114
+ eventTypes: [("support.message.created" | "support.thread.status-changed" | "support.thread.assigned" | "support.survey.published" | "support.response.created"), ...(("support.message.created" | "support.thread.status-changed" | "support.thread.assigned" | "support.survey.published" | "support.response.created"))[]];
16842
18115
  /**
16843
18116
  * Free-form note about what this endpoint is for, up to 1000 characters
16844
18117
  */
@@ -16918,7 +18191,7 @@ interface SupportWebhookDeliveriesListInput {
16918
18191
  /**
16919
18192
  * Only deliveries of this event type
16920
18193
  */
16921
- eventType?: ("support.message.created" | "support.thread.status-changed" | "support.thread.assigned");
18194
+ eventType?: ("support.message.created" | "support.thread.status-changed" | "support.thread.assigned" | "support.survey.published" | "support.response.created");
16922
18195
  /**
16923
18196
  * Only deliveries for this endpoint
16924
18197
  */
@@ -17195,11 +18468,11 @@ interface SupportWebhookUpdateInput {
17195
18468
  */
17196
18469
  status?: ("active" | "disabled");
17197
18470
  /**
17198
- * Event types this endpoint subscribes to. One or more of support.message.created, support.thread.status-changed, support.thread.assigned
18471
+ * Event types this endpoint subscribes to. One or more of support.message.created, support.thread.status-changed, support.thread.assigned, support.survey.published, support.response.created
17199
18472
  *
17200
18473
  * @minItems 1
17201
18474
  */
17202
- eventTypes?: [("support.message.created" | "support.thread.status-changed" | "support.thread.assigned"), ...(("support.message.created" | "support.thread.status-changed" | "support.thread.assigned"))[]];
18475
+ eventTypes?: [("support.message.created" | "support.thread.status-changed" | "support.thread.assigned" | "support.survey.published" | "support.response.created"), ...(("support.message.created" | "support.thread.status-changed" | "support.thread.assigned" | "support.survey.published" | "support.response.created"))[]];
17203
18476
  /**
17204
18477
  * Free-form note about what this endpoint is for, up to 1000 characters
17205
18478
  */
@@ -21473,12 +22746,27 @@ interface GeneratedClient {
21473
22746
  create(input: SupportMessageCreateInput): Promise<SupportMessageCreateOutput>;
21474
22747
  list(input: SupportMessageListInput): Promise<SupportMessageListOutput>;
21475
22748
  };
22749
+ response: {
22750
+ escalate(input: SupportResponseEscalateInput): Promise<SupportResponseEscalateOutput>;
22751
+ get(input: SupportResponseGetInput): Promise<SupportResponseGetOutput>;
22752
+ list(input: SupportResponseListInput): Promise<SupportResponseListOutput>;
22753
+ };
21476
22754
  status: {
21477
22755
  archive(input: SupportStatusArchiveInput): Promise<SupportStatusArchiveOutput>;
21478
22756
  create(input: SupportStatusCreateInput): Promise<SupportStatusCreateOutput>;
21479
22757
  list(input: SupportStatusListInput): Promise<SupportStatusListOutput>;
21480
22758
  update(input: SupportStatusUpdateInput): Promise<SupportStatusUpdateOutput>;
21481
22759
  };
22760
+ survey: {
22761
+ archive(input: SupportSurveyArchiveInput): Promise<SupportSurveyArchiveOutput>;
22762
+ create(input: SupportSurveyCreateInput): Promise<SupportSurveyCreateOutput>;
22763
+ get(input: SupportSurveyGetInput): Promise<SupportSurveyGetOutput>;
22764
+ list(input: SupportSurveyListInput): Promise<SupportSurveyListOutput>;
22765
+ publish(input: SupportSurveyPublishInput): Promise<SupportSurveyPublishOutput>;
22766
+ stats(input: SupportSurveyStatsInput): Promise<SupportSurveyStatsOutput>;
22767
+ unpublish(input: SupportSurveyUnpublishInput): Promise<SupportSurveyUnpublishOutput>;
22768
+ update(input: SupportSurveyUpdateInput): Promise<SupportSurveyUpdateOutput>;
22769
+ };
21482
22770
  thread: {
21483
22771
  assign(input: SupportThreadAssignInput): Promise<SupportThreadAssignOutput>;
21484
22772
  create(input: SupportThreadCreateInput): Promise<SupportThreadCreateOutput>;
@@ -21675,4 +22963,4 @@ interface GeneratedClient {
21675
22963
  };
21676
22964
  }
21677
22965
 
21678
- 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, ObserveIssuesArchiveOutput 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, ObserveArtifactsDeleteInput as fU, ObserveArtifactsDeleteOutput as fV, ObserveArtifactsListInput as fW, ObserveArtifactsListOutput as fX, ObserveArtifactsResolveInput as fY, ObserveArtifactsResolveOutput as fZ, ObserveIssuesArchiveInput 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, OrganizationDomainsAddOutput as g$, ObserveIssuesAssignInput as g0, ObserveIssuesAssignOutput as g1, ObserveIssuesGetInput as g2, ObserveIssuesGetOutput as g3, ObserveIssuesListInput as g4, ObserveIssuesListOutput as g5, ObserveIssuesResolveInput as g6, ObserveIssuesResolveOutput as g7, ObserveKeysCreateInput as g8, ObserveKeysCreateOutput as g9, OrganizationConnectorsApproveRequestInput as gA, OrganizationConnectorsApproveRequestOutput as gB, OrganizationConnectorsAttachInput as gC, OrganizationConnectorsAttachOutput as gD, OrganizationConnectorsDeleteInput as gE, OrganizationConnectorsDeleteOutput as gF, OrganizationConnectorsDenyRequestInput as gG, OrganizationConnectorsDenyRequestOutput as gH, OrganizationConnectorsDetachInput as gI, OrganizationConnectorsDetachOutput as gJ, OrganizationConnectorsListAttachmentsInput as gK, OrganizationConnectorsListAttachmentsOutput as gL, OrganizationConnectorsListAvailableInput as gM, OrganizationConnectorsListAvailableOutput as gN, OrganizationConnectorsListOrgInput as gO, OrganizationConnectorsListOrgOutput as gP, OrganizationConnectorsListInput as gQ, OrganizationConnectorsListOutput as gR, OrganizationConnectorsListRequestsInput as gS, OrganizationConnectorsListRequestsOutput as gT, OrganizationConnectorsRemoveInput as gU, OrganizationConnectorsRemoveOutput as gV, OrganizationConnectorsRequestInput as gW, OrganizationConnectorsRequestOutput as gX, OrganizationCreateInput as gY, OrganizationCreateOutput as gZ, OrganizationDomainsAddInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsSearchInput as ge, ObserveLogsSearchOutput as gf, ObserveLogsTailInput as gg, ObserveLogsTailOutput as gh, OrganizationAuthMeInput as gi, OrganizationAuthMeOutput as gj, OrganizationBillingBudgetsGetInput as gk, OrganizationBillingBudgetsGetOutput as gl, OrganizationBillingBudgetsSetInput as gm, OrganizationBillingBudgetsSetOutput as gn, OrganizationBillingCapsClearInput as go, OrganizationBillingCapsClearOutput as gp, OrganizationBillingCapsSetInput as gq, OrganizationBillingCapsSetOutput as gr, OrganizationBindingsListInput as gs, OrganizationBindingsListOutput as gt, OrganizationClickupInstallInput as gu, OrganizationClickupInstallOutput as gv, OrganizationClickupListInstallationsInput as gw, OrganizationClickupListInstallationsOutput as gx, OrganizationCloudflareInstallInput as gy, OrganizationCloudflareInstallOutput as gz, BrainBackupsListOutput as h, OrganizationProductUpdateOutput as h$, OrganizationDomainsGetInput as h0, OrganizationDomainsGetOutput as h1, OrganizationDomainsListInput as h2, OrganizationDomainsListOutput as h3, OrganizationDomainsRemoveInput as h4, OrganizationDomainsRemoveOutput as h5, OrganizationDomainsSetModeInput as h6, OrganizationDomainsSetModeOutput as h7, OrganizationExtensionsListInstalledInput as h8, OrganizationExtensionsListInstalledOutput as h9, OrganizationMemberSetRoleInput as hA, OrganizationMemberSetRoleOutput as hB, OrganizationMemberShareProductInput as hC, OrganizationMemberShareProductOutput as hD, OrganizationMemberUnshareProductInput as hE, OrganizationMemberUnshareProductOutput as hF, OrganizationMembersAssignRoleInput as hG, OrganizationMembersAssignRoleOutput as hH, OrganizationPermissionCatalogInput as hI, OrganizationPermissionCatalogOutput as hJ, OrganizationProductCreateInput as hK, OrganizationProductCreateOutput as hL, OrganizationProductListAccessInput as hM, OrganizationProductListAccessOutput as hN, OrganizationProductListMembersInput as hO, OrganizationProductListMembersOutput as hP, OrganizationProductListInput as hQ, OrganizationProductListOutput as hR, OrganizationProductListRolesInput as hS, OrganizationProductListRolesOutput as hT, OrganizationProductRevokeAccessInput as hU, OrganizationProductRevokeAccessOutput as hV, OrganizationProductSelectInput as hW, OrganizationProductSelectOutput as hX, OrganizationProductSetAccessInput as hY, OrganizationProductSetAccessOutput as hZ, OrganizationProductUpdateInput as h_, OrganizationFeedbackSubmitInput as ha, OrganizationFeedbackSubmitOutput as hb, OrganizationGdriveInstallInput as hc, OrganizationGdriveInstallOutput as hd, OrganizationGithubInstallInput as he, OrganizationGithubInstallOutput as hf, OrganizationGithubListInstallationsInput as hg, OrganizationGithubListInstallationsOutput as hh, OrganizationGoogleadsInstallInput as hi, OrganizationGoogleadsInstallOutput as hj, OrganizationListInput as hk, OrganizationListOutput as hl, OrganizationMemberAcceptInviteInput as hm, OrganizationMemberAcceptInviteOutput as hn, OrganizationMemberInviteInput as ho, OrganizationMemberInviteOutput as hp, OrganizationMemberListInvitationsInput as hq, OrganizationMemberListInvitationsOutput as hr, OrganizationMemberListProductAccessInput as hs, OrganizationMemberListProductAccessOutput as ht, OrganizationMemberListInput as hu, OrganizationMemberListOutput as hv, OrganizationMemberRemoveInput as hw, OrganizationMemberRemoveOutput as hx, OrganizationMemberRevokeInvitationInput as hy, OrganizationMemberRevokeInvitationOutput as hz, BrainClickupChannelsListInput as i, RealtimeArchiveGetOutput as i$, OrganizationPublicKeysCreateInput as i0, OrganizationPublicKeysCreateOutput as i1, OrganizationPublicKeysListInput as i2, OrganizationPublicKeysListOutput as i3, OrganizationPublicKeysRevokeInput as i4, OrganizationPublicKeysRevokeOutput as i5, OrganizationPublicKeysUpdateScopeInput as i6, OrganizationPublicKeysUpdateScopeOutput as i7, OrganizationPublicRoutesListInput as i8, OrganizationPublicRoutesListOutput as i9, PlaygroundBillingEntitlementsInput as iA, PlaygroundBillingEntitlementsOutput as iB, PlaygroundBillingRecordUsageInput as iC, PlaygroundBillingRecordUsageOutput as iD, PlaygroundClickupCreateTaskInput as iE, PlaygroundClickupCreateTaskOutput as iF, PlaygroundClickupGetLastWebhookInput as iG, PlaygroundClickupGetLastWebhookOutput as iH, PlaygroundClickupGetOverviewInput as iI, PlaygroundClickupGetOverviewOutput as iJ, PlaygroundGdriveGetLastChangeInput as iK, PlaygroundGdriveGetLastChangeOutput as iL, PlaygroundGdriveReadFileInput as iM, PlaygroundGdriveReadFileOutput as iN, PlaygroundGoogleadsReadCustomerInput as iO, PlaygroundGoogleadsReadCustomerOutput as iP, PlaygroundLifecycleGetStateInput as iQ, PlaygroundLifecycleGetStateOutput as iR, PlaygroundLifecycleListEventsInput as iS, PlaygroundLifecycleListEventsOutput as iT, PlaygroundWebhookGetLastInput as iU, PlaygroundWebhookGetLastOutput as iV, RealtimeArchiveExportInput as iW, RealtimeArchiveExportOutput as iX, RealtimeArchiveExportStatusInput as iY, RealtimeArchiveExportStatusOutput as iZ, RealtimeArchiveGetInput as i_, OrganizationRolesCreateInput as ia, OrganizationRolesCreateOutput as ib, OrganizationRolesDeleteInput as ic, OrganizationRolesDeleteOutput as id, OrganizationRolesGetInput as ie, OrganizationRolesGetOutput as ig, OrganizationRolesListInput as ih, OrganizationRolesListOutput as ii, OrganizationRolesUpdateInput as ij, OrganizationRolesUpdateOutput as ik, OrganizationSecurityMfaEnableInput as il, OrganizationSecurityMfaEnableOutput as im, OrganizationSelectInput as io, OrganizationSelectOutput as ip, OrganizationSupportThreadCreateInput as iq, OrganizationSupportThreadCreateOutput as ir, OrganizationSupportThreadGetInput as is, OrganizationSupportThreadGetOutput as it, OrganizationSupportThreadReplyInput as iu, OrganizationSupportThreadReplyOutput as iv, OrganizationSupportThreadsListInput as iw, OrganizationSupportThreadsListOutput as ix, PlaygroundAnalyticsOverviewInput as iy, PlaygroundAnalyticsOverviewOutput as iz, BrainClickupChannelsListOutput as j, SupportLabelCreateOutput as j$, RealtimeGrantCreateInput as j0, RealtimeGrantCreateOutput as j1, RealtimeGrantListInput as j2, RealtimeGrantListOutput as j3, RealtimeGrantRevokeInput as j4, RealtimeGrantRevokeOutput as j5, RealtimeHistoryGetInput as j6, RealtimeHistoryGetOutput as j7, RealtimeMessagesPublishInput as j8, RealtimeMessagesPublishOutput as j9, RealtimeWebhookCreateInput as jA, RealtimeWebhookCreateOutput as jB, RealtimeWebhookDeleteInput as jC, RealtimeWebhookDeleteOutput as jD, RealtimeWebhookDeliveriesListInput as jE, RealtimeWebhookDeliveriesListOutput as jF, RealtimeWebhookGetInput as jG, RealtimeWebhookGetOutput as jH, RealtimeWebhookListInput as jI, RealtimeWebhookListOutput as jJ, RealtimeWebhookSecretRotateInput as jK, RealtimeWebhookSecretRotateOutput as jL, RealtimeWebhookUpdateInput as jM, RealtimeWebhookUpdateOutput as jN, SupportAgentCreateInput as jO, SupportAgentCreateOutput as jP, SupportAgentGetInput as jQ, SupportAgentGetOutput as jR, SupportAgentListInput as jS, SupportAgentListOutput as jT, SupportAgentUpdateInput as jU, SupportAgentUpdateOutput as jV, SupportAttachmentCreateInput as jW, SupportAttachmentCreateOutput as jX, SupportAttachmentFinalizeInput as jY, SupportAttachmentFinalizeOutput as jZ, SupportLabelCreateInput as j_, RealtimeNamespaceCreateInput as ja, RealtimeNamespaceCreateOutput as jb, RealtimeNamespaceDeleteInput as jc, RealtimeNamespaceDeleteOutput as jd, RealtimeNamespaceGetInput as je, RealtimeNamespaceGetOutput as jf, RealtimeNamespaceListInput as jg, RealtimeNamespaceListOutput as jh, RealtimeNamespaceUpdateInput as ji, RealtimeNamespaceUpdateOutput as jj, RealtimePresenceEnterInput as jk, RealtimePresenceEnterOutput as jl, RealtimePresenceGetInput as jm, RealtimePresenceGetOutput as jn, RealtimePresenceLeaveInput as jo, RealtimePresenceLeaveOutput as jp, RealtimePresenceStatsInput as jq, RealtimePresenceStatsOutput as jr, RealtimePresenceUpdateInput as js, RealtimePresenceUpdateOutput as jt, RealtimePublicAccessStatusInput as ju, RealtimePublicAccessStatusOutput as jv, RealtimeStatusGetInput as jw, RealtimeStatusGetOutput as jx, RealtimeTokensCreateInput as jy, RealtimeTokensCreateOutput as jz, BrainClickupConnectionsListInput as k, TrackingGoogleadsFeedbackConfigGetOutput as k$, SupportLabelListInput as k0, SupportLabelListOutput as k1, SupportMessageCreateInput as k2, SupportMessageCreateOutput as k3, SupportMessageListInput as k4, SupportMessageListOutput as k5, SupportStatusArchiveInput as k6, SupportStatusArchiveOutput as k7, SupportStatusCreateInput as k8, SupportStatusCreateOutput as k9, SupportWebhookRedeliverInput as kA, SupportWebhookRedeliverOutput as kB, SupportWebhookRotateSecretInput as kC, SupportWebhookRotateSecretOutput as kD, SupportWebhookUpdateInput as kE, SupportWebhookUpdateOutput as kF, TrackingDomainsCreateInput as kG, TrackingDomainsCreateOutput as kH, TrackingDomainsDeleteInput as kI, TrackingDomainsDeleteOutput as kJ, TrackingDomainsGetInput as kK, TrackingDomainsGetOutput as kL, TrackingDomainsListInput as kM, TrackingDomainsListOutput as kN, TrackingDomainsVerifyInput as kO, TrackingDomainsVerifyOutput as kP, TrackingEventNamesArchiveInput as kQ, TrackingEventNamesArchiveOutput as kR, TrackingEventNamesListInput as kS, TrackingEventNamesListOutput as kT, TrackingEventNamesUnarchiveInput as kU, TrackingEventNamesUnarchiveOutput as kV, TrackingGoogleadsConnectionStatusInput as kW, TrackingGoogleadsConnectionStatusOutput as kX, TrackingGoogleadsConversionActionsInput as kY, TrackingGoogleadsConversionActionsOutput as kZ, TrackingGoogleadsFeedbackConfigGetInput as k_, SupportStatusListInput as ka, SupportStatusListOutput as kb, SupportStatusUpdateInput as kc, SupportStatusUpdateOutput as kd, SupportThreadAssignInput as ke, SupportThreadAssignOutput as kf, SupportThreadCreateInput as kg, SupportThreadCreateOutput as kh, SupportThreadGetInput as ki, SupportThreadGetOutput as kj, SupportThreadListInput as kk, SupportThreadListOutput as kl, SupportThreadStatusSetInput as km, SupportThreadStatusSetOutput as kn, SupportThreadUpdateInput as ko, SupportThreadUpdateOutput as kp, SupportWebhookCreateInput as kq, SupportWebhookCreateOutput as kr, SupportWebhookDeleteInput as ks, SupportWebhookDeleteOutput as kt, SupportWebhookDeliveriesListInput as ku, SupportWebhookDeliveriesListOutput as kv, SupportWebhookGetInput as kw, SupportWebhookGetOutput as kx, SupportWebhookListInput as ky, SupportWebhookListOutput as kz, BrainClickupConnectionsListOutput as l, UsersFactorsListOutput as l$, TrackingGoogleadsFeedbackConfigSetInput as l0, TrackingGoogleadsFeedbackConfigSetOutput as l1, TrackingGoogleadsFeedbackRunInput as l2, TrackingGoogleadsFeedbackRunOutput as l3, TrackingGoogleadsFeedbackStatusInput as l4, TrackingGoogleadsFeedbackStatusOutput as l5, TrackingGoogleadsFeedbackUploadsInput as l6, TrackingGoogleadsFeedbackUploadsOutput as l7, TrackingGoogleadsRoasReportInput as l8, TrackingGoogleadsRoasReportOutput as l9, TrackingProfilesGetInput as lA, TrackingProfilesGetOutput as lB, TrackingProfilesListInput as lC, TrackingProfilesListOutput as lD, TrackingReportsAttributedJourneyInput as lE, TrackingReportsAttributedJourneyOutput as lF, TrackingReportsEventVolumeInput as lG, TrackingReportsEventVolumeOutput as lH, TrackingReportsRevenueBySourceInput as lI, TrackingReportsRevenueBySourceOutput as lJ, TrackingReportsSourcePeopleInput as lK, TrackingReportsSourcePeopleOutput as lL, TrackingSnippetsGetInput as lM, TrackingSnippetsGetOutput as lN, UsersApikeysCreateInput as lO, UsersApikeysCreateOutput as lP, UsersApikeysListInput as lQ, UsersApikeysListOutput as lR, UsersApikeysRevokeInput as lS, UsersApikeysRevokeOutput as lT, UsersAuditListInput as lU, UsersAuditListOutput as lV, UsersConfigGetInput as lW, UsersConfigGetOutput as lX, UsersConfigUpsertInput as lY, UsersConfigUpsertOutput as lZ, UsersFactorsListInput as l_, TrackingGoogleadsSyncNowInput as la, TrackingGoogleadsSyncNowOutput as lb, TrackingGoogleadsTrackingHealthInput as lc, TrackingGoogleadsTrackingHealthOutput as ld, TrackingGoogleadsUsVsPlatformInput as le, TrackingGoogleadsUsVsPlatformOutput as lf, TrackingIdentityHealthInput as lg, TrackingIdentityHealthOutput as lh, TrackingInstallDomainsCreateInput as li, TrackingInstallDomainsCreateOutput as lj, TrackingInstallDomainsDeleteInput as lk, TrackingInstallDomainsDeleteOutput as ll, TrackingInstallDomainsListInput as lm, TrackingInstallDomainsListOutput as ln, TrackingLinkDomainsCreateInput as lo, TrackingLinkDomainsCreateOutput as lp, TrackingLinkDomainsDeleteInput as lq, TrackingLinkDomainsDeleteOutput as lr, TrackingLinkDomainsListInput as ls, TrackingLinkDomainsListOutput as lt, TrackingLiveEventsListInput as lu, TrackingLiveEventsListOutput as lv, TrackingProfilesDeleteInput as lw, TrackingProfilesDeleteOutput as lx, TrackingProfilesExportInput as ly, TrackingProfilesExportOutput as lz, BrainClickupListsListInput as m, UsersWebhooksGetOutput as m$, UsersFactorsResetInput as m0, UsersFactorsResetOutput as m1, UsersKeysListInput as m2, UsersKeysListOutput as m3, UsersKeysRevokeInput as m4, UsersKeysRevokeOutput as m5, UsersKeysRotateInput as m6, UsersKeysRotateOutput as m7, UsersOpsRetentionGetInput as m8, UsersOpsRetentionGetOutput as m9, UsersUsersInviteInput as mA, UsersUsersInviteOutput as mB, UsersUsersListInput as mC, UsersUsersListOutput as mD, UsersUsersSetPrimaryIdentifierInput as mE, UsersUsersSetPrimaryIdentifierOutput as mF, UsersUsersUnbanInput as mG, UsersUsersUnbanOutput as mH, UsersUsersUpdateInput as mI, UsersUsersUpdateOutput as mJ, UsersWaitlistEraseInput as mK, UsersWaitlistEraseOutput as mL, UsersWaitlistFunnelInput as mM, UsersWaitlistFunnelOutput as mN, UsersWaitlistImportInput as mO, UsersWaitlistImportOutput as mP, UsersWaitlistInviteInput as mQ, UsersWaitlistInviteOutput as mR, UsersWaitlistListInput as mS, UsersWaitlistListOutput as mT, UsersWebhooksCreateInput as mU, UsersWebhooksCreateOutput as mV, UsersWebhooksDeleteInput as mW, UsersWebhooksDeleteOutput as mX, UsersWebhooksDeliveriesListInput as mY, UsersWebhooksDeliveriesListOutput as mZ, UsersWebhooksGetInput as m_, UsersOpsSloGetInput as ma, UsersOpsSloGetOutput as mb, UsersSessionsGetInput as mc, UsersSessionsGetOutput as md, UsersSessionsImpersonateInput as me, UsersSessionsImpersonateOutput as mf, UsersSessionsListInput as mg, UsersSessionsListOutput as mh, UsersSessionsRevokeInput as mi, UsersSessionsRevokeOutput as mj, UsersStatsGetInput as mk, UsersStatsGetOutput as ml, UsersUsersBanInput as mm, UsersUsersBanOutput as mn, UsersUsersCreateInput as mo, UsersUsersCreateOutput as mp, UsersUsersDeleteInput as mq, UsersUsersDeleteOutput as mr, UsersUsersEraseInput as ms, UsersUsersEraseOutput as mt, UsersUsersExportInput as mu, UsersUsersExportOutput as mv, UsersUsersGetInput as mw, UsersUsersGetOutput as mx, UsersUsersImportInput as my, UsersUsersImportOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksListInput as n0, UsersWebhooksListOutput as n1, UsersWebhooksRotateSecretInput as n2, UsersWebhooksRotateSecretOutput as n3, UsersWebhooksUpdateInput as n4, UsersWebhooksUpdateOutput as n5, WaitlistConfigGetInput as n6, WaitlistConfigGetOutput as n7, WaitlistConfigUpsertInput as n8, WaitlistConfigUpsertOutput as n9, WaitlistEmbedGetInput as na, WaitlistEmbedGetOutput as nb, WaitlistInvitesSendInput as nc, WaitlistInvitesSendOutput as nd, WaitlistSignupsEraseInput as ne, WaitlistSignupsEraseOutput as nf, WaitlistSignupsFunnelInput as ng, WaitlistSignupsFunnelOutput as nh, WaitlistSignupsListInput as ni, WaitlistSignupsListOutput as nj, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
22966
+ 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, ObserveIssuesArchiveOutput 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, ObserveArtifactsDeleteInput as fU, ObserveArtifactsDeleteOutput as fV, ObserveArtifactsListInput as fW, ObserveArtifactsListOutput as fX, ObserveArtifactsResolveInput as fY, ObserveArtifactsResolveOutput as fZ, ObserveIssuesArchiveInput 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, OrganizationDomainsAddOutput as g$, ObserveIssuesAssignInput as g0, ObserveIssuesAssignOutput as g1, ObserveIssuesGetInput as g2, ObserveIssuesGetOutput as g3, ObserveIssuesListInput as g4, ObserveIssuesListOutput as g5, ObserveIssuesResolveInput as g6, ObserveIssuesResolveOutput as g7, ObserveKeysCreateInput as g8, ObserveKeysCreateOutput as g9, OrganizationConnectorsApproveRequestInput as gA, OrganizationConnectorsApproveRequestOutput as gB, OrganizationConnectorsAttachInput as gC, OrganizationConnectorsAttachOutput as gD, OrganizationConnectorsDeleteInput as gE, OrganizationConnectorsDeleteOutput as gF, OrganizationConnectorsDenyRequestInput as gG, OrganizationConnectorsDenyRequestOutput as gH, OrganizationConnectorsDetachInput as gI, OrganizationConnectorsDetachOutput as gJ, OrganizationConnectorsListAttachmentsInput as gK, OrganizationConnectorsListAttachmentsOutput as gL, OrganizationConnectorsListAvailableInput as gM, OrganizationConnectorsListAvailableOutput as gN, OrganizationConnectorsListOrgInput as gO, OrganizationConnectorsListOrgOutput as gP, OrganizationConnectorsListInput as gQ, OrganizationConnectorsListOutput as gR, OrganizationConnectorsListRequestsInput as gS, OrganizationConnectorsListRequestsOutput as gT, OrganizationConnectorsRemoveInput as gU, OrganizationConnectorsRemoveOutput as gV, OrganizationConnectorsRequestInput as gW, OrganizationConnectorsRequestOutput as gX, OrganizationCreateInput as gY, OrganizationCreateOutput as gZ, OrganizationDomainsAddInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsSearchInput as ge, ObserveLogsSearchOutput as gf, ObserveLogsTailInput as gg, ObserveLogsTailOutput as gh, OrganizationAuthMeInput as gi, OrganizationAuthMeOutput as gj, OrganizationBillingBudgetsGetInput as gk, OrganizationBillingBudgetsGetOutput as gl, OrganizationBillingBudgetsSetInput as gm, OrganizationBillingBudgetsSetOutput as gn, OrganizationBillingCapsClearInput as go, OrganizationBillingCapsClearOutput as gp, OrganizationBillingCapsSetInput as gq, OrganizationBillingCapsSetOutput as gr, OrganizationBindingsListInput as gs, OrganizationBindingsListOutput as gt, OrganizationClickupInstallInput as gu, OrganizationClickupInstallOutput as gv, OrganizationClickupListInstallationsInput as gw, OrganizationClickupListInstallationsOutput as gx, OrganizationCloudflareInstallInput as gy, OrganizationCloudflareInstallOutput as gz, BrainBackupsListOutput as h, OrganizationProductUpdateOutput as h$, OrganizationDomainsGetInput as h0, OrganizationDomainsGetOutput as h1, OrganizationDomainsListInput as h2, OrganizationDomainsListOutput as h3, OrganizationDomainsRemoveInput as h4, OrganizationDomainsRemoveOutput as h5, OrganizationDomainsSetModeInput as h6, OrganizationDomainsSetModeOutput as h7, OrganizationExtensionsListInstalledInput as h8, OrganizationExtensionsListInstalledOutput as h9, OrganizationMemberSetRoleInput as hA, OrganizationMemberSetRoleOutput as hB, OrganizationMemberShareProductInput as hC, OrganizationMemberShareProductOutput as hD, OrganizationMemberUnshareProductInput as hE, OrganizationMemberUnshareProductOutput as hF, OrganizationMembersAssignRoleInput as hG, OrganizationMembersAssignRoleOutput as hH, OrganizationPermissionCatalogInput as hI, OrganizationPermissionCatalogOutput as hJ, OrganizationProductCreateInput as hK, OrganizationProductCreateOutput as hL, OrganizationProductListAccessInput as hM, OrganizationProductListAccessOutput as hN, OrganizationProductListMembersInput as hO, OrganizationProductListMembersOutput as hP, OrganizationProductListInput as hQ, OrganizationProductListOutput as hR, OrganizationProductListRolesInput as hS, OrganizationProductListRolesOutput as hT, OrganizationProductRevokeAccessInput as hU, OrganizationProductRevokeAccessOutput as hV, OrganizationProductSelectInput as hW, OrganizationProductSelectOutput as hX, OrganizationProductSetAccessInput as hY, OrganizationProductSetAccessOutput as hZ, OrganizationProductUpdateInput as h_, OrganizationFeedbackSubmitInput as ha, OrganizationFeedbackSubmitOutput as hb, OrganizationGdriveInstallInput as hc, OrganizationGdriveInstallOutput as hd, OrganizationGithubInstallInput as he, OrganizationGithubInstallOutput as hf, OrganizationGithubListInstallationsInput as hg, OrganizationGithubListInstallationsOutput as hh, OrganizationGoogleadsInstallInput as hi, OrganizationGoogleadsInstallOutput as hj, OrganizationListInput as hk, OrganizationListOutput as hl, OrganizationMemberAcceptInviteInput as hm, OrganizationMemberAcceptInviteOutput as hn, OrganizationMemberInviteInput as ho, OrganizationMemberInviteOutput as hp, OrganizationMemberListInvitationsInput as hq, OrganizationMemberListInvitationsOutput as hr, OrganizationMemberListProductAccessInput as hs, OrganizationMemberListProductAccessOutput as ht, OrganizationMemberListInput as hu, OrganizationMemberListOutput as hv, OrganizationMemberRemoveInput as hw, OrganizationMemberRemoveOutput as hx, OrganizationMemberRevokeInvitationInput as hy, OrganizationMemberRevokeInvitationOutput as hz, BrainClickupChannelsListInput as i, RealtimeArchiveGetOutput as i$, OrganizationPublicKeysCreateInput as i0, OrganizationPublicKeysCreateOutput as i1, OrganizationPublicKeysListInput as i2, OrganizationPublicKeysListOutput as i3, OrganizationPublicKeysRevokeInput as i4, OrganizationPublicKeysRevokeOutput as i5, OrganizationPublicKeysUpdateScopeInput as i6, OrganizationPublicKeysUpdateScopeOutput as i7, OrganizationPublicRoutesListInput as i8, OrganizationPublicRoutesListOutput as i9, PlaygroundBillingEntitlementsInput as iA, PlaygroundBillingEntitlementsOutput as iB, PlaygroundBillingRecordUsageInput as iC, PlaygroundBillingRecordUsageOutput as iD, PlaygroundClickupCreateTaskInput as iE, PlaygroundClickupCreateTaskOutput as iF, PlaygroundClickupGetLastWebhookInput as iG, PlaygroundClickupGetLastWebhookOutput as iH, PlaygroundClickupGetOverviewInput as iI, PlaygroundClickupGetOverviewOutput as iJ, PlaygroundGdriveGetLastChangeInput as iK, PlaygroundGdriveGetLastChangeOutput as iL, PlaygroundGdriveReadFileInput as iM, PlaygroundGdriveReadFileOutput as iN, PlaygroundGoogleadsReadCustomerInput as iO, PlaygroundGoogleadsReadCustomerOutput as iP, PlaygroundLifecycleGetStateInput as iQ, PlaygroundLifecycleGetStateOutput as iR, PlaygroundLifecycleListEventsInput as iS, PlaygroundLifecycleListEventsOutput as iT, PlaygroundWebhookGetLastInput as iU, PlaygroundWebhookGetLastOutput as iV, RealtimeArchiveExportInput as iW, RealtimeArchiveExportOutput as iX, RealtimeArchiveExportStatusInput as iY, RealtimeArchiveExportStatusOutput as iZ, RealtimeArchiveGetInput as i_, OrganizationRolesCreateInput as ia, OrganizationRolesCreateOutput as ib, OrganizationRolesDeleteInput as ic, OrganizationRolesDeleteOutput as id, OrganizationRolesGetInput as ie, OrganizationRolesGetOutput as ig, OrganizationRolesListInput as ih, OrganizationRolesListOutput as ii, OrganizationRolesUpdateInput as ij, OrganizationRolesUpdateOutput as ik, OrganizationSecurityMfaEnableInput as il, OrganizationSecurityMfaEnableOutput as im, OrganizationSelectInput as io, OrganizationSelectOutput as ip, OrganizationSupportThreadCreateInput as iq, OrganizationSupportThreadCreateOutput as ir, OrganizationSupportThreadGetInput as is, OrganizationSupportThreadGetOutput as it, OrganizationSupportThreadReplyInput as iu, OrganizationSupportThreadReplyOutput as iv, OrganizationSupportThreadsListInput as iw, OrganizationSupportThreadsListOutput as ix, PlaygroundAnalyticsOverviewInput as iy, PlaygroundAnalyticsOverviewOutput as iz, BrainClickupChannelsListOutput as j, SupportLabelCreateOutput as j$, RealtimeGrantCreateInput as j0, RealtimeGrantCreateOutput as j1, RealtimeGrantListInput as j2, RealtimeGrantListOutput as j3, RealtimeGrantRevokeInput as j4, RealtimeGrantRevokeOutput as j5, RealtimeHistoryGetInput as j6, RealtimeHistoryGetOutput as j7, RealtimeMessagesPublishInput as j8, RealtimeMessagesPublishOutput as j9, RealtimeWebhookCreateInput as jA, RealtimeWebhookCreateOutput as jB, RealtimeWebhookDeleteInput as jC, RealtimeWebhookDeleteOutput as jD, RealtimeWebhookDeliveriesListInput as jE, RealtimeWebhookDeliveriesListOutput as jF, RealtimeWebhookGetInput as jG, RealtimeWebhookGetOutput as jH, RealtimeWebhookListInput as jI, RealtimeWebhookListOutput as jJ, RealtimeWebhookSecretRotateInput as jK, RealtimeWebhookSecretRotateOutput as jL, RealtimeWebhookUpdateInput as jM, RealtimeWebhookUpdateOutput as jN, SupportAgentCreateInput as jO, SupportAgentCreateOutput as jP, SupportAgentGetInput as jQ, SupportAgentGetOutput as jR, SupportAgentListInput as jS, SupportAgentListOutput as jT, SupportAgentUpdateInput as jU, SupportAgentUpdateOutput as jV, SupportAttachmentCreateInput as jW, SupportAttachmentCreateOutput as jX, SupportAttachmentFinalizeInput as jY, SupportAttachmentFinalizeOutput as jZ, SupportLabelCreateInput as j_, RealtimeNamespaceCreateInput as ja, RealtimeNamespaceCreateOutput as jb, RealtimeNamespaceDeleteInput as jc, RealtimeNamespaceDeleteOutput as jd, RealtimeNamespaceGetInput as je, RealtimeNamespaceGetOutput as jf, RealtimeNamespaceListInput as jg, RealtimeNamespaceListOutput as jh, RealtimeNamespaceUpdateInput as ji, RealtimeNamespaceUpdateOutput as jj, RealtimePresenceEnterInput as jk, RealtimePresenceEnterOutput as jl, RealtimePresenceGetInput as jm, RealtimePresenceGetOutput as jn, RealtimePresenceLeaveInput as jo, RealtimePresenceLeaveOutput as jp, RealtimePresenceStatsInput as jq, RealtimePresenceStatsOutput as jr, RealtimePresenceUpdateInput as js, RealtimePresenceUpdateOutput as jt, RealtimePublicAccessStatusInput as ju, RealtimePublicAccessStatusOutput as jv, RealtimeStatusGetInput as jw, RealtimeStatusGetOutput as jx, RealtimeTokensCreateInput as jy, RealtimeTokensCreateOutput as jz, BrainClickupConnectionsListInput as k, SupportWebhookUpdateOutput as k$, SupportLabelListInput as k0, SupportLabelListOutput as k1, SupportMessageCreateInput as k2, SupportMessageCreateOutput as k3, SupportMessageListInput as k4, SupportMessageListOutput as k5, SupportResponseEscalateInput as k6, SupportResponseEscalateOutput as k7, SupportResponseGetInput as k8, SupportResponseGetOutput as k9, SupportThreadAssignInput as kA, SupportThreadAssignOutput as kB, SupportThreadCreateInput as kC, SupportThreadCreateOutput as kD, SupportThreadGetInput as kE, SupportThreadGetOutput as kF, SupportThreadListInput as kG, SupportThreadListOutput as kH, SupportThreadStatusSetInput as kI, SupportThreadStatusSetOutput as kJ, SupportThreadUpdateInput as kK, SupportThreadUpdateOutput as kL, SupportWebhookCreateInput as kM, SupportWebhookCreateOutput as kN, SupportWebhookDeleteInput as kO, SupportWebhookDeleteOutput as kP, SupportWebhookDeliveriesListInput as kQ, SupportWebhookDeliveriesListOutput as kR, SupportWebhookGetInput as kS, SupportWebhookGetOutput as kT, SupportWebhookListInput as kU, SupportWebhookListOutput as kV, SupportWebhookRedeliverInput as kW, SupportWebhookRedeliverOutput as kX, SupportWebhookRotateSecretInput as kY, SupportWebhookRotateSecretOutput as kZ, SupportWebhookUpdateInput as k_, SupportResponseListInput as ka, SupportResponseListOutput 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, BrainClickupConnectionsListOutput as l, TrackingReportsAttributedJourneyOutput as l$, TrackingDomainsCreateInput as l0, TrackingDomainsCreateOutput as l1, TrackingDomainsDeleteInput as l2, TrackingDomainsDeleteOutput as l3, TrackingDomainsGetInput as l4, TrackingDomainsGetOutput as l5, TrackingDomainsListInput as l6, TrackingDomainsListOutput as l7, TrackingDomainsVerifyInput as l8, TrackingDomainsVerifyOutput as l9, TrackingGoogleadsUsVsPlatformInput as lA, TrackingGoogleadsUsVsPlatformOutput as lB, TrackingIdentityHealthInput as lC, TrackingIdentityHealthOutput as lD, TrackingInstallDomainsCreateInput as lE, TrackingInstallDomainsCreateOutput as lF, TrackingInstallDomainsDeleteInput as lG, TrackingInstallDomainsDeleteOutput as lH, TrackingInstallDomainsListInput as lI, TrackingInstallDomainsListOutput as lJ, TrackingLinkDomainsCreateInput as lK, TrackingLinkDomainsCreateOutput as lL, TrackingLinkDomainsDeleteInput as lM, TrackingLinkDomainsDeleteOutput as lN, TrackingLinkDomainsListInput as lO, TrackingLinkDomainsListOutput as lP, TrackingLiveEventsListInput as lQ, TrackingLiveEventsListOutput as lR, TrackingProfilesDeleteInput as lS, TrackingProfilesDeleteOutput as lT, TrackingProfilesExportInput as lU, TrackingProfilesExportOutput as lV, TrackingProfilesGetInput as lW, TrackingProfilesGetOutput as lX, TrackingProfilesListInput as lY, TrackingProfilesListOutput as lZ, TrackingReportsAttributedJourneyInput as l_, 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, BrainClickupListsListInput as m, UsersUsersSetPrimaryIdentifierOutput as m$, TrackingReportsEventVolumeInput as m0, TrackingReportsEventVolumeOutput as m1, TrackingReportsRevenueBySourceInput as m2, TrackingReportsRevenueBySourceOutput as m3, TrackingReportsSourcePeopleInput as m4, TrackingReportsSourcePeopleOutput as m5, TrackingSnippetsGetInput as m6, TrackingSnippetsGetOutput as m7, UsersApikeysCreateInput as m8, UsersApikeysCreateOutput as m9, UsersSessionsImpersonateInput as mA, UsersSessionsImpersonateOutput as mB, UsersSessionsListInput as mC, UsersSessionsListOutput as mD, UsersSessionsRevokeInput as mE, UsersSessionsRevokeOutput as mF, UsersStatsGetInput as mG, UsersStatsGetOutput as mH, UsersUsersBanInput as mI, UsersUsersBanOutput as mJ, UsersUsersCreateInput as mK, UsersUsersCreateOutput as mL, UsersUsersDeleteInput as mM, UsersUsersDeleteOutput as mN, UsersUsersEraseInput as mO, UsersUsersEraseOutput as mP, UsersUsersExportInput as mQ, UsersUsersExportOutput as mR, UsersUsersGetInput as mS, UsersUsersGetOutput as mT, UsersUsersImportInput as mU, UsersUsersImportOutput as mV, UsersUsersInviteInput as mW, UsersUsersInviteOutput as mX, UsersUsersListInput as mY, UsersUsersListOutput as mZ, UsersUsersSetPrimaryIdentifierInput as m_, 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, UsersSessionsGetInput as my, UsersSessionsGetOutput as mz, BrainClickupListsListOutput as n, UsersUsersUnbanInput as n0, UsersUsersUnbanOutput as n1, UsersUsersUpdateInput as n2, UsersUsersUpdateOutput as n3, UsersWaitlistEraseInput as n4, UsersWaitlistEraseOutput as n5, UsersWaitlistFunnelInput as n6, UsersWaitlistFunnelOutput as n7, UsersWaitlistImportInput as n8, UsersWaitlistImportOutput as n9, WaitlistSignupsEraseInput as nA, WaitlistSignupsEraseOutput as nB, WaitlistSignupsFunnelInput as nC, WaitlistSignupsFunnelOutput as nD, WaitlistSignupsListInput as nE, WaitlistSignupsListOutput as nF, UsersWaitlistInviteInput as na, UsersWaitlistInviteOutput as nb, UsersWaitlistListInput as nc, UsersWaitlistListOutput as nd, UsersWebhooksCreateInput as ne, UsersWebhooksCreateOutput as nf, UsersWebhooksDeleteInput as ng, UsersWebhooksDeleteOutput as nh, UsersWebhooksDeliveriesListInput as ni, UsersWebhooksDeliveriesListOutput as nj, UsersWebhooksGetInput as nk, UsersWebhooksGetOutput as nl, UsersWebhooksListInput as nm, UsersWebhooksListOutput as nn, UsersWebhooksRotateSecretInput as no, UsersWebhooksRotateSecretOutput as np, UsersWebhooksUpdateInput as nq, UsersWebhooksUpdateOutput as nr, WaitlistConfigGetInput as ns, WaitlistConfigGetOutput as nt, WaitlistConfigUpsertInput as nu, WaitlistConfigUpsertOutput as nv, WaitlistEmbedGetInput as nw, WaitlistEmbedGetOutput as nx, WaitlistInvitesSendInput as ny, WaitlistInvitesSendOutput as nz, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };