@lepsto/sdk-app 89.1.0 → 89.2.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.
- package/CHANGELOG.md +1 -1
- package/dist/_types/gen/client.gen.d.ts +1 -38
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/types.gen.d.ts +14 -340
- package/dist/index.cjs +4 -231
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +11189 -24
- package/dist/index.js.map +1 -1
- package/package.json +2 -12
- package/src/gen/bindings.gen.ts +3 -218
- package/src/gen/client.gen.ts +0 -71
- package/src/gen/manifest.gen.ts +3 -23
- package/src/gen/types.gen.ts +14 -386
- package/dist/_types/gen/playground/connect.gen.d.ts +0 -3
- package/dist/_types/gen/playground/index.d.ts +0 -3
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +0 -70
- package/dist/chunk-IWBH5QNX.js +0 -11406
- package/dist/chunk-IWBH5QNX.js.map +0 -1
- package/dist/playground/index.cjs +0 -106
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -1
- package/dist/playground/index.d.ts +0 -1
- package/dist/playground/index.js +0 -78
- package/dist/playground/index.js.map +0 -1
- package/src/gen/playground/connect.gen.ts +0 -9
- package/src/gen/playground/index.ts +0 -4
- package/src/gen/playground/queryOptions.gen.ts +0 -119
|
@@ -96113,332 +96113,6 @@ export interface OrganizationYoutubeInstallInput {
|
|
|
96113
96113
|
export interface OrganizationYoutubeInstallOutput {
|
|
96114
96114
|
url: string;
|
|
96115
96115
|
}
|
|
96116
|
-
export interface PlaygroundAnalyticsOverviewInput {
|
|
96117
|
-
/**
|
|
96118
|
-
* Max records per entity in recent[]; omit for the endpoint default
|
|
96119
|
-
*/
|
|
96120
|
-
limit?: number;
|
|
96121
|
-
}
|
|
96122
|
-
export interface PlaygroundAnalyticsOverviewOutput {
|
|
96123
|
-
ok: boolean;
|
|
96124
|
-
minted: boolean;
|
|
96125
|
-
overview?: unknown;
|
|
96126
|
-
http_status: number;
|
|
96127
|
-
}
|
|
96128
|
-
export interface PlaygroundBillingEntitlementsInput {
|
|
96129
|
-
}
|
|
96130
|
-
export interface PlaygroundBillingEntitlementsOutput {
|
|
96131
|
-
ok: boolean;
|
|
96132
|
-
minted: boolean;
|
|
96133
|
-
http_status: number;
|
|
96134
|
-
entitlements?: unknown;
|
|
96135
|
-
}
|
|
96136
|
-
export interface PlaygroundBillingRecordUsageInput {
|
|
96137
|
-
/**
|
|
96138
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
96139
|
-
*/
|
|
96140
|
-
value?: number;
|
|
96141
|
-
}
|
|
96142
|
-
export interface PlaygroundBillingRecordUsageOutput {
|
|
96143
|
-
minted: boolean;
|
|
96144
|
-
accepted: (number | null);
|
|
96145
|
-
recorded: boolean;
|
|
96146
|
-
duplicates: (number | null);
|
|
96147
|
-
http_status: number;
|
|
96148
|
-
}
|
|
96149
|
-
export interface PlaygroundClickupCreateTaskInput {
|
|
96150
|
-
/**
|
|
96151
|
-
* Task title; defaults to a fixture label
|
|
96152
|
-
*/
|
|
96153
|
-
name?: string;
|
|
96154
|
-
/**
|
|
96155
|
-
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
96156
|
-
*/
|
|
96157
|
-
listId?: string;
|
|
96158
|
-
}
|
|
96159
|
-
export interface PlaygroundClickupCreateTaskOutput {
|
|
96160
|
-
minted: boolean;
|
|
96161
|
-
task_id: (string | null);
|
|
96162
|
-
list_status: number;
|
|
96163
|
-
vend_status: number;
|
|
96164
|
-
clickup_status: number;
|
|
96165
|
-
installation_count: number;
|
|
96166
|
-
}
|
|
96167
|
-
export interface PlaygroundClickupGetLastWebhookInput {
|
|
96168
|
-
}
|
|
96169
|
-
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
96170
|
-
payload: string;
|
|
96171
|
-
event_id: string;
|
|
96172
|
-
provider: string;
|
|
96173
|
-
verified: boolean;
|
|
96174
|
-
product_id: string;
|
|
96175
|
-
occurred_at: string;
|
|
96176
|
-
connector_id: string;
|
|
96177
|
-
clickup_event: (string | null);
|
|
96178
|
-
receipt_count: number;
|
|
96179
|
-
} | {
|
|
96180
|
-
found: false;
|
|
96181
|
-
});
|
|
96182
|
-
export interface PlaygroundClickupGetOverviewInput {
|
|
96183
|
-
}
|
|
96184
|
-
export interface PlaygroundClickupGetOverviewOutput {
|
|
96185
|
-
team: ({
|
|
96186
|
-
teamId: string;
|
|
96187
|
-
teamName: string;
|
|
96188
|
-
} | null);
|
|
96189
|
-
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
96190
|
-
tasks: {
|
|
96191
|
-
id: string;
|
|
96192
|
-
name: string;
|
|
96193
|
-
status: (string | null);
|
|
96194
|
-
}[];
|
|
96195
|
-
minted: boolean;
|
|
96196
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
96197
|
-
list_status: number;
|
|
96198
|
-
vend_status: number;
|
|
96199
|
-
lists_status: number;
|
|
96200
|
-
tasks_status: number;
|
|
96201
|
-
spaces_status: number;
|
|
96202
|
-
folders_status: number;
|
|
96203
|
-
installation_count: number;
|
|
96204
|
-
}
|
|
96205
|
-
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
96206
|
-
id: string;
|
|
96207
|
-
name: string;
|
|
96208
|
-
}
|
|
96209
|
-
export interface PlaygroundEchoPingInput {
|
|
96210
|
-
/**
|
|
96211
|
-
* The text to echo back, 1–1024 characters
|
|
96212
|
-
*/
|
|
96213
|
-
message: string;
|
|
96214
|
-
}
|
|
96215
|
-
export interface PlaygroundEchoPingOutput {
|
|
96216
|
-
/**
|
|
96217
|
-
* The message exactly as it was received
|
|
96218
|
-
*/
|
|
96219
|
-
message: string;
|
|
96220
|
-
/**
|
|
96221
|
-
* The product the call was resolved to
|
|
96222
|
-
*/
|
|
96223
|
-
productId: string;
|
|
96224
|
-
/**
|
|
96225
|
-
* ISO-8601 instant (UTC) at which the call reached the service
|
|
96226
|
-
*/
|
|
96227
|
-
receivedAt: string;
|
|
96228
|
-
}
|
|
96229
|
-
export interface PlaygroundGdriveGetLastChangeInput {
|
|
96230
|
-
}
|
|
96231
|
-
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
96232
|
-
file_id: string;
|
|
96233
|
-
removed: boolean;
|
|
96234
|
-
file_name: (string | null);
|
|
96235
|
-
mime_type: (string | null);
|
|
96236
|
-
product_id: string;
|
|
96237
|
-
occurred_at: string;
|
|
96238
|
-
connector_id: string;
|
|
96239
|
-
resource_state: string;
|
|
96240
|
-
} | {
|
|
96241
|
-
found: false;
|
|
96242
|
-
});
|
|
96243
|
-
export interface PlaygroundGdriveReadFileInput {
|
|
96244
|
-
/**
|
|
96245
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
96246
|
-
*/
|
|
96247
|
-
fileId?: string;
|
|
96248
|
-
}
|
|
96249
|
-
export interface PlaygroundGdriveReadFileOutput {
|
|
96250
|
-
minted: boolean;
|
|
96251
|
-
file_id: (string | null);
|
|
96252
|
-
file_name: (string | null);
|
|
96253
|
-
mime_type: (string | null);
|
|
96254
|
-
file_count: number;
|
|
96255
|
-
get_status: number;
|
|
96256
|
-
list_status: number;
|
|
96257
|
-
vend_status: number;
|
|
96258
|
-
content_bytes: (number | null);
|
|
96259
|
-
}
|
|
96260
|
-
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
96261
|
-
}
|
|
96262
|
-
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
96263
|
-
minted: boolean;
|
|
96264
|
-
vended: boolean;
|
|
96265
|
-
customer_id: (string | null);
|
|
96266
|
-
vend_status: number;
|
|
96267
|
-
result_count: number;
|
|
96268
|
-
search_status: number;
|
|
96269
|
-
login_customer_id: (string | null);
|
|
96270
|
-
}
|
|
96271
|
-
export interface PlaygroundLifecycleGetStateInput {
|
|
96272
|
-
}
|
|
96273
|
-
export interface PlaygroundLifecycleGetStateOutput {
|
|
96274
|
-
blocked: boolean;
|
|
96275
|
-
archived: boolean;
|
|
96276
|
-
productId: string;
|
|
96277
|
-
lastBlockTransition: ({
|
|
96278
|
-
eventId: string;
|
|
96279
|
-
eventName: string;
|
|
96280
|
-
productId: string;
|
|
96281
|
-
occurredAt: string;
|
|
96282
|
-
recordedAt: string;
|
|
96283
|
-
receiptCount: number;
|
|
96284
|
-
organizationId: string;
|
|
96285
|
-
cascadedFromOrg: boolean;
|
|
96286
|
-
} | null);
|
|
96287
|
-
lastArchiveTransition: ({
|
|
96288
|
-
eventId: string;
|
|
96289
|
-
eventName: string;
|
|
96290
|
-
productId: string;
|
|
96291
|
-
occurredAt: string;
|
|
96292
|
-
recordedAt: string;
|
|
96293
|
-
receiptCount: number;
|
|
96294
|
-
organizationId: string;
|
|
96295
|
-
cascadedFromOrg: boolean;
|
|
96296
|
-
} | null);
|
|
96297
|
-
}
|
|
96298
|
-
export interface PlaygroundLifecycleListEventsInput {
|
|
96299
|
-
}
|
|
96300
|
-
export type PlaygroundLifecycleListEventsOutput = {
|
|
96301
|
-
eventId: string;
|
|
96302
|
-
eventName: string;
|
|
96303
|
-
productId: string;
|
|
96304
|
-
occurredAt: string;
|
|
96305
|
-
recordedAt: string;
|
|
96306
|
-
receiptCount: number;
|
|
96307
|
-
organizationId: string;
|
|
96308
|
-
cascadedFromOrg: boolean;
|
|
96309
|
-
}[];
|
|
96310
|
-
export interface PlaygroundWebhookGetLastInput {
|
|
96311
|
-
}
|
|
96312
|
-
export type PlaygroundWebhookGetLastOutput = ({
|
|
96313
|
-
payload?: unknown;
|
|
96314
|
-
event_id: string;
|
|
96315
|
-
provider: string;
|
|
96316
|
-
verified: boolean;
|
|
96317
|
-
product_id: string;
|
|
96318
|
-
occurred_at: string;
|
|
96319
|
-
connector_id: string;
|
|
96320
|
-
delivery_count: number;
|
|
96321
|
-
} | {
|
|
96322
|
-
found: false;
|
|
96323
|
-
});
|
|
96324
|
-
export interface PlaygroundWorkflowEchoInput {
|
|
96325
|
-
/**
|
|
96326
|
-
* The text to store, 1–1024 characters
|
|
96327
|
-
*/
|
|
96328
|
-
note: string;
|
|
96329
|
-
/**
|
|
96330
|
-
* Optional labels stored alongside the note, at most 20
|
|
96331
|
-
*
|
|
96332
|
-
* @maxItems 20
|
|
96333
|
-
*/
|
|
96334
|
-
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];
|
|
96335
|
-
}
|
|
96336
|
-
export interface PlaygroundWorkflowEchoOutput {
|
|
96337
|
-
/**
|
|
96338
|
-
* Identifier of the stored echo
|
|
96339
|
-
*/
|
|
96340
|
-
id: string;
|
|
96341
|
-
/**
|
|
96342
|
-
* The note exactly as it was received
|
|
96343
|
-
*/
|
|
96344
|
-
note: string;
|
|
96345
|
-
/**
|
|
96346
|
-
* The tags exactly as they were received
|
|
96347
|
-
*/
|
|
96348
|
-
tags: string[];
|
|
96349
|
-
/**
|
|
96350
|
-
* 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.
|
|
96351
|
-
*/
|
|
96352
|
-
echo_id: string;
|
|
96353
|
-
/**
|
|
96354
|
-
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96355
|
-
*/
|
|
96356
|
-
received_at: string;
|
|
96357
|
-
}
|
|
96358
|
-
export interface PlaygroundWorkflowEchoListInput {
|
|
96359
|
-
}
|
|
96360
|
-
export type PlaygroundWorkflowEchoListOutput = {
|
|
96361
|
-
/**
|
|
96362
|
-
* Identifier of the stored echo
|
|
96363
|
-
*/
|
|
96364
|
-
id: string;
|
|
96365
|
-
/**
|
|
96366
|
-
* The note exactly as it was received
|
|
96367
|
-
*/
|
|
96368
|
-
note: string;
|
|
96369
|
-
/**
|
|
96370
|
-
* The tags exactly as they were received
|
|
96371
|
-
*/
|
|
96372
|
-
tags: string[];
|
|
96373
|
-
/**
|
|
96374
|
-
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96375
|
-
*/
|
|
96376
|
-
received_at: string;
|
|
96377
|
-
}[];
|
|
96378
|
-
export interface PlaygroundWorkflowPingInput {
|
|
96379
|
-
/**
|
|
96380
|
-
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
96381
|
-
*/
|
|
96382
|
-
kind?: string;
|
|
96383
|
-
}
|
|
96384
|
-
export interface PlaygroundWorkflowPingOutput {
|
|
96385
|
-
/**
|
|
96386
|
-
* 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.
|
|
96387
|
-
*/
|
|
96388
|
-
id: string;
|
|
96389
|
-
/**
|
|
96390
|
-
* The name of the event that was published
|
|
96391
|
-
*/
|
|
96392
|
-
event: string;
|
|
96393
|
-
}
|
|
96394
|
-
export interface PlaygroundWorkflowSubjectsListInput {
|
|
96395
|
-
/**
|
|
96396
|
-
* How many subjects to return, 1–100. Defaults to 25.
|
|
96397
|
-
*/
|
|
96398
|
-
limit?: number;
|
|
96399
|
-
/**
|
|
96400
|
-
* The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
|
|
96401
|
-
*/
|
|
96402
|
-
cursor?: string;
|
|
96403
|
-
/**
|
|
96404
|
-
* 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.
|
|
96405
|
-
*/
|
|
96406
|
-
last_activity_after?: string;
|
|
96407
|
-
/**
|
|
96408
|
-
* 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.
|
|
96409
|
-
*/
|
|
96410
|
-
last_activity_before?: string;
|
|
96411
|
-
}
|
|
96412
|
-
export interface PlaygroundWorkflowSubjectsListOutput {
|
|
96413
|
-
/**
|
|
96414
|
-
* This page of subjects, most recently active first
|
|
96415
|
-
*/
|
|
96416
|
-
items: {
|
|
96417
|
-
/**
|
|
96418
|
-
* 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.
|
|
96419
|
-
*/
|
|
96420
|
-
subject_key: string;
|
|
96421
|
-
/**
|
|
96422
|
-
* Human-readable name of the subject
|
|
96423
|
-
*/
|
|
96424
|
-
display_name: string;
|
|
96425
|
-
/**
|
|
96426
|
-
* ISO-8601 instant (UTC) of the subject last activity
|
|
96427
|
-
*/
|
|
96428
|
-
last_activity_at: string;
|
|
96429
|
-
}[];
|
|
96430
|
-
/**
|
|
96431
|
-
* Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
|
|
96432
|
-
*/
|
|
96433
|
-
has_more: boolean;
|
|
96434
|
-
/**
|
|
96435
|
-
* Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
|
|
96436
|
-
*/
|
|
96437
|
-
next_cursor: (string | null);
|
|
96438
|
-
}
|
|
96439
|
-
export interface PlaygroundWsEchoInput {
|
|
96440
|
-
}
|
|
96441
|
-
export type PlaygroundWsEchoOutput = unknown;
|
|
96442
96116
|
export interface RealtimeArchiveExportInput {
|
|
96443
96117
|
/**
|
|
96444
96118
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -97314,7 +96988,7 @@ export interface SupportAgentCreateInput {
|
|
|
97314
96988
|
*/
|
|
97315
96989
|
displayName: string;
|
|
97316
96990
|
/**
|
|
97317
|
-
*
|
|
96991
|
+
* Lessly identity to bind this profile to, stored verbatim as an opaque string. It is never resolved, validated against the platform or enriched. Omit it for a bot or a backend profile. At most one agent per product may claim a given Lessly user
|
|
97318
96992
|
*/
|
|
97319
96993
|
lesslyUserId?: string;
|
|
97320
96994
|
}
|
|
@@ -97348,7 +97022,7 @@ export interface SupportAgentCreateOutput {
|
|
|
97348
97022
|
*/
|
|
97349
97023
|
displayName: string;
|
|
97350
97024
|
/**
|
|
97351
|
-
* Bound
|
|
97025
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
97352
97026
|
*/
|
|
97353
97027
|
lesslyUserId: (string | null);
|
|
97354
97028
|
}
|
|
@@ -97388,7 +97062,7 @@ export interface SupportAgentGetOutput {
|
|
|
97388
97062
|
*/
|
|
97389
97063
|
displayName: string;
|
|
97390
97064
|
/**
|
|
97391
|
-
* Bound
|
|
97065
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
97392
97066
|
*/
|
|
97393
97067
|
lesslyUserId: (string | null);
|
|
97394
97068
|
}
|
|
@@ -97432,7 +97106,7 @@ export interface SupportAgentListOutput {
|
|
|
97432
97106
|
*/
|
|
97433
97107
|
displayName: string;
|
|
97434
97108
|
/**
|
|
97435
|
-
* Bound
|
|
97109
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
97436
97110
|
*/
|
|
97437
97111
|
lesslyUserId: (string | null);
|
|
97438
97112
|
}[];
|
|
@@ -97459,7 +97133,7 @@ export interface SupportAgentUpdateInput {
|
|
|
97459
97133
|
*/
|
|
97460
97134
|
displayName?: string;
|
|
97461
97135
|
/**
|
|
97462
|
-
*
|
|
97136
|
+
* Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
|
|
97463
97137
|
*/
|
|
97464
97138
|
lesslyUserId?: (string | null);
|
|
97465
97139
|
}
|
|
@@ -97493,7 +97167,7 @@ export interface SupportAgentUpdateOutput {
|
|
|
97493
97167
|
*/
|
|
97494
97168
|
displayName: string;
|
|
97495
97169
|
/**
|
|
97496
|
-
* Bound
|
|
97170
|
+
* Bound Lessly identity, stored verbatim and resolved by nobody. Null for an unbound profile — a bot or the client's own backend, which replies just like anyone else
|
|
97497
97171
|
*/
|
|
97498
97172
|
lesslyUserId: (string | null);
|
|
97499
97173
|
}
|
|
@@ -97805,7 +97479,7 @@ export interface SupportMessageCreateOutput {
|
|
|
97805
97479
|
*/
|
|
97806
97480
|
authorExternalId: (string | null);
|
|
97807
97481
|
/**
|
|
97808
|
-
* The
|
|
97482
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
97809
97483
|
*/
|
|
97810
97484
|
createdByIdentityId: (string | null);
|
|
97811
97485
|
}
|
|
@@ -97894,7 +97568,7 @@ export interface SupportMessageDeleteOutput {
|
|
|
97894
97568
|
*/
|
|
97895
97569
|
authorExternalId: (string | null);
|
|
97896
97570
|
/**
|
|
97897
|
-
* The
|
|
97571
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
97898
97572
|
*/
|
|
97899
97573
|
createdByIdentityId: (string | null);
|
|
97900
97574
|
}
|
|
@@ -97983,7 +97657,7 @@ export interface SupportMessageDeleteAnyOutput {
|
|
|
97983
97657
|
*/
|
|
97984
97658
|
authorExternalId: (string | null);
|
|
97985
97659
|
/**
|
|
97986
|
-
* The
|
|
97660
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
97987
97661
|
*/
|
|
97988
97662
|
createdByIdentityId: (string | null);
|
|
97989
97663
|
}
|
|
@@ -98072,7 +97746,7 @@ export interface SupportMessageGetOutput {
|
|
|
98072
97746
|
*/
|
|
98073
97747
|
authorExternalId: (string | null);
|
|
98074
97748
|
/**
|
|
98075
|
-
* The
|
|
97749
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
98076
97750
|
*/
|
|
98077
97751
|
createdByIdentityId: (string | null);
|
|
98078
97752
|
}
|
|
@@ -98197,7 +97871,7 @@ export interface SupportMessageListOutput {
|
|
|
98197
97871
|
*/
|
|
98198
97872
|
authorExternalId: (string | null);
|
|
98199
97873
|
/**
|
|
98200
|
-
* The
|
|
97874
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
98201
97875
|
*/
|
|
98202
97876
|
createdByIdentityId: (string | null);
|
|
98203
97877
|
}[];
|
|
@@ -98234,7 +97908,7 @@ export interface SupportMessageRevisionsListOutput {
|
|
|
98234
97908
|
*/
|
|
98235
97909
|
messageId: string;
|
|
98236
97910
|
/**
|
|
98237
|
-
* The
|
|
97911
|
+
* The Lessly identity that made the edit
|
|
98238
97912
|
*/
|
|
98239
97913
|
editedByIdentityId: (string | null);
|
|
98240
97914
|
}[];
|
|
@@ -98328,7 +98002,7 @@ export interface SupportMessageUpdateOutput {
|
|
|
98328
98002
|
*/
|
|
98329
98003
|
authorExternalId: (string | null);
|
|
98330
98004
|
/**
|
|
98331
|
-
* The
|
|
98005
|
+
* The Lessly identity that posted the message — the one allowed to edit or delete it. Null for a message from the public edge or from before authorship was recorded: nobody owns those, and only support_message_delete_any removes them
|
|
98332
98006
|
*/
|
|
98333
98007
|
createdByIdentityId: (string | null);
|
|
98334
98008
|
}
|
|
@@ -118296,7 +117970,7 @@ export interface SupportThreadCreateInput {
|
|
|
118296
117970
|
*/
|
|
118297
117971
|
authorDisplay?: string;
|
|
118298
117972
|
/**
|
|
118299
|
-
* Opaque identifier of the external end user in the client's own user base. Stored verbatim: never resolved, normalised or enriched, and it is not a
|
|
117973
|
+
* Opaque identifier of the external end user in the client's own user base. Stored verbatim: never resolved, normalised or enriched, and it is not a Lessly identity
|
|
118300
117974
|
*/
|
|
118301
117975
|
authorExternalId: string;
|
|
118302
117976
|
}
|