@lepsto/sdk-app 89.0.0 → 89.1.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 +13 -8
- package/dist/_types/gen/client.gen.d.ts +38 -1
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +70 -0
- package/dist/_types/gen/types.gen.d.ts +352 -14
- package/dist/chunk-IWBH5QNX.js +11406 -0
- package/dist/chunk-IWBH5QNX.js.map +1 -0
- package/dist/index.cjs +231 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +24 -11189
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +106 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +78 -0
- package/dist/playground/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +218 -3
- package/src/gen/client.gen.ts +71 -0
- package/src/gen/manifest.gen.ts +23 -3
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +119 -0
- package/src/gen/types.gen.ts +398 -14
|
@@ -78221,6 +78221,7 @@ export interface DeploymentDomainAddOutput {
|
|
|
78221
78221
|
updatedAt: string;
|
|
78222
78222
|
pathPrefix: string;
|
|
78223
78223
|
}[];
|
|
78224
|
+
aliases: string[];
|
|
78224
78225
|
hostname: string;
|
|
78225
78226
|
createdAt: string;
|
|
78226
78227
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78246,6 +78247,7 @@ export interface DeploymentDomainAddOutput {
|
|
|
78246
78247
|
} | null);
|
|
78247
78248
|
routingRecordType: ("A" | "CNAME");
|
|
78248
78249
|
verificationToken: (string | null);
|
|
78250
|
+
advertisedHostname: string;
|
|
78249
78251
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78250
78252
|
lastVerificationError: (({
|
|
78251
78253
|
code: (string | null);
|
|
@@ -78286,6 +78288,7 @@ export interface DeploymentDomainGetInput {
|
|
|
78286
78288
|
export interface DeploymentDomainGetOutput {
|
|
78287
78289
|
id: string;
|
|
78288
78290
|
kind: ("auto" | "custom");
|
|
78291
|
+
aliases: string[];
|
|
78289
78292
|
hostname: string;
|
|
78290
78293
|
createdAt: string;
|
|
78291
78294
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78311,6 +78314,7 @@ export interface DeploymentDomainGetOutput {
|
|
|
78311
78314
|
} | null);
|
|
78312
78315
|
routingRecordType: ("A" | "CNAME");
|
|
78313
78316
|
verificationToken: (string | null);
|
|
78317
|
+
advertisedHostname: string;
|
|
78314
78318
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78315
78319
|
lastVerificationError: (({
|
|
78316
78320
|
code: (string | null);
|
|
@@ -78342,6 +78346,7 @@ export interface DeploymentDomainListInput {
|
|
|
78342
78346
|
export type DeploymentDomainListOutput = {
|
|
78343
78347
|
id: string;
|
|
78344
78348
|
kind: ("auto" | "custom");
|
|
78349
|
+
aliases: string[];
|
|
78345
78350
|
hostname: string;
|
|
78346
78351
|
createdAt: string;
|
|
78347
78352
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78367,6 +78372,7 @@ export type DeploymentDomainListOutput = {
|
|
|
78367
78372
|
} | null);
|
|
78368
78373
|
routingRecordType: ("A" | "CNAME");
|
|
78369
78374
|
verificationToken: (string | null);
|
|
78375
|
+
advertisedHostname: string;
|
|
78370
78376
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78371
78377
|
lastVerificationError: (({
|
|
78372
78378
|
code: (string | null);
|
|
@@ -78398,6 +78404,7 @@ export interface DeploymentDomainListByServiceInput {
|
|
|
78398
78404
|
export type DeploymentDomainListByServiceOutput = {
|
|
78399
78405
|
id: string;
|
|
78400
78406
|
kind: ("auto" | "custom");
|
|
78407
|
+
aliases: string[];
|
|
78401
78408
|
hostname: string;
|
|
78402
78409
|
createdAt: string;
|
|
78403
78410
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78423,6 +78430,7 @@ export type DeploymentDomainListByServiceOutput = {
|
|
|
78423
78430
|
} | null);
|
|
78424
78431
|
routingRecordType: ("A" | "CNAME");
|
|
78425
78432
|
verificationToken: (string | null);
|
|
78433
|
+
advertisedHostname: string;
|
|
78426
78434
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78427
78435
|
lastVerificationError: (({
|
|
78428
78436
|
code: (string | null);
|
|
@@ -78455,6 +78463,7 @@ export interface DeploymentDomainRedirectWwwInput {
|
|
|
78455
78463
|
export interface DeploymentDomainRedirectWwwOutput {
|
|
78456
78464
|
id: string;
|
|
78457
78465
|
kind: ("auto" | "custom");
|
|
78466
|
+
aliases: string[];
|
|
78458
78467
|
hostname: string;
|
|
78459
78468
|
createdAt: string;
|
|
78460
78469
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78480,6 +78489,7 @@ export interface DeploymentDomainRedirectWwwOutput {
|
|
|
78480
78489
|
} | null);
|
|
78481
78490
|
routingRecordType: ("A" | "CNAME");
|
|
78482
78491
|
verificationToken: (string | null);
|
|
78492
|
+
advertisedHostname: string;
|
|
78483
78493
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78484
78494
|
lastVerificationError: (({
|
|
78485
78495
|
code: (string | null);
|
|
@@ -78571,6 +78581,7 @@ export interface DeploymentDomainVerifyInput {
|
|
|
78571
78581
|
export interface DeploymentDomainVerifyOutput {
|
|
78572
78582
|
id: string;
|
|
78573
78583
|
kind: ("auto" | "custom");
|
|
78584
|
+
aliases: string[];
|
|
78574
78585
|
hostname: string;
|
|
78575
78586
|
createdAt: string;
|
|
78576
78587
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed");
|
|
@@ -78596,6 +78607,7 @@ export interface DeploymentDomainVerifyOutput {
|
|
|
78596
78607
|
} | null);
|
|
78597
78608
|
routingRecordType: ("A" | "CNAME");
|
|
78598
78609
|
verificationToken: (string | null);
|
|
78610
|
+
advertisedHostname: string;
|
|
78599
78611
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed");
|
|
78600
78612
|
lastVerificationError: (({
|
|
78601
78613
|
code: (string | null);
|
|
@@ -96101,6 +96113,332 @@ export interface OrganizationYoutubeInstallInput {
|
|
|
96101
96113
|
export interface OrganizationYoutubeInstallOutput {
|
|
96102
96114
|
url: string;
|
|
96103
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;
|
|
96104
96442
|
export interface RealtimeArchiveExportInput {
|
|
96105
96443
|
/**
|
|
96106
96444
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -96976,7 +97314,7 @@ export interface SupportAgentCreateInput {
|
|
|
96976
97314
|
*/
|
|
96977
97315
|
displayName: string;
|
|
96978
97316
|
/**
|
|
96979
|
-
*
|
|
97317
|
+
* Lepsto 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 Lepsto user
|
|
96980
97318
|
*/
|
|
96981
97319
|
lesslyUserId?: string;
|
|
96982
97320
|
}
|
|
@@ -97010,7 +97348,7 @@ export interface SupportAgentCreateOutput {
|
|
|
97010
97348
|
*/
|
|
97011
97349
|
displayName: string;
|
|
97012
97350
|
/**
|
|
97013
|
-
* Bound
|
|
97351
|
+
* Bound Lepsto 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
|
|
97014
97352
|
*/
|
|
97015
97353
|
lesslyUserId: (string | null);
|
|
97016
97354
|
}
|
|
@@ -97050,7 +97388,7 @@ export interface SupportAgentGetOutput {
|
|
|
97050
97388
|
*/
|
|
97051
97389
|
displayName: string;
|
|
97052
97390
|
/**
|
|
97053
|
-
* Bound
|
|
97391
|
+
* Bound Lepsto 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
|
|
97054
97392
|
*/
|
|
97055
97393
|
lesslyUserId: (string | null);
|
|
97056
97394
|
}
|
|
@@ -97094,7 +97432,7 @@ export interface SupportAgentListOutput {
|
|
|
97094
97432
|
*/
|
|
97095
97433
|
displayName: string;
|
|
97096
97434
|
/**
|
|
97097
|
-
* Bound
|
|
97435
|
+
* Bound Lepsto 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
|
|
97098
97436
|
*/
|
|
97099
97437
|
lesslyUserId: (string | null);
|
|
97100
97438
|
}[];
|
|
@@ -97121,7 +97459,7 @@ export interface SupportAgentUpdateInput {
|
|
|
97121
97459
|
*/
|
|
97122
97460
|
displayName?: string;
|
|
97123
97461
|
/**
|
|
97124
|
-
*
|
|
97462
|
+
* Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
|
|
97125
97463
|
*/
|
|
97126
97464
|
lesslyUserId?: (string | null);
|
|
97127
97465
|
}
|
|
@@ -97155,7 +97493,7 @@ export interface SupportAgentUpdateOutput {
|
|
|
97155
97493
|
*/
|
|
97156
97494
|
displayName: string;
|
|
97157
97495
|
/**
|
|
97158
|
-
* Bound
|
|
97496
|
+
* Bound Lepsto 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
|
|
97159
97497
|
*/
|
|
97160
97498
|
lesslyUserId: (string | null);
|
|
97161
97499
|
}
|
|
@@ -97467,7 +97805,7 @@ export interface SupportMessageCreateOutput {
|
|
|
97467
97805
|
*/
|
|
97468
97806
|
authorExternalId: (string | null);
|
|
97469
97807
|
/**
|
|
97470
|
-
* The
|
|
97808
|
+
* The Lepsto 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
|
|
97471
97809
|
*/
|
|
97472
97810
|
createdByIdentityId: (string | null);
|
|
97473
97811
|
}
|
|
@@ -97556,7 +97894,7 @@ export interface SupportMessageDeleteOutput {
|
|
|
97556
97894
|
*/
|
|
97557
97895
|
authorExternalId: (string | null);
|
|
97558
97896
|
/**
|
|
97559
|
-
* The
|
|
97897
|
+
* The Lepsto 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
|
|
97560
97898
|
*/
|
|
97561
97899
|
createdByIdentityId: (string | null);
|
|
97562
97900
|
}
|
|
@@ -97645,7 +97983,7 @@ export interface SupportMessageDeleteAnyOutput {
|
|
|
97645
97983
|
*/
|
|
97646
97984
|
authorExternalId: (string | null);
|
|
97647
97985
|
/**
|
|
97648
|
-
* The
|
|
97986
|
+
* The Lepsto 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
|
|
97649
97987
|
*/
|
|
97650
97988
|
createdByIdentityId: (string | null);
|
|
97651
97989
|
}
|
|
@@ -97734,7 +98072,7 @@ export interface SupportMessageGetOutput {
|
|
|
97734
98072
|
*/
|
|
97735
98073
|
authorExternalId: (string | null);
|
|
97736
98074
|
/**
|
|
97737
|
-
* The
|
|
98075
|
+
* The Lepsto 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
|
|
97738
98076
|
*/
|
|
97739
98077
|
createdByIdentityId: (string | null);
|
|
97740
98078
|
}
|
|
@@ -97859,7 +98197,7 @@ export interface SupportMessageListOutput {
|
|
|
97859
98197
|
*/
|
|
97860
98198
|
authorExternalId: (string | null);
|
|
97861
98199
|
/**
|
|
97862
|
-
* The
|
|
98200
|
+
* The Lepsto 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
|
|
97863
98201
|
*/
|
|
97864
98202
|
createdByIdentityId: (string | null);
|
|
97865
98203
|
}[];
|
|
@@ -97896,7 +98234,7 @@ export interface SupportMessageRevisionsListOutput {
|
|
|
97896
98234
|
*/
|
|
97897
98235
|
messageId: string;
|
|
97898
98236
|
/**
|
|
97899
|
-
* The
|
|
98237
|
+
* The Lepsto identity that made the edit
|
|
97900
98238
|
*/
|
|
97901
98239
|
editedByIdentityId: (string | null);
|
|
97902
98240
|
}[];
|
|
@@ -97990,7 +98328,7 @@ export interface SupportMessageUpdateOutput {
|
|
|
97990
98328
|
*/
|
|
97991
98329
|
authorExternalId: (string | null);
|
|
97992
98330
|
/**
|
|
97993
|
-
* The
|
|
98331
|
+
* The Lepsto 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
|
|
97994
98332
|
*/
|
|
97995
98333
|
createdByIdentityId: (string | null);
|
|
97996
98334
|
}
|
|
@@ -117958,7 +118296,7 @@ export interface SupportThreadCreateInput {
|
|
|
117958
118296
|
*/
|
|
117959
118297
|
authorDisplay?: string;
|
|
117960
118298
|
/**
|
|
117961
|
-
* 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
|
|
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 Lepsto identity
|
|
117962
118300
|
*/
|
|
117963
118301
|
authorExternalId: string;
|
|
117964
118302
|
}
|