@lessly/sdk-app 30.7.0 → 31.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.
Files changed (63) 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 +0 -5
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +2 -6
  6. package/dist/brain/index.d.ts +2 -6
  7. package/dist/brain/index.js +1 -5
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-p_iZK5OO.d.cts → client.gen-3v2tDsvG.d.cts} +1197 -204
  10. package/dist/{client.gen-p_iZK5OO.d.ts → client.gen-3v2tDsvG.d.ts} +1197 -204
  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 +390 -13
  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 +390 -13
  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/observe/index.cjs +71 -0
  24. package/dist/observe/index.cjs.map +1 -0
  25. package/dist/observe/index.d.cts +56 -0
  26. package/dist/observe/index.d.ts +56 -0
  27. package/dist/observe/index.js +57 -0
  28. package/dist/observe/index.js.map +1 -0
  29. package/dist/organization/index.cjs +25 -0
  30. package/dist/organization/index.cjs.map +1 -1
  31. package/dist/organization/index.d.cts +22 -2
  32. package/dist/organization/index.d.ts +22 -2
  33. package/dist/organization/index.js +21 -1
  34. package/dist/organization/index.js.map +1 -1
  35. package/dist/playground/index.cjs +66 -0
  36. package/dist/playground/index.cjs.map +1 -0
  37. package/dist/playground/index.d.cts +52 -0
  38. package/dist/playground/index.d.ts +52 -0
  39. package/dist/playground/index.js +53 -0
  40. package/dist/playground/index.js.map +1 -0
  41. package/dist/realtime/index.d.cts +1 -1
  42. package/dist/realtime/index.d.ts +1 -1
  43. package/dist/support/index.d.cts +1 -1
  44. package/dist/support/index.d.ts +1 -1
  45. package/dist/tracking/index.d.cts +1 -1
  46. package/dist/tracking/index.d.ts +1 -1
  47. package/dist/users/index.d.cts +1 -1
  48. package/dist/users/index.d.ts +1 -1
  49. package/dist/waitlist/index.d.cts +1 -1
  50. package/dist/waitlist/index.d.ts +1 -1
  51. package/package.json +12 -2
  52. package/src/gen/bindings.gen.ts +390 -13
  53. package/src/gen/brain/index.ts +1 -1
  54. package/src/gen/brain/queryOptions.gen.ts +0 -7
  55. package/src/gen/client.gen.ts +120 -5
  56. package/src/gen/manifest.gen.ts +1 -1
  57. package/src/gen/observe/index.ts +3 -0
  58. package/src/gen/observe/queryOptions.gen.ts +89 -0
  59. package/src/gen/organization/index.ts +1 -1
  60. package/src/gen/organization/queryOptions.gen.ts +32 -0
  61. package/src/gen/playground/index.ts +3 -0
  62. package/src/gen/playground/queryOptions.gen.ts +86 -0
  63. package/src/gen/types.gen.ts +1198 -195
@@ -683,19 +683,6 @@ export const bindings: BindingsMap = {
683
683
  "path": "/brain/restores/:restoreId",
684
684
  "readOnly": true
685
685
  }
686
- },
687
- "usage": {
688
- "report": {
689
- "method": "GET",
690
- "params": [
691
- {
692
- "in": "query",
693
- "name": "days"
694
- }
695
- ],
696
- "path": "/brain/usage/report",
697
- "readOnly": true
698
- }
699
686
  }
700
687
  },
701
688
  "consent": {
@@ -3483,6 +3470,227 @@ export const bindings: BindingsMap = {
3483
3470
  }
3484
3471
  }
3485
3472
  },
3473
+ "observe": {
3474
+ "artifacts": {
3475
+ "delete": {
3476
+ "method": "DELETE",
3477
+ "params": [
3478
+ {
3479
+ "in": "path",
3480
+ "name": "id"
3481
+ }
3482
+ ],
3483
+ "path": "/observe/artifacts/:id",
3484
+ "readOnly": false
3485
+ },
3486
+ "list": {
3487
+ "method": "GET",
3488
+ "params": [
3489
+ {
3490
+ "in": "query",
3491
+ "name": "debugId"
3492
+ },
3493
+ {
3494
+ "in": "query",
3495
+ "name": "limit"
3496
+ }
3497
+ ],
3498
+ "path": "/observe/artifacts",
3499
+ "readOnly": true
3500
+ },
3501
+ "resolve": {
3502
+ "method": "GET",
3503
+ "params": [
3504
+ {
3505
+ "in": "path",
3506
+ "name": "issueId"
3507
+ }
3508
+ ],
3509
+ "path": "/observe/artifacts/:issueId/resolve",
3510
+ "readOnly": true
3511
+ }
3512
+ },
3513
+ "issues": {
3514
+ "archive": {
3515
+ "method": "POST",
3516
+ "params": [
3517
+ {
3518
+ "in": "path",
3519
+ "name": "id"
3520
+ }
3521
+ ],
3522
+ "path": "/observe/issues/:id/archive",
3523
+ "readOnly": false
3524
+ },
3525
+ "assign": {
3526
+ "method": "POST",
3527
+ "params": [
3528
+ {
3529
+ "in": "path",
3530
+ "name": "id"
3531
+ },
3532
+ {
3533
+ "in": "body",
3534
+ "name": "assignee"
3535
+ }
3536
+ ],
3537
+ "path": "/observe/issues/:id/assign",
3538
+ "readOnly": false
3539
+ },
3540
+ "get": {
3541
+ "method": "GET",
3542
+ "params": [
3543
+ {
3544
+ "in": "path",
3545
+ "name": "id"
3546
+ }
3547
+ ],
3548
+ "path": "/observe/issues/:id",
3549
+ "readOnly": true
3550
+ },
3551
+ "list": {
3552
+ "method": "GET",
3553
+ "params": [
3554
+ {
3555
+ "in": "query",
3556
+ "name": "status"
3557
+ },
3558
+ {
3559
+ "in": "query",
3560
+ "name": "assignee"
3561
+ },
3562
+ {
3563
+ "in": "query",
3564
+ "name": "limit"
3565
+ }
3566
+ ],
3567
+ "path": "/observe/issues",
3568
+ "readOnly": true
3569
+ },
3570
+ "resolve": {
3571
+ "method": "POST",
3572
+ "params": [
3573
+ {
3574
+ "in": "path",
3575
+ "name": "id"
3576
+ }
3577
+ ],
3578
+ "path": "/observe/issues/:id/resolve",
3579
+ "readOnly": false
3580
+ }
3581
+ },
3582
+ "keys": {
3583
+ "create": {
3584
+ "method": "POST",
3585
+ "params": [
3586
+ {
3587
+ "in": "body",
3588
+ "name": "environment"
3589
+ },
3590
+ {
3591
+ "in": "body",
3592
+ "name": "name"
3593
+ },
3594
+ {
3595
+ "in": "body",
3596
+ "name": "kind"
3597
+ }
3598
+ ],
3599
+ "path": "/observe/keys",
3600
+ "readOnly": false
3601
+ },
3602
+ "list": {
3603
+ "method": "GET",
3604
+ "params": [
3605
+ {
3606
+ "in": "query",
3607
+ "name": "environment"
3608
+ }
3609
+ ],
3610
+ "path": "/observe/keys",
3611
+ "readOnly": true
3612
+ },
3613
+ "revoke": {
3614
+ "method": "POST",
3615
+ "params": [
3616
+ {
3617
+ "in": "path",
3618
+ "name": "id"
3619
+ }
3620
+ ],
3621
+ "path": "/observe/keys/:id/revoke",
3622
+ "readOnly": false
3623
+ }
3624
+ },
3625
+ "logs": {
3626
+ "search": {
3627
+ "method": "GET",
3628
+ "params": [
3629
+ {
3630
+ "in": "query",
3631
+ "name": "environment"
3632
+ },
3633
+ {
3634
+ "in": "query",
3635
+ "name": "service"
3636
+ },
3637
+ {
3638
+ "in": "query",
3639
+ "name": "severityIn"
3640
+ },
3641
+ {
3642
+ "in": "query",
3643
+ "name": "search"
3644
+ },
3645
+ {
3646
+ "in": "query",
3647
+ "name": "traceId"
3648
+ },
3649
+ {
3650
+ "in": "query",
3651
+ "name": "from"
3652
+ },
3653
+ {
3654
+ "in": "query",
3655
+ "name": "to"
3656
+ },
3657
+ {
3658
+ "in": "query",
3659
+ "name": "limit"
3660
+ },
3661
+ {
3662
+ "in": "query",
3663
+ "name": "cursor"
3664
+ }
3665
+ ],
3666
+ "path": "/observe/logs/search",
3667
+ "readOnly": true
3668
+ },
3669
+ "tail": {
3670
+ "method": "GET",
3671
+ "params": [
3672
+ {
3673
+ "in": "query",
3674
+ "name": "environment"
3675
+ },
3676
+ {
3677
+ "in": "query",
3678
+ "name": "service"
3679
+ },
3680
+ {
3681
+ "in": "query",
3682
+ "name": "severityIn"
3683
+ },
3684
+ {
3685
+ "in": "query",
3686
+ "name": "cursor"
3687
+ }
3688
+ ],
3689
+ "path": "/observe/logs/tail",
3690
+ "readOnly": true
3691
+ }
3692
+ }
3693
+ },
3486
3694
  "organization": {
3487
3695
  "$root": {
3488
3696
  "create": {
@@ -4229,6 +4437,21 @@ export const bindings: BindingsMap = {
4229
4437
  "path": "/governance/api/v1/products/:productId/roles",
4230
4438
  "readOnly": true
4231
4439
  },
4440
+ "resend-invitation": {
4441
+ "method": "POST",
4442
+ "params": [
4443
+ {
4444
+ "in": "path",
4445
+ "name": "productId"
4446
+ },
4447
+ {
4448
+ "in": "path",
4449
+ "name": "id"
4450
+ }
4451
+ ],
4452
+ "path": "/governance/api/v1/products/:productId/invitations/:id/resend",
4453
+ "readOnly": false
4454
+ },
4232
4455
  "revoke-invitation": {
4233
4456
  "method": "POST",
4234
4457
  "params": [
@@ -4455,6 +4678,160 @@ export const bindings: BindingsMap = {
4455
4678
  "path": "/governance/api/v1/organizations/:organizationId/security/mfa/enable",
4456
4679
  "readOnly": false
4457
4680
  }
4681
+ },
4682
+ "support-thread": {
4683
+ "create": {
4684
+ "method": "POST",
4685
+ "params": [
4686
+ {
4687
+ "in": "body",
4688
+ "name": "title"
4689
+ },
4690
+ {
4691
+ "in": "body",
4692
+ "name": "body"
4693
+ }
4694
+ ],
4695
+ "path": "/governance/api/v1/support/threads",
4696
+ "readOnly": false
4697
+ },
4698
+ "get": {
4699
+ "method": "GET",
4700
+ "params": [
4701
+ {
4702
+ "in": "path",
4703
+ "name": "id"
4704
+ }
4705
+ ],
4706
+ "path": "/governance/api/v1/support/threads/:id",
4707
+ "readOnly": true
4708
+ },
4709
+ "reply": {
4710
+ "method": "POST",
4711
+ "params": [
4712
+ {
4713
+ "in": "path",
4714
+ "name": "id"
4715
+ },
4716
+ {
4717
+ "in": "body",
4718
+ "name": "body"
4719
+ }
4720
+ ],
4721
+ "path": "/governance/api/v1/support/threads/:id/messages",
4722
+ "readOnly": false
4723
+ }
4724
+ },
4725
+ "support-threads": {
4726
+ "list": {
4727
+ "method": "GET",
4728
+ "path": "/governance/api/v1/support/threads",
4729
+ "readOnly": true
4730
+ }
4731
+ }
4732
+ },
4733
+ "playground": {
4734
+ "analytics": {
4735
+ "overview": {
4736
+ "method": "POST",
4737
+ "params": [
4738
+ {
4739
+ "in": "body",
4740
+ "name": "limit"
4741
+ }
4742
+ ],
4743
+ "path": "/playground/analytics/overview",
4744
+ "readOnly": true
4745
+ }
4746
+ },
4747
+ "billing": {
4748
+ "entitlements": {
4749
+ "method": "POST",
4750
+ "path": "/playground/billing/entitlements",
4751
+ "readOnly": true
4752
+ },
4753
+ "record-usage": {
4754
+ "method": "POST",
4755
+ "params": [
4756
+ {
4757
+ "in": "body",
4758
+ "name": "value"
4759
+ }
4760
+ ],
4761
+ "path": "/playground/billing/usage",
4762
+ "readOnly": false
4763
+ }
4764
+ },
4765
+ "clickup": {
4766
+ "create-task": {
4767
+ "method": "POST",
4768
+ "params": [
4769
+ {
4770
+ "in": "body",
4771
+ "name": "listId"
4772
+ },
4773
+ {
4774
+ "in": "body",
4775
+ "name": "name"
4776
+ }
4777
+ ],
4778
+ "path": "/playground/clickup/tasks",
4779
+ "readOnly": false
4780
+ },
4781
+ "get-last-webhook": {
4782
+ "method": "GET",
4783
+ "path": "/playground/clickup/webhooks/last",
4784
+ "readOnly": true
4785
+ },
4786
+ "get-overview": {
4787
+ "method": "GET",
4788
+ "path": "/playground/clickup/overview",
4789
+ "readOnly": true
4790
+ }
4791
+ },
4792
+ "gdrive": {
4793
+ "get-last-change": {
4794
+ "method": "GET",
4795
+ "path": "/playground/gdrive/changes/last",
4796
+ "readOnly": true
4797
+ },
4798
+ "read-file": {
4799
+ "method": "POST",
4800
+ "params": [
4801
+ {
4802
+ "in": "body",
4803
+ "name": "fileId"
4804
+ }
4805
+ ],
4806
+ "path": "/playground/gdrive/file",
4807
+ "readOnly": true
4808
+ }
4809
+ },
4810
+ "googleads": {
4811
+ "read-customer": {
4812
+ "method": "POST",
4813
+ "path": "/playground/googleads/customer",
4814
+ "readOnly": true
4815
+ }
4816
+ },
4817
+ "lifecycle": {
4818
+ "get-state": {
4819
+ "method": "GET",
4820
+ "path": "/playground/lifecycle/state",
4821
+ "readOnly": true
4822
+ },
4823
+ "list-events": {
4824
+ "method": "GET",
4825
+ "path": "/playground/lifecycle/events",
4826
+ "readOnly": true
4827
+ }
4828
+ },
4829
+ "webhook": {
4830
+ "get-last": {
4831
+ "method": "GET",
4832
+ "path": "/playground/webhooks/last",
4833
+ "readOnly": true
4834
+ }
4458
4835
  }
4459
4836
  },
4460
4837
  "realtime": {
@@ -1,3 +1,3 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
2
  export * from './queryOptions.gen';
3
- export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput, BrainKnowledgeEntityMemoriesInput, BrainKnowledgeEntityMemoriesOutput, BrainKnowledgeGraphInput, BrainKnowledgeGraphOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput, BrainUsageReportInput, BrainUsageReportOutput } from '../types.gen';
3
+ export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput, BrainKnowledgeEntityMemoriesInput, BrainKnowledgeEntityMemoriesOutput, BrainKnowledgeGraphInput, BrainKnowledgeGraphOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput } from '../types.gen';
@@ -68,8 +68,6 @@ import type {
68
68
  BrainProductSharedMemoryResetInput,
69
69
  BrainRestoreStatusInput,
70
70
  BrainRestoreStatusOutput,
71
- BrainUsageReportInput,
72
- BrainUsageReportOutput,
73
71
  } from '../types.gen';
74
72
 
75
73
  export const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({
@@ -271,8 +269,3 @@ export const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: Brai
271
269
  queryKey: ['brain', 'restore', 'status', input] as const,
272
270
  queryFn: () => sdk['brain']['restore']['status'](input),
273
271
  });
274
-
275
- export const brainUsageReportQueryOptions = (sdk: GeneratedClient, input: BrainUsageReportInput) => ({
276
- queryKey: ['brain', 'usage', 'report', input] as const,
277
- queryFn: () => sdk['brain']['usage']['report'](input),
278
- });
@@ -82,8 +82,6 @@ import type {
82
82
  BrainProductSharedMemoryResetOutput,
83
83
  BrainRestoreStatusInput,
84
84
  BrainRestoreStatusOutput,
85
- BrainUsageReportInput,
86
- BrainUsageReportOutput,
87
85
  ConsentConfigCookieDomainUpsertInput,
88
86
  ConsentConfigCookieDomainUpsertOutput,
89
87
  ConsentConfigCustomizationUpsertInput,
@@ -430,6 +428,32 @@ import type {
430
428
  MailWebhookListOutput,
431
429
  MailWebhookUpdateInput,
432
430
  MailWebhookUpdateOutput,
431
+ ObserveArtifactsDeleteInput,
432
+ ObserveArtifactsDeleteOutput,
433
+ ObserveArtifactsListInput,
434
+ ObserveArtifactsListOutput,
435
+ ObserveArtifactsResolveInput,
436
+ ObserveArtifactsResolveOutput,
437
+ ObserveIssuesArchiveInput,
438
+ ObserveIssuesArchiveOutput,
439
+ ObserveIssuesAssignInput,
440
+ ObserveIssuesAssignOutput,
441
+ ObserveIssuesGetInput,
442
+ ObserveIssuesGetOutput,
443
+ ObserveIssuesListInput,
444
+ ObserveIssuesListOutput,
445
+ ObserveIssuesResolveInput,
446
+ ObserveIssuesResolveOutput,
447
+ ObserveKeysCreateInput,
448
+ ObserveKeysCreateOutput,
449
+ ObserveKeysListInput,
450
+ ObserveKeysListOutput,
451
+ ObserveKeysRevokeInput,
452
+ ObserveKeysRevokeOutput,
453
+ ObserveLogsSearchInput,
454
+ ObserveLogsSearchOutput,
455
+ ObserveLogsTailInput,
456
+ ObserveLogsTailOutput,
433
457
  OrganizationAuthMeInput,
434
458
  OrganizationAuthMeOutput,
435
459
  OrganizationBillingBudgetsGetInput,
@@ -536,6 +560,8 @@ import type {
536
560
  OrganizationProductListOutput,
537
561
  OrganizationProductListRolesInput,
538
562
  OrganizationProductListRolesOutput,
563
+ OrganizationProductResendInvitationInput,
564
+ OrganizationProductResendInvitationOutput,
539
565
  OrganizationProductRevokeInvitationInput,
540
566
  OrganizationProductRevokeInvitationOutput,
541
567
  OrganizationProductSelectInput,
@@ -566,6 +592,38 @@ import type {
566
592
  OrganizationSecurityMfaEnableOutput,
567
593
  OrganizationSelectInput,
568
594
  OrganizationSelectOutput,
595
+ OrganizationSupportThreadCreateInput,
596
+ OrganizationSupportThreadCreateOutput,
597
+ OrganizationSupportThreadGetInput,
598
+ OrganizationSupportThreadGetOutput,
599
+ OrganizationSupportThreadReplyInput,
600
+ OrganizationSupportThreadReplyOutput,
601
+ OrganizationSupportThreadsListInput,
602
+ OrganizationSupportThreadsListOutput,
603
+ PlaygroundAnalyticsOverviewInput,
604
+ PlaygroundAnalyticsOverviewOutput,
605
+ PlaygroundBillingEntitlementsInput,
606
+ PlaygroundBillingEntitlementsOutput,
607
+ PlaygroundBillingRecordUsageInput,
608
+ PlaygroundBillingRecordUsageOutput,
609
+ PlaygroundClickupCreateTaskInput,
610
+ PlaygroundClickupCreateTaskOutput,
611
+ PlaygroundClickupGetLastWebhookInput,
612
+ PlaygroundClickupGetLastWebhookOutput,
613
+ PlaygroundClickupGetOverviewInput,
614
+ PlaygroundClickupGetOverviewOutput,
615
+ PlaygroundGdriveGetLastChangeInput,
616
+ PlaygroundGdriveGetLastChangeOutput,
617
+ PlaygroundGdriveReadFileInput,
618
+ PlaygroundGdriveReadFileOutput,
619
+ PlaygroundGoogleadsReadCustomerInput,
620
+ PlaygroundGoogleadsReadCustomerOutput,
621
+ PlaygroundLifecycleGetStateInput,
622
+ PlaygroundLifecycleGetStateOutput,
623
+ PlaygroundLifecycleListEventsInput,
624
+ PlaygroundLifecycleListEventsOutput,
625
+ PlaygroundWebhookGetLastInput,
626
+ PlaygroundWebhookGetLastOutput,
569
627
  RealtimeArchiveExportInput,
570
628
  RealtimeArchiveExportOutput,
571
629
  RealtimeArchiveExportStatusInput,
@@ -937,9 +995,6 @@ export interface GeneratedClient {
937
995
  restore: {
938
996
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
939
997
  };
940
- usage: {
941
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
942
- };
943
998
  };
944
999
  consent: {
945
1000
  'config-cookie-domain': {
@@ -1250,6 +1305,29 @@ export interface GeneratedClient {
1250
1305
  list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
1251
1306
  };
1252
1307
  };
1308
+ observe: {
1309
+ artifacts: {
1310
+ delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
1311
+ list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
1312
+ resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
1313
+ };
1314
+ issues: {
1315
+ archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
1316
+ assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
1317
+ get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
1318
+ list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
1319
+ resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
1320
+ };
1321
+ keys: {
1322
+ create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
1323
+ list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
1324
+ revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
1325
+ };
1326
+ logs: {
1327
+ search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
1328
+ tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
1329
+ };
1330
+ };
1253
1331
  organization: {
1254
1332
  create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
1255
1333
  list(input: OrganizationListInput): Promise<OrganizationListOutput>;
@@ -1338,6 +1416,7 @@ export interface GeneratedClient {
1338
1416
  'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
1339
1417
  'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
1340
1418
  'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
1419
+ 'resend-invitation'(input: OrganizationProductResendInvitationInput): Promise<OrganizationProductResendInvitationOutput>;
1341
1420
  'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
1342
1421
  select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
1343
1422
  update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
@@ -1361,6 +1440,42 @@ export interface GeneratedClient {
1361
1440
  'security-mfa': {
1362
1441
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
1363
1442
  };
1443
+ 'support-thread': {
1444
+ create(input: OrganizationSupportThreadCreateInput): Promise<OrganizationSupportThreadCreateOutput>;
1445
+ get(input: OrganizationSupportThreadGetInput): Promise<OrganizationSupportThreadGetOutput>;
1446
+ reply(input: OrganizationSupportThreadReplyInput): Promise<OrganizationSupportThreadReplyOutput>;
1447
+ };
1448
+ 'support-threads': {
1449
+ list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
1450
+ };
1451
+ };
1452
+ playground: {
1453
+ analytics: {
1454
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
1455
+ };
1456
+ billing: {
1457
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
1458
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
1459
+ };
1460
+ clickup: {
1461
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
1462
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
1463
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
1464
+ };
1465
+ gdrive: {
1466
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
1467
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
1468
+ };
1469
+ googleads: {
1470
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
1471
+ };
1472
+ lifecycle: {
1473
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
1474
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
1475
+ };
1476
+ webhook: {
1477
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
1478
+ };
1364
1479
  };
1365
1480
  realtime: {
1366
1481
  archive: {
@@ -1,2 +1,2 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
- export const namespaces = ['analytics', 'brain', 'consent', 'deployment', 'mail', 'organization', 'realtime', 'support', 'tracking', 'users', 'waitlist'] as const;
2
+ export const namespaces = ['analytics', 'brain', 'consent', 'deployment', 'mail', 'observe', 'organization', 'playground', 'realtime', 'support', 'tracking', 'users', 'waitlist'] as const;
@@ -0,0 +1,3 @@
1
+ // AUTOGENERATED by scripts/generate.ts — do not edit.
2
+ export * from './queryOptions.gen';
3
+ export type { ObserveArtifactsDeleteInput, ObserveArtifactsDeleteOutput, ObserveArtifactsListInput, ObserveArtifactsListOutput, ObserveArtifactsResolveInput, ObserveArtifactsResolveOutput, ObserveIssuesArchiveInput, ObserveIssuesArchiveOutput, ObserveIssuesAssignInput, ObserveIssuesAssignOutput, ObserveIssuesGetInput, ObserveIssuesGetOutput, ObserveIssuesListInput, ObserveIssuesListOutput, ObserveIssuesResolveInput, ObserveIssuesResolveOutput, ObserveKeysCreateInput, ObserveKeysCreateOutput, ObserveKeysListInput, ObserveKeysListOutput, ObserveKeysRevokeInput, ObserveKeysRevokeOutput, ObserveLogsSearchInput, ObserveLogsSearchOutput, ObserveLogsTailInput, ObserveLogsTailOutput } from '../types.gen';