@lessly/sdk-app 8.0.0 → 8.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/dist/brain/index.cjs +10 -0
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +10 -2
- package/dist/brain/index.d.ts +10 -2
- package/dist/brain/index.js +9 -1
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-t1yMTANn.d.cts → client.gen-Bwk8slzV.d.cts} +110 -257
- package/dist/{client.gen-t1yMTANn.d.ts → client.gen-Bwk8slzV.d.ts} +110 -257
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +40 -119
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +40 -119
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +2 -12
- package/src/gen/bindings.gen.ts +40 -119
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +14 -0
- package/src/gen/client.gen.ts +8 -59
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/types.gen.ts +109 -257
- package/dist/analytics/index.cjs +0 -11
- package/dist/analytics/index.cjs.map +0 -1
- package/dist/analytics/index.d.cts +0 -8
- package/dist/analytics/index.d.ts +0 -8
- package/dist/analytics/index.js +0 -9
- package/dist/analytics/index.js.map +0 -1
- package/dist/playground/index.cjs +0 -66
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -52
- package/dist/playground/index.d.ts +0 -52
- package/dist/playground/index.js +0 -53
- package/dist/playground/index.js.map +0 -1
- package/src/gen/analytics/index.ts +0 -3
- package/src/gen/analytics/queryOptions.gen.ts +0 -11
- package/src/gen/playground/index.ts +0 -3
- package/src/gen/playground/queryOptions.gen.ts +0 -86
package/src/gen/types.gen.ts
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
2
|
|
|
3
|
-
export interface AnalyticsQueryRunInput {
|
|
4
|
-
/**
|
|
5
|
-
* Natural-language analytics question
|
|
6
|
-
*/
|
|
7
|
-
q: string
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface AnalyticsQueryRunOutput {
|
|
11
|
-
sql: string
|
|
12
|
-
rows: {
|
|
13
|
-
[k: string]: unknown
|
|
14
|
-
}[]
|
|
15
|
-
answer: string
|
|
16
|
-
truncated: boolean
|
|
17
|
-
explanation: string
|
|
18
|
-
}
|
|
19
|
-
|
|
20
3
|
export interface BrainBackupCreateInput {
|
|
21
4
|
|
|
22
5
|
}
|
|
@@ -56,15 +39,9 @@ snapshotId?: string
|
|
|
56
39
|
export type BrainBackupStatusOutput = ({
|
|
57
40
|
id: string
|
|
58
41
|
error: (string | null)
|
|
59
|
-
|
|
60
|
-
* 'running' | 'completed' | 'failed'
|
|
61
|
-
*/
|
|
62
|
-
status: string
|
|
42
|
+
status: ("running" | "completed" | "failed")
|
|
63
43
|
gcsPath: string
|
|
64
|
-
|
|
65
|
-
* 'scheduled' | 'manual' | 'pre-restore'
|
|
66
|
-
*/
|
|
67
|
-
trigger: string
|
|
44
|
+
trigger: ("scheduled" | "manual" | "pre-restore")
|
|
68
45
|
createdAt: string
|
|
69
46
|
edgeCount: (number | null)
|
|
70
47
|
nodeCount: (number | null)
|
|
@@ -83,15 +60,9 @@ export interface BrainBackupsListInput {
|
|
|
83
60
|
export type BrainBackupsListOutput = {
|
|
84
61
|
id: string
|
|
85
62
|
error: (string | null)
|
|
86
|
-
|
|
87
|
-
* 'running' | 'completed' | 'failed'
|
|
88
|
-
*/
|
|
89
|
-
status: string
|
|
63
|
+
status: ("running" | "completed" | "failed")
|
|
90
64
|
gcsPath: string
|
|
91
|
-
|
|
92
|
-
* 'scheduled' | 'manual' | 'pre-restore'
|
|
93
|
-
*/
|
|
94
|
-
trigger: string
|
|
65
|
+
trigger: ("scheduled" | "manual" | "pre-restore")
|
|
95
66
|
createdAt: string
|
|
96
67
|
edgeCount: (number | null)
|
|
97
68
|
nodeCount: (number | null)
|
|
@@ -548,6 +519,107 @@ mimeType: string
|
|
|
548
519
|
}[]
|
|
549
520
|
}[]
|
|
550
521
|
|
|
522
|
+
export interface BrainKnowledgeEntityMemoriesInput {
|
|
523
|
+
/**
|
|
524
|
+
* Max memories (default 50)
|
|
525
|
+
*/
|
|
526
|
+
limit?: number
|
|
527
|
+
/**
|
|
528
|
+
* Read scope; 'both' (default) unions shared + your private
|
|
529
|
+
*/
|
|
530
|
+
scope?: ("shared" | "private" | "both")
|
|
531
|
+
/**
|
|
532
|
+
* Pagination offset
|
|
533
|
+
*/
|
|
534
|
+
offset?: number
|
|
535
|
+
/**
|
|
536
|
+
* Entity id, name, or alias to fetch backing memories for
|
|
537
|
+
*/
|
|
538
|
+
entity_ref: string
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
export interface BrainKnowledgeEntityMemoriesOutput {
|
|
542
|
+
total: number
|
|
543
|
+
entity: ({
|
|
544
|
+
score?: number
|
|
545
|
+
aliases: string[]
|
|
546
|
+
entity_id: string
|
|
547
|
+
description: (string | null)
|
|
548
|
+
entity_type: string
|
|
549
|
+
display_name: string
|
|
550
|
+
canonical_name: string
|
|
551
|
+
evidence_count: number
|
|
552
|
+
} | null)
|
|
553
|
+
memories: {
|
|
554
|
+
/**
|
|
555
|
+
* Consumer-facing label derived from the layer; 'unknown' for an unrecognised layer
|
|
556
|
+
*/
|
|
557
|
+
kind: ("schema" | "intention" | "identity" | "basic" | "fact" | "summary" | "knowledge" | "raw" | "unknown")
|
|
558
|
+
tags: string[]
|
|
559
|
+
/**
|
|
560
|
+
* Engine memory layer (l0_basic_info…l7_intention)
|
|
561
|
+
*/
|
|
562
|
+
layer: ("l6_schema" | "l7_intention" | "l4_identity" | "l0_basic_info" | "l2_fact" | "l3_summary" | "l5_knowledge" | "l1_raw")
|
|
563
|
+
custom: {
|
|
564
|
+
[k: string]: unknown
|
|
565
|
+
}
|
|
566
|
+
status: string
|
|
567
|
+
content: string
|
|
568
|
+
user_id: string
|
|
569
|
+
agent_id: string
|
|
570
|
+
memory_at: (number | null)
|
|
571
|
+
memory_id: string
|
|
572
|
+
speculate: (string | null)
|
|
573
|
+
session_id: string
|
|
574
|
+
gmt_created: number
|
|
575
|
+
/**
|
|
576
|
+
* Source authority (highest→lowest): policy > official > team > informal
|
|
577
|
+
*/
|
|
578
|
+
source_authority: ("policy" | "official" | "team" | "informal")
|
|
579
|
+
source_raw_memory_id: (string | null)
|
|
580
|
+
}[]
|
|
581
|
+
elapsed_ms: number
|
|
582
|
+
request_id: string
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
export interface BrainKnowledgeGraphInput {
|
|
586
|
+
/**
|
|
587
|
+
* Max nodes (default 5000). When the cap applies the HIGHEST-DEGREE nodes are kept, so a small limit (e.g. 100) returns the hub concepts — that is usually what you want
|
|
588
|
+
*/
|
|
589
|
+
limit?: number
|
|
590
|
+
/**
|
|
591
|
+
* Read scope; 'both' (default) unions shared + your private
|
|
592
|
+
*/
|
|
593
|
+
scope?: ("shared" | "private" | "both")
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export interface BrainKnowledgeGraphOutput {
|
|
597
|
+
edges: {
|
|
598
|
+
reason: (string | null)
|
|
599
|
+
source: string
|
|
600
|
+
target: string
|
|
601
|
+
symmetric: boolean
|
|
602
|
+
relation_type: string
|
|
603
|
+
}[]
|
|
604
|
+
nodes: {
|
|
605
|
+
id: string
|
|
606
|
+
degree: number
|
|
607
|
+
aliases: string[]
|
|
608
|
+
description: (string | null)
|
|
609
|
+
entity_type: string
|
|
610
|
+
display_name: string
|
|
611
|
+
canonical_name: string
|
|
612
|
+
evidence_count: number
|
|
613
|
+
}[]
|
|
614
|
+
totals: {
|
|
615
|
+
edgeCount: number
|
|
616
|
+
nodeCount: number
|
|
617
|
+
}
|
|
618
|
+
truncated: boolean
|
|
619
|
+
elapsed_ms: number
|
|
620
|
+
request_id: string
|
|
621
|
+
}
|
|
622
|
+
|
|
551
623
|
export interface BrainKnowledgeNeighborhoodInput {
|
|
552
624
|
/**
|
|
553
625
|
* Hops to expand (engine clamps to 3)
|
|
@@ -928,10 +1000,7 @@ restoreId: string
|
|
|
928
1000
|
|
|
929
1001
|
export type BrainRestoreStatusOutput = ({
|
|
930
1002
|
error: (string | null)
|
|
931
|
-
|
|
932
|
-
* 'pending' | 'wiped' | 'importing' | 'completed' | 'failed'
|
|
933
|
-
*/
|
|
934
|
-
status: string
|
|
1003
|
+
status: ("pending" | "wiped" | "importing" | "completed" | "failed")
|
|
935
1004
|
edgeCount: (number | null)
|
|
936
1005
|
nodeCount: (number | null)
|
|
937
1006
|
productId: string
|
|
@@ -12968,6 +13037,7 @@ id: string
|
|
|
12968
13037
|
name: string
|
|
12969
13038
|
role: string
|
|
12970
13039
|
slug: string
|
|
13040
|
+
demoAt: (string | null)
|
|
12971
13041
|
status: string
|
|
12972
13042
|
blockedAt: (string | null)
|
|
12973
13043
|
createdAt: string
|
|
@@ -12985,6 +13055,7 @@ id: string
|
|
|
12985
13055
|
name: string
|
|
12986
13056
|
role: string
|
|
12987
13057
|
slug: string
|
|
13058
|
+
demoAt: (string | null)
|
|
12988
13059
|
status: string
|
|
12989
13060
|
blockedAt: (string | null)
|
|
12990
13061
|
createdAt: string
|
|
@@ -13016,6 +13087,7 @@ id: string
|
|
|
13016
13087
|
name: string
|
|
13017
13088
|
role: string
|
|
13018
13089
|
slug: string
|
|
13090
|
+
demoAt: (string | null)
|
|
13019
13091
|
status: string
|
|
13020
13092
|
blockedAt: (string | null)
|
|
13021
13093
|
createdAt: string
|
|
@@ -13185,226 +13257,6 @@ name: string
|
|
|
13185
13257
|
activeProductId: (string | null)
|
|
13186
13258
|
}
|
|
13187
13259
|
|
|
13188
|
-
export interface PlaygroundAnalyticsOverviewInput {
|
|
13189
|
-
/**
|
|
13190
|
-
* Max records per entity in recent[]; omit for the endpoint default
|
|
13191
|
-
*/
|
|
13192
|
-
limit?: number
|
|
13193
|
-
}
|
|
13194
|
-
|
|
13195
|
-
export interface PlaygroundAnalyticsOverviewOutput {
|
|
13196
|
-
ok: boolean
|
|
13197
|
-
minted: boolean
|
|
13198
|
-
overview?: unknown
|
|
13199
|
-
http_status: number
|
|
13200
|
-
}
|
|
13201
|
-
|
|
13202
|
-
export interface PlaygroundBillingEntitlementsInput {
|
|
13203
|
-
|
|
13204
|
-
}
|
|
13205
|
-
|
|
13206
|
-
export interface PlaygroundBillingEntitlementsOutput {
|
|
13207
|
-
ok: boolean
|
|
13208
|
-
minted: boolean
|
|
13209
|
-
http_status: number
|
|
13210
|
-
entitlements?: unknown
|
|
13211
|
-
}
|
|
13212
|
-
|
|
13213
|
-
export interface PlaygroundBillingRecordUsageInput {
|
|
13214
|
-
/**
|
|
13215
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
13216
|
-
*/
|
|
13217
|
-
value?: number
|
|
13218
|
-
}
|
|
13219
|
-
|
|
13220
|
-
export interface PlaygroundBillingRecordUsageOutput {
|
|
13221
|
-
minted: boolean
|
|
13222
|
-
accepted: (number | null)
|
|
13223
|
-
recorded: boolean
|
|
13224
|
-
duplicates: (number | null)
|
|
13225
|
-
http_status: number
|
|
13226
|
-
}
|
|
13227
|
-
|
|
13228
|
-
export interface PlaygroundClickupCreateTaskInput {
|
|
13229
|
-
/**
|
|
13230
|
-
* Task title; defaults to a fixture label
|
|
13231
|
-
*/
|
|
13232
|
-
name?: string
|
|
13233
|
-
/**
|
|
13234
|
-
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
13235
|
-
*/
|
|
13236
|
-
listId?: string
|
|
13237
|
-
}
|
|
13238
|
-
|
|
13239
|
-
export interface PlaygroundClickupCreateTaskOutput {
|
|
13240
|
-
minted: boolean
|
|
13241
|
-
task_id: (string | null)
|
|
13242
|
-
list_status: number
|
|
13243
|
-
vend_status: number
|
|
13244
|
-
clickup_status: number
|
|
13245
|
-
installation_count: number
|
|
13246
|
-
}
|
|
13247
|
-
|
|
13248
|
-
export interface PlaygroundClickupGetLastWebhookInput {
|
|
13249
|
-
|
|
13250
|
-
}
|
|
13251
|
-
|
|
13252
|
-
export type PlaygroundClickupGetLastWebhookOutput = ({
|
|
13253
|
-
payload: string
|
|
13254
|
-
event_id: string
|
|
13255
|
-
provider: string
|
|
13256
|
-
verified: boolean
|
|
13257
|
-
product_id: string
|
|
13258
|
-
occurred_at: string
|
|
13259
|
-
connector_id: string
|
|
13260
|
-
clickup_event: (string | null)
|
|
13261
|
-
receipt_count: number
|
|
13262
|
-
} | {
|
|
13263
|
-
found: false
|
|
13264
|
-
})
|
|
13265
|
-
|
|
13266
|
-
export interface PlaygroundClickupGetOverviewInput {
|
|
13267
|
-
|
|
13268
|
-
}
|
|
13269
|
-
|
|
13270
|
-
export interface PlaygroundClickupGetOverviewOutput {
|
|
13271
|
-
team: ({
|
|
13272
|
-
teamId: string
|
|
13273
|
-
teamName: string
|
|
13274
|
-
} | null)
|
|
13275
|
-
lists: PlaygroundClickupGetOverviewOutputItems[]
|
|
13276
|
-
tasks: {
|
|
13277
|
-
id: string
|
|
13278
|
-
name: string
|
|
13279
|
-
status: (string | null)
|
|
13280
|
-
}[]
|
|
13281
|
-
minted: boolean
|
|
13282
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[]
|
|
13283
|
-
list_status: number
|
|
13284
|
-
vend_status: number
|
|
13285
|
-
lists_status: number
|
|
13286
|
-
tasks_status: number
|
|
13287
|
-
spaces_status: number
|
|
13288
|
-
folders_status: number
|
|
13289
|
-
installation_count: number
|
|
13290
|
-
}
|
|
13291
|
-
export interface PlaygroundClickupGetOverviewOutputItems {
|
|
13292
|
-
id: string
|
|
13293
|
-
name: string
|
|
13294
|
-
}
|
|
13295
|
-
|
|
13296
|
-
export interface PlaygroundGdriveGetLastChangeInput {
|
|
13297
|
-
|
|
13298
|
-
}
|
|
13299
|
-
|
|
13300
|
-
export type PlaygroundGdriveGetLastChangeOutput = ({
|
|
13301
|
-
file_id: string
|
|
13302
|
-
removed: boolean
|
|
13303
|
-
file_name: (string | null)
|
|
13304
|
-
mime_type: (string | null)
|
|
13305
|
-
product_id: string
|
|
13306
|
-
occurred_at: string
|
|
13307
|
-
connector_id: string
|
|
13308
|
-
resource_state: string
|
|
13309
|
-
} | {
|
|
13310
|
-
found: false
|
|
13311
|
-
})
|
|
13312
|
-
|
|
13313
|
-
export interface PlaygroundGdriveReadFileInput {
|
|
13314
|
-
/**
|
|
13315
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
13316
|
-
*/
|
|
13317
|
-
fileId?: string
|
|
13318
|
-
}
|
|
13319
|
-
|
|
13320
|
-
export interface PlaygroundGdriveReadFileOutput {
|
|
13321
|
-
minted: boolean
|
|
13322
|
-
file_id: (string | null)
|
|
13323
|
-
file_name: (string | null)
|
|
13324
|
-
mime_type: (string | null)
|
|
13325
|
-
file_count: number
|
|
13326
|
-
get_status: number
|
|
13327
|
-
list_status: number
|
|
13328
|
-
vend_status: number
|
|
13329
|
-
content_bytes: (number | null)
|
|
13330
|
-
}
|
|
13331
|
-
|
|
13332
|
-
export interface PlaygroundGoogleadsReadCustomerInput {
|
|
13333
|
-
|
|
13334
|
-
}
|
|
13335
|
-
|
|
13336
|
-
export interface PlaygroundGoogleadsReadCustomerOutput {
|
|
13337
|
-
minted: boolean
|
|
13338
|
-
vended: boolean
|
|
13339
|
-
customer_id: (string | null)
|
|
13340
|
-
vend_status: number
|
|
13341
|
-
result_count: number
|
|
13342
|
-
search_status: number
|
|
13343
|
-
login_customer_id: (string | null)
|
|
13344
|
-
}
|
|
13345
|
-
|
|
13346
|
-
export interface PlaygroundLifecycleGetStateInput {
|
|
13347
|
-
|
|
13348
|
-
}
|
|
13349
|
-
|
|
13350
|
-
export interface PlaygroundLifecycleGetStateOutput {
|
|
13351
|
-
blocked: boolean
|
|
13352
|
-
archived: boolean
|
|
13353
|
-
productId: string
|
|
13354
|
-
lastBlockTransition: ({
|
|
13355
|
-
eventId: string
|
|
13356
|
-
eventName: string
|
|
13357
|
-
productId: string
|
|
13358
|
-
occurredAt: string
|
|
13359
|
-
recordedAt: string
|
|
13360
|
-
receiptCount: number
|
|
13361
|
-
organizationId: string
|
|
13362
|
-
cascadedFromOrg: boolean
|
|
13363
|
-
} | null)
|
|
13364
|
-
lastArchiveTransition: ({
|
|
13365
|
-
eventId: string
|
|
13366
|
-
eventName: string
|
|
13367
|
-
productId: string
|
|
13368
|
-
occurredAt: string
|
|
13369
|
-
recordedAt: string
|
|
13370
|
-
receiptCount: number
|
|
13371
|
-
organizationId: string
|
|
13372
|
-
cascadedFromOrg: boolean
|
|
13373
|
-
} | null)
|
|
13374
|
-
}
|
|
13375
|
-
|
|
13376
|
-
export interface PlaygroundLifecycleListEventsInput {
|
|
13377
|
-
|
|
13378
|
-
}
|
|
13379
|
-
|
|
13380
|
-
export type PlaygroundLifecycleListEventsOutput = {
|
|
13381
|
-
eventId: string
|
|
13382
|
-
eventName: string
|
|
13383
|
-
productId: string
|
|
13384
|
-
occurredAt: string
|
|
13385
|
-
recordedAt: string
|
|
13386
|
-
receiptCount: number
|
|
13387
|
-
organizationId: string
|
|
13388
|
-
cascadedFromOrg: boolean
|
|
13389
|
-
}[]
|
|
13390
|
-
|
|
13391
|
-
export interface PlaygroundWebhookGetLastInput {
|
|
13392
|
-
|
|
13393
|
-
}
|
|
13394
|
-
|
|
13395
|
-
export type PlaygroundWebhookGetLastOutput = ({
|
|
13396
|
-
payload?: unknown
|
|
13397
|
-
event_id: string
|
|
13398
|
-
provider: string
|
|
13399
|
-
verified: boolean
|
|
13400
|
-
product_id: string
|
|
13401
|
-
occurred_at: string
|
|
13402
|
-
connector_id: string
|
|
13403
|
-
delivery_count: number
|
|
13404
|
-
} | {
|
|
13405
|
-
found: false
|
|
13406
|
-
})
|
|
13407
|
-
|
|
13408
13260
|
export interface TrackingApiKeysCreateInput {
|
|
13409
13261
|
name: string
|
|
13410
13262
|
}
|
package/dist/analytics/index.cjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
// src/gen/analytics/queryOptions.gen.ts
|
|
4
|
-
var analyticsQueryRunQueryOptions = (sdk, input) => ({
|
|
5
|
-
queryKey: ["analytics", "query", "run", input],
|
|
6
|
-
queryFn: () => sdk["analytics"]["query"]["run"](input)
|
|
7
|
-
});
|
|
8
|
-
|
|
9
|
-
exports.analyticsQueryRunQueryOptions = analyticsQueryRunQueryOptions;
|
|
10
|
-
//# sourceMappingURL=index.cjs.map
|
|
11
|
-
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/analytics/queryOptions.gen.ts"],"names":[],"mappings":";;;AAOO,IAAM,6BAAA,GAAgC,CAAC,GAAA,EAAsB,KAAA,MAAmC;AAAA,EACrG,QAAA,EAAU,CAAC,WAAA,EAAa,OAAA,EAAS,OAAO,KAAK,CAAA;AAAA,EAC7C,OAAA,EAAS,MAAM,GAAA,CAAI,WAAW,EAAE,OAAO,CAAA,CAAE,KAAK,CAAA,CAAE,KAAK;AACvD,CAAA","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n AnalyticsQueryRunInput,\n AnalyticsQueryRunOutput,\n} from '../types.gen';\n\nexport const analyticsQueryRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => ({\n queryKey: ['analytics', 'query', 'run', input] as const,\n queryFn: () => sdk['analytics']['query']['run'](input),\n});\n"]}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { G as GeneratedClient, A as AnalyticsQueryRunInput, a as AnalyticsQueryRunOutput } from '../client.gen-t1yMTANn.cjs';
|
|
2
|
-
|
|
3
|
-
declare const analyticsQueryRunQueryOptions: (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => {
|
|
4
|
-
queryKey: readonly ["analytics", "query", "run", AnalyticsQueryRunInput];
|
|
5
|
-
queryFn: () => Promise<AnalyticsQueryRunOutput>;
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
export { AnalyticsQueryRunInput, AnalyticsQueryRunOutput, analyticsQueryRunQueryOptions };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { G as GeneratedClient, A as AnalyticsQueryRunInput, a as AnalyticsQueryRunOutput } from '../client.gen-t1yMTANn.js';
|
|
2
|
-
|
|
3
|
-
declare const analyticsQueryRunQueryOptions: (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => {
|
|
4
|
-
queryKey: readonly ["analytics", "query", "run", AnalyticsQueryRunInput];
|
|
5
|
-
queryFn: () => Promise<AnalyticsQueryRunOutput>;
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
export { AnalyticsQueryRunInput, AnalyticsQueryRunOutput, analyticsQueryRunQueryOptions };
|
package/dist/analytics/index.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
// src/gen/analytics/queryOptions.gen.ts
|
|
2
|
-
var analyticsQueryRunQueryOptions = (sdk, input) => ({
|
|
3
|
-
queryKey: ["analytics", "query", "run", input],
|
|
4
|
-
queryFn: () => sdk["analytics"]["query"]["run"](input)
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
export { analyticsQueryRunQueryOptions };
|
|
8
|
-
//# sourceMappingURL=index.js.map
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/analytics/queryOptions.gen.ts"],"names":[],"mappings":";AAOO,IAAM,6BAAA,GAAgC,CAAC,GAAA,EAAsB,KAAA,MAAmC;AAAA,EACrG,QAAA,EAAU,CAAC,WAAA,EAAa,OAAA,EAAS,OAAO,KAAK,CAAA;AAAA,EAC7C,OAAA,EAAS,MAAM,GAAA,CAAI,WAAW,EAAE,OAAO,CAAA,CAAE,KAAK,CAAA,CAAE,KAAK;AACvD,CAAA","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n AnalyticsQueryRunInput,\n AnalyticsQueryRunOutput,\n} from '../types.gen';\n\nexport const analyticsQueryRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => ({\n queryKey: ['analytics', 'query', 'run', input] as const,\n queryFn: () => sdk['analytics']['query']['run'](input),\n});\n"]}
|
|
@@ -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, hC as PlaygroundAnalyticsOverviewInput, hD as PlaygroundAnalyticsOverviewOutput, hE as PlaygroundBillingEntitlementsInput, hF as PlaygroundBillingEntitlementsOutput, hG as PlaygroundBillingRecordUsageInput, hH as PlaygroundBillingRecordUsageOutput, hI as PlaygroundClickupCreateTaskInput, hJ as PlaygroundClickupCreateTaskOutput, hK as PlaygroundClickupGetLastWebhookInput, hL as PlaygroundClickupGetLastWebhookOutput, hM as PlaygroundClickupGetOverviewInput, hN as PlaygroundClickupGetOverviewOutput, hO as PlaygroundGdriveGetLastChangeInput, hP as PlaygroundGdriveGetLastChangeOutput, hQ as PlaygroundGdriveReadFileInput, hR as PlaygroundGdriveReadFileOutput, hS as PlaygroundGoogleadsReadCustomerInput, hT as PlaygroundGoogleadsReadCustomerOutput, hU as PlaygroundLifecycleGetStateInput, hV as PlaygroundLifecycleGetStateOutput, hW as PlaygroundLifecycleListEventsInput, hX as PlaygroundLifecycleListEventsOutput, hY as PlaygroundWebhookGetLastInput, hZ as PlaygroundWebhookGetLastOutput } from '../client.gen-t1yMTANn.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, hC as PlaygroundAnalyticsOverviewInput, hD as PlaygroundAnalyticsOverviewOutput, hE as PlaygroundBillingEntitlementsInput, hF as PlaygroundBillingEntitlementsOutput, hG as PlaygroundBillingRecordUsageInput, hH as PlaygroundBillingRecordUsageOutput, hI as PlaygroundClickupCreateTaskInput, hJ as PlaygroundClickupCreateTaskOutput, hK as PlaygroundClickupGetLastWebhookInput, hL as PlaygroundClickupGetLastWebhookOutput, hM as PlaygroundClickupGetOverviewInput, hN as PlaygroundClickupGetOverviewOutput, hO as PlaygroundGdriveGetLastChangeInput, hP as PlaygroundGdriveGetLastChangeOutput, hQ as PlaygroundGdriveReadFileInput, hR as PlaygroundGdriveReadFileOutput, hS as PlaygroundGoogleadsReadCustomerInput, hT as PlaygroundGoogleadsReadCustomerOutput, hU as PlaygroundLifecycleGetStateInput, hV as PlaygroundLifecycleGetStateOutput, hW as PlaygroundLifecycleListEventsInput, hX as PlaygroundLifecycleListEventsOutput, hY as PlaygroundWebhookGetLastInput, hZ as PlaygroundWebhookGetLastOutput } from '../client.gen-t1yMTANn.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 };
|