@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
package/src/gen/types.gen.ts
CHANGED
|
@@ -72726,6 +72726,7 @@ serviceId: string
|
|
|
72726
72726
|
updatedAt: string
|
|
72727
72727
|
pathPrefix: string
|
|
72728
72728
|
}[]
|
|
72729
|
+
aliases: string[]
|
|
72729
72730
|
hostname: string
|
|
72730
72731
|
createdAt: string
|
|
72731
72732
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -72751,6 +72752,7 @@ routingUnavailable?: boolean
|
|
|
72751
72752
|
} | null)
|
|
72752
72753
|
routingRecordType: ("A" | "CNAME")
|
|
72753
72754
|
verificationToken: (string | null)
|
|
72755
|
+
advertisedHostname: string
|
|
72754
72756
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
72755
72757
|
lastVerificationError: (({
|
|
72756
72758
|
code: (string | null)
|
|
@@ -72796,6 +72798,7 @@ id: string
|
|
|
72796
72798
|
export interface DeploymentDomainGetOutput {
|
|
72797
72799
|
id: string
|
|
72798
72800
|
kind: ("auto" | "custom")
|
|
72801
|
+
aliases: string[]
|
|
72799
72802
|
hostname: string
|
|
72800
72803
|
createdAt: string
|
|
72801
72804
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -72821,6 +72824,7 @@ routingUnavailable?: boolean
|
|
|
72821
72824
|
} | null)
|
|
72822
72825
|
routingRecordType: ("A" | "CNAME")
|
|
72823
72826
|
verificationToken: (string | null)
|
|
72827
|
+
advertisedHostname: string
|
|
72824
72828
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
72825
72829
|
lastVerificationError: (({
|
|
72826
72830
|
code: (string | null)
|
|
@@ -72854,6 +72858,7 @@ environmentId: string
|
|
|
72854
72858
|
export type DeploymentDomainListOutput = {
|
|
72855
72859
|
id: string
|
|
72856
72860
|
kind: ("auto" | "custom")
|
|
72861
|
+
aliases: string[]
|
|
72857
72862
|
hostname: string
|
|
72858
72863
|
createdAt: string
|
|
72859
72864
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -72879,6 +72884,7 @@ routingUnavailable?: boolean
|
|
|
72879
72884
|
} | null)
|
|
72880
72885
|
routingRecordType: ("A" | "CNAME")
|
|
72881
72886
|
verificationToken: (string | null)
|
|
72887
|
+
advertisedHostname: string
|
|
72882
72888
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
72883
72889
|
lastVerificationError: (({
|
|
72884
72890
|
code: (string | null)
|
|
@@ -72913,6 +72919,7 @@ serviceId: string
|
|
|
72913
72919
|
export type DeploymentDomainListByServiceOutput = {
|
|
72914
72920
|
id: string
|
|
72915
72921
|
kind: ("auto" | "custom")
|
|
72922
|
+
aliases: string[]
|
|
72916
72923
|
hostname: string
|
|
72917
72924
|
createdAt: string
|
|
72918
72925
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -72938,6 +72945,7 @@ routingUnavailable?: boolean
|
|
|
72938
72945
|
} | null)
|
|
72939
72946
|
routingRecordType: ("A" | "CNAME")
|
|
72940
72947
|
verificationToken: (string | null)
|
|
72948
|
+
advertisedHostname: string
|
|
72941
72949
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
72942
72950
|
lastVerificationError: (({
|
|
72943
72951
|
code: (string | null)
|
|
@@ -72973,6 +72981,7 @@ enabled: boolean
|
|
|
72973
72981
|
export interface DeploymentDomainRedirectWwwOutput {
|
|
72974
72982
|
id: string
|
|
72975
72983
|
kind: ("auto" | "custom")
|
|
72984
|
+
aliases: string[]
|
|
72976
72985
|
hostname: string
|
|
72977
72986
|
createdAt: string
|
|
72978
72987
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -72998,6 +73007,7 @@ routingUnavailable?: boolean
|
|
|
72998
73007
|
} | null)
|
|
72999
73008
|
routingRecordType: ("A" | "CNAME")
|
|
73000
73009
|
verificationToken: (string | null)
|
|
73010
|
+
advertisedHostname: string
|
|
73001
73011
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
73002
73012
|
lastVerificationError: (({
|
|
73003
73013
|
code: (string | null)
|
|
@@ -73101,6 +73111,7 @@ id: string
|
|
|
73101
73111
|
export interface DeploymentDomainVerifyOutput {
|
|
73102
73112
|
id: string
|
|
73103
73113
|
kind: ("auto" | "custom")
|
|
73114
|
+
aliases: string[]
|
|
73104
73115
|
hostname: string
|
|
73105
73116
|
createdAt: string
|
|
73106
73117
|
tlsStatus: ("none" | "pending" | "issuing" | "active" | "failed")
|
|
@@ -73126,6 +73137,7 @@ routingUnavailable?: boolean
|
|
|
73126
73137
|
} | null)
|
|
73127
73138
|
routingRecordType: ("A" | "CNAME")
|
|
73128
73139
|
verificationToken: (string | null)
|
|
73140
|
+
advertisedHostname: string
|
|
73129
73141
|
verificationStatus: ("pending_dns" | "verified" | "dns_failed")
|
|
73130
73142
|
lastVerificationError: (({
|
|
73131
73143
|
code: (string | null)
|
|
@@ -90564,6 +90576,378 @@ export interface OrganizationYoutubeInstallOutput {
|
|
|
90564
90576
|
url: string
|
|
90565
90577
|
}
|
|
90566
90578
|
|
|
90579
|
+
export interface PlaygroundAnalyticsOverviewInput {
|
|
90580
|
+
/**
|
|
90581
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
90582
|
+
*/
|
|
90583
|
+
limit?: number
|
|
90584
|
+
}
|
|
90585
|
+
|
|
90586
|
+
export interface PlaygroundAnalyticsOverviewOutput {
|
|
90587
|
+
ok: boolean
|
|
90588
|
+
minted: boolean
|
|
90589
|
+
overview?: unknown
|
|
90590
|
+
http_status: number
|
|
90591
|
+
}
|
|
90592
|
+
|
|
90593
|
+
export interface PlaygroundBillingEntitlementsInput {
|
|
90594
|
+
|
|
90595
|
+
}
|
|
90596
|
+
|
|
90597
|
+
export interface PlaygroundBillingEntitlementsOutput {
|
|
90598
|
+
ok: boolean
|
|
90599
|
+
minted: boolean
|
|
90600
|
+
http_status: number
|
|
90601
|
+
entitlements?: unknown
|
|
90602
|
+
}
|
|
90603
|
+
|
|
90604
|
+
export interface PlaygroundBillingRecordUsageInput {
|
|
90605
|
+
/**
|
|
90606
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
90607
|
+
*/
|
|
90608
|
+
value?: number
|
|
90609
|
+
}
|
|
90610
|
+
|
|
90611
|
+
export interface PlaygroundBillingRecordUsageOutput {
|
|
90612
|
+
minted: boolean
|
|
90613
|
+
accepted: (number | null)
|
|
90614
|
+
recorded: boolean
|
|
90615
|
+
duplicates: (number | null)
|
|
90616
|
+
http_status: number
|
|
90617
|
+
}
|
|
90618
|
+
|
|
90619
|
+
export interface PlaygroundClickupCreateTaskInput {
|
|
90620
|
+
/**
|
|
90621
|
+
* Task title; defaults to a fixture label
|
|
90622
|
+
*/
|
|
90623
|
+
name?: string
|
|
90624
|
+
/**
|
|
90625
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
90626
|
+
*/
|
|
90627
|
+
listId?: string
|
|
90628
|
+
}
|
|
90629
|
+
|
|
90630
|
+
export interface PlaygroundClickupCreateTaskOutput {
|
|
90631
|
+
minted: boolean
|
|
90632
|
+
task_id: (string | null)
|
|
90633
|
+
list_status: number
|
|
90634
|
+
vend_status: number
|
|
90635
|
+
clickup_status: number
|
|
90636
|
+
installation_count: number
|
|
90637
|
+
}
|
|
90638
|
+
|
|
90639
|
+
export interface PlaygroundClickupGetLastWebhookInput {
|
|
90640
|
+
|
|
90641
|
+
}
|
|
90642
|
+
|
|
90643
|
+
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
90644
|
+
payload: string
|
|
90645
|
+
event_id: string
|
|
90646
|
+
provider: string
|
|
90647
|
+
verified: boolean
|
|
90648
|
+
product_id: string
|
|
90649
|
+
occurred_at: string
|
|
90650
|
+
connector_id: string
|
|
90651
|
+
clickup_event: (string | null)
|
|
90652
|
+
receipt_count: number
|
|
90653
|
+
} | {
|
|
90654
|
+
found: false
|
|
90655
|
+
})
|
|
90656
|
+
|
|
90657
|
+
export interface PlaygroundClickupGetOverviewInput {
|
|
90658
|
+
|
|
90659
|
+
}
|
|
90660
|
+
|
|
90661
|
+
export interface PlaygroundClickupGetOverviewOutput {
|
|
90662
|
+
team: ({
|
|
90663
|
+
teamId: string
|
|
90664
|
+
teamName: string
|
|
90665
|
+
} | null)
|
|
90666
|
+
lists: PlaygroundClickupGetOverviewOutputItems[]
|
|
90667
|
+
tasks: {
|
|
90668
|
+
id: string
|
|
90669
|
+
name: string
|
|
90670
|
+
status: (string | null)
|
|
90671
|
+
}[]
|
|
90672
|
+
minted: boolean
|
|
90673
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[]
|
|
90674
|
+
list_status: number
|
|
90675
|
+
vend_status: number
|
|
90676
|
+
lists_status: number
|
|
90677
|
+
tasks_status: number
|
|
90678
|
+
spaces_status: number
|
|
90679
|
+
folders_status: number
|
|
90680
|
+
installation_count: number
|
|
90681
|
+
}
|
|
90682
|
+
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
90683
|
+
id: string
|
|
90684
|
+
name: string
|
|
90685
|
+
}
|
|
90686
|
+
|
|
90687
|
+
export interface PlaygroundEchoPingInput {
|
|
90688
|
+
/**
|
|
90689
|
+
* The text to echo back, 1–1024 characters
|
|
90690
|
+
*/
|
|
90691
|
+
message: string
|
|
90692
|
+
}
|
|
90693
|
+
|
|
90694
|
+
export interface PlaygroundEchoPingOutput {
|
|
90695
|
+
/**
|
|
90696
|
+
* The message exactly as it was received
|
|
90697
|
+
*/
|
|
90698
|
+
message: string
|
|
90699
|
+
/**
|
|
90700
|
+
* The product the call was resolved to
|
|
90701
|
+
*/
|
|
90702
|
+
productId: string
|
|
90703
|
+
/**
|
|
90704
|
+
* ISO-8601 instant (UTC) at which the call reached the service
|
|
90705
|
+
*/
|
|
90706
|
+
receivedAt: string
|
|
90707
|
+
}
|
|
90708
|
+
|
|
90709
|
+
export interface PlaygroundGdriveGetLastChangeInput {
|
|
90710
|
+
|
|
90711
|
+
}
|
|
90712
|
+
|
|
90713
|
+
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
90714
|
+
file_id: string
|
|
90715
|
+
removed: boolean
|
|
90716
|
+
file_name: (string | null)
|
|
90717
|
+
mime_type: (string | null)
|
|
90718
|
+
product_id: string
|
|
90719
|
+
occurred_at: string
|
|
90720
|
+
connector_id: string
|
|
90721
|
+
resource_state: string
|
|
90722
|
+
} | {
|
|
90723
|
+
found: false
|
|
90724
|
+
})
|
|
90725
|
+
|
|
90726
|
+
export interface PlaygroundGdriveReadFileInput {
|
|
90727
|
+
/**
|
|
90728
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
90729
|
+
*/
|
|
90730
|
+
fileId?: string
|
|
90731
|
+
}
|
|
90732
|
+
|
|
90733
|
+
export interface PlaygroundGdriveReadFileOutput {
|
|
90734
|
+
minted: boolean
|
|
90735
|
+
file_id: (string | null)
|
|
90736
|
+
file_name: (string | null)
|
|
90737
|
+
mime_type: (string | null)
|
|
90738
|
+
file_count: number
|
|
90739
|
+
get_status: number
|
|
90740
|
+
list_status: number
|
|
90741
|
+
vend_status: number
|
|
90742
|
+
content_bytes: (number | null)
|
|
90743
|
+
}
|
|
90744
|
+
|
|
90745
|
+
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
90746
|
+
|
|
90747
|
+
}
|
|
90748
|
+
|
|
90749
|
+
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
90750
|
+
minted: boolean
|
|
90751
|
+
vended: boolean
|
|
90752
|
+
customer_id: (string | null)
|
|
90753
|
+
vend_status: number
|
|
90754
|
+
result_count: number
|
|
90755
|
+
search_status: number
|
|
90756
|
+
login_customer_id: (string | null)
|
|
90757
|
+
}
|
|
90758
|
+
|
|
90759
|
+
export interface PlaygroundLifecycleGetStateInput {
|
|
90760
|
+
|
|
90761
|
+
}
|
|
90762
|
+
|
|
90763
|
+
export interface PlaygroundLifecycleGetStateOutput {
|
|
90764
|
+
blocked: boolean
|
|
90765
|
+
archived: boolean
|
|
90766
|
+
productId: string
|
|
90767
|
+
lastBlockTransition: ({
|
|
90768
|
+
eventId: string
|
|
90769
|
+
eventName: string
|
|
90770
|
+
productId: string
|
|
90771
|
+
occurredAt: string
|
|
90772
|
+
recordedAt: string
|
|
90773
|
+
receiptCount: number
|
|
90774
|
+
organizationId: string
|
|
90775
|
+
cascadedFromOrg: boolean
|
|
90776
|
+
} | null)
|
|
90777
|
+
lastArchiveTransition: ({
|
|
90778
|
+
eventId: string
|
|
90779
|
+
eventName: string
|
|
90780
|
+
productId: string
|
|
90781
|
+
occurredAt: string
|
|
90782
|
+
recordedAt: string
|
|
90783
|
+
receiptCount: number
|
|
90784
|
+
organizationId: string
|
|
90785
|
+
cascadedFromOrg: boolean
|
|
90786
|
+
} | null)
|
|
90787
|
+
}
|
|
90788
|
+
|
|
90789
|
+
export interface PlaygroundLifecycleListEventsInput {
|
|
90790
|
+
|
|
90791
|
+
}
|
|
90792
|
+
|
|
90793
|
+
export type PlaygroundLifecycleListEventsOutput = {
|
|
90794
|
+
eventId: string
|
|
90795
|
+
eventName: string
|
|
90796
|
+
productId: string
|
|
90797
|
+
occurredAt: string
|
|
90798
|
+
recordedAt: string
|
|
90799
|
+
receiptCount: number
|
|
90800
|
+
organizationId: string
|
|
90801
|
+
cascadedFromOrg: boolean
|
|
90802
|
+
}[]
|
|
90803
|
+
|
|
90804
|
+
export interface PlaygroundWebhookGetLastInput {
|
|
90805
|
+
|
|
90806
|
+
}
|
|
90807
|
+
|
|
90808
|
+
export type PlaygroundWebhookGetLastOutput = ({
|
|
90809
|
+
payload?: unknown
|
|
90810
|
+
event_id: string
|
|
90811
|
+
provider: string
|
|
90812
|
+
verified: boolean
|
|
90813
|
+
product_id: string
|
|
90814
|
+
occurred_at: string
|
|
90815
|
+
connector_id: string
|
|
90816
|
+
delivery_count: number
|
|
90817
|
+
} | {
|
|
90818
|
+
found: false
|
|
90819
|
+
})
|
|
90820
|
+
|
|
90821
|
+
export interface PlaygroundWorkflowEchoInput {
|
|
90822
|
+
/**
|
|
90823
|
+
* The text to store, 1–1024 characters
|
|
90824
|
+
*/
|
|
90825
|
+
note: string
|
|
90826
|
+
/**
|
|
90827
|
+
* Optional labels stored alongside the note, at most 20
|
|
90828
|
+
*
|
|
90829
|
+
* @maxItems 20
|
|
90830
|
+
*/
|
|
90831
|
+
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]
|
|
90832
|
+
}
|
|
90833
|
+
|
|
90834
|
+
export interface PlaygroundWorkflowEchoOutput {
|
|
90835
|
+
/**
|
|
90836
|
+
* Identifier of the stored echo
|
|
90837
|
+
*/
|
|
90838
|
+
id: string
|
|
90839
|
+
/**
|
|
90840
|
+
* The note exactly as it was received
|
|
90841
|
+
*/
|
|
90842
|
+
note: string
|
|
90843
|
+
/**
|
|
90844
|
+
* The tags exactly as they were received
|
|
90845
|
+
*/
|
|
90846
|
+
tags: string[]
|
|
90847
|
+
/**
|
|
90848
|
+
* 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.
|
|
90849
|
+
*/
|
|
90850
|
+
echo_id: string
|
|
90851
|
+
/**
|
|
90852
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
90853
|
+
*/
|
|
90854
|
+
received_at: string
|
|
90855
|
+
}
|
|
90856
|
+
|
|
90857
|
+
export interface PlaygroundWorkflowEchoListInput {
|
|
90858
|
+
|
|
90859
|
+
}
|
|
90860
|
+
|
|
90861
|
+
export type PlaygroundWorkflowEchoListOutput = {
|
|
90862
|
+
/**
|
|
90863
|
+
* Identifier of the stored echo
|
|
90864
|
+
*/
|
|
90865
|
+
id: string
|
|
90866
|
+
/**
|
|
90867
|
+
* The note exactly as it was received
|
|
90868
|
+
*/
|
|
90869
|
+
note: string
|
|
90870
|
+
/**
|
|
90871
|
+
* The tags exactly as they were received
|
|
90872
|
+
*/
|
|
90873
|
+
tags: string[]
|
|
90874
|
+
/**
|
|
90875
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
90876
|
+
*/
|
|
90877
|
+
received_at: string
|
|
90878
|
+
}[]
|
|
90879
|
+
|
|
90880
|
+
export interface PlaygroundWorkflowPingInput {
|
|
90881
|
+
/**
|
|
90882
|
+
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
90883
|
+
*/
|
|
90884
|
+
kind?: string
|
|
90885
|
+
}
|
|
90886
|
+
|
|
90887
|
+
export interface PlaygroundWorkflowPingOutput {
|
|
90888
|
+
/**
|
|
90889
|
+
* 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.
|
|
90890
|
+
*/
|
|
90891
|
+
id: string
|
|
90892
|
+
/**
|
|
90893
|
+
* The name of the event that was published
|
|
90894
|
+
*/
|
|
90895
|
+
event: string
|
|
90896
|
+
}
|
|
90897
|
+
|
|
90898
|
+
export interface PlaygroundWorkflowSubjectsListInput {
|
|
90899
|
+
/**
|
|
90900
|
+
* How many subjects to return, 1–100. Defaults to 25.
|
|
90901
|
+
*/
|
|
90902
|
+
limit?: number
|
|
90903
|
+
/**
|
|
90904
|
+
* The next_cursor of the previous page. Opaque — pass it back unchanged. Omit for the first page.
|
|
90905
|
+
*/
|
|
90906
|
+
cursor?: string
|
|
90907
|
+
/**
|
|
90908
|
+
* 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.
|
|
90909
|
+
*/
|
|
90910
|
+
last_activity_after?: string
|
|
90911
|
+
/**
|
|
90912
|
+
* 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.
|
|
90913
|
+
*/
|
|
90914
|
+
last_activity_before?: string
|
|
90915
|
+
}
|
|
90916
|
+
|
|
90917
|
+
export interface PlaygroundWorkflowSubjectsListOutput {
|
|
90918
|
+
/**
|
|
90919
|
+
* This page of subjects, most recently active first
|
|
90920
|
+
*/
|
|
90921
|
+
items: {
|
|
90922
|
+
/**
|
|
90923
|
+
* 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.
|
|
90924
|
+
*/
|
|
90925
|
+
subject_key: string
|
|
90926
|
+
/**
|
|
90927
|
+
* Human-readable name of the subject
|
|
90928
|
+
*/
|
|
90929
|
+
display_name: string
|
|
90930
|
+
/**
|
|
90931
|
+
* ISO-8601 instant (UTC) of the subject last activity
|
|
90932
|
+
*/
|
|
90933
|
+
last_activity_at: string
|
|
90934
|
+
}[]
|
|
90935
|
+
/**
|
|
90936
|
+
* Whether another page follows. False and a null next_cursor both mark the last page, so a consumer that loops on either terminates.
|
|
90937
|
+
*/
|
|
90938
|
+
has_more: boolean
|
|
90939
|
+
/**
|
|
90940
|
+
* Pass back as `cursor` to fetch the next page; null on the last page. Always null when has_more is false.
|
|
90941
|
+
*/
|
|
90942
|
+
next_cursor: (string | null)
|
|
90943
|
+
}
|
|
90944
|
+
|
|
90945
|
+
export interface PlaygroundWsEchoInput {
|
|
90946
|
+
|
|
90947
|
+
}
|
|
90948
|
+
|
|
90949
|
+
export type PlaygroundWsEchoOutput = unknown;
|
|
90950
|
+
|
|
90567
90951
|
export interface RealtimeArchiveExportInput {
|
|
90568
90952
|
/**
|
|
90569
90953
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -91499,7 +91883,7 @@ avatarUrl?: string
|
|
|
91499
91883
|
*/
|
|
91500
91884
|
displayName: string
|
|
91501
91885
|
/**
|
|
91502
|
-
*
|
|
91886
|
+
* 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
|
|
91503
91887
|
*/
|
|
91504
91888
|
lesslyUserId?: string
|
|
91505
91889
|
}
|
|
@@ -91534,7 +91918,7 @@ updatedAt: string
|
|
|
91534
91918
|
*/
|
|
91535
91919
|
displayName: string
|
|
91536
91920
|
/**
|
|
91537
|
-
* Bound
|
|
91921
|
+
* 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
|
|
91538
91922
|
*/
|
|
91539
91923
|
lesslyUserId: (string | null)
|
|
91540
91924
|
}
|
|
@@ -91576,7 +91960,7 @@ updatedAt: string
|
|
|
91576
91960
|
*/
|
|
91577
91961
|
displayName: string
|
|
91578
91962
|
/**
|
|
91579
|
-
* Bound
|
|
91963
|
+
* 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
|
|
91580
91964
|
*/
|
|
91581
91965
|
lesslyUserId: (string | null)
|
|
91582
91966
|
}
|
|
@@ -91622,7 +92006,7 @@ updatedAt: string
|
|
|
91622
92006
|
*/
|
|
91623
92007
|
displayName: string
|
|
91624
92008
|
/**
|
|
91625
|
-
* Bound
|
|
92009
|
+
* 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
|
|
91626
92010
|
*/
|
|
91627
92011
|
lesslyUserId: (string | null)
|
|
91628
92012
|
}[]
|
|
@@ -91650,7 +92034,7 @@ avatarUrl?: (string | null)
|
|
|
91650
92034
|
*/
|
|
91651
92035
|
displayName?: string
|
|
91652
92036
|
/**
|
|
91653
|
-
*
|
|
92037
|
+
* Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
|
|
91654
92038
|
*/
|
|
91655
92039
|
lesslyUserId?: (string | null)
|
|
91656
92040
|
}
|
|
@@ -91685,7 +92069,7 @@ updatedAt: string
|
|
|
91685
92069
|
*/
|
|
91686
92070
|
displayName: string
|
|
91687
92071
|
/**
|
|
91688
|
-
* Bound
|
|
92072
|
+
* 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
|
|
91689
92073
|
*/
|
|
91690
92074
|
lesslyUserId: (string | null)
|
|
91691
92075
|
}
|
|
@@ -92010,7 +92394,7 @@ attachmentCount: number
|
|
|
92010
92394
|
*/
|
|
92011
92395
|
authorExternalId: (string | null)
|
|
92012
92396
|
/**
|
|
92013
|
-
* The
|
|
92397
|
+
* 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
|
|
92014
92398
|
*/
|
|
92015
92399
|
createdByIdentityId: (string | null)
|
|
92016
92400
|
}
|
|
@@ -92101,7 +92485,7 @@ attachmentCount: number
|
|
|
92101
92485
|
*/
|
|
92102
92486
|
authorExternalId: (string | null)
|
|
92103
92487
|
/**
|
|
92104
|
-
* The
|
|
92488
|
+
* 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
|
|
92105
92489
|
*/
|
|
92106
92490
|
createdByIdentityId: (string | null)
|
|
92107
92491
|
}
|
|
@@ -92192,7 +92576,7 @@ attachmentCount: number
|
|
|
92192
92576
|
*/
|
|
92193
92577
|
authorExternalId: (string | null)
|
|
92194
92578
|
/**
|
|
92195
|
-
* The
|
|
92579
|
+
* 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
|
|
92196
92580
|
*/
|
|
92197
92581
|
createdByIdentityId: (string | null)
|
|
92198
92582
|
}
|
|
@@ -92283,7 +92667,7 @@ attachmentCount: number
|
|
|
92283
92667
|
*/
|
|
92284
92668
|
authorExternalId: (string | null)
|
|
92285
92669
|
/**
|
|
92286
|
-
* The
|
|
92670
|
+
* 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
|
|
92287
92671
|
*/
|
|
92288
92672
|
createdByIdentityId: (string | null)
|
|
92289
92673
|
}
|
|
@@ -92410,7 +92794,7 @@ attachmentCount: number
|
|
|
92410
92794
|
*/
|
|
92411
92795
|
authorExternalId: (string | null)
|
|
92412
92796
|
/**
|
|
92413
|
-
* The
|
|
92797
|
+
* 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
|
|
92414
92798
|
*/
|
|
92415
92799
|
createdByIdentityId: (string | null)
|
|
92416
92800
|
}[]
|
|
@@ -92449,7 +92833,7 @@ createdAt: string
|
|
|
92449
92833
|
*/
|
|
92450
92834
|
messageId: string
|
|
92451
92835
|
/**
|
|
92452
|
-
* The
|
|
92836
|
+
* The Lepsto identity that made the edit
|
|
92453
92837
|
*/
|
|
92454
92838
|
editedByIdentityId: (string | null)
|
|
92455
92839
|
}[]
|
|
@@ -92545,7 +92929,7 @@ attachmentCount: number
|
|
|
92545
92929
|
*/
|
|
92546
92930
|
authorExternalId: (string | null)
|
|
92547
92931
|
/**
|
|
92548
|
-
* The
|
|
92932
|
+
* 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
|
|
92549
92933
|
*/
|
|
92550
92934
|
createdByIdentityId: (string | null)
|
|
92551
92935
|
}
|
|
@@ -111151,7 +111535,7 @@ metadata?: {
|
|
|
111151
111535
|
*/
|
|
111152
111536
|
authorDisplay?: string
|
|
111153
111537
|
/**
|
|
111154
|
-
* 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
|
|
111538
|
+
* 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
|
|
111155
111539
|
*/
|
|
111156
111540
|
authorExternalId: string
|
|
111157
111541
|
}
|