@lepsto/sdk-app 89.1.0 → 89.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.
@@ -90576,378 +90576,6 @@ export interface OrganizationYoutubeInstallOutput {
90576
90576
  url: string
90577
90577
  }
90578
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
-
90951
90579
  export interface RealtimeArchiveExportInput {
90952
90580
  /**
90953
90581
  * Only entries with ts <= to_ts (epoch ms)
@@ -91883,7 +91511,7 @@ avatarUrl?: string
91883
91511
  */
91884
91512
  displayName: string
91885
91513
  /**
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
91514
+ * 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
91887
91515
  */
91888
91516
  lesslyUserId?: string
91889
91517
  }
@@ -91918,7 +91546,7 @@ updatedAt: string
91918
91546
  */
91919
91547
  displayName: string
91920
91548
  /**
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
91549
+ * 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
91922
91550
  */
91923
91551
  lesslyUserId: (string | null)
91924
91552
  }
@@ -91960,7 +91588,7 @@ updatedAt: string
91960
91588
  */
91961
91589
  displayName: string
91962
91590
  /**
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
91591
+ * 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
91964
91592
  */
91965
91593
  lesslyUserId: (string | null)
91966
91594
  }
@@ -92006,7 +91634,7 @@ updatedAt: string
92006
91634
  */
92007
91635
  displayName: string
92008
91636
  /**
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
91637
+ * 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
92010
91638
  */
92011
91639
  lesslyUserId: (string | null)
92012
91640
  }[]
@@ -92034,7 +91662,7 @@ avatarUrl?: (string | null)
92034
91662
  */
92035
91663
  displayName?: string
92036
91664
  /**
92037
- * Lepsto identity to bind, or null to unbind. Stored verbatim, resolved by nobody
91665
+ * Lessly identity to bind, or null to unbind. Stored verbatim, resolved by nobody
92038
91666
  */
92039
91667
  lesslyUserId?: (string | null)
92040
91668
  }
@@ -92069,7 +91697,7 @@ updatedAt: string
92069
91697
  */
92070
91698
  displayName: string
92071
91699
  /**
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
91700
+ * 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
92073
91701
  */
92074
91702
  lesslyUserId: (string | null)
92075
91703
  }
@@ -92394,7 +92022,7 @@ attachmentCount: number
92394
92022
  */
92395
92023
  authorExternalId: (string | null)
92396
92024
  /**
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
92025
+ * 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
92398
92026
  */
92399
92027
  createdByIdentityId: (string | null)
92400
92028
  }
@@ -92485,7 +92113,7 @@ attachmentCount: number
92485
92113
  */
92486
92114
  authorExternalId: (string | null)
92487
92115
  /**
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
92116
+ * 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
92489
92117
  */
92490
92118
  createdByIdentityId: (string | null)
92491
92119
  }
@@ -92576,7 +92204,7 @@ attachmentCount: number
92576
92204
  */
92577
92205
  authorExternalId: (string | null)
92578
92206
  /**
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
92207
+ * 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
92580
92208
  */
92581
92209
  createdByIdentityId: (string | null)
92582
92210
  }
@@ -92667,7 +92295,7 @@ attachmentCount: number
92667
92295
  */
92668
92296
  authorExternalId: (string | null)
92669
92297
  /**
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
92298
+ * 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
92671
92299
  */
92672
92300
  createdByIdentityId: (string | null)
92673
92301
  }
@@ -92794,7 +92422,7 @@ attachmentCount: number
92794
92422
  */
92795
92423
  authorExternalId: (string | null)
92796
92424
  /**
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
92425
+ * 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
92798
92426
  */
92799
92427
  createdByIdentityId: (string | null)
92800
92428
  }[]
@@ -92833,7 +92461,7 @@ createdAt: string
92833
92461
  */
92834
92462
  messageId: string
92835
92463
  /**
92836
- * The Lepsto identity that made the edit
92464
+ * The Lessly identity that made the edit
92837
92465
  */
92838
92466
  editedByIdentityId: (string | null)
92839
92467
  }[]
@@ -92929,7 +92557,7 @@ attachmentCount: number
92929
92557
  */
92930
92558
  authorExternalId: (string | null)
92931
92559
  /**
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
92560
+ * 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
92933
92561
  */
92934
92562
  createdByIdentityId: (string | null)
92935
92563
  }
@@ -111535,7 +111163,7 @@ metadata?: {
111535
111163
  */
111536
111164
  authorDisplay?: string
111537
111165
  /**
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
111166
+ * 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
111539
111167
  */
111540
111168
  authorExternalId: string
111541
111169
  }
@@ -1,3 +0,0 @@
1
- import type { LesslyStream, LesslyStreamOpener } from '../../runtime/types.js';
2
- import type { PlaygroundWsEchoInput } from '../types.gen.js';
3
- export declare const playgroundWsEchoConnect: (sdk: LesslyStreamOpener, input: PlaygroundWsEchoInput) => LesslyStream;
@@ -1,3 +0,0 @@
1
- export * from './queryOptions.gen.js';
2
- export * from './connect.gen.js';
3
- export type { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundEchoPingInput, PlaygroundEchoPingOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, PlaygroundWorkflowEchoInput, PlaygroundWorkflowEchoListInput, PlaygroundWorkflowEchoListOutput, PlaygroundWorkflowEchoOutput, PlaygroundWorkflowPingInput, PlaygroundWorkflowPingOutput, PlaygroundWorkflowSubjectsListInput, PlaygroundWorkflowSubjectsListOutput, PlaygroundWsEchoInput } from '../types.gen.js';
@@ -1,70 +0,0 @@
1
- import type { GeneratedClient } from '../client.gen.js';
2
- import type { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundClickupCreateTaskInput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundEchoPingInput, PlaygroundEchoPingOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, PlaygroundWorkflowEchoInput, PlaygroundWorkflowEchoListInput, PlaygroundWorkflowEchoListOutput, PlaygroundWorkflowPingInput, PlaygroundWorkflowSubjectsListInput, PlaygroundWorkflowSubjectsListOutput } from '../types.gen.js';
3
- export declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
4
- queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
5
- queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
6
- };
7
- export declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
8
- queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
9
- queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
10
- };
11
- export declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
12
- mutationKey: string[];
13
- mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<import(".").PlaygroundBillingRecordUsageOutput>;
14
- };
15
- export declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
16
- mutationKey: string[];
17
- mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<import(".").PlaygroundClickupCreateTaskOutput>;
18
- };
19
- export declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
20
- queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
21
- queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
22
- };
23
- export declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
24
- queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
25
- queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
26
- };
27
- export declare const playgroundEchoPingQueryOptions: (sdk: GeneratedClient, input: PlaygroundEchoPingInput) => {
28
- queryKey: readonly ["playground", "echo", "ping", PlaygroundEchoPingInput];
29
- queryFn: () => Promise<PlaygroundEchoPingOutput>;
30
- };
31
- export declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
32
- queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
33
- queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
34
- };
35
- export declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
36
- queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
37
- queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
38
- };
39
- export declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
40
- queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
41
- queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
42
- };
43
- export declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
44
- queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
45
- queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
46
- };
47
- export declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
48
- queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
49
- queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
50
- };
51
- export declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
52
- queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
53
- queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
54
- };
55
- export declare const playgroundWorkflowEchoMutationOptions: (sdk: GeneratedClient) => {
56
- mutationKey: string[];
57
- mutationFn: (input: PlaygroundWorkflowEchoInput) => Promise<import(".").PlaygroundWorkflowEchoOutput>;
58
- };
59
- export declare const playgroundWorkflowEchoListQueryOptions: (sdk: GeneratedClient, input: PlaygroundWorkflowEchoListInput) => {
60
- queryKey: readonly ["playground", "workflow", "echo-list", PlaygroundWorkflowEchoListInput];
61
- queryFn: () => Promise<PlaygroundWorkflowEchoListOutput>;
62
- };
63
- export declare const playgroundWorkflowPingMutationOptions: (sdk: GeneratedClient) => {
64
- mutationKey: string[];
65
- mutationFn: (input: PlaygroundWorkflowPingInput) => Promise<import(".").PlaygroundWorkflowPingOutput>;
66
- };
67
- export declare const playgroundWorkflowSubjectsListQueryOptions: (sdk: GeneratedClient, input: PlaygroundWorkflowSubjectsListInput) => {
68
- queryKey: readonly ["playground", "workflow", "subjects-list", PlaygroundWorkflowSubjectsListInput];
69
- queryFn: () => Promise<PlaygroundWorkflowSubjectsListOutput>;
70
- };