@lepsto/sdk-app 87.3.0 → 88.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +128 -0
- package/README.md +8 -0
- package/dist/_types/gen/client.gen.d.ts +41 -1
- package/dist/_types/gen/deployment/index.d.ts +1 -1
- package/dist/_types/gen/deployment/queryOptions.gen.d.ts +5 -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 +369 -14
- package/dist/chunk-IWBH5QNX.js +11406 -0
- package/dist/chunk-IWBH5QNX.js.map +1 -0
- package/dist/deployment/index.cjs +5 -0
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.js +5 -1
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +241 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +25 -11180
- 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 +13 -2
- package/src/gen/bindings.gen.ts +227 -3
- package/src/gen/client.gen.ts +76 -0
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +7 -0
- package/src/gen/manifest.gen.ts +24 -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 +418 -14
|
@@ -78238,6 +78238,10 @@ export interface DeploymentDomainAddOutput {
|
|
|
78238
78238
|
};
|
|
78239
78239
|
routing: DeploymentDomainAddOutputItems[];
|
|
78240
78240
|
acmeChallenge?: DeploymentDomainAddOutputItems;
|
|
78241
|
+
txtAlternatives?: {
|
|
78242
|
+
name: string;
|
|
78243
|
+
value: string;
|
|
78244
|
+
}[];
|
|
78241
78245
|
routingUnavailable?: boolean;
|
|
78242
78246
|
} | null);
|
|
78243
78247
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -78299,6 +78303,10 @@ export interface DeploymentDomainGetOutput {
|
|
|
78299
78303
|
};
|
|
78300
78304
|
routing: DeploymentDomainGetOutputItems[];
|
|
78301
78305
|
acmeChallenge?: DeploymentDomainGetOutputItems;
|
|
78306
|
+
txtAlternatives?: {
|
|
78307
|
+
name: string;
|
|
78308
|
+
value: string;
|
|
78309
|
+
}[];
|
|
78302
78310
|
routingUnavailable?: boolean;
|
|
78303
78311
|
} | null);
|
|
78304
78312
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -78351,6 +78359,10 @@ export type DeploymentDomainListOutput = {
|
|
|
78351
78359
|
};
|
|
78352
78360
|
routing: DeploymentDomainListOutputItems[];
|
|
78353
78361
|
acmeChallenge?: DeploymentDomainListOutputItems;
|
|
78362
|
+
txtAlternatives?: {
|
|
78363
|
+
name: string;
|
|
78364
|
+
value: string;
|
|
78365
|
+
}[];
|
|
78354
78366
|
routingUnavailable?: boolean;
|
|
78355
78367
|
} | null);
|
|
78356
78368
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -78403,6 +78415,10 @@ export type DeploymentDomainListByServiceOutput = {
|
|
|
78403
78415
|
};
|
|
78404
78416
|
routing: DeploymentDomainListByServiceOutputItems[];
|
|
78405
78417
|
acmeChallenge?: DeploymentDomainListByServiceOutputItems;
|
|
78418
|
+
txtAlternatives?: {
|
|
78419
|
+
name: string;
|
|
78420
|
+
value: string;
|
|
78421
|
+
}[];
|
|
78406
78422
|
routingUnavailable?: boolean;
|
|
78407
78423
|
} | null);
|
|
78408
78424
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -78456,6 +78472,10 @@ export interface DeploymentDomainRedirectWwwOutput {
|
|
|
78456
78472
|
};
|
|
78457
78473
|
routing: DeploymentDomainRedirectWwwOutputItems[];
|
|
78458
78474
|
acmeChallenge?: DeploymentDomainRedirectWwwOutputItems;
|
|
78475
|
+
txtAlternatives?: {
|
|
78476
|
+
name: string;
|
|
78477
|
+
value: string;
|
|
78478
|
+
}[];
|
|
78459
78479
|
routingUnavailable?: boolean;
|
|
78460
78480
|
} | null);
|
|
78461
78481
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -78568,6 +78588,10 @@ export interface DeploymentDomainVerifyOutput {
|
|
|
78568
78588
|
};
|
|
78569
78589
|
routing: DeploymentDomainVerifyOutputItems[];
|
|
78570
78590
|
acmeChallenge?: DeploymentDomainVerifyOutputItems;
|
|
78591
|
+
txtAlternatives?: {
|
|
78592
|
+
name: string;
|
|
78593
|
+
value: string;
|
|
78594
|
+
}[];
|
|
78571
78595
|
routingUnavailable?: boolean;
|
|
78572
78596
|
} | null);
|
|
78573
78597
|
routingRecordType: ("A" | "CNAME");
|
|
@@ -79898,6 +79922,11 @@ export interface DeploymentServiceWakeInput {
|
|
|
79898
79922
|
export interface DeploymentServiceWakeOutput {
|
|
79899
79923
|
[k: string]: unknown;
|
|
79900
79924
|
}
|
|
79925
|
+
export interface DeploymentSshBastionGetInput {
|
|
79926
|
+
}
|
|
79927
|
+
export interface DeploymentSshBastionGetOutput {
|
|
79928
|
+
host: string;
|
|
79929
|
+
}
|
|
79901
79930
|
export interface DeploymentSshCommandInput {
|
|
79902
79931
|
serviceId: string;
|
|
79903
79932
|
}
|
|
@@ -96072,6 +96101,332 @@ export interface OrganizationYoutubeInstallInput {
|
|
|
96072
96101
|
export interface OrganizationYoutubeInstallOutput {
|
|
96073
96102
|
url: string;
|
|
96074
96103
|
}
|
|
96104
|
+
export interface PlaygroundAnalyticsOverviewInput {
|
|
96105
|
+
/**
|
|
96106
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
96107
|
+
*/
|
|
96108
|
+
limit?: number;
|
|
96109
|
+
}
|
|
96110
|
+
export interface PlaygroundAnalyticsOverviewOutput {
|
|
96111
|
+
ok: boolean;
|
|
96112
|
+
minted: boolean;
|
|
96113
|
+
overview?: unknown;
|
|
96114
|
+
http_status: number;
|
|
96115
|
+
}
|
|
96116
|
+
export interface PlaygroundBillingEntitlementsInput {
|
|
96117
|
+
}
|
|
96118
|
+
export interface PlaygroundBillingEntitlementsOutput {
|
|
96119
|
+
ok: boolean;
|
|
96120
|
+
minted: boolean;
|
|
96121
|
+
http_status: number;
|
|
96122
|
+
entitlements?: unknown;
|
|
96123
|
+
}
|
|
96124
|
+
export interface PlaygroundBillingRecordUsageInput {
|
|
96125
|
+
/**
|
|
96126
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
96127
|
+
*/
|
|
96128
|
+
value?: number;
|
|
96129
|
+
}
|
|
96130
|
+
export interface PlaygroundBillingRecordUsageOutput {
|
|
96131
|
+
minted: boolean;
|
|
96132
|
+
accepted: (number | null);
|
|
96133
|
+
recorded: boolean;
|
|
96134
|
+
duplicates: (number | null);
|
|
96135
|
+
http_status: number;
|
|
96136
|
+
}
|
|
96137
|
+
export interface PlaygroundClickupCreateTaskInput {
|
|
96138
|
+
/**
|
|
96139
|
+
* Task title; defaults to a fixture label
|
|
96140
|
+
*/
|
|
96141
|
+
name?: string;
|
|
96142
|
+
/**
|
|
96143
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
96144
|
+
*/
|
|
96145
|
+
listId?: string;
|
|
96146
|
+
}
|
|
96147
|
+
export interface PlaygroundClickupCreateTaskOutput {
|
|
96148
|
+
minted: boolean;
|
|
96149
|
+
task_id: (string | null);
|
|
96150
|
+
list_status: number;
|
|
96151
|
+
vend_status: number;
|
|
96152
|
+
clickup_status: number;
|
|
96153
|
+
installation_count: number;
|
|
96154
|
+
}
|
|
96155
|
+
export interface PlaygroundClickupGetLastWebhookInput {
|
|
96156
|
+
}
|
|
96157
|
+
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
96158
|
+
payload: string;
|
|
96159
|
+
event_id: string;
|
|
96160
|
+
provider: string;
|
|
96161
|
+
verified: boolean;
|
|
96162
|
+
product_id: string;
|
|
96163
|
+
occurred_at: string;
|
|
96164
|
+
connector_id: string;
|
|
96165
|
+
clickup_event: (string | null);
|
|
96166
|
+
receipt_count: number;
|
|
96167
|
+
} | {
|
|
96168
|
+
found: false;
|
|
96169
|
+
});
|
|
96170
|
+
export interface PlaygroundClickupGetOverviewInput {
|
|
96171
|
+
}
|
|
96172
|
+
export interface PlaygroundClickupGetOverviewOutput {
|
|
96173
|
+
team: ({
|
|
96174
|
+
teamId: string;
|
|
96175
|
+
teamName: string;
|
|
96176
|
+
} | null);
|
|
96177
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
96178
|
+
tasks: {
|
|
96179
|
+
id: string;
|
|
96180
|
+
name: string;
|
|
96181
|
+
status: (string | null);
|
|
96182
|
+
}[];
|
|
96183
|
+
minted: boolean;
|
|
96184
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
96185
|
+
list_status: number;
|
|
96186
|
+
vend_status: number;
|
|
96187
|
+
lists_status: number;
|
|
96188
|
+
tasks_status: number;
|
|
96189
|
+
spaces_status: number;
|
|
96190
|
+
folders_status: number;
|
|
96191
|
+
installation_count: number;
|
|
96192
|
+
}
|
|
96193
|
+
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
96194
|
+
id: string;
|
|
96195
|
+
name: string;
|
|
96196
|
+
}
|
|
96197
|
+
export interface PlaygroundEchoPingInput {
|
|
96198
|
+
/**
|
|
96199
|
+
* The text to echo back, 1–1024 characters
|
|
96200
|
+
*/
|
|
96201
|
+
message: string;
|
|
96202
|
+
}
|
|
96203
|
+
export interface PlaygroundEchoPingOutput {
|
|
96204
|
+
/**
|
|
96205
|
+
* The message exactly as it was received
|
|
96206
|
+
*/
|
|
96207
|
+
message: string;
|
|
96208
|
+
/**
|
|
96209
|
+
* The product the call was resolved to
|
|
96210
|
+
*/
|
|
96211
|
+
productId: string;
|
|
96212
|
+
/**
|
|
96213
|
+
* ISO-8601 instant (UTC) at which the call reached the service
|
|
96214
|
+
*/
|
|
96215
|
+
receivedAt: string;
|
|
96216
|
+
}
|
|
96217
|
+
export interface PlaygroundGdriveGetLastChangeInput {
|
|
96218
|
+
}
|
|
96219
|
+
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
96220
|
+
file_id: string;
|
|
96221
|
+
removed: boolean;
|
|
96222
|
+
file_name: (string | null);
|
|
96223
|
+
mime_type: (string | null);
|
|
96224
|
+
product_id: string;
|
|
96225
|
+
occurred_at: string;
|
|
96226
|
+
connector_id: string;
|
|
96227
|
+
resource_state: string;
|
|
96228
|
+
} | {
|
|
96229
|
+
found: false;
|
|
96230
|
+
});
|
|
96231
|
+
export interface PlaygroundGdriveReadFileInput {
|
|
96232
|
+
/**
|
|
96233
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
96234
|
+
*/
|
|
96235
|
+
fileId?: string;
|
|
96236
|
+
}
|
|
96237
|
+
export interface PlaygroundGdriveReadFileOutput {
|
|
96238
|
+
minted: boolean;
|
|
96239
|
+
file_id: (string | null);
|
|
96240
|
+
file_name: (string | null);
|
|
96241
|
+
mime_type: (string | null);
|
|
96242
|
+
file_count: number;
|
|
96243
|
+
get_status: number;
|
|
96244
|
+
list_status: number;
|
|
96245
|
+
vend_status: number;
|
|
96246
|
+
content_bytes: (number | null);
|
|
96247
|
+
}
|
|
96248
|
+
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
96249
|
+
}
|
|
96250
|
+
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
96251
|
+
minted: boolean;
|
|
96252
|
+
vended: boolean;
|
|
96253
|
+
customer_id: (string | null);
|
|
96254
|
+
vend_status: number;
|
|
96255
|
+
result_count: number;
|
|
96256
|
+
search_status: number;
|
|
96257
|
+
login_customer_id: (string | null);
|
|
96258
|
+
}
|
|
96259
|
+
export interface PlaygroundLifecycleGetStateInput {
|
|
96260
|
+
}
|
|
96261
|
+
export interface PlaygroundLifecycleGetStateOutput {
|
|
96262
|
+
blocked: boolean;
|
|
96263
|
+
archived: boolean;
|
|
96264
|
+
productId: string;
|
|
96265
|
+
lastBlockTransition: ({
|
|
96266
|
+
eventId: string;
|
|
96267
|
+
eventName: string;
|
|
96268
|
+
productId: string;
|
|
96269
|
+
occurredAt: string;
|
|
96270
|
+
recordedAt: string;
|
|
96271
|
+
receiptCount: number;
|
|
96272
|
+
organizationId: string;
|
|
96273
|
+
cascadedFromOrg: boolean;
|
|
96274
|
+
} | null);
|
|
96275
|
+
lastArchiveTransition: ({
|
|
96276
|
+
eventId: string;
|
|
96277
|
+
eventName: string;
|
|
96278
|
+
productId: string;
|
|
96279
|
+
occurredAt: string;
|
|
96280
|
+
recordedAt: string;
|
|
96281
|
+
receiptCount: number;
|
|
96282
|
+
organizationId: string;
|
|
96283
|
+
cascadedFromOrg: boolean;
|
|
96284
|
+
} | null);
|
|
96285
|
+
}
|
|
96286
|
+
export interface PlaygroundLifecycleListEventsInput {
|
|
96287
|
+
}
|
|
96288
|
+
export type PlaygroundLifecycleListEventsOutput = {
|
|
96289
|
+
eventId: string;
|
|
96290
|
+
eventName: string;
|
|
96291
|
+
productId: string;
|
|
96292
|
+
occurredAt: string;
|
|
96293
|
+
recordedAt: string;
|
|
96294
|
+
receiptCount: number;
|
|
96295
|
+
organizationId: string;
|
|
96296
|
+
cascadedFromOrg: boolean;
|
|
96297
|
+
}[];
|
|
96298
|
+
export interface PlaygroundWebhookGetLastInput {
|
|
96299
|
+
}
|
|
96300
|
+
export type PlaygroundWebhookGetLastOutput = ({
|
|
96301
|
+
payload?: unknown;
|
|
96302
|
+
event_id: string;
|
|
96303
|
+
provider: string;
|
|
96304
|
+
verified: boolean;
|
|
96305
|
+
product_id: string;
|
|
96306
|
+
occurred_at: string;
|
|
96307
|
+
connector_id: string;
|
|
96308
|
+
delivery_count: number;
|
|
96309
|
+
} | {
|
|
96310
|
+
found: false;
|
|
96311
|
+
});
|
|
96312
|
+
export interface PlaygroundWorkflowEchoInput {
|
|
96313
|
+
/**
|
|
96314
|
+
* The text to store, 1–1024 characters
|
|
96315
|
+
*/
|
|
96316
|
+
note: string;
|
|
96317
|
+
/**
|
|
96318
|
+
* Optional labels stored alongside the note, at most 20
|
|
96319
|
+
*
|
|
96320
|
+
* @maxItems 20
|
|
96321
|
+
*/
|
|
96322
|
+
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];
|
|
96323
|
+
}
|
|
96324
|
+
export interface PlaygroundWorkflowEchoOutput {
|
|
96325
|
+
/**
|
|
96326
|
+
* Identifier of the stored echo
|
|
96327
|
+
*/
|
|
96328
|
+
id: string;
|
|
96329
|
+
/**
|
|
96330
|
+
* The note exactly as it was received
|
|
96331
|
+
*/
|
|
96332
|
+
note: string;
|
|
96333
|
+
/**
|
|
96334
|
+
* The tags exactly as they were received
|
|
96335
|
+
*/
|
|
96336
|
+
tags: string[];
|
|
96337
|
+
/**
|
|
96338
|
+
* 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.
|
|
96339
|
+
*/
|
|
96340
|
+
echo_id: string;
|
|
96341
|
+
/**
|
|
96342
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96343
|
+
*/
|
|
96344
|
+
received_at: string;
|
|
96345
|
+
}
|
|
96346
|
+
export interface PlaygroundWorkflowEchoListInput {
|
|
96347
|
+
}
|
|
96348
|
+
export type PlaygroundWorkflowEchoListOutput = {
|
|
96349
|
+
/**
|
|
96350
|
+
* Identifier of the stored echo
|
|
96351
|
+
*/
|
|
96352
|
+
id: string;
|
|
96353
|
+
/**
|
|
96354
|
+
* The note exactly as it was received
|
|
96355
|
+
*/
|
|
96356
|
+
note: string;
|
|
96357
|
+
/**
|
|
96358
|
+
* The tags exactly as they were received
|
|
96359
|
+
*/
|
|
96360
|
+
tags: string[];
|
|
96361
|
+
/**
|
|
96362
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
96363
|
+
*/
|
|
96364
|
+
received_at: string;
|
|
96365
|
+
}[];
|
|
96366
|
+
export interface PlaygroundWorkflowPingInput {
|
|
96367
|
+
/**
|
|
96368
|
+
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
96369
|
+
*/
|
|
96370
|
+
kind?: string;
|
|
96371
|
+
}
|
|
96372
|
+
export interface PlaygroundWorkflowPingOutput {
|
|
96373
|
+
/**
|
|
96374
|
+
* 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.
|
|
96375
|
+
*/
|
|
96376
|
+
id: string;
|
|
96377
|
+
/**
|
|
96378
|
+
* The name of the event that was published
|
|
96379
|
+
*/
|
|
96380
|
+
event: string;
|
|
96381
|
+
}
|
|
96382
|
+
export interface PlaygroundWorkflowSubjectsListInput {
|
|
96383
|
+
/**
|
|
96384
|
+
* How many subjects to return, 1–100. Defaults to 25.
|
|
96385
|
+
*/
|
|
96386
|
+
limit?: number;
|
|
96387
|
+
/**
|
|
96388
|
+
* The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
|
|
96389
|
+
*/
|
|
96390
|
+
cursor?: string;
|
|
96391
|
+
/**
|
|
96392
|
+
* 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.
|
|
96393
|
+
*/
|
|
96394
|
+
last_activity_after?: string;
|
|
96395
|
+
/**
|
|
96396
|
+
* 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.
|
|
96397
|
+
*/
|
|
96398
|
+
last_activity_before?: string;
|
|
96399
|
+
}
|
|
96400
|
+
export interface PlaygroundWorkflowSubjectsListOutput {
|
|
96401
|
+
/**
|
|
96402
|
+
* This page of subjects, most recently active first
|
|
96403
|
+
*/
|
|
96404
|
+
items: {
|
|
96405
|
+
/**
|
|
96406
|
+
* 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.
|
|
96407
|
+
*/
|
|
96408
|
+
subject_key: string;
|
|
96409
|
+
/**
|
|
96410
|
+
* Human-readable name of the subject
|
|
96411
|
+
*/
|
|
96412
|
+
display_name: string;
|
|
96413
|
+
/**
|
|
96414
|
+
* ISO-8601 instant (UTC) of the subject last activity
|
|
96415
|
+
*/
|
|
96416
|
+
last_activity_at: string;
|
|
96417
|
+
}[];
|
|
96418
|
+
/**
|
|
96419
|
+
* Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
|
|
96420
|
+
*/
|
|
96421
|
+
has_more: boolean;
|
|
96422
|
+
/**
|
|
96423
|
+
* Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
|
|
96424
|
+
*/
|
|
96425
|
+
next_cursor: (string | null);
|
|
96426
|
+
}
|
|
96427
|
+
export interface PlaygroundWsEchoInput {
|
|
96428
|
+
}
|
|
96429
|
+
export type PlaygroundWsEchoOutput = unknown;
|
|
96075
96430
|
export interface RealtimeArchiveExportInput {
|
|
96076
96431
|
/**
|
|
96077
96432
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -96947,7 +97302,7 @@ export interface SupportAgentCreateInput {
|
|
|
96947
97302
|
*/
|
|
96948
97303
|
displayName: string;
|
|
96949
97304
|
/**
|
|
96950
|
-
*
|
|
97305
|
+
* 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
|
|
96951
97306
|
*/
|
|
96952
97307
|
lesslyUserId?: string;
|
|
96953
97308
|
}
|
|
@@ -96981,7 +97336,7 @@ export interface SupportAgentCreateOutput {
|
|
|
96981
97336
|
*/
|
|
96982
97337
|
displayName: string;
|
|
96983
97338
|
/**
|
|
96984
|
-
* Bound
|
|
97339
|
+
* 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
|
|
96985
97340
|
*/
|
|
96986
97341
|
lesslyUserId: (string | null);
|
|
96987
97342
|
}
|
|
@@ -97021,7 +97376,7 @@ export interface SupportAgentGetOutput {
|
|
|
97021
97376
|
*/
|
|
97022
97377
|
displayName: string;
|
|
97023
97378
|
/**
|
|
97024
|
-
* Bound
|
|
97379
|
+
* 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
|
|
97025
97380
|
*/
|
|
97026
97381
|
lesslyUserId: (string | null);
|
|
97027
97382
|
}
|
|
@@ -97065,7 +97420,7 @@ export interface SupportAgentListOutput {
|
|
|
97065
97420
|
*/
|
|
97066
97421
|
displayName: string;
|
|
97067
97422
|
/**
|
|
97068
|
-
* Bound
|
|
97423
|
+
* 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
|
|
97069
97424
|
*/
|
|
97070
97425
|
lesslyUserId: (string | null);
|
|
97071
97426
|
}[];
|
|
@@ -97092,7 +97447,7 @@ export interface SupportAgentUpdateInput {
|
|
|
97092
97447
|
*/
|
|
97093
97448
|
displayName?: string;
|
|
97094
97449
|
/**
|
|
97095
|
-
*
|
|
97450
|
+
* Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
|
|
97096
97451
|
*/
|
|
97097
97452
|
lesslyUserId?: (string | null);
|
|
97098
97453
|
}
|
|
@@ -97126,7 +97481,7 @@ export interface SupportAgentUpdateOutput {
|
|
|
97126
97481
|
*/
|
|
97127
97482
|
displayName: string;
|
|
97128
97483
|
/**
|
|
97129
|
-
* Bound
|
|
97484
|
+
* 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
|
|
97130
97485
|
*/
|
|
97131
97486
|
lesslyUserId: (string | null);
|
|
97132
97487
|
}
|
|
@@ -97438,7 +97793,7 @@ export interface SupportMessageCreateOutput {
|
|
|
97438
97793
|
*/
|
|
97439
97794
|
authorExternalId: (string | null);
|
|
97440
97795
|
/**
|
|
97441
|
-
* The
|
|
97796
|
+
* 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
|
|
97442
97797
|
*/
|
|
97443
97798
|
createdByIdentityId: (string | null);
|
|
97444
97799
|
}
|
|
@@ -97527,7 +97882,7 @@ export interface SupportMessageDeleteOutput {
|
|
|
97527
97882
|
*/
|
|
97528
97883
|
authorExternalId: (string | null);
|
|
97529
97884
|
/**
|
|
97530
|
-
* The
|
|
97885
|
+
* 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
|
|
97531
97886
|
*/
|
|
97532
97887
|
createdByIdentityId: (string | null);
|
|
97533
97888
|
}
|
|
@@ -97616,7 +97971,7 @@ export interface SupportMessageDeleteAnyOutput {
|
|
|
97616
97971
|
*/
|
|
97617
97972
|
authorExternalId: (string | null);
|
|
97618
97973
|
/**
|
|
97619
|
-
* The
|
|
97974
|
+
* 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
|
|
97620
97975
|
*/
|
|
97621
97976
|
createdByIdentityId: (string | null);
|
|
97622
97977
|
}
|
|
@@ -97705,7 +98060,7 @@ export interface SupportMessageGetOutput {
|
|
|
97705
98060
|
*/
|
|
97706
98061
|
authorExternalId: (string | null);
|
|
97707
98062
|
/**
|
|
97708
|
-
* The
|
|
98063
|
+
* 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
|
|
97709
98064
|
*/
|
|
97710
98065
|
createdByIdentityId: (string | null);
|
|
97711
98066
|
}
|
|
@@ -97830,7 +98185,7 @@ export interface SupportMessageListOutput {
|
|
|
97830
98185
|
*/
|
|
97831
98186
|
authorExternalId: (string | null);
|
|
97832
98187
|
/**
|
|
97833
|
-
* The
|
|
98188
|
+
* 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
|
|
97834
98189
|
*/
|
|
97835
98190
|
createdByIdentityId: (string | null);
|
|
97836
98191
|
}[];
|
|
@@ -97867,7 +98222,7 @@ export interface SupportMessageRevisionsListOutput {
|
|
|
97867
98222
|
*/
|
|
97868
98223
|
messageId: string;
|
|
97869
98224
|
/**
|
|
97870
|
-
* The
|
|
98225
|
+
* The Lepsto identity that made the edit
|
|
97871
98226
|
*/
|
|
97872
98227
|
editedByIdentityId: (string | null);
|
|
97873
98228
|
}[];
|
|
@@ -97961,7 +98316,7 @@ export interface SupportMessageUpdateOutput {
|
|
|
97961
98316
|
*/
|
|
97962
98317
|
authorExternalId: (string | null);
|
|
97963
98318
|
/**
|
|
97964
|
-
* The
|
|
98319
|
+
* 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
|
|
97965
98320
|
*/
|
|
97966
98321
|
createdByIdentityId: (string | null);
|
|
97967
98322
|
}
|
|
@@ -117929,7 +118284,7 @@ export interface SupportThreadCreateInput {
|
|
|
117929
118284
|
*/
|
|
117930
118285
|
authorDisplay?: string;
|
|
117931
118286
|
/**
|
|
117932
|
-
* 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
|
|
118287
|
+
* 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
|
|
117933
118288
|
*/
|
|
117934
118289
|
authorExternalId: string;
|
|
117935
118290
|
}
|