@lessly/sdk-app 74.3.0 → 74.4.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.
@@ -85878,79 +85878,1755 @@ activeProductId: (string | null)
85878
85878
  }
85879
85879
 
85880
85880
  export interface OrganizationSupportThreadCreateInput {
85881
+ /**
85882
+ * The first message, 1-50000 characters.
85883
+ */
85881
85884
  body: string
85885
+ /**
85886
+ * Subject of the request, 1-500 characters.
85887
+ */
85882
85888
  title: string
85883
- }
85884
-
85885
- export interface OrganizationSupportThreadCreateOutput {
85886
- id: string
85887
- title: string
85888
- legacy: boolean
85889
- status: string
85890
- category: ("open" | "pending" | "resolved" | "closed")
85891
- messages: {
85892
- id: string
85893
- body: string
85894
- author: {
85895
- kind: ("user" | "agent")
85896
- name: string
85897
- }
85898
- createdAt: string
85899
- }[]
85900
- createdAt: string
85901
- openedByName: string
85902
- lastMessageAt: string
85903
- lastMessagePreview: (string | null)
85904
- }
85905
-
85906
- export interface OrganizationSupportThreadGetInput {
85907
- id: string
85908
- }
85909
-
85910
- export interface OrganizationSupportThreadGetOutput {
85911
- id: string
85912
- title: string
85913
- legacy: boolean
85914
- status: string
85915
- category: ("open" | "pending" | "resolved" | "closed")
85916
- messages: {
85917
- id: string
85918
- body: string
85919
- author: {
85920
- kind: ("user" | "agent")
85921
- name: string
85922
- }
85923
- createdAt: string
85924
- }[]
85925
- createdAt: string
85926
- openedByName: string
85927
- lastMessageAt: string
85928
- lastMessagePreview: (string | null)
85929
- }
85930
-
85931
- export interface OrganizationSupportThreadReplyInput {
85932
- id: string
85933
- body: string
85889
+ /**
85890
+ * Files to attach, base64-encoded. Up to 10 per message, each up to 26214400 bytes (25 MiB) decoded, and at most 26214400 bytes decoded across all of them in one call. Screenshots and logs are the intended use; the whole call travels as one request.
85891
+ *
85892
+ * @maxItems 10
85893
+ */
85894
+ attachments?: []|[{
85895
+ /**
85896
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85897
+ */
85898
+ fileName: string
85899
+ /**
85900
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85901
+ */
85902
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85903
+ /**
85904
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85905
+ */
85906
+ contentBase64: string
85907
+ }]|[{
85908
+ /**
85909
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85910
+ */
85911
+ fileName: string
85912
+ /**
85913
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85914
+ */
85915
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85916
+ /**
85917
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85918
+ */
85919
+ contentBase64: string
85920
+ }, {
85921
+ /**
85922
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85923
+ */
85924
+ fileName: string
85925
+ /**
85926
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85927
+ */
85928
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85929
+ /**
85930
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85931
+ */
85932
+ contentBase64: string
85933
+ }]|[{
85934
+ /**
85935
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85936
+ */
85937
+ fileName: string
85938
+ /**
85939
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85940
+ */
85941
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85942
+ /**
85943
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85944
+ */
85945
+ contentBase64: string
85946
+ }, {
85947
+ /**
85948
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85949
+ */
85950
+ fileName: string
85951
+ /**
85952
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85953
+ */
85954
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85955
+ /**
85956
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85957
+ */
85958
+ contentBase64: string
85959
+ }, {
85960
+ /**
85961
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85962
+ */
85963
+ fileName: string
85964
+ /**
85965
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85966
+ */
85967
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85968
+ /**
85969
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85970
+ */
85971
+ contentBase64: string
85972
+ }]|[{
85973
+ /**
85974
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85975
+ */
85976
+ fileName: string
85977
+ /**
85978
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85979
+ */
85980
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85981
+ /**
85982
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85983
+ */
85984
+ contentBase64: string
85985
+ }, {
85986
+ /**
85987
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
85988
+ */
85989
+ fileName: string
85990
+ /**
85991
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
85992
+ */
85993
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
85994
+ /**
85995
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
85996
+ */
85997
+ contentBase64: string
85998
+ }, {
85999
+ /**
86000
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86001
+ */
86002
+ fileName: string
86003
+ /**
86004
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86005
+ */
86006
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86007
+ /**
86008
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86009
+ */
86010
+ contentBase64: string
86011
+ }, {
86012
+ /**
86013
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86014
+ */
86015
+ fileName: string
86016
+ /**
86017
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86018
+ */
86019
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86020
+ /**
86021
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86022
+ */
86023
+ contentBase64: string
86024
+ }]|[{
86025
+ /**
86026
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86027
+ */
86028
+ fileName: string
86029
+ /**
86030
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86031
+ */
86032
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86033
+ /**
86034
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86035
+ */
86036
+ contentBase64: string
86037
+ }, {
86038
+ /**
86039
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86040
+ */
86041
+ fileName: string
86042
+ /**
86043
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86044
+ */
86045
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86046
+ /**
86047
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86048
+ */
86049
+ contentBase64: string
86050
+ }, {
86051
+ /**
86052
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86053
+ */
86054
+ fileName: string
86055
+ /**
86056
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86057
+ */
86058
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86059
+ /**
86060
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86061
+ */
86062
+ contentBase64: string
86063
+ }, {
86064
+ /**
86065
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86066
+ */
86067
+ fileName: string
86068
+ /**
86069
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86070
+ */
86071
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86072
+ /**
86073
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86074
+ */
86075
+ contentBase64: string
86076
+ }, {
86077
+ /**
86078
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86079
+ */
86080
+ fileName: string
86081
+ /**
86082
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86083
+ */
86084
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86085
+ /**
86086
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86087
+ */
86088
+ contentBase64: string
86089
+ }]|[{
86090
+ /**
86091
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86092
+ */
86093
+ fileName: string
86094
+ /**
86095
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86096
+ */
86097
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86098
+ /**
86099
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86100
+ */
86101
+ contentBase64: string
86102
+ }, {
86103
+ /**
86104
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86105
+ */
86106
+ fileName: string
86107
+ /**
86108
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86109
+ */
86110
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86111
+ /**
86112
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86113
+ */
86114
+ contentBase64: string
86115
+ }, {
86116
+ /**
86117
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86118
+ */
86119
+ fileName: string
86120
+ /**
86121
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86122
+ */
86123
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86124
+ /**
86125
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86126
+ */
86127
+ contentBase64: string
86128
+ }, {
86129
+ /**
86130
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86131
+ */
86132
+ fileName: string
86133
+ /**
86134
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86135
+ */
86136
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86137
+ /**
86138
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86139
+ */
86140
+ contentBase64: string
86141
+ }, {
86142
+ /**
86143
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86144
+ */
86145
+ fileName: string
86146
+ /**
86147
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86148
+ */
86149
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86150
+ /**
86151
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86152
+ */
86153
+ contentBase64: string
86154
+ }, {
86155
+ /**
86156
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86157
+ */
86158
+ fileName: string
86159
+ /**
86160
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86161
+ */
86162
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86163
+ /**
86164
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86165
+ */
86166
+ contentBase64: string
86167
+ }]|[{
86168
+ /**
86169
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86170
+ */
86171
+ fileName: string
86172
+ /**
86173
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86174
+ */
86175
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86176
+ /**
86177
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86178
+ */
86179
+ contentBase64: string
86180
+ }, {
86181
+ /**
86182
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86183
+ */
86184
+ fileName: string
86185
+ /**
86186
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86187
+ */
86188
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86189
+ /**
86190
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86191
+ */
86192
+ contentBase64: string
86193
+ }, {
86194
+ /**
86195
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86196
+ */
86197
+ fileName: string
86198
+ /**
86199
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86200
+ */
86201
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86202
+ /**
86203
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86204
+ */
86205
+ contentBase64: string
86206
+ }, {
86207
+ /**
86208
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86209
+ */
86210
+ fileName: string
86211
+ /**
86212
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86213
+ */
86214
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86215
+ /**
86216
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86217
+ */
86218
+ contentBase64: string
86219
+ }, {
86220
+ /**
86221
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86222
+ */
86223
+ fileName: string
86224
+ /**
86225
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86226
+ */
86227
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86228
+ /**
86229
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86230
+ */
86231
+ contentBase64: string
86232
+ }, {
86233
+ /**
86234
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86235
+ */
86236
+ fileName: string
86237
+ /**
86238
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86239
+ */
86240
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86241
+ /**
86242
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86243
+ */
86244
+ contentBase64: string
86245
+ }, {
86246
+ /**
86247
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86248
+ */
86249
+ fileName: string
86250
+ /**
86251
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86252
+ */
86253
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86254
+ /**
86255
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86256
+ */
86257
+ contentBase64: string
86258
+ }]|[{
86259
+ /**
86260
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86261
+ */
86262
+ fileName: string
86263
+ /**
86264
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86265
+ */
86266
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86267
+ /**
86268
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86269
+ */
86270
+ contentBase64: string
86271
+ }, {
86272
+ /**
86273
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86274
+ */
86275
+ fileName: string
86276
+ /**
86277
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86278
+ */
86279
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86280
+ /**
86281
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86282
+ */
86283
+ contentBase64: string
86284
+ }, {
86285
+ /**
86286
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86287
+ */
86288
+ fileName: string
86289
+ /**
86290
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86291
+ */
86292
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86293
+ /**
86294
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86295
+ */
86296
+ contentBase64: string
86297
+ }, {
86298
+ /**
86299
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86300
+ */
86301
+ fileName: string
86302
+ /**
86303
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86304
+ */
86305
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86306
+ /**
86307
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86308
+ */
86309
+ contentBase64: string
86310
+ }, {
86311
+ /**
86312
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86313
+ */
86314
+ fileName: string
86315
+ /**
86316
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86317
+ */
86318
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86319
+ /**
86320
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86321
+ */
86322
+ contentBase64: string
86323
+ }, {
86324
+ /**
86325
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86326
+ */
86327
+ fileName: string
86328
+ /**
86329
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86330
+ */
86331
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86332
+ /**
86333
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86334
+ */
86335
+ contentBase64: string
86336
+ }, {
86337
+ /**
86338
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86339
+ */
86340
+ fileName: string
86341
+ /**
86342
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86343
+ */
86344
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86345
+ /**
86346
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86347
+ */
86348
+ contentBase64: string
86349
+ }, {
86350
+ /**
86351
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86352
+ */
86353
+ fileName: string
86354
+ /**
86355
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86356
+ */
86357
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86358
+ /**
86359
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86360
+ */
86361
+ contentBase64: string
86362
+ }]|[{
86363
+ /**
86364
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86365
+ */
86366
+ fileName: string
86367
+ /**
86368
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86369
+ */
86370
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86371
+ /**
86372
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86373
+ */
86374
+ contentBase64: string
86375
+ }, {
86376
+ /**
86377
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86378
+ */
86379
+ fileName: string
86380
+ /**
86381
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86382
+ */
86383
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86384
+ /**
86385
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86386
+ */
86387
+ contentBase64: string
86388
+ }, {
86389
+ /**
86390
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86391
+ */
86392
+ fileName: string
86393
+ /**
86394
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86395
+ */
86396
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86397
+ /**
86398
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86399
+ */
86400
+ contentBase64: string
86401
+ }, {
86402
+ /**
86403
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86404
+ */
86405
+ fileName: string
86406
+ /**
86407
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86408
+ */
86409
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86410
+ /**
86411
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86412
+ */
86413
+ contentBase64: string
86414
+ }, {
86415
+ /**
86416
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86417
+ */
86418
+ fileName: string
86419
+ /**
86420
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86421
+ */
86422
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86423
+ /**
86424
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86425
+ */
86426
+ contentBase64: string
86427
+ }, {
86428
+ /**
86429
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86430
+ */
86431
+ fileName: string
86432
+ /**
86433
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86434
+ */
86435
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86436
+ /**
86437
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86438
+ */
86439
+ contentBase64: string
86440
+ }, {
86441
+ /**
86442
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86443
+ */
86444
+ fileName: string
86445
+ /**
86446
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86447
+ */
86448
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86449
+ /**
86450
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86451
+ */
86452
+ contentBase64: string
86453
+ }, {
86454
+ /**
86455
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86456
+ */
86457
+ fileName: string
86458
+ /**
86459
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86460
+ */
86461
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86462
+ /**
86463
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86464
+ */
86465
+ contentBase64: string
86466
+ }, {
86467
+ /**
86468
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86469
+ */
86470
+ fileName: string
86471
+ /**
86472
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86473
+ */
86474
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86475
+ /**
86476
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86477
+ */
86478
+ contentBase64: string
86479
+ }]|[{
86480
+ /**
86481
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86482
+ */
86483
+ fileName: string
86484
+ /**
86485
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86486
+ */
86487
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86488
+ /**
86489
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86490
+ */
86491
+ contentBase64: string
86492
+ }, {
86493
+ /**
86494
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86495
+ */
86496
+ fileName: string
86497
+ /**
86498
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86499
+ */
86500
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86501
+ /**
86502
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86503
+ */
86504
+ contentBase64: string
86505
+ }, {
86506
+ /**
86507
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86508
+ */
86509
+ fileName: string
86510
+ /**
86511
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86512
+ */
86513
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86514
+ /**
86515
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86516
+ */
86517
+ contentBase64: string
86518
+ }, {
86519
+ /**
86520
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86521
+ */
86522
+ fileName: string
86523
+ /**
86524
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86525
+ */
86526
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86527
+ /**
86528
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86529
+ */
86530
+ contentBase64: string
86531
+ }, {
86532
+ /**
86533
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86534
+ */
86535
+ fileName: string
86536
+ /**
86537
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86538
+ */
86539
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86540
+ /**
86541
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86542
+ */
86543
+ contentBase64: string
86544
+ }, {
86545
+ /**
86546
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86547
+ */
86548
+ fileName: string
86549
+ /**
86550
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86551
+ */
86552
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86553
+ /**
86554
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86555
+ */
86556
+ contentBase64: string
86557
+ }, {
86558
+ /**
86559
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86560
+ */
86561
+ fileName: string
86562
+ /**
86563
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86564
+ */
86565
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86566
+ /**
86567
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86568
+ */
86569
+ contentBase64: string
86570
+ }, {
86571
+ /**
86572
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86573
+ */
86574
+ fileName: string
86575
+ /**
86576
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86577
+ */
86578
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86579
+ /**
86580
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86581
+ */
86582
+ contentBase64: string
86583
+ }, {
86584
+ /**
86585
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86586
+ */
86587
+ fileName: string
86588
+ /**
86589
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86590
+ */
86591
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86592
+ /**
86593
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86594
+ */
86595
+ contentBase64: string
86596
+ }, {
86597
+ /**
86598
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86599
+ */
86600
+ fileName: string
86601
+ /**
86602
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86603
+ */
86604
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86605
+ /**
86606
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86607
+ */
86608
+ contentBase64: string
86609
+ }]
86610
+ }
86611
+
86612
+ export interface OrganizationSupportThreadCreateOutput {
86613
+ /**
86614
+ * Thread uuid.
86615
+ */
86616
+ id: string
86617
+ /**
86618
+ * Subject of the request, e.g. "Billing export fails".
86619
+ */
86620
+ title: string
86621
+ /**
86622
+ * True for a PERSONAL thread opened before support became organization-owned. Such threads stay visible to their own author alone and cannot be migrated.
86623
+ */
86624
+ legacy: boolean
86625
+ /**
86626
+ * The status NAME the product chose, e.g. "In progress" — display text, not an id.
86627
+ */
86628
+ status: string
86629
+ /**
86630
+ * The lifecycle bucket behind that status.
86631
+ */
86632
+ category: ("open" | "pending" | "resolved" | "closed")
86633
+ /**
86634
+ * The whole conversation, oldest message first.
86635
+ */
86636
+ messages: {
86637
+ /**
86638
+ * Message uuid.
86639
+ */
86640
+ id: string
86641
+ /**
86642
+ * The message text.
86643
+ */
86644
+ body: string
86645
+ /**
86646
+ * Who wrote this message.
86647
+ */
86648
+ author: {
86649
+ /**
86650
+ * `user` for a colleague, `agent` for Lessly support.
86651
+ */
86652
+ kind: ("user" | "agent")
86653
+ /**
86654
+ * Display name of the author.
86655
+ */
86656
+ name: string
86657
+ }
86658
+ /**
86659
+ * When the message was written, ISO 8601 UTC.
86660
+ */
86661
+ createdAt: string
86662
+ /**
86663
+ * Files this message carries. ALWAYS an array — a message with no files reports `[]`.
86664
+ */
86665
+ attachments: {
86666
+ /**
86667
+ * Attachment uuid.
86668
+ */
86669
+ id: string
86670
+ /**
86671
+ * The file name as it was uploaded, e.g. "screenshot.png".
86672
+ */
86673
+ fileName: string
86674
+ /**
86675
+ * Size of the file in bytes.
86676
+ */
86677
+ sizeBytes: number
86678
+ /**
86679
+ * The file's MIME type, e.g. "image/png".
86680
+ */
86681
+ contentType: string
86682
+ /**
86683
+ * Signed, short-lived URL to GET the bytes from. Re-issued on every read of the thread — follow it now rather than storing it.
86684
+ */
86685
+ downloadUrl: string
86686
+ }[]
86687
+ }[]
86688
+ /**
86689
+ * When the thread was opened, ISO 8601 UTC.
86690
+ */
86691
+ createdAt: string
86692
+ /**
86693
+ * Name of the colleague who opened the thread. Never null — an unresolvable opener falls back to a placeholder.
86694
+ */
86695
+ openedByName: string
86696
+ /**
86697
+ * When the thread last moved, ISO 8601 UTC. A thread with no replies reports its own creation.
86698
+ */
86699
+ lastMessageAt: string
86700
+ /**
86701
+ * First 140 characters of the last message, or null when the thread has none.
86702
+ */
86703
+ lastMessagePreview: (string | null)
86704
+ }
86705
+
86706
+ export interface OrganizationSupportThreadGetInput {
86707
+ /**
86708
+ * Thread uuid, from `organization_support_threads_list`.
86709
+ */
86710
+ id: string
86711
+ }
86712
+
86713
+ export interface OrganizationSupportThreadGetOutput {
86714
+ /**
86715
+ * Thread uuid.
86716
+ */
86717
+ id: string
86718
+ /**
86719
+ * Subject of the request, e.g. "Billing export fails".
86720
+ */
86721
+ title: string
86722
+ /**
86723
+ * True for a PERSONAL thread opened before support became organization-owned. Such threads stay visible to their own author alone and cannot be migrated.
86724
+ */
86725
+ legacy: boolean
86726
+ /**
86727
+ * The status NAME the product chose, e.g. "In progress" — display text, not an id.
86728
+ */
86729
+ status: string
86730
+ /**
86731
+ * The lifecycle bucket behind that status.
86732
+ */
86733
+ category: ("open" | "pending" | "resolved" | "closed")
86734
+ /**
86735
+ * The whole conversation, oldest message first.
86736
+ */
86737
+ messages: {
86738
+ /**
86739
+ * Message uuid.
86740
+ */
86741
+ id: string
86742
+ /**
86743
+ * The message text.
86744
+ */
86745
+ body: string
86746
+ /**
86747
+ * Who wrote this message.
86748
+ */
86749
+ author: {
86750
+ /**
86751
+ * `user` for a colleague, `agent` for Lessly support.
86752
+ */
86753
+ kind: ("user" | "agent")
86754
+ /**
86755
+ * Display name of the author.
86756
+ */
86757
+ name: string
86758
+ }
86759
+ /**
86760
+ * When the message was written, ISO 8601 UTC.
86761
+ */
86762
+ createdAt: string
86763
+ /**
86764
+ * Files this message carries. ALWAYS an array — a message with no files reports `[]`.
86765
+ */
86766
+ attachments: {
86767
+ /**
86768
+ * Attachment uuid.
86769
+ */
86770
+ id: string
86771
+ /**
86772
+ * The file name as it was uploaded, e.g. "screenshot.png".
86773
+ */
86774
+ fileName: string
86775
+ /**
86776
+ * Size of the file in bytes.
86777
+ */
86778
+ sizeBytes: number
86779
+ /**
86780
+ * The file's MIME type, e.g. "image/png".
86781
+ */
86782
+ contentType: string
86783
+ /**
86784
+ * Signed, short-lived URL to GET the bytes from. Re-issued on every read of the thread — follow it now rather than storing it.
86785
+ */
86786
+ downloadUrl: string
86787
+ }[]
86788
+ }[]
86789
+ /**
86790
+ * When the thread was opened, ISO 8601 UTC.
86791
+ */
86792
+ createdAt: string
86793
+ /**
86794
+ * Name of the colleague who opened the thread. Never null — an unresolvable opener falls back to a placeholder.
86795
+ */
86796
+ openedByName: string
86797
+ /**
86798
+ * When the thread last moved, ISO 8601 UTC. A thread with no replies reports its own creation.
86799
+ */
86800
+ lastMessageAt: string
86801
+ /**
86802
+ * First 140 characters of the last message, or null when the thread has none.
86803
+ */
86804
+ lastMessagePreview: (string | null)
86805
+ }
86806
+
86807
+ export interface OrganizationSupportThreadReplyInput {
86808
+ /**
86809
+ * Thread uuid to reply in.
86810
+ */
86811
+ id: string
86812
+ /**
86813
+ * The reply text, 1-50000 characters.
86814
+ */
86815
+ body: string
86816
+ /**
86817
+ * Files to attach, base64-encoded. Up to 10 per message, each up to 26214400 bytes (25 MiB) decoded, and at most 26214400 bytes decoded across all of them in one call. Screenshots and logs are the intended use; the whole call travels as one request.
86818
+ *
86819
+ * @maxItems 10
86820
+ */
86821
+ attachments?: []|[{
86822
+ /**
86823
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86824
+ */
86825
+ fileName: string
86826
+ /**
86827
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86828
+ */
86829
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86830
+ /**
86831
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86832
+ */
86833
+ contentBase64: string
86834
+ }]|[{
86835
+ /**
86836
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86837
+ */
86838
+ fileName: string
86839
+ /**
86840
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86841
+ */
86842
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86843
+ /**
86844
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86845
+ */
86846
+ contentBase64: string
86847
+ }, {
86848
+ /**
86849
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86850
+ */
86851
+ fileName: string
86852
+ /**
86853
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86854
+ */
86855
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86856
+ /**
86857
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86858
+ */
86859
+ contentBase64: string
86860
+ }]|[{
86861
+ /**
86862
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86863
+ */
86864
+ fileName: string
86865
+ /**
86866
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86867
+ */
86868
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86869
+ /**
86870
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86871
+ */
86872
+ contentBase64: string
86873
+ }, {
86874
+ /**
86875
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86876
+ */
86877
+ fileName: string
86878
+ /**
86879
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86880
+ */
86881
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86882
+ /**
86883
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86884
+ */
86885
+ contentBase64: string
86886
+ }, {
86887
+ /**
86888
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86889
+ */
86890
+ fileName: string
86891
+ /**
86892
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86893
+ */
86894
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86895
+ /**
86896
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86897
+ */
86898
+ contentBase64: string
86899
+ }]|[{
86900
+ /**
86901
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86902
+ */
86903
+ fileName: string
86904
+ /**
86905
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86906
+ */
86907
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86908
+ /**
86909
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86910
+ */
86911
+ contentBase64: string
86912
+ }, {
86913
+ /**
86914
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86915
+ */
86916
+ fileName: string
86917
+ /**
86918
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86919
+ */
86920
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86921
+ /**
86922
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86923
+ */
86924
+ contentBase64: string
86925
+ }, {
86926
+ /**
86927
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86928
+ */
86929
+ fileName: string
86930
+ /**
86931
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86932
+ */
86933
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86934
+ /**
86935
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86936
+ */
86937
+ contentBase64: string
86938
+ }, {
86939
+ /**
86940
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86941
+ */
86942
+ fileName: string
86943
+ /**
86944
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86945
+ */
86946
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86947
+ /**
86948
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86949
+ */
86950
+ contentBase64: string
86951
+ }]|[{
86952
+ /**
86953
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86954
+ */
86955
+ fileName: string
86956
+ /**
86957
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86958
+ */
86959
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86960
+ /**
86961
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86962
+ */
86963
+ contentBase64: string
86964
+ }, {
86965
+ /**
86966
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86967
+ */
86968
+ fileName: string
86969
+ /**
86970
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86971
+ */
86972
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86973
+ /**
86974
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86975
+ */
86976
+ contentBase64: string
86977
+ }, {
86978
+ /**
86979
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86980
+ */
86981
+ fileName: string
86982
+ /**
86983
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86984
+ */
86985
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86986
+ /**
86987
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
86988
+ */
86989
+ contentBase64: string
86990
+ }, {
86991
+ /**
86992
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
86993
+ */
86994
+ fileName: string
86995
+ /**
86996
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
86997
+ */
86998
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
86999
+ /**
87000
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87001
+ */
87002
+ contentBase64: string
87003
+ }, {
87004
+ /**
87005
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87006
+ */
87007
+ fileName: string
87008
+ /**
87009
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87010
+ */
87011
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87012
+ /**
87013
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87014
+ */
87015
+ contentBase64: string
87016
+ }]|[{
87017
+ /**
87018
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87019
+ */
87020
+ fileName: string
87021
+ /**
87022
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87023
+ */
87024
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87025
+ /**
87026
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87027
+ */
87028
+ contentBase64: string
87029
+ }, {
87030
+ /**
87031
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87032
+ */
87033
+ fileName: string
87034
+ /**
87035
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87036
+ */
87037
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87038
+ /**
87039
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87040
+ */
87041
+ contentBase64: string
87042
+ }, {
87043
+ /**
87044
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87045
+ */
87046
+ fileName: string
87047
+ /**
87048
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87049
+ */
87050
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87051
+ /**
87052
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87053
+ */
87054
+ contentBase64: string
87055
+ }, {
87056
+ /**
87057
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87058
+ */
87059
+ fileName: string
87060
+ /**
87061
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87062
+ */
87063
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87064
+ /**
87065
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87066
+ */
87067
+ contentBase64: string
87068
+ }, {
87069
+ /**
87070
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87071
+ */
87072
+ fileName: string
87073
+ /**
87074
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87075
+ */
87076
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87077
+ /**
87078
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87079
+ */
87080
+ contentBase64: string
87081
+ }, {
87082
+ /**
87083
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87084
+ */
87085
+ fileName: string
87086
+ /**
87087
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87088
+ */
87089
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87090
+ /**
87091
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87092
+ */
87093
+ contentBase64: string
87094
+ }]|[{
87095
+ /**
87096
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87097
+ */
87098
+ fileName: string
87099
+ /**
87100
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87101
+ */
87102
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87103
+ /**
87104
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87105
+ */
87106
+ contentBase64: string
87107
+ }, {
87108
+ /**
87109
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87110
+ */
87111
+ fileName: string
87112
+ /**
87113
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87114
+ */
87115
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87116
+ /**
87117
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87118
+ */
87119
+ contentBase64: string
87120
+ }, {
87121
+ /**
87122
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87123
+ */
87124
+ fileName: string
87125
+ /**
87126
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87127
+ */
87128
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87129
+ /**
87130
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87131
+ */
87132
+ contentBase64: string
87133
+ }, {
87134
+ /**
87135
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87136
+ */
87137
+ fileName: string
87138
+ /**
87139
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87140
+ */
87141
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87142
+ /**
87143
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87144
+ */
87145
+ contentBase64: string
87146
+ }, {
87147
+ /**
87148
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87149
+ */
87150
+ fileName: string
87151
+ /**
87152
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87153
+ */
87154
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87155
+ /**
87156
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87157
+ */
87158
+ contentBase64: string
87159
+ }, {
87160
+ /**
87161
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87162
+ */
87163
+ fileName: string
87164
+ /**
87165
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87166
+ */
87167
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87168
+ /**
87169
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87170
+ */
87171
+ contentBase64: string
87172
+ }, {
87173
+ /**
87174
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87175
+ */
87176
+ fileName: string
87177
+ /**
87178
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87179
+ */
87180
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87181
+ /**
87182
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87183
+ */
87184
+ contentBase64: string
87185
+ }]|[{
87186
+ /**
87187
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87188
+ */
87189
+ fileName: string
87190
+ /**
87191
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87192
+ */
87193
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87194
+ /**
87195
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87196
+ */
87197
+ contentBase64: string
87198
+ }, {
87199
+ /**
87200
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87201
+ */
87202
+ fileName: string
87203
+ /**
87204
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87205
+ */
87206
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87207
+ /**
87208
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87209
+ */
87210
+ contentBase64: string
87211
+ }, {
87212
+ /**
87213
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87214
+ */
87215
+ fileName: string
87216
+ /**
87217
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87218
+ */
87219
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87220
+ /**
87221
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87222
+ */
87223
+ contentBase64: string
87224
+ }, {
87225
+ /**
87226
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87227
+ */
87228
+ fileName: string
87229
+ /**
87230
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87231
+ */
87232
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87233
+ /**
87234
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87235
+ */
87236
+ contentBase64: string
87237
+ }, {
87238
+ /**
87239
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87240
+ */
87241
+ fileName: string
87242
+ /**
87243
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87244
+ */
87245
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87246
+ /**
87247
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87248
+ */
87249
+ contentBase64: string
87250
+ }, {
87251
+ /**
87252
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87253
+ */
87254
+ fileName: string
87255
+ /**
87256
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87257
+ */
87258
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87259
+ /**
87260
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87261
+ */
87262
+ contentBase64: string
87263
+ }, {
87264
+ /**
87265
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87266
+ */
87267
+ fileName: string
87268
+ /**
87269
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87270
+ */
87271
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87272
+ /**
87273
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87274
+ */
87275
+ contentBase64: string
87276
+ }, {
87277
+ /**
87278
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87279
+ */
87280
+ fileName: string
87281
+ /**
87282
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87283
+ */
87284
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87285
+ /**
87286
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87287
+ */
87288
+ contentBase64: string
87289
+ }]|[{
87290
+ /**
87291
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87292
+ */
87293
+ fileName: string
87294
+ /**
87295
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87296
+ */
87297
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87298
+ /**
87299
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87300
+ */
87301
+ contentBase64: string
87302
+ }, {
87303
+ /**
87304
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87305
+ */
87306
+ fileName: string
87307
+ /**
87308
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87309
+ */
87310
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87311
+ /**
87312
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87313
+ */
87314
+ contentBase64: string
87315
+ }, {
87316
+ /**
87317
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87318
+ */
87319
+ fileName: string
87320
+ /**
87321
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87322
+ */
87323
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87324
+ /**
87325
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87326
+ */
87327
+ contentBase64: string
87328
+ }, {
87329
+ /**
87330
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87331
+ */
87332
+ fileName: string
87333
+ /**
87334
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87335
+ */
87336
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87337
+ /**
87338
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87339
+ */
87340
+ contentBase64: string
87341
+ }, {
87342
+ /**
87343
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87344
+ */
87345
+ fileName: string
87346
+ /**
87347
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87348
+ */
87349
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87350
+ /**
87351
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87352
+ */
87353
+ contentBase64: string
87354
+ }, {
87355
+ /**
87356
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87357
+ */
87358
+ fileName: string
87359
+ /**
87360
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87361
+ */
87362
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87363
+ /**
87364
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87365
+ */
87366
+ contentBase64: string
87367
+ }, {
87368
+ /**
87369
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87370
+ */
87371
+ fileName: string
87372
+ /**
87373
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87374
+ */
87375
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87376
+ /**
87377
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87378
+ */
87379
+ contentBase64: string
87380
+ }, {
87381
+ /**
87382
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87383
+ */
87384
+ fileName: string
87385
+ /**
87386
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87387
+ */
87388
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87389
+ /**
87390
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87391
+ */
87392
+ contentBase64: string
87393
+ }, {
87394
+ /**
87395
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87396
+ */
87397
+ fileName: string
87398
+ /**
87399
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87400
+ */
87401
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87402
+ /**
87403
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87404
+ */
87405
+ contentBase64: string
87406
+ }]|[{
87407
+ /**
87408
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87409
+ */
87410
+ fileName: string
87411
+ /**
87412
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87413
+ */
87414
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87415
+ /**
87416
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87417
+ */
87418
+ contentBase64: string
87419
+ }, {
87420
+ /**
87421
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87422
+ */
87423
+ fileName: string
87424
+ /**
87425
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87426
+ */
87427
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87428
+ /**
87429
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87430
+ */
87431
+ contentBase64: string
87432
+ }, {
87433
+ /**
87434
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87435
+ */
87436
+ fileName: string
87437
+ /**
87438
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87439
+ */
87440
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87441
+ /**
87442
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87443
+ */
87444
+ contentBase64: string
87445
+ }, {
87446
+ /**
87447
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87448
+ */
87449
+ fileName: string
87450
+ /**
87451
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87452
+ */
87453
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87454
+ /**
87455
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87456
+ */
87457
+ contentBase64: string
87458
+ }, {
87459
+ /**
87460
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87461
+ */
87462
+ fileName: string
87463
+ /**
87464
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87465
+ */
87466
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87467
+ /**
87468
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87469
+ */
87470
+ contentBase64: string
87471
+ }, {
87472
+ /**
87473
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87474
+ */
87475
+ fileName: string
87476
+ /**
87477
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87478
+ */
87479
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87480
+ /**
87481
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87482
+ */
87483
+ contentBase64: string
87484
+ }, {
87485
+ /**
87486
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87487
+ */
87488
+ fileName: string
87489
+ /**
87490
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87491
+ */
87492
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87493
+ /**
87494
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87495
+ */
87496
+ contentBase64: string
87497
+ }, {
87498
+ /**
87499
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87500
+ */
87501
+ fileName: string
87502
+ /**
87503
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87504
+ */
87505
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87506
+ /**
87507
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87508
+ */
87509
+ contentBase64: string
87510
+ }, {
87511
+ /**
87512
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87513
+ */
87514
+ fileName: string
87515
+ /**
87516
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87517
+ */
87518
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87519
+ /**
87520
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87521
+ */
87522
+ contentBase64: string
87523
+ }, {
87524
+ /**
87525
+ * File name to store the file under, 1-255 characters, e.g. "screenshot.png".
87526
+ */
87527
+ fileName: string
87528
+ /**
87529
+ * MIME type of the file. Must be one of the listed types; anything else is refused.
87530
+ */
87531
+ contentType: ("image/jpeg" | "image/png" | "image/gif" | "image/webp" | "image/heic" | "video/mp4" | "video/webm" | "video/quicktime" | "application/pdf" | "text/plain" | "application/zip")
87532
+ /**
87533
+ * The file's bytes, base64-encoded, no data: prefix and no line breaks. At most 26214400 bytes once decoded.
87534
+ */
87535
+ contentBase64: string
87536
+ }]
85934
87537
  }
85935
87538
 
85936
87539
  export interface OrganizationSupportThreadReplyOutput {
87540
+ /**
87541
+ * Thread uuid.
87542
+ */
85937
87543
  id: string
87544
+ /**
87545
+ * Subject of the request, e.g. "Billing export fails".
87546
+ */
85938
87547
  title: string
87548
+ /**
87549
+ * True for a PERSONAL thread opened before support became organization-owned. Such threads stay visible to their own author alone and cannot be migrated.
87550
+ */
85939
87551
  legacy: boolean
87552
+ /**
87553
+ * The status NAME the product chose, e.g. "In progress" — display text, not an id.
87554
+ */
85940
87555
  status: string
87556
+ /**
87557
+ * The lifecycle bucket behind that status.
87558
+ */
85941
87559
  category: ("open" | "pending" | "resolved" | "closed")
87560
+ /**
87561
+ * The whole conversation, oldest message first.
87562
+ */
85942
87563
  messages: {
87564
+ /**
87565
+ * Message uuid.
87566
+ */
85943
87567
  id: string
87568
+ /**
87569
+ * The message text.
87570
+ */
85944
87571
  body: string
87572
+ /**
87573
+ * Who wrote this message.
87574
+ */
85945
87575
  author: {
87576
+ /**
87577
+ * `user` for a colleague, `agent` for Lessly support.
87578
+ */
85946
87579
  kind: ("user" | "agent")
87580
+ /**
87581
+ * Display name of the author.
87582
+ */
85947
87583
  name: string
85948
87584
  }
87585
+ /**
87586
+ * When the message was written, ISO 8601 UTC.
87587
+ */
85949
87588
  createdAt: string
87589
+ /**
87590
+ * Files this message carries. ALWAYS an array — a message with no files reports `[]`.
87591
+ */
87592
+ attachments: {
87593
+ /**
87594
+ * Attachment uuid.
87595
+ */
87596
+ id: string
87597
+ /**
87598
+ * The file name as it was uploaded, e.g. "screenshot.png".
87599
+ */
87600
+ fileName: string
87601
+ /**
87602
+ * Size of the file in bytes.
87603
+ */
87604
+ sizeBytes: number
87605
+ /**
87606
+ * The file's MIME type, e.g. "image/png".
87607
+ */
87608
+ contentType: string
87609
+ /**
87610
+ * Signed, short-lived URL to GET the bytes from. Re-issued on every read of the thread — follow it now rather than storing it.
87611
+ */
87612
+ downloadUrl: string
87613
+ }[]
85950
87614
  }[]
87615
+ /**
87616
+ * When the thread was opened, ISO 8601 UTC.
87617
+ */
85951
87618
  createdAt: string
87619
+ /**
87620
+ * Name of the colleague who opened the thread. Never null — an unresolvable opener falls back to a placeholder.
87621
+ */
85952
87622
  openedByName: string
87623
+ /**
87624
+ * When the thread last moved, ISO 8601 UTC. A thread with no replies reports its own creation.
87625
+ */
85953
87626
  lastMessageAt: string
87627
+ /**
87628
+ * First 140 characters of the last message, or null when the thread has none.
87629
+ */
85954
87630
  lastMessagePreview: (string | null)
85955
87631
  }
85956
87632
 
@@ -85959,15 +87635,45 @@ export interface OrganizationSupportThreadsListInput {
85959
87635
  }
85960
87636
 
85961
87637
  export interface OrganizationSupportThreadsListOutput {
87638
+ /**
87639
+ * The threads, most recently updated first.
87640
+ */
85962
87641
  threads: {
87642
+ /**
87643
+ * Thread uuid.
87644
+ */
85963
87645
  id: string
87646
+ /**
87647
+ * Subject of the request, e.g. "Billing export fails".
87648
+ */
85964
87649
  title: string
87650
+ /**
87651
+ * True for a PERSONAL thread opened before support became organization-owned. Such threads stay visible to their own author alone and cannot be migrated.
87652
+ */
85965
87653
  legacy: boolean
87654
+ /**
87655
+ * The status NAME the product chose, e.g. "In progress" — display text, not an id.
87656
+ */
85966
87657
  status: string
87658
+ /**
87659
+ * The lifecycle bucket behind that status.
87660
+ */
85967
87661
  category: ("open" | "pending" | "resolved" | "closed")
87662
+ /**
87663
+ * When the thread was opened, ISO 8601 UTC.
87664
+ */
85968
87665
  createdAt: string
87666
+ /**
87667
+ * Name of the colleague who opened the thread. Never null — an unresolvable opener falls back to a placeholder.
87668
+ */
85969
87669
  openedByName: string
87670
+ /**
87671
+ * When the thread last moved, ISO 8601 UTC. A thread with no replies reports its own creation.
87672
+ */
85970
87673
  lastMessageAt: string
87674
+ /**
87675
+ * First 140 characters of the last message, or null when the thread has none.
87676
+ */
85971
87677
  lastMessagePreview: (string | null)
85972
87678
  }[]
85973
87679
  }
@@ -85988,6 +87694,378 @@ export interface OrganizationYoutubeInstallOutput {
85988
87694
  url: string
85989
87695
  }
85990
87696
 
87697
+ export interface PlaygroundAnalyticsOverviewInput {
87698
+ /**
87699
+ * Max records per entity in recent[]; omit for the endpoint default
87700
+ */
87701
+ limit?: number
87702
+ }
87703
+
87704
+ export interface PlaygroundAnalyticsOverviewOutput {
87705
+ ok: boolean
87706
+ minted: boolean
87707
+ overview?: unknown
87708
+ http_status: number
87709
+ }
87710
+
87711
+ export interface PlaygroundBillingEntitlementsInput {
87712
+
87713
+ }
87714
+
87715
+ export interface PlaygroundBillingEntitlementsOutput {
87716
+ ok: boolean
87717
+ minted: boolean
87718
+ http_status: number
87719
+ entitlements?: unknown
87720
+ }
87721
+
87722
+ export interface PlaygroundBillingRecordUsageInput {
87723
+ /**
87724
+ * Quantity of events to record against playground-events (SUM); defaults to 1
87725
+ */
87726
+ value?: number
87727
+ }
87728
+
87729
+ export interface PlaygroundBillingRecordUsageOutput {
87730
+ minted: boolean
87731
+ accepted: (number | null)
87732
+ recorded: boolean
87733
+ duplicates: (number | null)
87734
+ http_status: number
87735
+ }
87736
+
87737
+ export interface PlaygroundClickupCreateTaskInput {
87738
+ /**
87739
+ * Task title; defaults to a fixture label
87740
+ */
87741
+ name?: string
87742
+ /**
87743
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
87744
+ */
87745
+ listId?: string
87746
+ }
87747
+
87748
+ export interface PlaygroundClickupCreateTaskOutput {
87749
+ minted: boolean
87750
+ task_id: (string | null)
87751
+ list_status: number
87752
+ vend_status: number
87753
+ clickup_status: number
87754
+ installation_count: number
87755
+ }
87756
+
87757
+ export interface PlaygroundClickupGetLastWebhookInput {
87758
+
87759
+ }
87760
+
87761
+ export type PlaygroundClickupGetLastWebhookOutput = ({
87762
+ payload: string
87763
+ event_id: string
87764
+ provider: string
87765
+ verified: boolean
87766
+ product_id: string
87767
+ occurred_at: string
87768
+ connector_id: string
87769
+ clickup_event: (string | null)
87770
+ receipt_count: number
87771
+ } | {
87772
+ found: false
87773
+ })
87774
+
87775
+ export interface PlaygroundClickupGetOverviewInput {
87776
+
87777
+ }
87778
+
87779
+ export interface PlaygroundClickupGetOverviewOutput {
87780
+ team: ({
87781
+ teamId: string
87782
+ teamName: string
87783
+ } | null)
87784
+ lists: PlaygroundClickupGetOverviewOutputItems[]
87785
+ tasks: {
87786
+ id: string
87787
+ name: string
87788
+ status: (string | null)
87789
+ }[]
87790
+ minted: boolean
87791
+ spaces: PlaygroundClickupGetOverviewOutputItems[]
87792
+ list_status: number
87793
+ vend_status: number
87794
+ lists_status: number
87795
+ tasks_status: number
87796
+ spaces_status: number
87797
+ folders_status: number
87798
+ installation_count: number
87799
+ }
87800
+ export interface PlaygroundClickupGetOverviewOutputItems {
87801
+ id: string
87802
+ name: string
87803
+ }
87804
+
87805
+ export interface PlaygroundEchoPingInput {
87806
+ /**
87807
+ * The text to echo back, 1–1024 characters
87808
+ */
87809
+ message: string
87810
+ }
87811
+
87812
+ export interface PlaygroundEchoPingOutput {
87813
+ /**
87814
+ * The message exactly as it was received
87815
+ */
87816
+ message: string
87817
+ /**
87818
+ * The product the call was resolved to
87819
+ */
87820
+ productId: string
87821
+ /**
87822
+ * ISO-8601 instant (UTC) at which the call reached the service
87823
+ */
87824
+ receivedAt: string
87825
+ }
87826
+
87827
+ export interface PlaygroundGdriveGetLastChangeInput {
87828
+
87829
+ }
87830
+
87831
+ export type PlaygroundGdriveGetLastChangeOutput = ({
87832
+ file_id: string
87833
+ removed: boolean
87834
+ file_name: (string | null)
87835
+ mime_type: (string | null)
87836
+ product_id: string
87837
+ occurred_at: string
87838
+ connector_id: string
87839
+ resource_state: string
87840
+ } | {
87841
+ found: false
87842
+ })
87843
+
87844
+ export interface PlaygroundGdriveReadFileInput {
87845
+ /**
87846
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
87847
+ */
87848
+ fileId?: string
87849
+ }
87850
+
87851
+ export interface PlaygroundGdriveReadFileOutput {
87852
+ minted: boolean
87853
+ file_id: (string | null)
87854
+ file_name: (string | null)
87855
+ mime_type: (string | null)
87856
+ file_count: number
87857
+ get_status: number
87858
+ list_status: number
87859
+ vend_status: number
87860
+ content_bytes: (number | null)
87861
+ }
87862
+
87863
+ export interface PlaygroundGoogleadsReadCustomerInput {
87864
+
87865
+ }
87866
+
87867
+ export interface PlaygroundGoogleadsReadCustomerOutput {
87868
+ minted: boolean
87869
+ vended: boolean
87870
+ customer_id: (string | null)
87871
+ vend_status: number
87872
+ result_count: number
87873
+ search_status: number
87874
+ login_customer_id: (string | null)
87875
+ }
87876
+
87877
+ export interface PlaygroundLifecycleGetStateInput {
87878
+
87879
+ }
87880
+
87881
+ export interface PlaygroundLifecycleGetStateOutput {
87882
+ blocked: boolean
87883
+ archived: boolean
87884
+ productId: string
87885
+ lastBlockTransition: ({
87886
+ eventId: string
87887
+ eventName: string
87888
+ productId: string
87889
+ occurredAt: string
87890
+ recordedAt: string
87891
+ receiptCount: number
87892
+ organizationId: string
87893
+ cascadedFromOrg: boolean
87894
+ } | null)
87895
+ lastArchiveTransition: ({
87896
+ eventId: string
87897
+ eventName: string
87898
+ productId: string
87899
+ occurredAt: string
87900
+ recordedAt: string
87901
+ receiptCount: number
87902
+ organizationId: string
87903
+ cascadedFromOrg: boolean
87904
+ } | null)
87905
+ }
87906
+
87907
+ export interface PlaygroundLifecycleListEventsInput {
87908
+
87909
+ }
87910
+
87911
+ export type PlaygroundLifecycleListEventsOutput = {
87912
+ eventId: string
87913
+ eventName: string
87914
+ productId: string
87915
+ occurredAt: string
87916
+ recordedAt: string
87917
+ receiptCount: number
87918
+ organizationId: string
87919
+ cascadedFromOrg: boolean
87920
+ }[]
87921
+
87922
+ export interface PlaygroundWebhookGetLastInput {
87923
+
87924
+ }
87925
+
87926
+ export type PlaygroundWebhookGetLastOutput = ({
87927
+ payload?: unknown
87928
+ event_id: string
87929
+ provider: string
87930
+ verified: boolean
87931
+ product_id: string
87932
+ occurred_at: string
87933
+ connector_id: string
87934
+ delivery_count: number
87935
+ } | {
87936
+ found: false
87937
+ })
87938
+
87939
+ export interface PlaygroundWorkflowEchoInput {
87940
+ /**
87941
+ * The text to store, 1–1024 characters
87942
+ */
87943
+ note: string
87944
+ /**
87945
+ * Optional labels stored alongside the note, at most 20
87946
+ *
87947
+ * @maxItems 20
87948
+ */
87949
+ tags?: []|[string]|[string, string]|[string, string, string]|[string, string, string, string]|[string, string, string, string, string]|[string, string, string, string, string, string]|[string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]|[string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, string]
87950
+ }
87951
+
87952
+ export interface PlaygroundWorkflowEchoOutput {
87953
+ /**
87954
+ * Identifier of the stored echo
87955
+ */
87956
+ id: string
87957
+ /**
87958
+ * The note exactly as it was received
87959
+ */
87960
+ note: string
87961
+ /**
87962
+ * The tags exactly as they were received
87963
+ */
87964
+ tags: string[]
87965
+ /**
87966
+ * Correlation id for this echo. The playground/workflow.echoed event published about two seconds later repeats it, which is how a composer matches the completion back to this step.
87967
+ */
87968
+ echo_id: string
87969
+ /**
87970
+ * ISO-8601 instant (UTC) at which the echo was stored
87971
+ */
87972
+ received_at: string
87973
+ }
87974
+
87975
+ export interface PlaygroundWorkflowEchoListInput {
87976
+
87977
+ }
87978
+
87979
+ export type PlaygroundWorkflowEchoListOutput = {
87980
+ /**
87981
+ * Identifier of the stored echo
87982
+ */
87983
+ id: string
87984
+ /**
87985
+ * The note exactly as it was received
87986
+ */
87987
+ note: string
87988
+ /**
87989
+ * The tags exactly as they were received
87990
+ */
87991
+ tags: string[]
87992
+ /**
87993
+ * ISO-8601 instant (UTC) at which the echo was stored
87994
+ */
87995
+ received_at: string
87996
+ }[]
87997
+
87998
+ export interface PlaygroundWorkflowPingInput {
87999
+ /**
88000
+ * Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
88001
+ */
88002
+ kind?: string
88003
+ }
88004
+
88005
+ export interface PlaygroundWorkflowPingOutput {
88006
+ /**
88007
+ * Correlation id for this ping. The emitted playground/workflow.ping event repeats it, which is how a composer matches the event back to this step.
88008
+ */
88009
+ id: string
88010
+ /**
88011
+ * The name of the event that was published
88012
+ */
88013
+ event: string
88014
+ }
88015
+
88016
+ export interface PlaygroundWorkflowSubjectsListInput {
88017
+ /**
88018
+ * How many subjects to return, 1–100. Defaults to 25.
88019
+ */
88020
+ limit?: number
88021
+ /**
88022
+ * The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
88023
+ */
88024
+ cursor?: string
88025
+ /**
88026
+ * ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR AFTER this — the opposite question, the recently active population. Omit for no lower bound.
88027
+ */
88028
+ last_activity_after?: string
88029
+ /**
88030
+ * ISO-8601 UTC instant. Return only subjects whose last_activity_at is AT OR BEFORE this — the "inactive for N days" question: pass now minus N days. Omit for no upper bound.
88031
+ */
88032
+ last_activity_before?: string
88033
+ }
88034
+
88035
+ export interface PlaygroundWorkflowSubjectsListOutput {
88036
+ /**
88037
+ * This page of subjects, most recently active first
88038
+ */
88039
+ items: {
88040
+ /**
88041
+ * Stable identifier for the subject. This is the field a batch trigger keys on, so a subject already served in an earlier run is skipped rather than served twice.
88042
+ */
88043
+ subject_key: string
88044
+ /**
88045
+ * Human-readable name of the subject
88046
+ */
88047
+ display_name: string
88048
+ /**
88049
+ * ISO-8601 instant (UTC) of the subject last activity
88050
+ */
88051
+ last_activity_at: string
88052
+ }[]
88053
+ /**
88054
+ * Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
88055
+ */
88056
+ has_more: boolean
88057
+ /**
88058
+ * Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
88059
+ */
88060
+ next_cursor: (string | null)
88061
+ }
88062
+
88063
+ export interface PlaygroundWsEchoInput {
88064
+
88065
+ }
88066
+
88067
+ export type PlaygroundWsEchoOutput = unknown;
88068
+
85991
88069
  export interface RealtimeArchiveExportInput {
85992
88070
  /**
85993
88071
  * Only entries with ts <= to_ts (epoch ms)