@lessly/sdk-app 18.0.0 → 20.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 (47) 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.cjs +5 -0
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +6 -2
  6. package/dist/brain/index.d.ts +6 -2
  7. package/dist/brain/index.js +5 -1
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-ZzwZ64Qc.d.cts → client.gen-BXg4Te77.d.cts} +98 -374
  10. package/dist/{client.gen-ZzwZ64Qc.d.ts → client.gen-BXg4Te77.d.ts} +98 -374
  11. package/dist/consent/index.d.cts +1 -1
  12. package/dist/consent/index.d.ts +1 -1
  13. package/dist/deployment/index.d.cts +1 -1
  14. package/dist/deployment/index.d.ts +1 -1
  15. package/dist/index.cjs +13 -108
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.d.cts +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +13 -108
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  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/tracking/index.d.cts +1 -1
  28. package/dist/tracking/index.d.ts +1 -1
  29. package/dist/users/index.d.cts +1 -1
  30. package/dist/users/index.d.ts +1 -1
  31. package/dist/waitlist/index.d.cts +1 -1
  32. package/dist/waitlist/index.d.ts +1 -1
  33. package/package.json +2 -7
  34. package/src/gen/bindings.gen.ts +13 -108
  35. package/src/gen/brain/index.ts +1 -1
  36. package/src/gen/brain/queryOptions.gen.ts +7 -0
  37. package/src/gen/client.gen.ts +5 -52
  38. package/src/gen/manifest.gen.ts +1 -1
  39. package/src/gen/types.gen.ts +96 -377
  40. package/dist/playground/index.cjs +0 -66
  41. package/dist/playground/index.cjs.map +0 -1
  42. package/dist/playground/index.d.cts +0 -52
  43. package/dist/playground/index.d.ts +0 -52
  44. package/dist/playground/index.js +0 -53
  45. package/dist/playground/index.js.map +0 -1
  46. package/src/gen/playground/index.ts +0 -3
  47. package/src/gen/playground/queryOptions.gen.ts +0 -86
@@ -1028,6 +1028,98 @@ snapshotId: string
1028
1028
  preRestoreSnapshotId: (string | null)
1029
1029
  } | null)
1030
1030
 
1031
+ export interface BrainUsageReportInput {
1032
+ /**
1033
+ * How many UTC days of this product's ledger to return, ending today (default 30, max 90)
1034
+ */
1035
+ days?: number
1036
+ }
1037
+
1038
+ export interface BrainUsageReportOutput {
1039
+ note: string
1040
+ /**
1041
+ * Brain's own ledger, for THIS product only
1042
+ */
1043
+ product: {
1044
+ /**
1045
+ * Inclusive UTC end of the window (today), YYYY-MM-DD
1046
+ */
1047
+ to: string
1048
+ /**
1049
+ * The window actually used, after clamping
1050
+ */
1051
+ days: number
1052
+ /**
1053
+ * Inclusive UTC start of the window, YYYY-MM-DD
1054
+ */
1055
+ from: string
1056
+ rows: {
1057
+ /**
1058
+ * 'sync' | 'batch'; '' when the push carried none
1059
+ */
1060
+ mode: string
1061
+ /**
1062
+ * Manifest meter slug, e.g. llm-tokens
1063
+ */
1064
+ meter: string
1065
+ /**
1066
+ * Model dimension; '' when the push carried none
1067
+ */
1068
+ model: string
1069
+ /**
1070
+ * How many record() calls landed in this slice
1071
+ */
1072
+ events: number
1073
+ /**
1074
+ * Tokens we metered for this slice, delivered or not
1075
+ */
1076
+ tokens: number
1077
+ /**
1078
+ * Purpose dimension; '' when the push carried none
1079
+ */
1080
+ purpose: string
1081
+ /**
1082
+ * UTC calendar day, YYYY-MM-DD
1083
+ */
1084
+ usage_date: string
1085
+ /**
1086
+ * Of those events, how many billing did not accept
1087
+ */
1088
+ delivery_failed: number
1089
+ }[]
1090
+ /**
1091
+ * The rows rolled up per meter across the whole window
1092
+ */
1093
+ totals: {
1094
+ meter: string
1095
+ events: number
1096
+ tokens: number
1097
+ delivery_failed: number
1098
+ }[]
1099
+ product_id: string
1100
+ }
1101
+ /**
1102
+ * The platform billing aggregate for the whole ORG; null if it could not be read
1103
+ */
1104
+ platform: ({
1105
+ plan: string
1106
+ scope: "org"
1107
+ meters: {
1108
+ unit?: string
1109
+ used?: number
1110
+ limit?: (number | null)
1111
+ remaining?: (number | null)
1112
+ unlimited?: boolean
1113
+ meter_slug: string
1114
+ }[]
1115
+ org_id: string
1116
+ } | null)
1117
+ /**
1118
+ * Why the platform aggregate is null; null when it was read successfully
1119
+ */
1120
+ platform_error: (string | null)
1121
+ }
1122
+
1031
1123
  export interface ConsentConfigCookieDomainUpsertInput {
1032
1124
  cookieDomain: ("" | null | string)
1033
1125
  }
@@ -2627,7 +2719,7 @@ baseEnvironmentId: (string | null)
2627
2719
  }
2628
2720
 
2629
2721
  export interface DeploymentEventsListByEnvironmentInput {
2630
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled")
2722
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed")
2631
2723
  limit?: number
2632
2724
  since?: string
2633
2725
  until?: string
@@ -2636,7 +2728,7 @@ environmentId: string
2636
2728
 
2637
2729
  export type DeploymentEventsListByEnvironmentOutput = {
2638
2730
  id: string
2639
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled")
2731
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed")
2640
2732
  payload: {
2641
2733
  [k: string]: unknown
2642
2734
  }
@@ -2649,7 +2741,7 @@ environmentId: (string | null)
2649
2741
  }[]
2650
2742
 
2651
2743
  export interface DeploymentEventsListByServiceInput {
2652
- type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled")
2744
+ type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed")
2653
2745
  limit?: number
2654
2746
  since?: string
2655
2747
  until?: string
@@ -2659,7 +2751,7 @@ deploymentId?: string
2659
2751
 
2660
2752
  export type DeploymentEventsListByServiceOutput = {
2661
2753
  id: string
2662
- type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled")
2754
+ type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed")
2663
2755
  payload: {
2664
2756
  [k: string]: unknown
2665
2757
  }
@@ -13368,226 +13460,6 @@ name: string
13368
13460
  activeProductId: (string | null)
13369
13461
  }
13370
13462
 
13371
- export interface PlaygroundAnalyticsOverviewInput {
13372
- /**
13373
- * Max records per entity in recent[]; omit for the endpoint default
13374
- */
13375
- limit?: number
13376
- }
13377
-
13378
- export interface PlaygroundAnalyticsOverviewOutput {
13379
- ok: boolean
13380
- minted: boolean
13381
- overview?: unknown
13382
- http_status: number
13383
- }
13384
-
13385
- export interface PlaygroundBillingEntitlementsInput {
13386
-
13387
- }
13388
-
13389
- export interface PlaygroundBillingEntitlementsOutput {
13390
- ok: boolean
13391
- minted: boolean
13392
- http_status: number
13393
- entitlements?: unknown
13394
- }
13395
-
13396
- export interface PlaygroundBillingRecordUsageInput {
13397
- /**
13398
- * Quantity of events to record against playground-events (SUM); defaults to 1
13399
- */
13400
- value?: number
13401
- }
13402
-
13403
- export interface PlaygroundBillingRecordUsageOutput {
13404
- minted: boolean
13405
- accepted: (number | null)
13406
- recorded: boolean
13407
- duplicates: (number | null)
13408
- http_status: number
13409
- }
13410
-
13411
- export interface PlaygroundClickupCreateTaskInput {
13412
- /**
13413
- * Task title; defaults to a fixture label
13414
- */
13415
- name?: string
13416
- /**
13417
- * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
13418
- */
13419
- listId?: string
13420
- }
13421
-
13422
- export interface PlaygroundClickupCreateTaskOutput {
13423
- minted: boolean
13424
- task_id: (string | null)
13425
- list_status: number
13426
- vend_status: number
13427
- clickup_status: number
13428
- installation_count: number
13429
- }
13430
-
13431
- export interface PlaygroundClickupGetLastWebhookInput {
13432
-
13433
- }
13434
-
13435
- export type PlaygroundClickupGetLastWebhookOutput = ({
13436
- payload: string
13437
- event_id: string
13438
- provider: string
13439
- verified: boolean
13440
- product_id: string
13441
- occurred_at: string
13442
- connector_id: string
13443
- clickup_event: (string | null)
13444
- receipt_count: number
13445
- } | {
13446
- found: false
13447
- })
13448
-
13449
- export interface PlaygroundClickupGetOverviewInput {
13450
-
13451
- }
13452
-
13453
- export interface PlaygroundClickupGetOverviewOutput {
13454
- team: ({
13455
- teamId: string
13456
- teamName: string
13457
- } | null)
13458
- lists: PlaygroundClickupGetOverviewOutputItems[]
13459
- tasks: {
13460
- id: string
13461
- name: string
13462
- status: (string | null)
13463
- }[]
13464
- minted: boolean
13465
- spaces: PlaygroundClickupGetOverviewOutputItems[]
13466
- list_status: number
13467
- vend_status: number
13468
- lists_status: number
13469
- tasks_status: number
13470
- spaces_status: number
13471
- folders_status: number
13472
- installation_count: number
13473
- }
13474
- export interface PlaygroundClickupGetOverviewOutputItems {
13475
- id: string
13476
- name: string
13477
- }
13478
-
13479
- export interface PlaygroundGdriveGetLastChangeInput {
13480
-
13481
- }
13482
-
13483
- export type PlaygroundGdriveGetLastChangeOutput = ({
13484
- file_id: string
13485
- removed: boolean
13486
- file_name: (string | null)
13487
- mime_type: (string | null)
13488
- product_id: string
13489
- occurred_at: string
13490
- connector_id: string
13491
- resource_state: string
13492
- } | {
13493
- found: false
13494
- })
13495
-
13496
- export interface PlaygroundGdriveReadFileInput {
13497
- /**
13498
- * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
13499
- */
13500
- fileId?: string
13501
- }
13502
-
13503
- export interface PlaygroundGdriveReadFileOutput {
13504
- minted: boolean
13505
- file_id: (string | null)
13506
- file_name: (string | null)
13507
- mime_type: (string | null)
13508
- file_count: number
13509
- get_status: number
13510
- list_status: number
13511
- vend_status: number
13512
- content_bytes: (number | null)
13513
- }
13514
-
13515
- export interface PlaygroundGoogleadsReadCustomerInput {
13516
-
13517
- }
13518
-
13519
- export interface PlaygroundGoogleadsReadCustomerOutput {
13520
- minted: boolean
13521
- vended: boolean
13522
- customer_id: (string | null)
13523
- vend_status: number
13524
- result_count: number
13525
- search_status: number
13526
- login_customer_id: (string | null)
13527
- }
13528
-
13529
- export interface PlaygroundLifecycleGetStateInput {
13530
-
13531
- }
13532
-
13533
- export interface PlaygroundLifecycleGetStateOutput {
13534
- blocked: boolean
13535
- archived: boolean
13536
- productId: string
13537
- lastBlockTransition: ({
13538
- eventId: string
13539
- eventName: string
13540
- productId: string
13541
- occurredAt: string
13542
- recordedAt: string
13543
- receiptCount: number
13544
- organizationId: string
13545
- cascadedFromOrg: boolean
13546
- } | null)
13547
- lastArchiveTransition: ({
13548
- eventId: string
13549
- eventName: string
13550
- productId: string
13551
- occurredAt: string
13552
- recordedAt: string
13553
- receiptCount: number
13554
- organizationId: string
13555
- cascadedFromOrg: boolean
13556
- } | null)
13557
- }
13558
-
13559
- export interface PlaygroundLifecycleListEventsInput {
13560
-
13561
- }
13562
-
13563
- export type PlaygroundLifecycleListEventsOutput = {
13564
- eventId: string
13565
- eventName: string
13566
- productId: string
13567
- occurredAt: string
13568
- recordedAt: string
13569
- receiptCount: number
13570
- organizationId: string
13571
- cascadedFromOrg: boolean
13572
- }[]
13573
-
13574
- export interface PlaygroundWebhookGetLastInput {
13575
-
13576
- }
13577
-
13578
- export type PlaygroundWebhookGetLastOutput = ({
13579
- payload?: unknown
13580
- event_id: string
13581
- provider: string
13582
- verified: boolean
13583
- product_id: string
13584
- occurred_at: string
13585
- connector_id: string
13586
- delivery_count: number
13587
- } | {
13588
- found: false
13589
- })
13590
-
13591
13463
  export interface RealtimeApikeyCreateInput {
13592
13464
  /**
13593
13465
  * Human-readable label for the key, e.g. "production backend"
@@ -15748,56 +15620,6 @@ github: UsersConfigGetOutputGoogle
15748
15620
  google: UsersConfigGetOutputGoogle
15749
15621
  }
15750
15622
  }
15751
- hosted: {
15752
- /**
15753
- * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
15754
- */
15755
- enabled: boolean
15756
- /**
15757
- * Absolute https URL of a logo rendered above the form. Null renders no logo.
15758
- */
15759
- logoUrl: (string | null)
15760
- /**
15761
- * Terms link rendered in the footer. Null renders no link.
15762
- */
15763
- termsUrl: (string | null)
15764
- /**
15765
- * CSS colour of the body text.
15766
- */
15767
- textColor: string
15768
- /**
15769
- * One line under the card. Null renders no footer.
15770
- */
15771
- footerText: (string | null)
15772
- /**
15773
- * Privacy-policy link rendered in the footer. Null renders no link.
15774
- */
15775
- privacyUrl: (string | null)
15776
- /**
15777
- * CSS colour for the submit button, the links and the focus ring.
15778
- */
15779
- accentColor: string
15780
- /**
15781
- * Shown in the heading and the page title. Default "This product".
15782
- */
15783
- productName: string
15784
- /**
15785
- * CSS length for the card and its controls, e.g. "12px".
15786
- */
15787
- borderRadius: string
15788
- /**
15789
- * CSS colour of the card itself.
15790
- */
15791
- surfaceColor: string
15792
- /**
15793
- * CSS colour of secondary text and hints.
15794
- */
15795
- mutedTextColor: string
15796
- /**
15797
- * CSS colour of the page behind the card.
15798
- */
15799
- backgroundColor: string
15800
- }
15801
15623
  invite: {
15802
15624
  /**
15803
15625
  * How long an invite link stays usable, in days. Default 14.
@@ -16092,59 +15914,6 @@ clientId?: (string | null)
16092
15914
  clientSecret?: (string | null)
16093
15915
  }
16094
15916
  }
16095
- /**
16096
- * The hosted sign-in / sign-up / recovery pages: whether they are served, and the product name, logo, colours and footer links they render with. Merged field-by-field, so setting one colour leaves the rest alone.
16097
- */
16098
- hosted?: {
16099
- /**
16100
- * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
16101
- */
16102
- enabled?: boolean
16103
- /**
16104
- * Absolute https URL of a logo rendered above the form. Null renders no logo.
16105
- */
16106
- logoUrl?: (string | null)
16107
- /**
16108
- * Terms link rendered in the footer. Null renders no link.
16109
- */
16110
- termsUrl?: (string | null)
16111
- /**
16112
- * CSS colour of the body text.
16113
- */
16114
- textColor?: string
16115
- /**
16116
- * One line under the card. Null renders no footer.
16117
- */
16118
- footerText?: (string | null)
16119
- /**
16120
- * Privacy-policy link rendered in the footer. Null renders no link.
16121
- */
16122
- privacyUrl?: (string | null)
16123
- /**
16124
- * CSS colour for the submit button, the links and the focus ring.
16125
- */
16126
- accentColor?: string
16127
- /**
16128
- * Shown in the heading and the page title. Default "This product".
16129
- */
16130
- productName?: string
16131
- /**
16132
- * CSS length for the card and its controls, e.g. "12px".
16133
- */
16134
- borderRadius?: string
16135
- /**
16136
- * CSS colour of the card itself.
16137
- */
16138
- surfaceColor?: string
16139
- /**
16140
- * CSS colour of secondary text and hints.
16141
- */
16142
- mutedTextColor?: string
16143
- /**
16144
- * CSS colour of the page behind the card.
16145
- */
16146
- backgroundColor?: string
16147
- }
16148
15917
  /**
16149
15918
  * Invite lifetime and re-invite cooldown. Merged field-by-field.
16150
15919
  */
@@ -16490,56 +16259,6 @@ github: UsersConfigUpsertOutputGoogle
16490
16259
  google: UsersConfigUpsertOutputGoogle
16491
16260
  }
16492
16261
  }
16493
- hosted: {
16494
- /**
16495
- * Serve the hosted sign-in, sign-up and recovery pages for this product. Default true. False answers those routes with a refusal page instead — for a product that ships its own frontend and wants no second front door.
16496
- */
16497
- enabled: boolean
16498
- /**
16499
- * Absolute https URL of a logo rendered above the form. Null renders no logo.
16500
- */
16501
- logoUrl: (string | null)
16502
- /**
16503
- * Terms link rendered in the footer. Null renders no link.
16504
- */
16505
- termsUrl: (string | null)
16506
- /**
16507
- * CSS colour of the body text.
16508
- */
16509
- textColor: string
16510
- /**
16511
- * One line under the card. Null renders no footer.
16512
- */
16513
- footerText: (string | null)
16514
- /**
16515
- * Privacy-policy link rendered in the footer. Null renders no link.
16516
- */
16517
- privacyUrl: (string | null)
16518
- /**
16519
- * CSS colour for the submit button, the links and the focus ring.
16520
- */
16521
- accentColor: string
16522
- /**
16523
- * Shown in the heading and the page title. Default "This product".
16524
- */
16525
- productName: string
16526
- /**
16527
- * CSS length for the card and its controls, e.g. "12px".
16528
- */
16529
- borderRadius: string
16530
- /**
16531
- * CSS colour of the card itself.
16532
- */
16533
- surfaceColor: string
16534
- /**
16535
- * CSS colour of secondary text and hints.
16536
- */
16537
- mutedTextColor: string
16538
- /**
16539
- * CSS colour of the page behind the card.
16540
- */
16541
- backgroundColor: string
16542
- }
16543
16262
  invite: {
16544
16263
  /**
16545
16264
  * How long an invite link stays usable, in days. Default 14.
@@ -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, hI as PlaygroundAnalyticsOverviewInput, hJ as PlaygroundAnalyticsOverviewOutput, hK as PlaygroundBillingEntitlementsInput, hL as PlaygroundBillingEntitlementsOutput, hM as PlaygroundBillingRecordUsageInput, hN as PlaygroundBillingRecordUsageOutput, hO as PlaygroundClickupCreateTaskInput, hP as PlaygroundClickupCreateTaskOutput, hQ as PlaygroundClickupGetLastWebhookInput, hR as PlaygroundClickupGetLastWebhookOutput, hS as PlaygroundClickupGetOverviewInput, hT as PlaygroundClickupGetOverviewOutput, hU as PlaygroundGdriveGetLastChangeInput, hV as PlaygroundGdriveGetLastChangeOutput, hW as PlaygroundGdriveReadFileInput, hX as PlaygroundGdriveReadFileOutput, hY as PlaygroundGoogleadsReadCustomerInput, hZ as PlaygroundGoogleadsReadCustomerOutput, h_ as PlaygroundLifecycleGetStateInput, h$ as PlaygroundLifecycleGetStateOutput, i0 as PlaygroundLifecycleListEventsInput, i1 as PlaygroundLifecycleListEventsOutput, i2 as PlaygroundWebhookGetLastInput, i3 as PlaygroundWebhookGetLastOutput } from '../client.gen-ZzwZ64Qc.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 };