@lessly/sdk-app 48.0.3 → 49.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 (49) hide show
  1. package/dist/analytics/index.d.cts +1 -1
  2. package/dist/analytics/index.d.ts +1 -1
  3. package/dist/brain/index.d.cts +1 -1
  4. package/dist/brain/index.d.ts +1 -1
  5. package/dist/{client.gen-DqvpKriz.d.cts → client.gen-CLRsCNvG.d.cts} +1 -217
  6. package/dist/{client.gen-DqvpKriz.d.ts → client.gen-CLRsCNvG.d.ts} +1 -217
  7. package/dist/consent/index.d.cts +1 -1
  8. package/dist/consent/index.d.ts +1 -1
  9. package/dist/content/index.d.cts +1 -1
  10. package/dist/content/index.d.ts +1 -1
  11. package/dist/deployment/index.d.cts +1 -1
  12. package/dist/deployment/index.d.ts +1 -1
  13. package/dist/index.cjs +67 -104
  14. package/dist/index.cjs.map +1 -1
  15. package/dist/index.d.cts +72 -3
  16. package/dist/index.d.ts +72 -3
  17. package/dist/index.js +67 -105
  18. package/dist/index.js.map +1 -1
  19. package/dist/mail/index.d.cts +2 -2
  20. package/dist/mail/index.d.ts +2 -2
  21. package/dist/observe/index.d.cts +1 -1
  22. package/dist/observe/index.d.ts +1 -1
  23. package/dist/organization/index.d.cts +1 -1
  24. package/dist/organization/index.d.ts +1 -1
  25. package/dist/realtime/index.d.cts +1 -1
  26. package/dist/realtime/index.d.ts +1 -1
  27. package/dist/support/index.d.cts +1 -1
  28. package/dist/support/index.d.ts +1 -1
  29. package/dist/tracking/index.d.cts +1 -1
  30. package/dist/tracking/index.d.ts +1 -1
  31. package/dist/users/index.d.cts +1 -1
  32. package/dist/users/index.d.ts +1 -1
  33. package/dist/waitlist/index.d.cts +1 -1
  34. package/dist/waitlist/index.d.ts +1 -1
  35. package/docs/recipes/sdk-usage.md +50 -0
  36. package/docs/rules.md +13 -0
  37. package/package.json +2 -7
  38. package/src/gen/bindings.gen.ts +3 -105
  39. package/src/gen/client.gen.ts +0 -52
  40. package/src/gen/manifest.gen.ts +1 -1
  41. package/src/gen/types.gen.ts +0 -220
  42. package/dist/playground/index.cjs +0 -66
  43. package/dist/playground/index.cjs.map +0 -1
  44. package/dist/playground/index.d.cts +0 -52
  45. package/dist/playground/index.d.ts +0 -52
  46. package/dist/playground/index.js +0 -53
  47. package/dist/playground/index.js.map +0 -1
  48. package/src/gen/playground/index.ts +0 -3
  49. package/src/gen/playground/queryOptions.gen.ts +0 -86
@@ -702,30 +702,6 @@ import type {
702
702
  OrganizationSupportThreadReplyOutput,
703
703
  OrganizationSupportThreadsListInput,
704
704
  OrganizationSupportThreadsListOutput,
705
- PlaygroundAnalyticsOverviewInput,
706
- PlaygroundAnalyticsOverviewOutput,
707
- PlaygroundBillingEntitlementsInput,
708
- PlaygroundBillingEntitlementsOutput,
709
- PlaygroundBillingRecordUsageInput,
710
- PlaygroundBillingRecordUsageOutput,
711
- PlaygroundClickupCreateTaskInput,
712
- PlaygroundClickupCreateTaskOutput,
713
- PlaygroundClickupGetLastWebhookInput,
714
- PlaygroundClickupGetLastWebhookOutput,
715
- PlaygroundClickupGetOverviewInput,
716
- PlaygroundClickupGetOverviewOutput,
717
- PlaygroundGdriveGetLastChangeInput,
718
- PlaygroundGdriveGetLastChangeOutput,
719
- PlaygroundGdriveReadFileInput,
720
- PlaygroundGdriveReadFileOutput,
721
- PlaygroundGoogleadsReadCustomerInput,
722
- PlaygroundGoogleadsReadCustomerOutput,
723
- PlaygroundLifecycleGetStateInput,
724
- PlaygroundLifecycleGetStateOutput,
725
- PlaygroundLifecycleListEventsInput,
726
- PlaygroundLifecycleListEventsOutput,
727
- PlaygroundWebhookGetLastInput,
728
- PlaygroundWebhookGetLastOutput,
729
705
  RealtimeArchiveExportInput,
730
706
  RealtimeArchiveExportOutput,
731
707
  RealtimeArchiveExportStatusInput,
@@ -1672,34 +1648,6 @@ export interface GeneratedClient {
1672
1648
  list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
1673
1649
  };
1674
1650
  };
1675
- playground: {
1676
- analytics: {
1677
- overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
1678
- };
1679
- billing: {
1680
- entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
1681
- 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
1682
- };
1683
- clickup: {
1684
- 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
1685
- 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
1686
- 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
1687
- };
1688
- gdrive: {
1689
- 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
1690
- 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
1691
- };
1692
- googleads: {
1693
- 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
1694
- };
1695
- lifecycle: {
1696
- 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
1697
- 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
1698
- };
1699
- webhook: {
1700
- 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
1701
- };
1702
- };
1703
1651
  realtime: {
1704
1652
  archive: {
1705
1653
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
@@ -1,2 +1,2 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
- export const namespaces = ['analytics', 'brain', 'consent', 'content', 'deployment', 'mail', 'observe', 'organization', 'playground', 'realtime', 'support', 'tracking', 'users', 'waitlist'] as const;
2
+ export const namespaces = ['analytics', 'brain', 'consent', 'content', 'deployment', 'mail', 'observe', 'organization', 'realtime', 'support', 'tracking', 'users', 'waitlist'] as const;
@@ -19764,226 +19764,6 @@ lastMessagePreview: (string | null)
19764
19764
  }[]
19765
19765
  }
19766
19766
 
19767
- export interface PlaygroundAnalyticsOverviewInput {
19768
- /**
19769
- * Max records per entity in recent[]; omit for the endpoint default
19770
- */
19771
- limit?: number
19772
- }
19773
-
19774
- export interface PlaygroundAnalyticsOverviewOutput {
19775
- ok: boolean
19776
- minted: boolean
19777
- overview?: unknown
19778
- http_status: number
19779
- }
19780
-
19781
- export interface PlaygroundBillingEntitlementsInput {
19782
-
19783
- }
19784
-
19785
- export interface PlaygroundBillingEntitlementsOutput {
19786
- ok: boolean
19787
- minted: boolean
19788
- http_status: number
19789
- entitlements?: unknown
19790
- }
19791
-
19792
- export interface PlaygroundBillingRecordUsageInput {
19793
- /**
19794
- * Quantity of events to record against playground-events (SUM); defaults to 1
19795
- */
19796
- value?: number
19797
- }
19798
-
19799
- export interface PlaygroundBillingRecordUsageOutput {
19800
- minted: boolean
19801
- accepted: (number | null)
19802
- recorded: boolean
19803
- duplicates: (number | null)
19804
- http_status: number
19805
- }
19806
-
19807
- export interface PlaygroundClickupCreateTaskInput {
19808
- /**
19809
- * Task title; defaults to a fixture label
19810
- */
19811
- name?: string
19812
- /**
19813
- * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
19814
- */
19815
- listId?: string
19816
- }
19817
-
19818
- export interface PlaygroundClickupCreateTaskOutput {
19819
- minted: boolean
19820
- task_id: (string | null)
19821
- list_status: number
19822
- vend_status: number
19823
- clickup_status: number
19824
- installation_count: number
19825
- }
19826
-
19827
- export interface PlaygroundClickupGetLastWebhookInput {
19828
-
19829
- }
19830
-
19831
- export type PlaygroundClickupGetLastWebhookOutput = ({
19832
- payload: string
19833
- event_id: string
19834
- provider: string
19835
- verified: boolean
19836
- product_id: string
19837
- occurred_at: string
19838
- connector_id: string
19839
- clickup_event: (string | null)
19840
- receipt_count: number
19841
- } | {
19842
- found: false
19843
- })
19844
-
19845
- export interface PlaygroundClickupGetOverviewInput {
19846
-
19847
- }
19848
-
19849
- export interface PlaygroundClickupGetOverviewOutput {
19850
- team: ({
19851
- teamId: string
19852
- teamName: string
19853
- } | null)
19854
- lists: PlaygroundClickupGetOverviewOutputItems[]
19855
- tasks: {
19856
- id: string
19857
- name: string
19858
- status: (string | null)
19859
- }[]
19860
- minted: boolean
19861
- spaces: PlaygroundClickupGetOverviewOutputItems[]
19862
- list_status: number
19863
- vend_status: number
19864
- lists_status: number
19865
- tasks_status: number
19866
- spaces_status: number
19867
- folders_status: number
19868
- installation_count: number
19869
- }
19870
- export interface PlaygroundClickupGetOverviewOutputItems {
19871
- id: string
19872
- name: string
19873
- }
19874
-
19875
- export interface PlaygroundGdriveGetLastChangeInput {
19876
-
19877
- }
19878
-
19879
- export type PlaygroundGdriveGetLastChangeOutput = ({
19880
- file_id: string
19881
- removed: boolean
19882
- file_name: (string | null)
19883
- mime_type: (string | null)
19884
- product_id: string
19885
- occurred_at: string
19886
- connector_id: string
19887
- resource_state: string
19888
- } | {
19889
- found: false
19890
- })
19891
-
19892
- export interface PlaygroundGdriveReadFileInput {
19893
- /**
19894
- * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
19895
- */
19896
- fileId?: string
19897
- }
19898
-
19899
- export interface PlaygroundGdriveReadFileOutput {
19900
- minted: boolean
19901
- file_id: (string | null)
19902
- file_name: (string | null)
19903
- mime_type: (string | null)
19904
- file_count: number
19905
- get_status: number
19906
- list_status: number
19907
- vend_status: number
19908
- content_bytes: (number | null)
19909
- }
19910
-
19911
- export interface PlaygroundGoogleadsReadCustomerInput {
19912
-
19913
- }
19914
-
19915
- export interface PlaygroundGoogleadsReadCustomerOutput {
19916
- minted: boolean
19917
- vended: boolean
19918
- customer_id: (string | null)
19919
- vend_status: number
19920
- result_count: number
19921
- search_status: number
19922
- login_customer_id: (string | null)
19923
- }
19924
-
19925
- export interface PlaygroundLifecycleGetStateInput {
19926
-
19927
- }
19928
-
19929
- export interface PlaygroundLifecycleGetStateOutput {
19930
- blocked: boolean
19931
- archived: boolean
19932
- productId: string
19933
- lastBlockTransition: ({
19934
- eventId: string
19935
- eventName: string
19936
- productId: string
19937
- occurredAt: string
19938
- recordedAt: string
19939
- receiptCount: number
19940
- organizationId: string
19941
- cascadedFromOrg: boolean
19942
- } | null)
19943
- lastArchiveTransition: ({
19944
- eventId: string
19945
- eventName: string
19946
- productId: string
19947
- occurredAt: string
19948
- recordedAt: string
19949
- receiptCount: number
19950
- organizationId: string
19951
- cascadedFromOrg: boolean
19952
- } | null)
19953
- }
19954
-
19955
- export interface PlaygroundLifecycleListEventsInput {
19956
-
19957
- }
19958
-
19959
- export type PlaygroundLifecycleListEventsOutput = {
19960
- eventId: string
19961
- eventName: string
19962
- productId: string
19963
- occurredAt: string
19964
- recordedAt: string
19965
- receiptCount: number
19966
- organizationId: string
19967
- cascadedFromOrg: boolean
19968
- }[]
19969
-
19970
- export interface PlaygroundWebhookGetLastInput {
19971
-
19972
- }
19973
-
19974
- export type PlaygroundWebhookGetLastOutput = ({
19975
- payload?: unknown
19976
- event_id: string
19977
- provider: string
19978
- verified: boolean
19979
- product_id: string
19980
- occurred_at: string
19981
- connector_id: string
19982
- delivery_count: number
19983
- } | {
19984
- found: false
19985
- })
19986
-
19987
19767
  export interface RealtimeArchiveExportInput {
19988
19768
  /**
19989
19769
  * Only entries with ts <= to_ts (epoch ms)
@@ -1,66 +0,0 @@
1
- 'use strict';
2
-
3
- // src/gen/playground/queryOptions.gen.ts
4
- var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
5
- queryKey: ["playground", "analytics", "overview", input],
6
- queryFn: () => sdk["playground"]["analytics"]["overview"](input)
7
- });
8
- var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
9
- queryKey: ["playground", "billing", "entitlements", input],
10
- queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
11
- });
12
- var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
13
- mutationKey: ["playground", "billing", "record-usage"],
14
- mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
15
- });
16
- var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
17
- mutationKey: ["playground", "clickup", "create-task"],
18
- mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
19
- });
20
- var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
21
- queryKey: ["playground", "clickup", "get-last-webhook", input],
22
- queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
23
- });
24
- var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
25
- queryKey: ["playground", "clickup", "get-overview", input],
26
- queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
27
- });
28
- var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
29
- queryKey: ["playground", "gdrive", "get-last-change", input],
30
- queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
31
- });
32
- var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
33
- queryKey: ["playground", "gdrive", "read-file", input],
34
- queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
35
- });
36
- var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
37
- queryKey: ["playground", "googleads", "read-customer", input],
38
- queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
39
- });
40
- var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
41
- queryKey: ["playground", "lifecycle", "get-state", input],
42
- queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
43
- });
44
- var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
45
- queryKey: ["playground", "lifecycle", "list-events", input],
46
- queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
47
- });
48
- var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
49
- queryKey: ["playground", "webhook", "get-last", input],
50
- queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
51
- });
52
-
53
- exports.playgroundAnalyticsOverviewQueryOptions = playgroundAnalyticsOverviewQueryOptions;
54
- exports.playgroundBillingEntitlementsQueryOptions = playgroundBillingEntitlementsQueryOptions;
55
- exports.playgroundBillingRecordUsageMutationOptions = playgroundBillingRecordUsageMutationOptions;
56
- exports.playgroundClickupCreateTaskMutationOptions = playgroundClickupCreateTaskMutationOptions;
57
- exports.playgroundClickupGetLastWebhookQueryOptions = playgroundClickupGetLastWebhookQueryOptions;
58
- exports.playgroundClickupGetOverviewQueryOptions = playgroundClickupGetOverviewQueryOptions;
59
- exports.playgroundGdriveGetLastChangeQueryOptions = playgroundGdriveGetLastChangeQueryOptions;
60
- exports.playgroundGdriveReadFileQueryOptions = playgroundGdriveReadFileQueryOptions;
61
- exports.playgroundGoogleadsReadCustomerQueryOptions = playgroundGoogleadsReadCustomerQueryOptions;
62
- exports.playgroundLifecycleGetStateQueryOptions = playgroundLifecycleGetStateQueryOptions;
63
- exports.playgroundLifecycleListEventsQueryOptions = playgroundLifecycleListEventsQueryOptions;
64
- exports.playgroundWebhookGetLastQueryOptions = playgroundWebhookGetLastQueryOptions;
65
- //# sourceMappingURL=index.cjs.map
66
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/gen/playground/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n"]}
@@ -1,52 +0,0 @@
1
- import { G as GeneratedClient, kc as PlaygroundAnalyticsOverviewInput, kd as PlaygroundAnalyticsOverviewOutput, ke as PlaygroundBillingEntitlementsInput, kf as PlaygroundBillingEntitlementsOutput, kg as PlaygroundBillingRecordUsageInput, kh as PlaygroundBillingRecordUsageOutput, ki as PlaygroundClickupCreateTaskInput, kj as PlaygroundClickupCreateTaskOutput, kk as PlaygroundClickupGetLastWebhookInput, kl as PlaygroundClickupGetLastWebhookOutput, km as PlaygroundClickupGetOverviewInput, kn as PlaygroundClickupGetOverviewOutput, ko as PlaygroundGdriveGetLastChangeInput, kp as PlaygroundGdriveGetLastChangeOutput, kq as PlaygroundGdriveReadFileInput, kr as PlaygroundGdriveReadFileOutput, ks as PlaygroundGoogleadsReadCustomerInput, kt as PlaygroundGoogleadsReadCustomerOutput, ku as PlaygroundLifecycleGetStateInput, kv as PlaygroundLifecycleGetStateOutput, kw as PlaygroundLifecycleListEventsInput, kx as PlaygroundLifecycleListEventsOutput, ky as PlaygroundWebhookGetLastInput, kz as PlaygroundWebhookGetLastOutput } from '../client.gen-DqvpKriz.cjs';
2
-
3
- declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
4
- queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
5
- queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
6
- };
7
- declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
8
- queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
9
- queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
10
- };
11
- declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
12
- mutationKey: string[];
13
- mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<PlaygroundBillingRecordUsageOutput>;
14
- };
15
- declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
16
- mutationKey: string[];
17
- mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<PlaygroundClickupCreateTaskOutput>;
18
- };
19
- declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
20
- queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
21
- queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
22
- };
23
- declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
24
- queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
25
- queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
26
- };
27
- declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
28
- queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
29
- queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
30
- };
31
- declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
32
- queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
33
- queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
34
- };
35
- declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
36
- queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
37
- queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
38
- };
39
- declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
40
- queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
41
- queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
42
- };
43
- declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
44
- queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
45
- queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
46
- };
47
- declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
48
- queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
49
- queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
50
- };
51
-
52
- export { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
@@ -1,52 +0,0 @@
1
- import { G as GeneratedClient, kc as PlaygroundAnalyticsOverviewInput, kd as PlaygroundAnalyticsOverviewOutput, ke as PlaygroundBillingEntitlementsInput, kf as PlaygroundBillingEntitlementsOutput, kg as PlaygroundBillingRecordUsageInput, kh as PlaygroundBillingRecordUsageOutput, ki as PlaygroundClickupCreateTaskInput, kj as PlaygroundClickupCreateTaskOutput, kk as PlaygroundClickupGetLastWebhookInput, kl as PlaygroundClickupGetLastWebhookOutput, km as PlaygroundClickupGetOverviewInput, kn as PlaygroundClickupGetOverviewOutput, ko as PlaygroundGdriveGetLastChangeInput, kp as PlaygroundGdriveGetLastChangeOutput, kq as PlaygroundGdriveReadFileInput, kr as PlaygroundGdriveReadFileOutput, ks as PlaygroundGoogleadsReadCustomerInput, kt as PlaygroundGoogleadsReadCustomerOutput, ku as PlaygroundLifecycleGetStateInput, kv as PlaygroundLifecycleGetStateOutput, kw as PlaygroundLifecycleListEventsInput, kx as PlaygroundLifecycleListEventsOutput, ky as PlaygroundWebhookGetLastInput, kz as PlaygroundWebhookGetLastOutput } from '../client.gen-DqvpKriz.js';
2
-
3
- declare const playgroundAnalyticsOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => {
4
- queryKey: readonly ["playground", "analytics", "overview", PlaygroundAnalyticsOverviewInput];
5
- queryFn: () => Promise<PlaygroundAnalyticsOverviewOutput>;
6
- };
7
- declare const playgroundBillingEntitlementsQueryOptions: (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => {
8
- queryKey: readonly ["playground", "billing", "entitlements", PlaygroundBillingEntitlementsInput];
9
- queryFn: () => Promise<PlaygroundBillingEntitlementsOutput>;
10
- };
11
- declare const playgroundBillingRecordUsageMutationOptions: (sdk: GeneratedClient) => {
12
- mutationKey: string[];
13
- mutationFn: (input: PlaygroundBillingRecordUsageInput) => Promise<PlaygroundBillingRecordUsageOutput>;
14
- };
15
- declare const playgroundClickupCreateTaskMutationOptions: (sdk: GeneratedClient) => {
16
- mutationKey: string[];
17
- mutationFn: (input: PlaygroundClickupCreateTaskInput) => Promise<PlaygroundClickupCreateTaskOutput>;
18
- };
19
- declare const playgroundClickupGetLastWebhookQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => {
20
- queryKey: readonly ["playground", "clickup", "get-last-webhook", PlaygroundClickupGetLastWebhookInput];
21
- queryFn: () => Promise<PlaygroundClickupGetLastWebhookOutput>;
22
- };
23
- declare const playgroundClickupGetOverviewQueryOptions: (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => {
24
- queryKey: readonly ["playground", "clickup", "get-overview", PlaygroundClickupGetOverviewInput];
25
- queryFn: () => Promise<PlaygroundClickupGetOverviewOutput>;
26
- };
27
- declare const playgroundGdriveGetLastChangeQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => {
28
- queryKey: readonly ["playground", "gdrive", "get-last-change", PlaygroundGdriveGetLastChangeInput];
29
- queryFn: () => Promise<PlaygroundGdriveGetLastChangeOutput>;
30
- };
31
- declare const playgroundGdriveReadFileQueryOptions: (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => {
32
- queryKey: readonly ["playground", "gdrive", "read-file", PlaygroundGdriveReadFileInput];
33
- queryFn: () => Promise<PlaygroundGdriveReadFileOutput>;
34
- };
35
- declare const playgroundGoogleadsReadCustomerQueryOptions: (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => {
36
- queryKey: readonly ["playground", "googleads", "read-customer", PlaygroundGoogleadsReadCustomerInput];
37
- queryFn: () => Promise<PlaygroundGoogleadsReadCustomerOutput>;
38
- };
39
- declare const playgroundLifecycleGetStateQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => {
40
- queryKey: readonly ["playground", "lifecycle", "get-state", PlaygroundLifecycleGetStateInput];
41
- queryFn: () => Promise<PlaygroundLifecycleGetStateOutput>;
42
- };
43
- declare const playgroundLifecycleListEventsQueryOptions: (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => {
44
- queryKey: readonly ["playground", "lifecycle", "list-events", PlaygroundLifecycleListEventsInput];
45
- queryFn: () => Promise<PlaygroundLifecycleListEventsOutput>;
46
- };
47
- declare const playgroundWebhookGetLastQueryOptions: (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => {
48
- queryKey: readonly ["playground", "webhook", "get-last", PlaygroundWebhookGetLastInput];
49
- queryFn: () => Promise<PlaygroundWebhookGetLastOutput>;
50
- };
51
-
52
- export { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput, playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
@@ -1,53 +0,0 @@
1
- // src/gen/playground/queryOptions.gen.ts
2
- var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
3
- queryKey: ["playground", "analytics", "overview", input],
4
- queryFn: () => sdk["playground"]["analytics"]["overview"](input)
5
- });
6
- var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
7
- queryKey: ["playground", "billing", "entitlements", input],
8
- queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
9
- });
10
- var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
11
- mutationKey: ["playground", "billing", "record-usage"],
12
- mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
13
- });
14
- var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
15
- mutationKey: ["playground", "clickup", "create-task"],
16
- mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
17
- });
18
- var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
19
- queryKey: ["playground", "clickup", "get-last-webhook", input],
20
- queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
21
- });
22
- var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
23
- queryKey: ["playground", "clickup", "get-overview", input],
24
- queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
25
- });
26
- var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
27
- queryKey: ["playground", "gdrive", "get-last-change", input],
28
- queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
29
- });
30
- var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
31
- queryKey: ["playground", "gdrive", "read-file", input],
32
- queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
33
- });
34
- var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
35
- queryKey: ["playground", "googleads", "read-customer", input],
36
- queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
37
- });
38
- var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
39
- queryKey: ["playground", "lifecycle", "get-state", input],
40
- queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
41
- });
42
- var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
43
- queryKey: ["playground", "lifecycle", "list-events", input],
44
- queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
45
- });
46
- var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
47
- queryKey: ["playground", "webhook", "get-last", input],
48
- queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
49
- });
50
-
51
- export { playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions };
52
- //# sourceMappingURL=index.js.map
53
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/gen/playground/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n"]}
@@ -1,3 +0,0 @@
1
- // AUTOGENERATED by scripts/generate.ts — do not edit.
2
- export * from './queryOptions.gen';
3
- export type { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput } from '../types.gen';