@lessly/sdk-app 65.1.0 → 65.2.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/dist/_types/gen/client.gen.d.ts +34 -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 +62 -0
- package/dist/_types/gen/types.gen.d.ts +257 -0
- package/dist/chunk-Z3HG67EN.js +11085 -0
- package/dist/chunk-Z3HG67EN.js.map +1 -0
- package/dist/index.cjs +185 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +20 -10907
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +96 -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 +70 -0
- package/dist/playground/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +176 -1
- package/src/gen/client.gen.ts +63 -0
- package/src/gen/manifest.gen.ts +18 -1
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +105 -0
- package/src/gen/types.gen.ts +299 -0
package/src/gen/types.gen.ts
CHANGED
|
@@ -85804,6 +85804,305 @@ export interface OrganizationYoutubeInstallOutput {
|
|
|
85804
85804
|
url: string
|
|
85805
85805
|
}
|
|
85806
85806
|
|
|
85807
|
+
export interface PlaygroundAnalyticsOverviewInput {
|
|
85808
|
+
/**
|
|
85809
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
85810
|
+
*/
|
|
85811
|
+
limit?: number
|
|
85812
|
+
}
|
|
85813
|
+
|
|
85814
|
+
export interface PlaygroundAnalyticsOverviewOutput {
|
|
85815
|
+
ok: boolean
|
|
85816
|
+
minted: boolean
|
|
85817
|
+
overview?: unknown
|
|
85818
|
+
http_status: number
|
|
85819
|
+
}
|
|
85820
|
+
|
|
85821
|
+
export interface PlaygroundBillingEntitlementsInput {
|
|
85822
|
+
|
|
85823
|
+
}
|
|
85824
|
+
|
|
85825
|
+
export interface PlaygroundBillingEntitlementsOutput {
|
|
85826
|
+
ok: boolean
|
|
85827
|
+
minted: boolean
|
|
85828
|
+
http_status: number
|
|
85829
|
+
entitlements?: unknown
|
|
85830
|
+
}
|
|
85831
|
+
|
|
85832
|
+
export interface PlaygroundBillingRecordUsageInput {
|
|
85833
|
+
/**
|
|
85834
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
85835
|
+
*/
|
|
85836
|
+
value?: number
|
|
85837
|
+
}
|
|
85838
|
+
|
|
85839
|
+
export interface PlaygroundBillingRecordUsageOutput {
|
|
85840
|
+
minted: boolean
|
|
85841
|
+
accepted: (number | null)
|
|
85842
|
+
recorded: boolean
|
|
85843
|
+
duplicates: (number | null)
|
|
85844
|
+
http_status: number
|
|
85845
|
+
}
|
|
85846
|
+
|
|
85847
|
+
export interface PlaygroundClickupCreateTaskInput {
|
|
85848
|
+
/**
|
|
85849
|
+
* Task title; defaults to a fixture label
|
|
85850
|
+
*/
|
|
85851
|
+
name?: string
|
|
85852
|
+
/**
|
|
85853
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
85854
|
+
*/
|
|
85855
|
+
listId?: string
|
|
85856
|
+
}
|
|
85857
|
+
|
|
85858
|
+
export interface PlaygroundClickupCreateTaskOutput {
|
|
85859
|
+
minted: boolean
|
|
85860
|
+
task_id: (string | null)
|
|
85861
|
+
list_status: number
|
|
85862
|
+
vend_status: number
|
|
85863
|
+
clickup_status: number
|
|
85864
|
+
installation_count: number
|
|
85865
|
+
}
|
|
85866
|
+
|
|
85867
|
+
export interface PlaygroundClickupGetLastWebhookInput {
|
|
85868
|
+
|
|
85869
|
+
}
|
|
85870
|
+
|
|
85871
|
+
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
85872
|
+
payload: string
|
|
85873
|
+
event_id: string
|
|
85874
|
+
provider: string
|
|
85875
|
+
verified: boolean
|
|
85876
|
+
product_id: string
|
|
85877
|
+
occurred_at: string
|
|
85878
|
+
connector_id: string
|
|
85879
|
+
clickup_event: (string | null)
|
|
85880
|
+
receipt_count: number
|
|
85881
|
+
} | {
|
|
85882
|
+
found: false
|
|
85883
|
+
})
|
|
85884
|
+
|
|
85885
|
+
export interface PlaygroundClickupGetOverviewInput {
|
|
85886
|
+
|
|
85887
|
+
}
|
|
85888
|
+
|
|
85889
|
+
export interface PlaygroundClickupGetOverviewOutput {
|
|
85890
|
+
team: ({
|
|
85891
|
+
teamId: string
|
|
85892
|
+
teamName: string
|
|
85893
|
+
} | null)
|
|
85894
|
+
lists: PlaygroundClickupGetOverviewOutputItems[]
|
|
85895
|
+
tasks: {
|
|
85896
|
+
id: string
|
|
85897
|
+
name: string
|
|
85898
|
+
status: (string | null)
|
|
85899
|
+
}[]
|
|
85900
|
+
minted: boolean
|
|
85901
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[]
|
|
85902
|
+
list_status: number
|
|
85903
|
+
vend_status: number
|
|
85904
|
+
lists_status: number
|
|
85905
|
+
tasks_status: number
|
|
85906
|
+
spaces_status: number
|
|
85907
|
+
folders_status: number
|
|
85908
|
+
installation_count: number
|
|
85909
|
+
}
|
|
85910
|
+
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
85911
|
+
id: string
|
|
85912
|
+
name: string
|
|
85913
|
+
}
|
|
85914
|
+
|
|
85915
|
+
export interface PlaygroundGdriveGetLastChangeInput {
|
|
85916
|
+
|
|
85917
|
+
}
|
|
85918
|
+
|
|
85919
|
+
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
85920
|
+
file_id: string
|
|
85921
|
+
removed: boolean
|
|
85922
|
+
file_name: (string | null)
|
|
85923
|
+
mime_type: (string | null)
|
|
85924
|
+
product_id: string
|
|
85925
|
+
occurred_at: string
|
|
85926
|
+
connector_id: string
|
|
85927
|
+
resource_state: string
|
|
85928
|
+
} | {
|
|
85929
|
+
found: false
|
|
85930
|
+
})
|
|
85931
|
+
|
|
85932
|
+
export interface PlaygroundGdriveReadFileInput {
|
|
85933
|
+
/**
|
|
85934
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
85935
|
+
*/
|
|
85936
|
+
fileId?: string
|
|
85937
|
+
}
|
|
85938
|
+
|
|
85939
|
+
export interface PlaygroundGdriveReadFileOutput {
|
|
85940
|
+
minted: boolean
|
|
85941
|
+
file_id: (string | null)
|
|
85942
|
+
file_name: (string | null)
|
|
85943
|
+
mime_type: (string | null)
|
|
85944
|
+
file_count: number
|
|
85945
|
+
get_status: number
|
|
85946
|
+
list_status: number
|
|
85947
|
+
vend_status: number
|
|
85948
|
+
content_bytes: (number | null)
|
|
85949
|
+
}
|
|
85950
|
+
|
|
85951
|
+
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
85952
|
+
|
|
85953
|
+
}
|
|
85954
|
+
|
|
85955
|
+
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
85956
|
+
minted: boolean
|
|
85957
|
+
vended: boolean
|
|
85958
|
+
customer_id: (string | null)
|
|
85959
|
+
vend_status: number
|
|
85960
|
+
result_count: number
|
|
85961
|
+
search_status: number
|
|
85962
|
+
login_customer_id: (string | null)
|
|
85963
|
+
}
|
|
85964
|
+
|
|
85965
|
+
export interface PlaygroundLifecycleGetStateInput {
|
|
85966
|
+
|
|
85967
|
+
}
|
|
85968
|
+
|
|
85969
|
+
export interface PlaygroundLifecycleGetStateOutput {
|
|
85970
|
+
blocked: boolean
|
|
85971
|
+
archived: boolean
|
|
85972
|
+
productId: string
|
|
85973
|
+
lastBlockTransition: ({
|
|
85974
|
+
eventId: string
|
|
85975
|
+
eventName: string
|
|
85976
|
+
productId: string
|
|
85977
|
+
occurredAt: string
|
|
85978
|
+
recordedAt: string
|
|
85979
|
+
receiptCount: number
|
|
85980
|
+
organizationId: string
|
|
85981
|
+
cascadedFromOrg: boolean
|
|
85982
|
+
} | null)
|
|
85983
|
+
lastArchiveTransition: ({
|
|
85984
|
+
eventId: string
|
|
85985
|
+
eventName: string
|
|
85986
|
+
productId: string
|
|
85987
|
+
occurredAt: string
|
|
85988
|
+
recordedAt: string
|
|
85989
|
+
receiptCount: number
|
|
85990
|
+
organizationId: string
|
|
85991
|
+
cascadedFromOrg: boolean
|
|
85992
|
+
} | null)
|
|
85993
|
+
}
|
|
85994
|
+
|
|
85995
|
+
export interface PlaygroundLifecycleListEventsInput {
|
|
85996
|
+
|
|
85997
|
+
}
|
|
85998
|
+
|
|
85999
|
+
export type PlaygroundLifecycleListEventsOutput = {
|
|
86000
|
+
eventId: string
|
|
86001
|
+
eventName: string
|
|
86002
|
+
productId: string
|
|
86003
|
+
occurredAt: string
|
|
86004
|
+
recordedAt: string
|
|
86005
|
+
receiptCount: number
|
|
86006
|
+
organizationId: string
|
|
86007
|
+
cascadedFromOrg: boolean
|
|
86008
|
+
}[]
|
|
86009
|
+
|
|
86010
|
+
export interface PlaygroundWebhookGetLastInput {
|
|
86011
|
+
|
|
86012
|
+
}
|
|
86013
|
+
|
|
86014
|
+
export type PlaygroundWebhookGetLastOutput = ({
|
|
86015
|
+
payload?: unknown
|
|
86016
|
+
event_id: string
|
|
86017
|
+
provider: string
|
|
86018
|
+
verified: boolean
|
|
86019
|
+
product_id: string
|
|
86020
|
+
occurred_at: string
|
|
86021
|
+
connector_id: string
|
|
86022
|
+
delivery_count: number
|
|
86023
|
+
} | {
|
|
86024
|
+
found: false
|
|
86025
|
+
})
|
|
86026
|
+
|
|
86027
|
+
export interface PlaygroundWorkflowEchoInput {
|
|
86028
|
+
/**
|
|
86029
|
+
* The text to store, 1–1024 characters
|
|
86030
|
+
*/
|
|
86031
|
+
note: string
|
|
86032
|
+
/**
|
|
86033
|
+
* Optional labels stored alongside the note, at most 20
|
|
86034
|
+
*
|
|
86035
|
+
* @maxItems 20
|
|
86036
|
+
*/
|
|
86037
|
+
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]
|
|
86038
|
+
}
|
|
86039
|
+
|
|
86040
|
+
export interface PlaygroundWorkflowEchoOutput {
|
|
86041
|
+
/**
|
|
86042
|
+
* Identifier of the stored echo
|
|
86043
|
+
*/
|
|
86044
|
+
id: string
|
|
86045
|
+
/**
|
|
86046
|
+
* The note exactly as it was received
|
|
86047
|
+
*/
|
|
86048
|
+
note: string
|
|
86049
|
+
/**
|
|
86050
|
+
* The tags exactly as they were received
|
|
86051
|
+
*/
|
|
86052
|
+
tags: string[]
|
|
86053
|
+
/**
|
|
86054
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
86055
|
+
*/
|
|
86056
|
+
received_at: string
|
|
86057
|
+
}
|
|
86058
|
+
|
|
86059
|
+
export interface PlaygroundWorkflowEchoListInput {
|
|
86060
|
+
|
|
86061
|
+
}
|
|
86062
|
+
|
|
86063
|
+
export type PlaygroundWorkflowEchoListOutput = {
|
|
86064
|
+
/**
|
|
86065
|
+
* Identifier of the stored echo
|
|
86066
|
+
*/
|
|
86067
|
+
id: string
|
|
86068
|
+
/**
|
|
86069
|
+
* The note exactly as it was received
|
|
86070
|
+
*/
|
|
86071
|
+
note: string
|
|
86072
|
+
/**
|
|
86073
|
+
* The tags exactly as they were received
|
|
86074
|
+
*/
|
|
86075
|
+
tags: string[]
|
|
86076
|
+
/**
|
|
86077
|
+
* ISO-8601 instant (UTC) at which the echo was stored
|
|
86078
|
+
*/
|
|
86079
|
+
received_at: string
|
|
86080
|
+
}[]
|
|
86081
|
+
|
|
86082
|
+
export interface PlaygroundWorkflowPingInput {
|
|
86083
|
+
/**
|
|
86084
|
+
* Class of ping, echoed on the emitted event and filterable on the trigger. Defaults to 'manual'.
|
|
86085
|
+
*/
|
|
86086
|
+
kind?: string
|
|
86087
|
+
}
|
|
86088
|
+
|
|
86089
|
+
export interface PlaygroundWorkflowPingOutput {
|
|
86090
|
+
/**
|
|
86091
|
+
* 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.
|
|
86092
|
+
*/
|
|
86093
|
+
id: string
|
|
86094
|
+
/**
|
|
86095
|
+
* The name of the event that was published
|
|
86096
|
+
*/
|
|
86097
|
+
event: string
|
|
86098
|
+
}
|
|
86099
|
+
|
|
86100
|
+
export interface PlaygroundWsEchoInput {
|
|
86101
|
+
|
|
86102
|
+
}
|
|
86103
|
+
|
|
86104
|
+
export type PlaygroundWsEchoOutput = unknown;
|
|
86105
|
+
|
|
85807
86106
|
export interface RealtimeArchiveExportInput {
|
|
85808
86107
|
/**
|
|
85809
86108
|
* Only entries with ts <= to_ts (epoch ms)
|