@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.
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 +41 -1
  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/playground/connect.gen.d.ts +3 -0
  8. package/dist/_types/gen/playground/index.d.ts +3 -0
  9. package/dist/_types/gen/playground/queryOptions.gen.d.ts +70 -0
  10. package/dist/_types/gen/types.gen.d.ts +369 -14
  11. package/dist/chunk-IWBH5QNX.js +11406 -0
  12. package/dist/chunk-IWBH5QNX.js.map +1 -0
  13. package/dist/deployment/index.cjs +5 -0
  14. package/dist/deployment/index.cjs.map +1 -1
  15. package/dist/deployment/index.js +5 -1
  16. package/dist/deployment/index.js.map +1 -1
  17. package/dist/index.cjs +241 -4
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.js +25 -11180
  20. package/dist/index.js.map +1 -1
  21. package/dist/playground/index.cjs +106 -0
  22. package/dist/playground/index.cjs.map +1 -0
  23. package/dist/playground/index.d.cts +1 -0
  24. package/dist/playground/index.d.ts +1 -0
  25. package/dist/playground/index.js +78 -0
  26. package/dist/playground/index.js.map +1 -0
  27. package/package.json +13 -2
  28. package/src/gen/bindings.gen.ts +227 -3
  29. package/src/gen/client.gen.ts +76 -0
  30. package/src/gen/deployment/index.ts +1 -1
  31. package/src/gen/deployment/queryOptions.gen.ts +7 -0
  32. package/src/gen/manifest.gen.ts +24 -3
  33. package/src/gen/playground/connect.gen.ts +9 -0
  34. package/src/gen/playground/index.ts +4 -0
  35. package/src/gen/playground/queryOptions.gen.ts +119 -0
  36. package/src/gen/types.gen.ts +418 -14
@@ -72743,6 +72743,10 @@ value: string
72743
72743
  }
72744
72744
  routing: DeploymentDomainAddOutputItems[]
72745
72745
  acmeChallenge?: DeploymentDomainAddOutputItems
72746
+ txtAlternatives?: {
72747
+ name: string
72748
+ value: string
72749
+ }[]
72746
72750
  routingUnavailable?: boolean
72747
72751
  } | null)
72748
72752
  routingRecordType: ("A" | "CNAME")
@@ -72809,6 +72813,10 @@ value: string
72809
72813
  }
72810
72814
  routing: DeploymentDomainGetOutputItems[]
72811
72815
  acmeChallenge?: DeploymentDomainGetOutputItems
72816
+ txtAlternatives?: {
72817
+ name: string
72818
+ value: string
72819
+ }[]
72812
72820
  routingUnavailable?: boolean
72813
72821
  } | null)
72814
72822
  routingRecordType: ("A" | "CNAME")
@@ -72863,6 +72871,10 @@ value: string
72863
72871
  }
72864
72872
  routing: DeploymentDomainListOutputItems[]
72865
72873
  acmeChallenge?: DeploymentDomainListOutputItems
72874
+ txtAlternatives?: {
72875
+ name: string
72876
+ value: string
72877
+ }[]
72866
72878
  routingUnavailable?: boolean
72867
72879
  } | null)
72868
72880
  routingRecordType: ("A" | "CNAME")
@@ -72918,6 +72930,10 @@ value: string
72918
72930
  }
72919
72931
  routing: DeploymentDomainListByServiceOutputItems[]
72920
72932
  acmeChallenge?: DeploymentDomainListByServiceOutputItems
72933
+ txtAlternatives?: {
72934
+ name: string
72935
+ value: string
72936
+ }[]
72921
72937
  routingUnavailable?: boolean
72922
72938
  } | null)
72923
72939
  routingRecordType: ("A" | "CNAME")
@@ -72974,6 +72990,10 @@ value: string
72974
72990
  }
72975
72991
  routing: DeploymentDomainRedirectWwwOutputItems[]
72976
72992
  acmeChallenge?: DeploymentDomainRedirectWwwOutputItems
72993
+ txtAlternatives?: {
72994
+ name: string
72995
+ value: string
72996
+ }[]
72977
72997
  routingUnavailable?: boolean
72978
72998
  } | null)
72979
72999
  routingRecordType: ("A" | "CNAME")
@@ -73098,6 +73118,10 @@ value: string
73098
73118
  }
73099
73119
  routing: DeploymentDomainVerifyOutputItems[]
73100
73120
  acmeChallenge?: DeploymentDomainVerifyOutputItems
73121
+ txtAlternatives?: {
73122
+ name: string
73123
+ value: string
73124
+ }[]
73101
73125
  routingUnavailable?: boolean
73102
73126
  } | null)
73103
73127
  routingRecordType: ("A" | "CNAME")
@@ -74520,6 +74544,14 @@ export interface DeploymentServiceWakeOutput {
74520
74544
  [k: string]: unknown
74521
74545
  }
74522
74546
 
74547
+ export interface DeploymentSshBastionGetInput {
74548
+
74549
+ }
74550
+
74551
+ export interface DeploymentSshBastionGetOutput {
74552
+ host: string
74553
+ }
74554
+
74523
74555
  export interface DeploymentSshCommandInput {
74524
74556
  serviceId: string
74525
74557
  }
@@ -90532,6 +90564,378 @@ export interface OrganizationYoutubeInstallOutput {
90532
90564
  url: string
90533
90565
  }
90534
90566
 
90567
+ export interface PlaygroundAnalyticsOverviewInput {
90568
+ /**
90569
+ * Max records per entity in recent[]; omit for the endpoint default
90570
+ */
90571
+ limit?: number
90572
+ }
90573
+
90574
+ export interface PlaygroundAnalyticsOverviewOutput {
90575
+ ok: boolean
90576
+ minted: boolean
90577
+ overview?: unknown
90578
+ http_status: number
90579
+ }
90580
+
90581
+ export interface PlaygroundBillingEntitlementsInput {
90582
+
90583
+ }
90584
+
90585
+ export interface PlaygroundBillingEntitlementsOutput {
90586
+ ok: boolean
90587
+ minted: boolean
90588
+ http_status: number
90589
+ entitlements?: unknown
90590
+ }
90591
+
90592
+ export interface PlaygroundBillingRecordUsageInput {
90593
+ /**
90594
+ * Quantity of events to record against playground-events (SUM); defaults to 1
90595
+ */
90596
+ value?: number
90597
+ }
90598
+
90599
+ export interface PlaygroundBillingRecordUsageOutput {
90600
+ minted: boolean
90601
+ accepted: (number | null)
90602
+ recorded: boolean
90603
+ duplicates: (number | null)
90604
+ http_status: number
90605
+ }
90606
+
90607
+ export interface PlaygroundClickupCreateTaskInput {
90608
+ /**
90609
+ * Task title; defaults to a fixture label
90610
+ */
90611
+ name?: string
90612
+ /**
90613
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
90614
+ */
90615
+ listId?: string
90616
+ }
90617
+
90618
+ export interface PlaygroundClickupCreateTaskOutput {
90619
+ minted: boolean
90620
+ task_id: (string | null)
90621
+ list_status: number
90622
+ vend_status: number
90623
+ clickup_status: number
90624
+ installation_count: number
90625
+ }
90626
+
90627
+ export interface PlaygroundClickupGetLastWebhookInput {
90628
+
90629
+ }
90630
+
90631
+ export type PlaygroundClickupGetLastWebhookOutput = ({
90632
+ payload: string
90633
+ event_id: string
90634
+ provider: string
90635
+ verified: boolean
90636
+ product_id: string
90637
+ occurred_at: string
90638
+ connector_id: string
90639
+ clickup_event: (string | null)
90640
+ receipt_count: number
90641
+ } | {
90642
+ found: false
90643
+ })
90644
+
90645
+ export interface PlaygroundClickupGetOverviewInput {
90646
+
90647
+ }
90648
+
90649
+ export interface PlaygroundClickupGetOverviewOutput {
90650
+ team: ({
90651
+ teamId: string
90652
+ teamName: string
90653
+ } | null)
90654
+ lists: PlaygroundClickupGetOverviewOutputItems[]
90655
+ tasks: {
90656
+ id: string
90657
+ name: string
90658
+ status: (string | null)
90659
+ }[]
90660
+ minted: boolean
90661
+ spaces: PlaygroundClickupGetOverviewOutputItems[]
90662
+ list_status: number
90663
+ vend_status: number
90664
+ lists_status: number
90665
+ tasks_status: number
90666
+ spaces_status: number
90667
+ folders_status: number
90668
+ installation_count: number
90669
+ }
90670
+ export interface PlaygroundClickupGetOverviewOutputItems {
90671
+ id: string
90672
+ name: string
90673
+ }
90674
+
90675
+ export interface PlaygroundEchoPingInput {
90676
+ /**
90677
+ * The text to echo back, 1–1024 characters
90678
+ */
90679
+ message: string
90680
+ }
90681
+
90682
+ export interface PlaygroundEchoPingOutput {
90683
+ /**
90684
+ * The message exactly as it was received
90685
+ */
90686
+ message: string
90687
+ /**
90688
+ * The product the call was resolved to
90689
+ */
90690
+ productId: string
90691
+ /**
90692
+ * ISO-8601 instant (UTC) at which the call reached the service
90693
+ */
90694
+ receivedAt: string
90695
+ }
90696
+
90697
+ export interface PlaygroundGdriveGetLastChangeInput {
90698
+
90699
+ }
90700
+
90701
+ export type PlaygroundGdriveGetLastChangeOutput = ({
90702
+ file_id: string
90703
+ removed: boolean
90704
+ file_name: (string | null)
90705
+ mime_type: (string | null)
90706
+ product_id: string
90707
+ occurred_at: string
90708
+ connector_id: string
90709
+ resource_state: string
90710
+ } | {
90711
+ found: false
90712
+ })
90713
+
90714
+ export interface PlaygroundGdriveReadFileInput {
90715
+ /**
90716
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
90717
+ */
90718
+ fileId?: string
90719
+ }
90720
+
90721
+ export interface PlaygroundGdriveReadFileOutput {
90722
+ minted: boolean
90723
+ file_id: (string | null)
90724
+ file_name: (string | null)
90725
+ mime_type: (string | null)
90726
+ file_count: number
90727
+ get_status: number
90728
+ list_status: number
90729
+ vend_status: number
90730
+ content_bytes: (number | null)
90731
+ }
90732
+
90733
+ export interface PlaygroundGoogleadsReadCustomerInput {
90734
+
90735
+ }
90736
+
90737
+ export interface PlaygroundGoogleadsReadCustomerOutput {
90738
+ minted: boolean
90739
+ vended: boolean
90740
+ customer_id: (string | null)
90741
+ vend_status: number
90742
+ result_count: number
90743
+ search_status: number
90744
+ login_customer_id: (string | null)
90745
+ }
90746
+
90747
+ export interface PlaygroundLifecycleGetStateInput {
90748
+
90749
+ }
90750
+
90751
+ export interface PlaygroundLifecycleGetStateOutput {
90752
+ blocked: boolean
90753
+ archived: boolean
90754
+ productId: string
90755
+ lastBlockTransition: ({
90756
+ eventId: string
90757
+ eventName: string
90758
+ productId: string
90759
+ occurredAt: string
90760
+ recordedAt: string
90761
+ receiptCount: number
90762
+ organizationId: string
90763
+ cascadedFromOrg: boolean
90764
+ } | null)
90765
+ lastArchiveTransition: ({
90766
+ eventId: string
90767
+ eventName: string
90768
+ productId: string
90769
+ occurredAt: string
90770
+ recordedAt: string
90771
+ receiptCount: number
90772
+ organizationId: string
90773
+ cascadedFromOrg: boolean
90774
+ } | null)
90775
+ }
90776
+
90777
+ export interface PlaygroundLifecycleListEventsInput {
90778
+
90779
+ }
90780
+
90781
+ export type PlaygroundLifecycleListEventsOutput = {
90782
+ eventId: string
90783
+ eventName: string
90784
+ productId: string
90785
+ occurredAt: string
90786
+ recordedAt: string
90787
+ receiptCount: number
90788
+ organizationId: string
90789
+ cascadedFromOrg: boolean
90790
+ }[]
90791
+
90792
+ export interface PlaygroundWebhookGetLastInput {
90793
+
90794
+ }
90795
+
90796
+ export type PlaygroundWebhookGetLastOutput = ({
90797
+ payload?: unknown
90798
+ event_id: string
90799
+ provider: string
90800
+ verified: boolean
90801
+ product_id: string
90802
+ occurred_at: string
90803
+ connector_id: string
90804
+ delivery_count: number
90805
+ } | {
90806
+ found: false
90807
+ })
90808
+
90809
+ export interface PlaygroundWorkflowEchoInput {
90810
+ /**
90811
+ * The text to store, 1–1024 characters
90812
+ */
90813
+ note: string
90814
+ /**
90815
+ * Optional labels stored alongside the note, at most 20
90816
+ *
90817
+ * @maxItems 20
90818
+ */
90819
+ 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]
90820
+ }
90821
+
90822
+ export interface PlaygroundWorkflowEchoOutput {
90823
+ /**
90824
+ * Identifier of the stored echo
90825
+ */
90826
+ id: string
90827
+ /**
90828
+ * The note exactly as it was received
90829
+ */
90830
+ note: string
90831
+ /**
90832
+ * The tags exactly as they were received
90833
+ */
90834
+ tags: string[]
90835
+ /**
90836
+ * 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.
90837
+ */
90838
+ echo_id: string
90839
+ /**
90840
+ * ISO-8601 instant (UTC) at which the echo was stored
90841
+ */
90842
+ received_at: string
90843
+ }
90844
+
90845
+ export interface PlaygroundWorkflowEchoListInput {
90846
+
90847
+ }
90848
+
90849
+ export type PlaygroundWorkflowEchoListOutput = {
90850
+ /**
90851
+ * Identifier of the stored echo
90852
+ */
90853
+ id: string
90854
+ /**
90855
+ * The note exactly as it was received
90856
+ */
90857
+ note: string
90858
+ /**
90859
+ * The tags exactly as they were received
90860
+ */
90861
+ tags: string[]
90862
+ /**
90863
+ * ISO-8601 instant (UTC) at which the echo was stored
90864
+ */
90865
+ received_at: string
90866
+ }[]
90867
+
90868
+ export interface PlaygroundWorkflowPingInput {
90869
+ /**
90870
+ * Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
90871
+ */
90872
+ kind?: string
90873
+ }
90874
+
90875
+ export interface PlaygroundWorkflowPingOutput {
90876
+ /**
90877
+ * 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.
90878
+ */
90879
+ id: string
90880
+ /**
90881
+ * The name of the event that was published
90882
+ */
90883
+ event: string
90884
+ }
90885
+
90886
+ export interface PlaygroundWorkflowSubjectsListInput {
90887
+ /**
90888
+ * How many subjects to return, 1–100. Defaults to 25.
90889
+ */
90890
+ limit?: number
90891
+ /**
90892
+ * The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
90893
+ */
90894
+ cursor?: string
90895
+ /**
90896
+ * 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.
90897
+ */
90898
+ last_activity_after?: string
90899
+ /**
90900
+ * 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.
90901
+ */
90902
+ last_activity_before?: string
90903
+ }
90904
+
90905
+ export interface PlaygroundWorkflowSubjectsListOutput {
90906
+ /**
90907
+ * This page of subjects, most recently active first
90908
+ */
90909
+ items: {
90910
+ /**
90911
+ * 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.
90912
+ */
90913
+ subject_key: string
90914
+ /**
90915
+ * Human-readable name of the subject
90916
+ */
90917
+ display_name: string
90918
+ /**
90919
+ * ISO-8601 instant (UTC) of the subject last activity
90920
+ */
90921
+ last_activity_at: string
90922
+ }[]
90923
+ /**
90924
+ * Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
90925
+ */
90926
+ has_more: boolean
90927
+ /**
90928
+ * Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
90929
+ */
90930
+ next_cursor: (string | null)
90931
+ }
90932
+
90933
+ export interface PlaygroundWsEchoInput {
90934
+
90935
+ }
90936
+
90937
+ export type PlaygroundWsEchoOutput = unknown;
90938
+
90535
90939
  export interface RealtimeArchiveExportInput {
90536
90940
  /**
90537
90941
  * Only entries with ts <= to_ts (epoch ms)
@@ -91467,7 +91871,7 @@ avatarUrl?: string
91467
91871
  */
91468
91872
  displayName: string
91469
91873
  /**
91470
- * 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
91874
+ * 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
91471
91875
  */
91472
91876
  lesslyUserId?: string
91473
91877
  }
@@ -91502,7 +91906,7 @@ updatedAt: string
91502
91906
  */
91503
91907
  displayName: string
91504
91908
  /**
91505
- * 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
91909
+ * 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
91506
91910
  */
91507
91911
  lesslyUserId: (string | null)
91508
91912
  }
@@ -91544,7 +91948,7 @@ updatedAt: string
91544
91948
  */
91545
91949
  displayName: string
91546
91950
  /**
91547
- * 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
91951
+ * 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
91548
91952
  */
91549
91953
  lesslyUserId: (string | null)
91550
91954
  }
@@ -91590,7 +91994,7 @@ updatedAt: string
91590
91994
  */
91591
91995
  displayName: string
91592
91996
  /**
91593
- * 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
91997
+ * 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
91594
91998
  */
91595
91999
  lesslyUserId: (string | null)
91596
92000
  }[]
@@ -91618,7 +92022,7 @@ avatarUrl?: (string | null)
91618
92022
  */
91619
92023
  displayName?: string
91620
92024
  /**
91621
- * Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
92025
+ * Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
91622
92026
  */
91623
92027
  lesslyUserId?: (string | null)
91624
92028
  }
@@ -91653,7 +92057,7 @@ updatedAt: string
91653
92057
  */
91654
92058
  displayName: string
91655
92059
  /**
91656
- * 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
92060
+ * 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
91657
92061
  */
91658
92062
  lesslyUserId: (string | null)
91659
92063
  }
@@ -91978,7 +92382,7 @@ attachmentCount: number
91978
92382
  */
91979
92383
  authorExternalId: (string | null)
91980
92384
  /**
91981
- * 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
92385
+ * 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
91982
92386
  */
91983
92387
  createdByIdentityId: (string | null)
91984
92388
  }
@@ -92069,7 +92473,7 @@ attachmentCount: number
92069
92473
  */
92070
92474
  authorExternalId: (string | null)
92071
92475
  /**
92072
- * 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
92476
+ * 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
92073
92477
  */
92074
92478
  createdByIdentityId: (string | null)
92075
92479
  }
@@ -92160,7 +92564,7 @@ attachmentCount: number
92160
92564
  */
92161
92565
  authorExternalId: (string | null)
92162
92566
  /**
92163
- * 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
92567
+ * 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
92164
92568
  */
92165
92569
  createdByIdentityId: (string | null)
92166
92570
  }
@@ -92251,7 +92655,7 @@ attachmentCount: number
92251
92655
  */
92252
92656
  authorExternalId: (string | null)
92253
92657
  /**
92254
- * 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
92658
+ * 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
92255
92659
  */
92256
92660
  createdByIdentityId: (string | null)
92257
92661
  }
@@ -92378,7 +92782,7 @@ attachmentCount: number
92378
92782
  */
92379
92783
  authorExternalId: (string | null)
92380
92784
  /**
92381
- * 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
92785
+ * 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
92382
92786
  */
92383
92787
  createdByIdentityId: (string | null)
92384
92788
  }[]
@@ -92417,7 +92821,7 @@ createdAt: string
92417
92821
  */
92418
92822
  messageId: string
92419
92823
  /**
92420
- * The Lessly identity that made the edit
92824
+ * The Lepsto identity that made the edit
92421
92825
  */
92422
92826
  editedByIdentityId: (string | null)
92423
92827
  }[]
@@ -92513,7 +92917,7 @@ attachmentCount: number
92513
92917
  */
92514
92918
  authorExternalId: (string | null)
92515
92919
  /**
92516
- * 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
92920
+ * 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
92517
92921
  */
92518
92922
  createdByIdentityId: (string | null)
92519
92923
  }
@@ -111119,7 +111523,7 @@ metadata?: {
111119
111523
  */
111120
111524
  authorDisplay?: string
111121
111525
  /**
111122
- * 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
111526
+ * 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
111123
111527
  */
111124
111528
  authorExternalId: string
111125
111529
  }