@lepsto/sdk-app 87.3.1 → 89.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/CHANGELOG.md +128 -0
  2. package/README.md +8 -0
  3. package/dist/_types/gen/client.gen.d.ts +4 -38
  4. package/dist/_types/gen/deployment/index.d.ts +1 -1
  5. package/dist/_types/gen/deployment/queryOptions.gen.d.ts +5 -1
  6. package/dist/_types/gen/manifest.gen.d.ts +1 -1
  7. package/dist/_types/gen/types.gen.d.ts +43 -340
  8. package/dist/deployment/index.cjs +5 -0
  9. package/dist/deployment/index.cjs.map +1 -1
  10. package/dist/deployment/index.js +5 -1
  11. package/dist/deployment/index.js.map +1 -1
  12. package/dist/index.cjs +14 -231
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.js +11190 -24
  15. package/dist/index.js.map +1 -1
  16. package/package.json +3 -12
  17. package/src/gen/bindings.gen.ts +12 -218
  18. package/src/gen/client.gen.ts +5 -71
  19. package/src/gen/deployment/index.ts +1 -1
  20. package/src/gen/deployment/queryOptions.gen.ts +7 -0
  21. package/src/gen/manifest.gen.ts +4 -23
  22. package/src/gen/types.gen.ts +46 -386
  23. package/dist/_types/gen/playground/connect.gen.d.ts +0 -3
  24. package/dist/_types/gen/playground/index.d.ts +0 -3
  25. package/dist/_types/gen/playground/queryOptions.gen.d.ts +0 -70
  26. package/dist/chunk-EMK3O6JA.js +0 -11397
  27. package/dist/chunk-EMK3O6JA.js.map +0 -1
  28. package/dist/playground/index.cjs +0 -106
  29. package/dist/playground/index.cjs.map +0 -1
  30. package/dist/playground/index.d.cts +0 -1
  31. package/dist/playground/index.d.ts +0 -1
  32. package/dist/playground/index.js +0 -78
  33. package/dist/playground/index.js.map +0 -1
  34. package/src/gen/playground/connect.gen.ts +0 -9
  35. package/src/gen/playground/index.ts +0 -4
  36. package/src/gen/playground/queryOptions.gen.ts +0 -119
@@ -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,332 +96101,6 @@ export interface OrganizationYoutubeInstallInput {
96072
96101
  export interface OrganizationYoutubeInstallOutput {
96073
96102
  url: string;
96074
96103
  }
96075
- export interface PlaygroundAnalyticsOverviewInput {
96076
- /**
96077
- * Max records per entity in recent[]; omit for the endpoint default
96078
- */
96079
- limit?: number;
96080
- }
96081
- export interface PlaygroundAnalyticsOverviewOutput {
96082
- ok: boolean;
96083
- minted: boolean;
96084
- overview?: unknown;
96085
- http_status: number;
96086
- }
96087
- export interface PlaygroundBillingEntitlementsInput {
96088
- }
96089
- export interface PlaygroundBillingEntitlementsOutput {
96090
- ok: boolean;
96091
- minted: boolean;
96092
- http_status: number;
96093
- entitlements?: unknown;
96094
- }
96095
- export interface PlaygroundBillingRecordUsageInput {
96096
- /**
96097
- * Quantity of events to record against playground-events (SUM); defaults to 1
96098
- */
96099
- value?: number;
96100
- }
96101
- export interface PlaygroundBillingRecordUsageOutput {
96102
- minted: boolean;
96103
- accepted: (number | null);
96104
- recorded: boolean;
96105
- duplicates: (number | null);
96106
- http_status: number;
96107
- }
96108
- export interface PlaygroundClickupCreateTaskInput {
96109
- /**
96110
- * Task title; defaults to a fixture label
96111
- */
96112
- name?: string;
96113
- /**
96114
- * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
96115
- */
96116
- listId?: string;
96117
- }
96118
- export interface PlaygroundClickupCreateTaskOutput {
96119
- minted: boolean;
96120
- task_id: (string | null);
96121
- list_status: number;
96122
- vend_status: number;
96123
- clickup_status: number;
96124
- installation_count: number;
96125
- }
96126
- export interface PlaygroundClickupGetLastWebhookInput {
96127
- }
96128
- export type PlaygroundClickupGetLastWebhookOutput = ({
96129
- payload: string;
96130
- event_id: string;
96131
- provider: string;
96132
- verified: boolean;
96133
- product_id: string;
96134
- occurred_at: string;
96135
- connector_id: string;
96136
- clickup_event: (string | null);
96137
- receipt_count: number;
96138
- } | {
96139
- found: false;
96140
- });
96141
- export interface PlaygroundClickupGetOverviewInput {
96142
- }
96143
- export interface PlaygroundClickupGetOverviewOutput {
96144
- team: ({
96145
- teamId: string;
96146
- teamName: string;
96147
- } | null);
96148
- lists: PlaygroundClickupGetOverviewOutputItems[];
96149
- tasks: {
96150
- id: string;
96151
- name: string;
96152
- status: (string | null);
96153
- }[];
96154
- minted: boolean;
96155
- spaces: PlaygroundClickupGetOverviewOutputItems[];
96156
- list_status: number;
96157
- vend_status: number;
96158
- lists_status: number;
96159
- tasks_status: number;
96160
- spaces_status: number;
96161
- folders_status: number;
96162
- installation_count: number;
96163
- }
96164
- export interface PlaygroundClickupGetOverviewOutputItems {
96165
- id: string;
96166
- name: string;
96167
- }
96168
- export interface PlaygroundEchoPingInput {
96169
- /**
96170
- * The text to echo back, 1–1024 characters
96171
- */
96172
- message: string;
96173
- }
96174
- export interface PlaygroundEchoPingOutput {
96175
- /**
96176
- * The message exactly as it was received
96177
- */
96178
- message: string;
96179
- /**
96180
- * The product the call was resolved to
96181
- */
96182
- productId: string;
96183
- /**
96184
- * ISO-8601 instant (UTC) at which the call reached the service
96185
- */
96186
- receivedAt: string;
96187
- }
96188
- export interface PlaygroundGdriveGetLastChangeInput {
96189
- }
96190
- export type PlaygroundGdriveGetLastChangeOutput = ({
96191
- file_id: string;
96192
- removed: boolean;
96193
- file_name: (string | null);
96194
- mime_type: (string | null);
96195
- product_id: string;
96196
- occurred_at: string;
96197
- connector_id: string;
96198
- resource_state: string;
96199
- } | {
96200
- found: false;
96201
- });
96202
- export interface PlaygroundGdriveReadFileInput {
96203
- /**
96204
- * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
96205
- */
96206
- fileId?: string;
96207
- }
96208
- export interface PlaygroundGdriveReadFileOutput {
96209
- minted: boolean;
96210
- file_id: (string | null);
96211
- file_name: (string | null);
96212
- mime_type: (string | null);
96213
- file_count: number;
96214
- get_status: number;
96215
- list_status: number;
96216
- vend_status: number;
96217
- content_bytes: (number | null);
96218
- }
96219
- export interface PlaygroundGoogleadsReadCustomerInput {
96220
- }
96221
- export interface PlaygroundGoogleadsReadCustomerOutput {
96222
- minted: boolean;
96223
- vended: boolean;
96224
- customer_id: (string | null);
96225
- vend_status: number;
96226
- result_count: number;
96227
- search_status: number;
96228
- login_customer_id: (string | null);
96229
- }
96230
- export interface PlaygroundLifecycleGetStateInput {
96231
- }
96232
- export interface PlaygroundLifecycleGetStateOutput {
96233
- blocked: boolean;
96234
- archived: boolean;
96235
- productId: string;
96236
- lastBlockTransition: ({
96237
- eventId: string;
96238
- eventName: string;
96239
- productId: string;
96240
- occurredAt: string;
96241
- recordedAt: string;
96242
- receiptCount: number;
96243
- organizationId: string;
96244
- cascadedFromOrg: boolean;
96245
- } | null);
96246
- lastArchiveTransition: ({
96247
- eventId: string;
96248
- eventName: string;
96249
- productId: string;
96250
- occurredAt: string;
96251
- recordedAt: string;
96252
- receiptCount: number;
96253
- organizationId: string;
96254
- cascadedFromOrg: boolean;
96255
- } | null);
96256
- }
96257
- export interface PlaygroundLifecycleListEventsInput {
96258
- }
96259
- export type PlaygroundLifecycleListEventsOutput = {
96260
- eventId: string;
96261
- eventName: string;
96262
- productId: string;
96263
- occurredAt: string;
96264
- recordedAt: string;
96265
- receiptCount: number;
96266
- organizationId: string;
96267
- cascadedFromOrg: boolean;
96268
- }[];
96269
- export interface PlaygroundWebhookGetLastInput {
96270
- }
96271
- export type PlaygroundWebhookGetLastOutput = ({
96272
- payload?: unknown;
96273
- event_id: string;
96274
- provider: string;
96275
- verified: boolean;
96276
- product_id: string;
96277
- occurred_at: string;
96278
- connector_id: string;
96279
- delivery_count: number;
96280
- } | {
96281
- found: false;
96282
- });
96283
- export interface PlaygroundWorkflowEchoInput {
96284
- /**
96285
- * The text to store, 1–1024 characters
96286
- */
96287
- note: string;
96288
- /**
96289
- * Optional labels stored alongside the note, at most 20
96290
- *
96291
- * @maxItems 20
96292
- */
96293
- 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];
96294
- }
96295
- export interface PlaygroundWorkflowEchoOutput {
96296
- /**
96297
- * Identifier of the stored echo
96298
- */
96299
- id: string;
96300
- /**
96301
- * The note exactly as it was received
96302
- */
96303
- note: string;
96304
- /**
96305
- * The tags exactly as they were received
96306
- */
96307
- tags: string[];
96308
- /**
96309
- * 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.
96310
- */
96311
- echo_id: string;
96312
- /**
96313
- * ISO-8601 instant (UTC) at which the echo was stored
96314
- */
96315
- received_at: string;
96316
- }
96317
- export interface PlaygroundWorkflowEchoListInput {
96318
- }
96319
- export type PlaygroundWorkflowEchoListOutput = {
96320
- /**
96321
- * Identifier of the stored echo
96322
- */
96323
- id: string;
96324
- /**
96325
- * The note exactly as it was received
96326
- */
96327
- note: string;
96328
- /**
96329
- * The tags exactly as they were received
96330
- */
96331
- tags: string[];
96332
- /**
96333
- * ISO-8601 instant (UTC) at which the echo was stored
96334
- */
96335
- received_at: string;
96336
- }[];
96337
- export interface PlaygroundWorkflowPingInput {
96338
- /**
96339
- * Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
96340
- */
96341
- kind?: string;
96342
- }
96343
- export interface PlaygroundWorkflowPingOutput {
96344
- /**
96345
- * 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.
96346
- */
96347
- id: string;
96348
- /**
96349
- * The name of the event that was published
96350
- */
96351
- event: string;
96352
- }
96353
- export interface PlaygroundWorkflowSubjectsListInput {
96354
- /**
96355
- * How many subjects to return, 1–100. Defaults to 25.
96356
- */
96357
- limit?: number;
96358
- /**
96359
- * The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
96360
- */
96361
- cursor?: string;
96362
- /**
96363
- * 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.
96364
- */
96365
- last_activity_after?: string;
96366
- /**
96367
- * 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.
96368
- */
96369
- last_activity_before?: string;
96370
- }
96371
- export interface PlaygroundWorkflowSubjectsListOutput {
96372
- /**
96373
- * This page of subjects, most recently active first
96374
- */
96375
- items: {
96376
- /**
96377
- * 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.
96378
- */
96379
- subject_key: string;
96380
- /**
96381
- * Human-readable name of the subject
96382
- */
96383
- display_name: string;
96384
- /**
96385
- * ISO-8601 instant (UTC) of the subject last activity
96386
- */
96387
- last_activity_at: string;
96388
- }[];
96389
- /**
96390
- * Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
96391
- */
96392
- has_more: boolean;
96393
- /**
96394
- * Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
96395
- */
96396
- next_cursor: (string | null);
96397
- }
96398
- export interface PlaygroundWsEchoInput {
96399
- }
96400
- export type PlaygroundWsEchoOutput = unknown;
96401
96104
  export interface RealtimeArchiveExportInput {
96402
96105
  /**
96403
96106
  * Only entries with ts <= to_ts (epoch ms)
@@ -97273,7 +96976,7 @@ export interface SupportAgentCreateInput {
97273
96976
  */
97274
96977
  displayName: string;
97275
96978
  /**
97276
- * 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
96979
+ * 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
97277
96980
  */
97278
96981
  lesslyUserId?: string;
97279
96982
  }
@@ -97307,7 +97010,7 @@ export interface SupportAgentCreateOutput {
97307
97010
  */
97308
97011
  displayName: string;
97309
97012
  /**
97310
- * 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
97013
+ * 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
97311
97014
  */
97312
97015
  lesslyUserId: (string | null);
97313
97016
  }
@@ -97347,7 +97050,7 @@ export interface SupportAgentGetOutput {
97347
97050
  */
97348
97051
  displayName: string;
97349
97052
  /**
97350
- * 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
97053
+ * 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
97351
97054
  */
97352
97055
  lesslyUserId: (string | null);
97353
97056
  }
@@ -97391,7 +97094,7 @@ export interface SupportAgentListOutput {
97391
97094
  */
97392
97095
  displayName: string;
97393
97096
  /**
97394
- * 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
97097
+ * 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
97395
97098
  */
97396
97099
  lesslyUserId: (string | null);
97397
97100
  }[];
@@ -97418,7 +97121,7 @@ export interface SupportAgentUpdateInput {
97418
97121
  */
97419
97122
  displayName?: string;
97420
97123
  /**
97421
- * Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
97124
+ * Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
97422
97125
  */
97423
97126
  lesslyUserId?: (string | null);
97424
97127
  }
@@ -97452,7 +97155,7 @@ export interface SupportAgentUpdateOutput {
97452
97155
  */
97453
97156
  displayName: string;
97454
97157
  /**
97455
- * 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
97158
+ * 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
97456
97159
  */
97457
97160
  lesslyUserId: (string | null);
97458
97161
  }
@@ -97764,7 +97467,7 @@ export interface SupportMessageCreateOutput {
97764
97467
  */
97765
97468
  authorExternalId: (string | null);
97766
97469
  /**
97767
- * 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
97470
+ * 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
97768
97471
  */
97769
97472
  createdByIdentityId: (string | null);
97770
97473
  }
@@ -97853,7 +97556,7 @@ export interface SupportMessageDeleteOutput {
97853
97556
  */
97854
97557
  authorExternalId: (string | null);
97855
97558
  /**
97856
- * 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
97559
+ * 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
97857
97560
  */
97858
97561
  createdByIdentityId: (string | null);
97859
97562
  }
@@ -97942,7 +97645,7 @@ export interface SupportMessageDeleteAnyOutput {
97942
97645
  */
97943
97646
  authorExternalId: (string | null);
97944
97647
  /**
97945
- * 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
97648
+ * 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
97946
97649
  */
97947
97650
  createdByIdentityId: (string | null);
97948
97651
  }
@@ -98031,7 +97734,7 @@ export interface SupportMessageGetOutput {
98031
97734
  */
98032
97735
  authorExternalId: (string | null);
98033
97736
  /**
98034
- * 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
97737
+ * 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
98035
97738
  */
98036
97739
  createdByIdentityId: (string | null);
98037
97740
  }
@@ -98156,7 +97859,7 @@ export interface SupportMessageListOutput {
98156
97859
  */
98157
97860
  authorExternalId: (string | null);
98158
97861
  /**
98159
- * 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
97862
+ * 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
98160
97863
  */
98161
97864
  createdByIdentityId: (string | null);
98162
97865
  }[];
@@ -98193,7 +97896,7 @@ export interface SupportMessageRevisionsListOutput {
98193
97896
  */
98194
97897
  messageId: string;
98195
97898
  /**
98196
- * The Lepsto identity that made the edit
97899
+ * The Lessly identity that made the edit
98197
97900
  */
98198
97901
  editedByIdentityId: (string | null);
98199
97902
  }[];
@@ -98287,7 +97990,7 @@ export interface SupportMessageUpdateOutput {
98287
97990
  */
98288
97991
  authorExternalId: (string | null);
98289
97992
  /**
98290
- * 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
97993
+ * 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
98291
97994
  */
98292
97995
  createdByIdentityId: (string | null);
98293
97996
  }
@@ -118255,7 +117958,7 @@ export interface SupportThreadCreateInput {
118255
117958
  */
118256
117959
  authorDisplay?: string;
118257
117960
  /**
118258
- * 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
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 Lessly identity
118259
117962
  */
118260
117963
  authorExternalId: string;
118261
117964
  }
@@ -345,6 +345,10 @@ var deploymentServiceWakeMutationOptions = (sdk) => ({
345
345
  mutationKey: ["deployment", "service", "wake"],
346
346
  mutationFn: (input) => sdk["deployment"]["service"]["wake"](input)
347
347
  });
348
+ var deploymentSshBastionGetQueryOptions = (sdk, input) => ({
349
+ queryKey: ["deployment", "ssh-bastion", "get", input],
350
+ queryFn: () => sdk["deployment"]["ssh-bastion"]["get"](input)
351
+ });
348
352
  var deploymentSshCommandQueryOptions = (sdk, input) => ({
349
353
  queryKey: ["deployment", "ssh", "command", input],
350
354
  queryFn: () => sdk["deployment"]["ssh"]["command"](input)
@@ -524,6 +528,7 @@ exports.deploymentServiceRollbackMutationOptions = deploymentServiceRollbackMuta
524
528
  exports.deploymentServiceScaleMutationOptions = deploymentServiceScaleMutationOptions;
525
529
  exports.deploymentServiceUpdateMutationOptions = deploymentServiceUpdateMutationOptions;
526
530
  exports.deploymentServiceWakeMutationOptions = deploymentServiceWakeMutationOptions;
531
+ exports.deploymentSshBastionGetQueryOptions = deploymentSshBastionGetQueryOptions;
527
532
  exports.deploymentSshCommandQueryOptions = deploymentSshCommandQueryOptions;
528
533
  exports.deploymentSshKeyDeleteMutationOptions = deploymentSshKeyDeleteMutationOptions;
529
534
  exports.deploymentSshKeyListQueryOptions = deploymentSshKeyListQueryOptions;