@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
@@ -935,96 +935,6 @@ type BrainRestoreStatusOutput = ({
935
935
  snapshotId: string;
936
936
  preRestoreSnapshotId: (string | null);
937
937
  } | null);
938
- interface BrainUsageReportInput {
939
- /**
940
- * How many UTC days of this product's ledger to return, ending today (default 30, max 90)
941
- */
942
- days?: number;
943
- }
944
- interface BrainUsageReportOutput {
945
- note: string;
946
- /**
947
- * Brain's own ledger, for THIS product only
948
- */
949
- product: {
950
- /**
951
- * Inclusive UTC end of the window (today), YYYY-MM-DD
952
- */
953
- to: string;
954
- /**
955
- * The window actually used, after clamping
956
- */
957
- days: number;
958
- /**
959
- * Inclusive UTC start of the window, YYYY-MM-DD
960
- */
961
- from: string;
962
- rows: {
963
- /**
964
- * 'sync' | 'batch'; '' when the push carried none
965
- */
966
- mode: string;
967
- /**
968
- * Manifest meter slug, e.g. llm-tokens
969
- */
970
- meter: string;
971
- /**
972
- * Model dimension; '' when the push carried none
973
- */
974
- model: string;
975
- /**
976
- * How many record() calls landed in this slice
977
- */
978
- events: number;
979
- /**
980
- * Tokens we metered for this slice, delivered or not
981
- */
982
- tokens: number;
983
- /**
984
- * Purpose dimension; '' when the push carried none
985
- */
986
- purpose: string;
987
- /**
988
- * UTC calendar day, YYYY-MM-DD
989
- */
990
- usage_date: string;
991
- /**
992
- * Of those events, how many billing did not accept
993
- */
994
- delivery_failed: number;
995
- }[];
996
- /**
997
- * The rows rolled up per meter across the whole window
998
- */
999
- totals: {
1000
- meter: string;
1001
- events: number;
1002
- tokens: number;
1003
- delivery_failed: number;
1004
- }[];
1005
- product_id: string;
1006
- };
1007
- /**
1008
- * The platform billing aggregate for the whole ORG; null if it could not be read
1009
- */
1010
- platform: ({
1011
- plan: string;
1012
- scope: "org";
1013
- meters: {
1014
- unit?: string;
1015
- used?: number;
1016
- limit?: (number | null);
1017
- remaining?: (number | null);
1018
- unlimited?: boolean;
1019
- meter_slug: string;
1020
- }[];
1021
- org_id: string;
1022
- } | null);
1023
- /**
1024
- * Why the platform aggregate is null; null when it was read successfully
1025
- */
1026
- platform_error: (string | null);
1027
- }
1028
938
  interface ConsentConfigCookieDomainUpsertInput {
1029
939
  cookieDomain: ("" | null | string);
1030
940
  }
@@ -12600,130 +12510,877 @@ interface MailWebhookUpdateOutput {
12600
12510
  description: (string | null);
12601
12511
  enabled_events: string[];
12602
12512
  }
12603
- interface OrganizationAuthMeInput {
12604
- }
12605
- interface OrganizationAuthMeOutput {
12606
- email: string;
12607
- identityId: string;
12608
- displayName: string;
12609
- identityType: string;
12610
- }
12611
- interface OrganizationBillingBudgetsGetInput {
12612
- }
12613
- interface OrganizationBillingBudgetsGetOutput {
12614
- [k: string]: unknown;
12615
- }
12616
- interface OrganizationBillingBudgetsSetInput {
12617
- ceiling_minor: number;
12618
- }
12619
- interface OrganizationBillingBudgetsSetOutput {
12620
- [k: string]: unknown;
12621
- }
12622
- interface OrganizationBillingCapsClearInput {
12623
- productId: string;
12624
- }
12625
- interface OrganizationBillingCapsClearOutput {
12626
- [k: string]: unknown;
12627
- }
12628
- interface OrganizationBillingCapsSetInput {
12629
- cap_minor: number;
12630
- productId: string;
12631
- }
12632
- interface OrganizationBillingCapsSetOutput {
12633
- [k: string]: unknown;
12634
- }
12635
- interface OrganizationBindingsListInput {
12636
- domainId: string;
12637
- productId: string;
12638
- }
12639
- type OrganizationBindingsListOutput = {
12640
- host: string;
12641
- status: ("pending" | "active" | "failed");
12642
- records: {
12643
- ttl?: number;
12644
- name?: string;
12645
- target: string;
12646
- proxied?: boolean;
12647
- priority?: number;
12648
- recordType: string;
12649
- }[];
12650
- domainId: string;
12651
- bindingId: string;
12652
- instruction: (string | null);
12653
- statusDetail: (string | null);
12654
- ownerExtension: string;
12655
- }[];
12656
- interface OrganizationClickupInstallInput {
12657
- }
12658
- interface OrganizationClickupInstallOutput {
12659
- url: string;
12660
- }
12661
- interface OrganizationClickupListInstallationsInput {
12662
- }
12663
- type OrganizationClickupListInstallationsOutput = {
12664
- status: string;
12665
- teamId: string;
12666
- teamName: string;
12667
- }[];
12668
- interface OrganizationCloudflareInstallInput {
12669
- }
12670
- interface OrganizationCloudflareInstallOutput {
12671
- url: string;
12513
+ interface ObserveArtifactsDeleteInput {
12514
+ /**
12515
+ * Identifier of the artifact to delete. An artifact of another product is reported as not found
12516
+ */
12517
+ id: string;
12672
12518
  }
12673
- interface OrganizationConnectorsApproveRequestInput {
12519
+ interface ObserveArtifactsDeleteOutput {
12520
+ /**
12521
+ * Identifier of the stored artifact
12522
+ */
12674
12523
  id: string;
12675
- requestId: string;
12524
+ /**
12525
+ * Whether this is the minified source or its map
12526
+ */
12527
+ kind: ("source" | "sourcemap");
12528
+ /**
12529
+ * Debug ID the build stamped into the file and its source map
12530
+ */
12531
+ debugId: string;
12532
+ /**
12533
+ * Size of the stored artifact in bytes
12534
+ */
12535
+ byteSize: number;
12536
+ /**
12537
+ * Name the file was uploaded under, e.g. "app.min.js.map"
12538
+ */
12539
+ fileName: string;
12540
+ /**
12541
+ * ISO 8601 timestamp of the upload
12542
+ */
12543
+ uploadedAt: string;
12676
12544
  }
12677
- interface OrganizationConnectorsApproveRequestOutput {
12678
- success: boolean;
12545
+ interface ObserveArtifactsListInput {
12546
+ /**
12547
+ * Maximum number of artifacts to return, 1..200 (default 50)
12548
+ */
12549
+ limit?: number;
12550
+ /**
12551
+ * Only return artifacts carrying this debug ID; omit to list all of them
12552
+ */
12553
+ debugId?: string;
12679
12554
  }
12680
- interface OrganizationConnectorsAttachInput {
12555
+ type ObserveArtifactsListOutput = {
12556
+ /**
12557
+ * Identifier of the stored artifact
12558
+ */
12681
12559
  id: string;
12682
- productIds: string[];
12560
+ /**
12561
+ * Whether this is the minified source or its map
12562
+ */
12563
+ kind: ("source" | "sourcemap");
12564
+ /**
12565
+ * Debug ID the build stamped into the file and its source map
12566
+ */
12567
+ debugId: string;
12568
+ /**
12569
+ * Size of the stored artifact in bytes
12570
+ */
12571
+ byteSize: number;
12572
+ /**
12573
+ * Name the file was uploaded under, e.g. "app.min.js.map"
12574
+ */
12575
+ fileName: string;
12576
+ /**
12577
+ * ISO 8601 timestamp of the upload
12578
+ */
12579
+ uploadedAt: string;
12580
+ }[];
12581
+ interface ObserveArtifactsResolveInput {
12582
+ /**
12583
+ * Issue whose latest event should have its stack resolved. An issue of another product is reported as not found
12584
+ */
12585
+ issueId: string;
12683
12586
  }
12684
- interface OrganizationConnectorsAttachOutput {
12685
- attachments: {
12686
- createdAt: string;
12687
- createdBy: (string | null);
12688
- productId: string;
12689
- customerId: (string | null);
12690
- descriptiveName: (string | null);
12587
+ interface ObserveArtifactsResolveOutput {
12588
+ /**
12589
+ * The stack, resolved where a source map matched
12590
+ */
12591
+ frames: {
12592
+ /**
12593
+ * Column number, original when the frame resolved
12594
+ */
12595
+ colno?: number;
12596
+ /**
12597
+ * Whether the frame belongs to the application rather than a dependency
12598
+ */
12599
+ inApp?: boolean;
12600
+ /**
12601
+ * Line number, original when the frame resolved
12602
+ */
12603
+ lineno?: number;
12604
+ /**
12605
+ * Original file when the frame resolved, else the minified one
12606
+ */
12607
+ filename?: string;
12608
+ /**
12609
+ * Function name, original where the source map names one
12610
+ */
12611
+ function?: string;
12612
+ /**
12613
+ * False means no source map matched and the frame is exactly as it was recorded
12614
+ */
12615
+ resolved: boolean;
12691
12616
  }[];
12692
- connectorId: string;
12617
+ /**
12618
+ * Identifier of the event the stack was taken from
12619
+ */
12620
+ eventId: string;
12621
+ /**
12622
+ * The issue whose stack this is
12623
+ */
12624
+ issueId: string;
12693
12625
  }
12694
- interface OrganizationConnectorsDeleteInput {
12626
+ interface ObserveIssuesArchiveInput {
12627
+ /**
12628
+ * Identifier of the issue
12629
+ */
12695
12630
  id: string;
12696
12631
  }
12697
- interface OrganizationConnectorsDeleteOutput {
12698
- success: boolean;
12699
- }
12700
- interface OrganizationConnectorsDenyRequestInput {
12632
+ interface ObserveIssuesArchiveOutput {
12633
+ /**
12634
+ * Identifier of the issue
12635
+ */
12701
12636
  id: string;
12702
- requestId: string;
12703
- }
12704
- interface OrganizationConnectorsDenyRequestOutput {
12705
- success: boolean;
12637
+ /**
12638
+ * Display title, set when the issue opened and never rewritten
12639
+ */
12640
+ title: string;
12641
+ /**
12642
+ * unresolved, resolved or archived
12643
+ */
12644
+ status: string;
12645
+ /**
12646
+ * Where the error appears to come from, or null
12647
+ */
12648
+ culprit: (string | null);
12649
+ /**
12650
+ * Who owns the issue, or null if unassigned
12651
+ */
12652
+ assignee: (string | null);
12653
+ /**
12654
+ * ISO 8601 timestamp of the most recent event
12655
+ */
12656
+ lastSeen: string;
12657
+ /**
12658
+ * ISO 8601 timestamp of the first event
12659
+ */
12660
+ firstSeen: string;
12661
+ /**
12662
+ * ISO 8601 archive timestamp, or null
12663
+ */
12664
+ archivedAt: (string | null);
12665
+ /**
12666
+ * How many events have landed on this issue
12667
+ */
12668
+ eventCount: number;
12669
+ /**
12670
+ * ISO 8601 resolution timestamp, or null
12671
+ */
12672
+ resolvedAt: (string | null);
12673
+ /**
12674
+ * Environment the issue was first seen in, or null
12675
+ */
12676
+ environment: (string | null);
12677
+ /**
12678
+ * Stable grouping hash the issue is keyed on
12679
+ */
12680
+ fingerprint: string;
12681
+ /**
12682
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12683
+ */
12684
+ regressedAt: (string | null);
12685
+ /**
12686
+ * Which rule of the ladder matched: explicit, stack, exception or message
12687
+ */
12688
+ groupingRule: string;
12689
+ /**
12690
+ * Exception class of the first event, or null
12691
+ */
12692
+ exceptionType: (string | null);
12693
+ /**
12694
+ * Grouping config version that produced the fingerprint; part of the issue identity
12695
+ */
12696
+ groupingVersion: string;
12706
12697
  }
12707
- interface OrganizationConnectorsDetachInput {
12698
+ interface ObserveIssuesAssignInput {
12699
+ /**
12700
+ * Identifier of the issue
12701
+ */
12708
12702
  id: string;
12709
- productId: string;
12710
- }
12711
- interface OrganizationConnectorsDetachOutput {
12712
- success: boolean;
12713
- }
12714
- interface OrganizationConnectorsListInput {
12715
- productId: string;
12703
+ /**
12704
+ * Who should own the issue; null clears the assignment
12705
+ */
12706
+ assignee: (string | null);
12716
12707
  }
12717
- type OrganizationConnectorsListOutput = {
12708
+ interface ObserveIssuesAssignOutput {
12709
+ /**
12710
+ * Identifier of the issue
12711
+ */
12718
12712
  id: string;
12719
- config: {
12720
- [k: string]: unknown;
12721
- };
12722
- origin: ("product" | "org");
12713
+ /**
12714
+ * Display title, set when the issue opened and never rewritten
12715
+ */
12716
+ title: string;
12717
+ /**
12718
+ * unresolved, resolved or archived
12719
+ */
12723
12720
  status: string;
12724
- provider: string;
12725
- createdAt: string;
12726
- customerId: (string | null);
12721
+ /**
12722
+ * Where the error appears to come from, or null
12723
+ */
12724
+ culprit: (string | null);
12725
+ /**
12726
+ * Who owns the issue, or null if unassigned
12727
+ */
12728
+ assignee: (string | null);
12729
+ /**
12730
+ * ISO 8601 timestamp of the most recent event
12731
+ */
12732
+ lastSeen: string;
12733
+ /**
12734
+ * ISO 8601 timestamp of the first event
12735
+ */
12736
+ firstSeen: string;
12737
+ /**
12738
+ * ISO 8601 archive timestamp, or null
12739
+ */
12740
+ archivedAt: (string | null);
12741
+ /**
12742
+ * How many events have landed on this issue
12743
+ */
12744
+ eventCount: number;
12745
+ /**
12746
+ * ISO 8601 resolution timestamp, or null
12747
+ */
12748
+ resolvedAt: (string | null);
12749
+ /**
12750
+ * Environment the issue was first seen in, or null
12751
+ */
12752
+ environment: (string | null);
12753
+ /**
12754
+ * Stable grouping hash the issue is keyed on
12755
+ */
12756
+ fingerprint: string;
12757
+ /**
12758
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12759
+ */
12760
+ regressedAt: (string | null);
12761
+ /**
12762
+ * Which rule of the ladder matched: explicit, stack, exception or message
12763
+ */
12764
+ groupingRule: string;
12765
+ /**
12766
+ * Exception class of the first event, or null
12767
+ */
12768
+ exceptionType: (string | null);
12769
+ /**
12770
+ * Grouping config version that produced the fingerprint; part of the issue identity
12771
+ */
12772
+ groupingVersion: string;
12773
+ }
12774
+ interface ObserveIssuesGetInput {
12775
+ /**
12776
+ * Identifier of the issue
12777
+ */
12778
+ id: string;
12779
+ }
12780
+ interface ObserveIssuesGetOutput {
12781
+ /**
12782
+ * Identifier of the issue
12783
+ */
12784
+ id: string;
12785
+ /**
12786
+ * Display title, set when the issue opened and never rewritten
12787
+ */
12788
+ title: string;
12789
+ /**
12790
+ * unresolved, resolved or archived
12791
+ */
12792
+ status: string;
12793
+ /**
12794
+ * Where the error appears to come from, or null
12795
+ */
12796
+ culprit: (string | null);
12797
+ /**
12798
+ * Who owns the issue, or null if unassigned
12799
+ */
12800
+ assignee: (string | null);
12801
+ /**
12802
+ * ISO 8601 timestamp of the most recent event
12803
+ */
12804
+ lastSeen: string;
12805
+ /**
12806
+ * ISO 8601 timestamp of the first event
12807
+ */
12808
+ firstSeen: string;
12809
+ /**
12810
+ * ISO 8601 archive timestamp, or null
12811
+ */
12812
+ archivedAt: (string | null);
12813
+ /**
12814
+ * How many events have landed on this issue
12815
+ */
12816
+ eventCount: number;
12817
+ /**
12818
+ * ISO 8601 resolution timestamp, or null
12819
+ */
12820
+ resolvedAt: (string | null);
12821
+ /**
12822
+ * Environment the issue was first seen in, or null
12823
+ */
12824
+ environment: (string | null);
12825
+ /**
12826
+ * Stable grouping hash the issue is keyed on
12827
+ */
12828
+ fingerprint: string;
12829
+ /**
12830
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12831
+ */
12832
+ regressedAt: (string | null);
12833
+ /**
12834
+ * Which rule of the ladder matched: explicit, stack, exception or message
12835
+ */
12836
+ groupingRule: string;
12837
+ /**
12838
+ * Exception class of the first event, or null
12839
+ */
12840
+ exceptionType: (string | null);
12841
+ /**
12842
+ * Grouping config version that produced the fingerprint; part of the issue identity
12843
+ */
12844
+ groupingVersion: string;
12845
+ }
12846
+ interface ObserveIssuesListInput {
12847
+ /**
12848
+ * How many issues to return, most recently seen first. 1-200, default 50
12849
+ */
12850
+ limit?: number;
12851
+ /**
12852
+ * Only return issues in this state; omit to list every state
12853
+ */
12854
+ status?: ("unresolved" | "resolved" | "archived");
12855
+ /**
12856
+ * Only return issues owned by this assignee
12857
+ */
12858
+ assignee?: string;
12859
+ }
12860
+ type ObserveIssuesListOutput = {
12861
+ /**
12862
+ * Identifier of the issue
12863
+ */
12864
+ id: string;
12865
+ /**
12866
+ * Display title, set when the issue opened and never rewritten
12867
+ */
12868
+ title: string;
12869
+ /**
12870
+ * unresolved, resolved or archived
12871
+ */
12872
+ status: string;
12873
+ /**
12874
+ * Where the error appears to come from, or null
12875
+ */
12876
+ culprit: (string | null);
12877
+ /**
12878
+ * Who owns the issue, or null if unassigned
12879
+ */
12880
+ assignee: (string | null);
12881
+ /**
12882
+ * ISO 8601 timestamp of the most recent event
12883
+ */
12884
+ lastSeen: string;
12885
+ /**
12886
+ * ISO 8601 timestamp of the first event
12887
+ */
12888
+ firstSeen: string;
12889
+ /**
12890
+ * ISO 8601 archive timestamp, or null
12891
+ */
12892
+ archivedAt: (string | null);
12893
+ /**
12894
+ * How many events have landed on this issue
12895
+ */
12896
+ eventCount: number;
12897
+ /**
12898
+ * ISO 8601 resolution timestamp, or null
12899
+ */
12900
+ resolvedAt: (string | null);
12901
+ /**
12902
+ * Environment the issue was first seen in, or null
12903
+ */
12904
+ environment: (string | null);
12905
+ /**
12906
+ * Stable grouping hash the issue is keyed on
12907
+ */
12908
+ fingerprint: string;
12909
+ /**
12910
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12911
+ */
12912
+ regressedAt: (string | null);
12913
+ /**
12914
+ * Which rule of the ladder matched: explicit, stack, exception or message
12915
+ */
12916
+ groupingRule: string;
12917
+ /**
12918
+ * Exception class of the first event, or null
12919
+ */
12920
+ exceptionType: (string | null);
12921
+ /**
12922
+ * Grouping config version that produced the fingerprint; part of the issue identity
12923
+ */
12924
+ groupingVersion: string;
12925
+ }[];
12926
+ interface ObserveIssuesResolveInput {
12927
+ /**
12928
+ * Identifier of the issue
12929
+ */
12930
+ id: string;
12931
+ }
12932
+ interface ObserveIssuesResolveOutput {
12933
+ /**
12934
+ * Identifier of the issue
12935
+ */
12936
+ id: string;
12937
+ /**
12938
+ * Display title, set when the issue opened and never rewritten
12939
+ */
12940
+ title: string;
12941
+ /**
12942
+ * unresolved, resolved or archived
12943
+ */
12944
+ status: string;
12945
+ /**
12946
+ * Where the error appears to come from, or null
12947
+ */
12948
+ culprit: (string | null);
12949
+ /**
12950
+ * Who owns the issue, or null if unassigned
12951
+ */
12952
+ assignee: (string | null);
12953
+ /**
12954
+ * ISO 8601 timestamp of the most recent event
12955
+ */
12956
+ lastSeen: string;
12957
+ /**
12958
+ * ISO 8601 timestamp of the first event
12959
+ */
12960
+ firstSeen: string;
12961
+ /**
12962
+ * ISO 8601 archive timestamp, or null
12963
+ */
12964
+ archivedAt: (string | null);
12965
+ /**
12966
+ * How many events have landed on this issue
12967
+ */
12968
+ eventCount: number;
12969
+ /**
12970
+ * ISO 8601 resolution timestamp, or null
12971
+ */
12972
+ resolvedAt: (string | null);
12973
+ /**
12974
+ * Environment the issue was first seen in, or null
12975
+ */
12976
+ environment: (string | null);
12977
+ /**
12978
+ * Stable grouping hash the issue is keyed on
12979
+ */
12980
+ fingerprint: string;
12981
+ /**
12982
+ * ISO 8601 timestamp of the last regression, or null if it never regressed
12983
+ */
12984
+ regressedAt: (string | null);
12985
+ /**
12986
+ * Which rule of the ladder matched: explicit, stack, exception or message
12987
+ */
12988
+ groupingRule: string;
12989
+ /**
12990
+ * Exception class of the first event, or null
12991
+ */
12992
+ exceptionType: (string | null);
12993
+ /**
12994
+ * Grouping config version that produced the fingerprint; part of the issue identity
12995
+ */
12996
+ groupingVersion: string;
12997
+ }
12998
+ interface ObserveKeysCreateInput {
12999
+ /**
13000
+ * ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
13001
+ */
13002
+ kind?: ("ingest" | "dsn");
13003
+ /**
13004
+ * Optional human label for the key, e.g. "ci" or "backend pods"
13005
+ */
13006
+ name?: string;
13007
+ /**
13008
+ * Environment this key sends telemetry for, e.g. "staging" or "production"
13009
+ */
13010
+ environment: string;
13011
+ }
13012
+ interface ObserveKeysCreateOutput {
13013
+ /**
13014
+ * Identifier of the ingest key
13015
+ */
13016
+ id: string;
13017
+ /**
13018
+ * The full DSN, for kind "dsn" — shown only here, store it now
13019
+ */
13020
+ dsn?: string;
13021
+ /**
13022
+ * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13023
+ */
13024
+ kind: ("ingest" | "dsn");
13025
+ /**
13026
+ * Human label given at creation, or null
13027
+ */
13028
+ name: (string | null);
13029
+ /**
13030
+ * The full ingest token, for kind "ingest" — shown only here, store it now
13031
+ */
13032
+ token?: string;
13033
+ /**
13034
+ * First characters of the token, shown for recognition
13035
+ */
13036
+ prefix: string;
13037
+ /**
13038
+ * ISO 8601 creation timestamp
13039
+ */
13040
+ createdAt: string;
13041
+ /**
13042
+ * ISO 8601 revocation timestamp, or null if active
13043
+ */
13044
+ revokedAt: (string | null);
13045
+ /**
13046
+ * Environment the key writes telemetry for
13047
+ */
13048
+ environment: string;
13049
+ }
13050
+ interface ObserveKeysListInput {
13051
+ /**
13052
+ * Only return keys of this environment; omit to list all of them
13053
+ */
13054
+ environment?: string;
13055
+ }
13056
+ type ObserveKeysListOutput = {
13057
+ /**
13058
+ * Identifier of the ingest key
13059
+ */
13060
+ id: string;
13061
+ /**
13062
+ * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13063
+ */
13064
+ kind: ("ingest" | "dsn");
13065
+ /**
13066
+ * Human label given at creation, or null
13067
+ */
13068
+ name: (string | null);
13069
+ /**
13070
+ * First characters of the token, shown for recognition
13071
+ */
13072
+ prefix: string;
13073
+ /**
13074
+ * ISO 8601 creation timestamp
13075
+ */
13076
+ createdAt: string;
13077
+ /**
13078
+ * ISO 8601 revocation timestamp, or null if active
13079
+ */
13080
+ revokedAt: (string | null);
13081
+ /**
13082
+ * Environment the key writes telemetry for
13083
+ */
13084
+ environment: string;
13085
+ }[];
13086
+ interface ObserveKeysRevokeInput {
13087
+ /**
13088
+ * Identifier of the ingest key to revoke
13089
+ */
13090
+ id: string;
13091
+ }
13092
+ interface ObserveKeysRevokeOutput {
13093
+ /**
13094
+ * Identifier of the revoked key
13095
+ */
13096
+ id: string;
13097
+ /**
13098
+ * ISO 8601 timestamp of the revocation
13099
+ */
13100
+ revokedAt: string;
13101
+ }
13102
+ interface ObserveLogsSearchInput {
13103
+ /**
13104
+ * Newest timestamp to include, ISO 8601
13105
+ */
13106
+ to?: string;
13107
+ /**
13108
+ * Oldest timestamp to include, ISO 8601
13109
+ */
13110
+ from?: string;
13111
+ /**
13112
+ * How many lines to return, 1-1000, default 100
13113
+ */
13114
+ limit?: number;
13115
+ /**
13116
+ * The nextCursor of the previous page; omit for the first page
13117
+ */
13118
+ cursor?: string;
13119
+ /**
13120
+ * Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
13121
+ */
13122
+ search?: string;
13123
+ /**
13124
+ * Only lines of this service, e.g. "api"
13125
+ */
13126
+ service?: string;
13127
+ /**
13128
+ * Only lines of this trace
13129
+ */
13130
+ traceId?: string;
13131
+ /**
13132
+ * Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
13133
+ *
13134
+ * @minItems 1
13135
+ */
13136
+ severityIn?: [string, ...(string)[]];
13137
+ /**
13138
+ * Only lines of this environment, e.g. "production"
13139
+ */
13140
+ environment?: string;
13141
+ }
13142
+ interface ObserveLogsSearchOutput {
13143
+ /**
13144
+ * The matching log lines, newest first
13145
+ */
13146
+ rows: {
13147
+ /**
13148
+ * The log message itself
13149
+ */
13150
+ body: string;
13151
+ /**
13152
+ * Span this line belongs to, empty when untraced
13153
+ */
13154
+ spanId: string;
13155
+ /**
13156
+ * Service that wrote the line
13157
+ */
13158
+ service: string;
13159
+ /**
13160
+ * Trace this line belongs to, empty when untraced
13161
+ */
13162
+ traceId: string;
13163
+ /**
13164
+ * ISO 8601 timestamp of the log line, millisecond precision
13165
+ */
13166
+ timestamp: string;
13167
+ /**
13168
+ * Attributes the emitter attached
13169
+ */
13170
+ attributes: {
13171
+ [k: string]: string;
13172
+ };
13173
+ /**
13174
+ * Environment the line was written in
13175
+ */
13176
+ environment: string;
13177
+ /**
13178
+ * Severity as the emitter named it, e.g. "ERROR"
13179
+ */
13180
+ severityText: string;
13181
+ /**
13182
+ * OpenTelemetry severity number, 1-24
13183
+ */
13184
+ severityNumber: number;
13185
+ }[];
13186
+ /**
13187
+ * Pass back as cursor for the next page; null when the last page was reached
13188
+ */
13189
+ nextCursor: (string | null);
13190
+ }
13191
+ interface ObserveLogsTailInput {
13192
+ /**
13193
+ * The nextCursor of the previous poll; omit to start at the newest lines
13194
+ */
13195
+ cursor?: string;
13196
+ /**
13197
+ * Only lines of this service
13198
+ */
13199
+ service?: string;
13200
+ /**
13201
+ * Only lines whose severity is one of these
13202
+ *
13203
+ * @minItems 1
13204
+ */
13205
+ severityIn?: [string, ...(string)[]];
13206
+ /**
13207
+ * Only lines of this environment
13208
+ */
13209
+ environment?: string;
13210
+ }
13211
+ interface ObserveLogsTailOutput {
13212
+ /**
13213
+ * The new log lines, oldest first
13214
+ */
13215
+ rows: {
13216
+ /**
13217
+ * The log message itself
13218
+ */
13219
+ body: string;
13220
+ /**
13221
+ * Span this line belongs to, empty when untraced
13222
+ */
13223
+ spanId: string;
13224
+ /**
13225
+ * Service that wrote the line
13226
+ */
13227
+ service: string;
13228
+ /**
13229
+ * Trace this line belongs to, empty when untraced
13230
+ */
13231
+ traceId: string;
13232
+ /**
13233
+ * ISO 8601 timestamp of the log line, millisecond precision
13234
+ */
13235
+ timestamp: string;
13236
+ /**
13237
+ * Attributes the emitter attached
13238
+ */
13239
+ attributes: {
13240
+ [k: string]: string;
13241
+ };
13242
+ /**
13243
+ * Environment the line was written in
13244
+ */
13245
+ environment: string;
13246
+ /**
13247
+ * Severity as the emitter named it, e.g. "ERROR"
13248
+ */
13249
+ severityText: string;
13250
+ /**
13251
+ * OpenTelemetry severity number, 1-24
13252
+ */
13253
+ severityNumber: number;
13254
+ }[];
13255
+ /**
13256
+ * Pass back as cursor on the next poll; null only while the product has no logs
13257
+ */
13258
+ nextCursor: (string | null);
13259
+ }
13260
+ interface OrganizationAuthMeInput {
13261
+ }
13262
+ interface OrganizationAuthMeOutput {
13263
+ email: string;
13264
+ identityId: string;
13265
+ displayName: string;
13266
+ identityType: string;
13267
+ }
13268
+ interface OrganizationBillingBudgetsGetInput {
13269
+ }
13270
+ interface OrganizationBillingBudgetsGetOutput {
13271
+ [k: string]: unknown;
13272
+ }
13273
+ interface OrganizationBillingBudgetsSetInput {
13274
+ ceiling_minor: number;
13275
+ }
13276
+ interface OrganizationBillingBudgetsSetOutput {
13277
+ [k: string]: unknown;
13278
+ }
13279
+ interface OrganizationBillingCapsClearInput {
13280
+ productId: string;
13281
+ }
13282
+ interface OrganizationBillingCapsClearOutput {
13283
+ [k: string]: unknown;
13284
+ }
13285
+ interface OrganizationBillingCapsSetInput {
13286
+ cap_minor: number;
13287
+ productId: string;
13288
+ }
13289
+ interface OrganizationBillingCapsSetOutput {
13290
+ [k: string]: unknown;
13291
+ }
13292
+ interface OrganizationBindingsListInput {
13293
+ domainId: string;
13294
+ productId: string;
13295
+ }
13296
+ type OrganizationBindingsListOutput = {
13297
+ host: string;
13298
+ status: ("pending" | "active" | "failed");
13299
+ records: {
13300
+ ttl?: number;
13301
+ name?: string;
13302
+ target: string;
13303
+ proxied?: boolean;
13304
+ priority?: number;
13305
+ recordType: string;
13306
+ }[];
13307
+ domainId: string;
13308
+ bindingId: string;
13309
+ instruction: (string | null);
13310
+ statusDetail: (string | null);
13311
+ ownerExtension: string;
13312
+ }[];
13313
+ interface OrganizationClickupInstallInput {
13314
+ }
13315
+ interface OrganizationClickupInstallOutput {
13316
+ url: string;
13317
+ }
13318
+ interface OrganizationClickupListInstallationsInput {
13319
+ }
13320
+ type OrganizationClickupListInstallationsOutput = {
13321
+ status: string;
13322
+ teamId: string;
13323
+ teamName: string;
13324
+ }[];
13325
+ interface OrganizationCloudflareInstallInput {
13326
+ }
13327
+ interface OrganizationCloudflareInstallOutput {
13328
+ url: string;
13329
+ }
13330
+ interface OrganizationConnectorsApproveRequestInput {
13331
+ id: string;
13332
+ requestId: string;
13333
+ }
13334
+ interface OrganizationConnectorsApproveRequestOutput {
13335
+ success: boolean;
13336
+ }
13337
+ interface OrganizationConnectorsAttachInput {
13338
+ id: string;
13339
+ productIds: string[];
13340
+ }
13341
+ interface OrganizationConnectorsAttachOutput {
13342
+ attachments: {
13343
+ createdAt: string;
13344
+ createdBy: (string | null);
13345
+ productId: string;
13346
+ customerId: (string | null);
13347
+ descriptiveName: (string | null);
13348
+ }[];
13349
+ connectorId: string;
13350
+ }
13351
+ interface OrganizationConnectorsDeleteInput {
13352
+ id: string;
13353
+ }
13354
+ interface OrganizationConnectorsDeleteOutput {
13355
+ success: boolean;
13356
+ }
13357
+ interface OrganizationConnectorsDenyRequestInput {
13358
+ id: string;
13359
+ requestId: string;
13360
+ }
13361
+ interface OrganizationConnectorsDenyRequestOutput {
13362
+ success: boolean;
13363
+ }
13364
+ interface OrganizationConnectorsDetachInput {
13365
+ id: string;
13366
+ productId: string;
13367
+ }
13368
+ interface OrganizationConnectorsDetachOutput {
13369
+ success: boolean;
13370
+ }
13371
+ interface OrganizationConnectorsListInput {
13372
+ productId: string;
13373
+ }
13374
+ type OrganizationConnectorsListOutput = {
13375
+ id: string;
13376
+ config: {
13377
+ [k: string]: unknown;
13378
+ };
13379
+ origin: ("product" | "org");
13380
+ status: string;
13381
+ provider: string;
13382
+ createdAt: string;
13383
+ customerId: (string | null);
12727
13384
  externalId: string;
12728
13385
  displayName: string;
12729
13386
  }[];
@@ -12914,8 +13571,9 @@ interface OrganizationFeedbackSubmitInput {
12914
13571
  details: string;
12915
13572
  }
12916
13573
  interface OrganizationFeedbackSubmitOutput {
12917
- url: string;
12918
- number: number;
13574
+ url: (string | null);
13575
+ number: (number | null);
13576
+ supportThreadId?: string;
12919
13577
  }
12920
13578
  interface OrganizationGdriveInstallInput {
12921
13579
  }
@@ -13269,6 +13927,18 @@ interface OrganizationProductListRolesOutput {
13269
13927
  productId: (string | null);
13270
13928
  }[];
13271
13929
  }
13930
+ interface OrganizationProductResendInvitationInput {
13931
+ productId: string;
13932
+ invitationId: string;
13933
+ }
13934
+ interface OrganizationProductResendInvitationOutput {
13935
+ id: string;
13936
+ role: string;
13937
+ email: (string | null);
13938
+ status: string;
13939
+ createdAt: string;
13940
+ expiresAt: string;
13941
+ }
13272
13942
  interface OrganizationProductRevokeInvitationInput {
13273
13943
  productId: string;
13274
13944
  invitationId: string;
@@ -13482,6 +14152,272 @@ interface OrganizationSelectOutput {
13482
14152
  };
13483
14153
  activeProductId: (string | null);
13484
14154
  }
14155
+ interface OrganizationSupportThreadCreateInput {
14156
+ body: string;
14157
+ title: string;
14158
+ }
14159
+ interface OrganizationSupportThreadCreateOutput {
14160
+ id: string;
14161
+ title: string;
14162
+ status: string;
14163
+ category: ("open" | "pending" | "resolved" | "closed");
14164
+ messages: {
14165
+ id: string;
14166
+ body: string;
14167
+ author: {
14168
+ kind: ("user" | "agent");
14169
+ name: string;
14170
+ };
14171
+ createdAt: string;
14172
+ }[];
14173
+ createdAt: string;
14174
+ lastMessageAt: string;
14175
+ lastMessagePreview: (string | null);
14176
+ }
14177
+ interface OrganizationSupportThreadGetInput {
14178
+ id: string;
14179
+ }
14180
+ interface OrganizationSupportThreadGetOutput {
14181
+ id: string;
14182
+ title: string;
14183
+ status: string;
14184
+ category: ("open" | "pending" | "resolved" | "closed");
14185
+ messages: {
14186
+ id: string;
14187
+ body: string;
14188
+ author: {
14189
+ kind: ("user" | "agent");
14190
+ name: string;
14191
+ };
14192
+ createdAt: string;
14193
+ }[];
14194
+ createdAt: string;
14195
+ lastMessageAt: string;
14196
+ lastMessagePreview: (string | null);
14197
+ }
14198
+ interface OrganizationSupportThreadReplyInput {
14199
+ id: string;
14200
+ body: string;
14201
+ }
14202
+ interface OrganizationSupportThreadReplyOutput {
14203
+ id: string;
14204
+ title: string;
14205
+ status: string;
14206
+ category: ("open" | "pending" | "resolved" | "closed");
14207
+ messages: {
14208
+ id: string;
14209
+ body: string;
14210
+ author: {
14211
+ kind: ("user" | "agent");
14212
+ name: string;
14213
+ };
14214
+ createdAt: string;
14215
+ }[];
14216
+ createdAt: string;
14217
+ lastMessageAt: string;
14218
+ lastMessagePreview: (string | null);
14219
+ }
14220
+ interface OrganizationSupportThreadsListInput {
14221
+ }
14222
+ interface OrganizationSupportThreadsListOutput {
14223
+ threads: {
14224
+ id: string;
14225
+ title: string;
14226
+ status: string;
14227
+ category: ("open" | "pending" | "resolved" | "closed");
14228
+ createdAt: string;
14229
+ lastMessageAt: string;
14230
+ lastMessagePreview: (string | null);
14231
+ }[];
14232
+ }
14233
+ interface PlaygroundAnalyticsOverviewInput {
14234
+ /**
14235
+ * Max records per entity in recent[]; omit for the endpoint default
14236
+ */
14237
+ limit?: number;
14238
+ }
14239
+ interface PlaygroundAnalyticsOverviewOutput {
14240
+ ok: boolean;
14241
+ minted: boolean;
14242
+ overview?: unknown;
14243
+ http_status: number;
14244
+ }
14245
+ interface PlaygroundBillingEntitlementsInput {
14246
+ }
14247
+ interface PlaygroundBillingEntitlementsOutput {
14248
+ ok: boolean;
14249
+ minted: boolean;
14250
+ http_status: number;
14251
+ entitlements?: unknown;
14252
+ }
14253
+ interface PlaygroundBillingRecordUsageInput {
14254
+ /**
14255
+ * Quantity of events to record against playground-events (SUM); defaults to 1
14256
+ */
14257
+ value?: number;
14258
+ }
14259
+ interface PlaygroundBillingRecordUsageOutput {
14260
+ minted: boolean;
14261
+ accepted: (number | null);
14262
+ recorded: boolean;
14263
+ duplicates: (number | null);
14264
+ http_status: number;
14265
+ }
14266
+ interface PlaygroundClickupCreateTaskInput {
14267
+ /**
14268
+ * Task title; defaults to a fixture label
14269
+ */
14270
+ name?: string;
14271
+ /**
14272
+ * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
14273
+ */
14274
+ listId?: string;
14275
+ }
14276
+ interface PlaygroundClickupCreateTaskOutput {
14277
+ minted: boolean;
14278
+ task_id: (string | null);
14279
+ list_status: number;
14280
+ vend_status: number;
14281
+ clickup_status: number;
14282
+ installation_count: number;
14283
+ }
14284
+ interface PlaygroundClickupGetLastWebhookInput {
14285
+ }
14286
+ type PlaygroundClickupGetLastWebhookOutput = ({
14287
+ payload: string;
14288
+ event_id: string;
14289
+ provider: string;
14290
+ verified: boolean;
14291
+ product_id: string;
14292
+ occurred_at: string;
14293
+ connector_id: string;
14294
+ clickup_event: (string | null);
14295
+ receipt_count: number;
14296
+ } | {
14297
+ found: false;
14298
+ });
14299
+ interface PlaygroundClickupGetOverviewInput {
14300
+ }
14301
+ interface PlaygroundClickupGetOverviewOutput {
14302
+ team: ({
14303
+ teamId: string;
14304
+ teamName: string;
14305
+ } | null);
14306
+ lists: PlaygroundClickupGetOverviewOutputItems[];
14307
+ tasks: {
14308
+ id: string;
14309
+ name: string;
14310
+ status: (string | null);
14311
+ }[];
14312
+ minted: boolean;
14313
+ spaces: PlaygroundClickupGetOverviewOutputItems[];
14314
+ list_status: number;
14315
+ vend_status: number;
14316
+ lists_status: number;
14317
+ tasks_status: number;
14318
+ spaces_status: number;
14319
+ folders_status: number;
14320
+ installation_count: number;
14321
+ }
14322
+ interface PlaygroundClickupGetOverviewOutputItems {
14323
+ id: string;
14324
+ name: string;
14325
+ }
14326
+ interface PlaygroundGdriveGetLastChangeInput {
14327
+ }
14328
+ type PlaygroundGdriveGetLastChangeOutput = ({
14329
+ file_id: string;
14330
+ removed: boolean;
14331
+ file_name: (string | null);
14332
+ mime_type: (string | null);
14333
+ product_id: string;
14334
+ occurred_at: string;
14335
+ connector_id: string;
14336
+ resource_state: string;
14337
+ } | {
14338
+ found: false;
14339
+ });
14340
+ interface PlaygroundGdriveReadFileInput {
14341
+ /**
14342
+ * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
14343
+ */
14344
+ fileId?: string;
14345
+ }
14346
+ interface PlaygroundGdriveReadFileOutput {
14347
+ minted: boolean;
14348
+ file_id: (string | null);
14349
+ file_name: (string | null);
14350
+ mime_type: (string | null);
14351
+ file_count: number;
14352
+ get_status: number;
14353
+ list_status: number;
14354
+ vend_status: number;
14355
+ content_bytes: (number | null);
14356
+ }
14357
+ interface PlaygroundGoogleadsReadCustomerInput {
14358
+ }
14359
+ interface PlaygroundGoogleadsReadCustomerOutput {
14360
+ minted: boolean;
14361
+ vended: boolean;
14362
+ customer_id: (string | null);
14363
+ vend_status: number;
14364
+ result_count: number;
14365
+ search_status: number;
14366
+ login_customer_id: (string | null);
14367
+ }
14368
+ interface PlaygroundLifecycleGetStateInput {
14369
+ }
14370
+ interface PlaygroundLifecycleGetStateOutput {
14371
+ blocked: boolean;
14372
+ archived: boolean;
14373
+ productId: string;
14374
+ lastBlockTransition: ({
14375
+ eventId: string;
14376
+ eventName: string;
14377
+ productId: string;
14378
+ occurredAt: string;
14379
+ recordedAt: string;
14380
+ receiptCount: number;
14381
+ organizationId: string;
14382
+ cascadedFromOrg: boolean;
14383
+ } | null);
14384
+ lastArchiveTransition: ({
14385
+ eventId: string;
14386
+ eventName: string;
14387
+ productId: string;
14388
+ occurredAt: string;
14389
+ recordedAt: string;
14390
+ receiptCount: number;
14391
+ organizationId: string;
14392
+ cascadedFromOrg: boolean;
14393
+ } | null);
14394
+ }
14395
+ interface PlaygroundLifecycleListEventsInput {
14396
+ }
14397
+ type PlaygroundLifecycleListEventsOutput = {
14398
+ eventId: string;
14399
+ eventName: string;
14400
+ productId: string;
14401
+ occurredAt: string;
14402
+ recordedAt: string;
14403
+ receiptCount: number;
14404
+ organizationId: string;
14405
+ cascadedFromOrg: boolean;
14406
+ }[];
14407
+ interface PlaygroundWebhookGetLastInput {
14408
+ }
14409
+ type PlaygroundWebhookGetLastOutput = ({
14410
+ payload?: unknown;
14411
+ event_id: string;
14412
+ provider: string;
14413
+ verified: boolean;
14414
+ product_id: string;
14415
+ occurred_at: string;
14416
+ connector_id: string;
14417
+ delivery_count: number;
14418
+ } | {
14419
+ found: false;
14420
+ });
13485
14421
  interface RealtimeArchiveExportInput {
13486
14422
  /**
13487
14423
  * Only entries with ts <= to_ts (epoch ms)
@@ -19918,9 +20854,6 @@ interface GeneratedClient {
19918
20854
  restore: {
19919
20855
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
19920
20856
  };
19921
- usage: {
19922
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
19923
- };
19924
20857
  };
19925
20858
  consent: {
19926
20859
  'config-cookie-domain': {
@@ -20231,6 +21164,29 @@ interface GeneratedClient {
20231
21164
  list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
20232
21165
  };
20233
21166
  };
21167
+ observe: {
21168
+ artifacts: {
21169
+ delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
21170
+ list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
21171
+ resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
21172
+ };
21173
+ issues: {
21174
+ archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
21175
+ assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
21176
+ get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
21177
+ list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
21178
+ resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
21179
+ };
21180
+ keys: {
21181
+ create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
21182
+ list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
21183
+ revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
21184
+ };
21185
+ logs: {
21186
+ search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
21187
+ tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
21188
+ };
21189
+ };
20234
21190
  organization: {
20235
21191
  create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
20236
21192
  list(input: OrganizationListInput): Promise<OrganizationListOutput>;
@@ -20319,6 +21275,7 @@ interface GeneratedClient {
20319
21275
  'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
20320
21276
  'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
20321
21277
  'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
21278
+ 'resend-invitation'(input: OrganizationProductResendInvitationInput): Promise<OrganizationProductResendInvitationOutput>;
20322
21279
  'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
20323
21280
  select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
20324
21281
  update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
@@ -20342,6 +21299,42 @@ interface GeneratedClient {
20342
21299
  'security-mfa': {
20343
21300
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
20344
21301
  };
21302
+ 'support-thread': {
21303
+ create(input: OrganizationSupportThreadCreateInput): Promise<OrganizationSupportThreadCreateOutput>;
21304
+ get(input: OrganizationSupportThreadGetInput): Promise<OrganizationSupportThreadGetOutput>;
21305
+ reply(input: OrganizationSupportThreadReplyInput): Promise<OrganizationSupportThreadReplyOutput>;
21306
+ };
21307
+ 'support-threads': {
21308
+ list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
21309
+ };
21310
+ };
21311
+ playground: {
21312
+ analytics: {
21313
+ overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
21314
+ };
21315
+ billing: {
21316
+ entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
21317
+ 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
21318
+ };
21319
+ clickup: {
21320
+ 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
21321
+ 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
21322
+ 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
21323
+ };
21324
+ gdrive: {
21325
+ 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
21326
+ 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
21327
+ };
21328
+ googleads: {
21329
+ 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
21330
+ };
21331
+ lifecycle: {
21332
+ 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
21333
+ 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
21334
+ };
21335
+ webhook: {
21336
+ 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
21337
+ };
20345
21338
  };
20346
21339
  realtime: {
20347
21340
  archive: {
@@ -20620,4 +21613,4 @@ interface GeneratedClient {
20620
21613
  };
20621
21614
  }
20622
21615
 
20623
- export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSecurityMfaEnableOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductRevokeInvitationInput as hA, OrganizationProductRevokeInvitationOutput as hB, OrganizationProductSelectInput as hC, OrganizationProductSelectOutput as hD, OrganizationProductUpdateInput as hE, OrganizationProductUpdateOutput as hF, OrganizationPublicKeysCreateInput as hG, OrganizationPublicKeysCreateOutput as hH, OrganizationPublicKeysListInput as hI, OrganizationPublicKeysListOutput as hJ, OrganizationPublicKeysRevokeInput as hK, OrganizationPublicKeysRevokeOutput as hL, OrganizationPublicKeysUpdateScopeInput as hM, OrganizationPublicKeysUpdateScopeOutput as hN, OrganizationPublicRoutesListInput as hO, OrganizationPublicRoutesListOutput as hP, OrganizationRolesCreateInput as hQ, OrganizationRolesCreateOutput as hR, OrganizationRolesDeleteInput as hS, OrganizationRolesDeleteOutput as hT, OrganizationRolesGetInput as hU, OrganizationRolesGetOutput as hV, OrganizationRolesListInput as hW, OrganizationRolesListOutput as hX, OrganizationRolesUpdateInput as hY, OrganizationRolesUpdateOutput as hZ, OrganizationSecurityMfaEnableInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductAcceptInvitationInput as hm, OrganizationProductAcceptInvitationOutput as hn, OrganizationProductCreateInput as ho, OrganizationProductCreateOutput as hp, OrganizationProductInviteInput as hq, OrganizationProductInviteOutput as hr, OrganizationProductListInvitationsInput as hs, OrganizationProductListInvitationsOutput as ht, OrganizationProductListMembersInput as hu, OrganizationProductListMembersOutput as hv, OrganizationProductListInput as hw, OrganizationProductListOutput as hx, OrganizationProductListRolesInput as hy, OrganizationProductListRolesOutput as hz, BrainClickupChannelsListInput as i, SupportAgentGetOutput as i$, OrganizationSelectInput as i0, OrganizationSelectOutput as i1, RealtimeArchiveExportInput as i2, RealtimeArchiveExportOutput as i3, RealtimeArchiveExportStatusInput as i4, RealtimeArchiveExportStatusOutput as i5, RealtimeArchiveGetInput as i6, RealtimeArchiveGetOutput as i7, RealtimeGrantCreateInput as i8, RealtimeGrantCreateOutput as i9, RealtimePresenceStatsInput as iA, RealtimePresenceStatsOutput as iB, RealtimePresenceUpdateInput as iC, RealtimePresenceUpdateOutput as iD, RealtimePublicAccessStatusInput as iE, RealtimePublicAccessStatusOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, SupportAgentCreateInput as iY, SupportAgentCreateOutput as iZ, SupportAgentGetInput as i_, RealtimeGrantListInput as ia, RealtimeGrantListOutput as ib, RealtimeGrantRevokeInput as ic, RealtimeGrantRevokeOutput as id, RealtimeHistoryGetInput as ie, RealtimeHistoryGetOutput as ig, RealtimeMessagesPublishInput as ih, RealtimeMessagesPublishOutput as ii, RealtimeNamespaceCreateInput as ij, RealtimeNamespaceCreateOutput as ik, RealtimeNamespaceDeleteInput as il, RealtimeNamespaceDeleteOutput as im, RealtimeNamespaceGetInput as io, RealtimeNamespaceGetOutput as ip, RealtimeNamespaceListInput as iq, RealtimeNamespaceListOutput as ir, RealtimeNamespaceUpdateInput as is, RealtimeNamespaceUpdateOutput as it, RealtimePresenceEnterInput as iu, RealtimePresenceEnterOutput as iv, RealtimePresenceGetInput as iw, RealtimePresenceGetOutput as ix, RealtimePresenceLeaveInput as iy, RealtimePresenceLeaveOutput as iz, BrainClickupChannelsListOutput as j, TrackingEventNamesArchiveOutput as j$, SupportAgentListInput as j0, SupportAgentListOutput as j1, SupportAgentUpdateInput as j2, SupportAgentUpdateOutput as j3, SupportAttachmentCreateInput as j4, SupportAttachmentCreateOutput as j5, SupportAttachmentFinalizeInput as j6, SupportAttachmentFinalizeOutput as j7, SupportLabelCreateInput as j8, SupportLabelCreateOutput as j9, SupportWebhookCreateInput as jA, SupportWebhookCreateOutput as jB, SupportWebhookDeleteInput as jC, SupportWebhookDeleteOutput as jD, SupportWebhookDeliveriesListInput as jE, SupportWebhookDeliveriesListOutput as jF, SupportWebhookGetInput as jG, SupportWebhookGetOutput as jH, SupportWebhookListInput as jI, SupportWebhookListOutput as jJ, SupportWebhookRedeliverInput as jK, SupportWebhookRedeliverOutput as jL, SupportWebhookRotateSecretInput as jM, SupportWebhookRotateSecretOutput as jN, SupportWebhookUpdateInput as jO, SupportWebhookUpdateOutput as jP, TrackingDomainsCreateInput as jQ, TrackingDomainsCreateOutput as jR, TrackingDomainsDeleteInput as jS, TrackingDomainsDeleteOutput as jT, TrackingDomainsGetInput as jU, TrackingDomainsGetOutput as jV, TrackingDomainsListInput as jW, TrackingDomainsListOutput as jX, TrackingDomainsVerifyInput as jY, TrackingDomainsVerifyOutput as jZ, TrackingEventNamesArchiveInput as j_, SupportLabelListInput as ja, SupportLabelListOutput as jb, SupportMessageCreateInput as jc, SupportMessageCreateOutput as jd, SupportMessageListInput as je, SupportMessageListOutput as jf, SupportStatusArchiveInput as jg, SupportStatusArchiveOutput as jh, SupportStatusCreateInput as ji, SupportStatusCreateOutput as jj, SupportStatusListInput as jk, SupportStatusListOutput as jl, SupportStatusUpdateInput as jm, SupportStatusUpdateOutput as jn, SupportThreadAssignInput as jo, SupportThreadAssignOutput as jp, SupportThreadCreateInput as jq, SupportThreadCreateOutput as jr, SupportThreadGetInput as js, SupportThreadGetOutput as jt, SupportThreadListInput as ju, SupportThreadListOutput as jv, SupportThreadStatusSetInput as jw, SupportThreadStatusSetOutput as jx, SupportThreadUpdateInput as jy, SupportThreadUpdateOutput as jz, BrainClickupConnectionsListInput as k, UsersApikeysListOutput as k$, TrackingEventNamesListInput as k0, TrackingEventNamesListOutput as k1, TrackingEventNamesUnarchiveInput as k2, TrackingEventNamesUnarchiveOutput as k3, TrackingGoogleadsConnectionStatusInput as k4, TrackingGoogleadsConnectionStatusOutput as k5, TrackingGoogleadsConversionActionsInput as k6, TrackingGoogleadsConversionActionsOutput as k7, TrackingGoogleadsFeedbackConfigGetInput as k8, TrackingGoogleadsFeedbackConfigGetOutput as k9, TrackingLinkDomainsDeleteInput as kA, TrackingLinkDomainsDeleteOutput as kB, TrackingLinkDomainsListInput as kC, TrackingLinkDomainsListOutput as kD, TrackingLiveEventsListInput as kE, TrackingLiveEventsListOutput as kF, TrackingProfilesDeleteInput as kG, TrackingProfilesDeleteOutput as kH, TrackingProfilesExportInput as kI, TrackingProfilesExportOutput as kJ, TrackingProfilesGetInput as kK, TrackingProfilesGetOutput as kL, TrackingProfilesListInput as kM, TrackingProfilesListOutput as kN, TrackingReportsAttributedJourneyInput as kO, TrackingReportsAttributedJourneyOutput as kP, TrackingReportsEventVolumeInput as kQ, TrackingReportsEventVolumeOutput as kR, TrackingReportsRevenueBySourceInput as kS, TrackingReportsRevenueBySourceOutput as kT, TrackingReportsSourcePeopleInput as kU, TrackingReportsSourcePeopleOutput as kV, TrackingSnippetsGetInput as kW, TrackingSnippetsGetOutput as kX, UsersApikeysCreateInput as kY, UsersApikeysCreateOutput as kZ, UsersApikeysListInput as k_, TrackingGoogleadsFeedbackConfigSetInput as ka, TrackingGoogleadsFeedbackConfigSetOutput as kb, TrackingGoogleadsFeedbackRunInput as kc, TrackingGoogleadsFeedbackRunOutput as kd, TrackingGoogleadsFeedbackStatusInput as ke, TrackingGoogleadsFeedbackStatusOutput as kf, TrackingGoogleadsFeedbackUploadsInput as kg, TrackingGoogleadsFeedbackUploadsOutput as kh, TrackingGoogleadsRoasReportInput as ki, TrackingGoogleadsRoasReportOutput as kj, TrackingGoogleadsSyncNowInput as kk, TrackingGoogleadsSyncNowOutput as kl, TrackingGoogleadsTrackingHealthInput as km, TrackingGoogleadsTrackingHealthOutput as kn, TrackingGoogleadsUsVsPlatformInput as ko, TrackingGoogleadsUsVsPlatformOutput as kp, TrackingIdentityHealthInput as kq, TrackingIdentityHealthOutput as kr, TrackingInstallDomainsCreateInput as ks, TrackingInstallDomainsCreateOutput as kt, TrackingInstallDomainsDeleteInput as ku, TrackingInstallDomainsDeleteOutput as kv, TrackingInstallDomainsListInput as kw, TrackingInstallDomainsListOutput as kx, TrackingLinkDomainsCreateInput as ky, TrackingLinkDomainsCreateOutput as kz, BrainClickupConnectionsListOutput as l, UsersWaitlistInviteOutput as l$, UsersApikeysRevokeInput as l0, UsersApikeysRevokeOutput as l1, UsersAuditListInput as l2, UsersAuditListOutput as l3, UsersConfigGetInput as l4, UsersConfigGetOutput as l5, UsersConfigUpsertInput as l6, UsersConfigUpsertOutput as l7, UsersFactorsListInput as l8, UsersFactorsListOutput as l9, UsersUsersDeleteInput as lA, UsersUsersDeleteOutput as lB, UsersUsersEraseInput as lC, UsersUsersEraseOutput as lD, UsersUsersExportInput as lE, UsersUsersExportOutput as lF, UsersUsersGetInput as lG, UsersUsersGetOutput as lH, UsersUsersImportInput as lI, UsersUsersImportOutput as lJ, UsersUsersInviteInput as lK, UsersUsersInviteOutput as lL, UsersUsersListInput as lM, UsersUsersListOutput as lN, UsersUsersSetPrimaryIdentifierInput as lO, UsersUsersSetPrimaryIdentifierOutput as lP, UsersUsersUnbanInput as lQ, UsersUsersUnbanOutput as lR, UsersUsersUpdateInput as lS, UsersUsersUpdateOutput as lT, UsersWaitlistEraseInput as lU, UsersWaitlistEraseOutput as lV, UsersWaitlistFunnelInput as lW, UsersWaitlistFunnelOutput as lX, UsersWaitlistImportInput as lY, UsersWaitlistImportOutput as lZ, UsersWaitlistInviteInput as l_, UsersFactorsResetInput as la, UsersFactorsResetOutput as lb, UsersKeysListInput as lc, UsersKeysListOutput as ld, UsersKeysRevokeInput as le, UsersKeysRevokeOutput as lf, UsersKeysRotateInput as lg, UsersKeysRotateOutput as lh, UsersOpsRetentionGetInput as li, UsersOpsRetentionGetOutput as lj, UsersOpsSloGetInput as lk, UsersOpsSloGetOutput as ll, UsersSessionsGetInput as lm, UsersSessionsGetOutput as ln, UsersSessionsImpersonateInput as lo, UsersSessionsImpersonateOutput as lp, UsersSessionsListInput as lq, UsersSessionsListOutput as lr, UsersSessionsRevokeInput as ls, UsersSessionsRevokeOutput as lt, UsersStatsGetInput as lu, UsersStatsGetOutput as lv, UsersUsersBanInput as lw, UsersUsersBanOutput as lx, UsersUsersCreateInput as ly, UsersUsersCreateOutput as lz, BrainClickupListsListInput as m, UsersWaitlistListInput as m0, UsersWaitlistListOutput as m1, UsersWebhooksCreateInput as m2, UsersWebhooksCreateOutput as m3, UsersWebhooksDeleteInput as m4, UsersWebhooksDeleteOutput as m5, UsersWebhooksDeliveriesListInput as m6, UsersWebhooksDeliveriesListOutput as m7, UsersWebhooksGetInput as m8, UsersWebhooksGetOutput as m9, UsersWebhooksListInput as ma, UsersWebhooksListOutput as mb, UsersWebhooksRotateSecretInput as mc, UsersWebhooksRotateSecretOutput as md, UsersWebhooksUpdateInput as me, UsersWebhooksUpdateOutput as mf, WaitlistConfigGetInput as mg, WaitlistConfigGetOutput as mh, WaitlistConfigUpsertInput as mi, WaitlistConfigUpsertOutput as mj, WaitlistEmbedGetInput as mk, WaitlistEmbedGetOutput as ml, WaitlistInvitesSendInput as mm, WaitlistInvitesSendOutput as mn, WaitlistSignupsEraseInput as mo, WaitlistSignupsEraseOutput as mp, WaitlistSignupsFunnelInput as mq, WaitlistSignupsFunnelOutput as mr, WaitlistSignupsListInput as ms, WaitlistSignupsListOutput as mt, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
21616
+ export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveIssuesArchiveOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveArtifactsDeleteInput as fU, ObserveArtifactsDeleteOutput as fV, ObserveArtifactsListInput as fW, ObserveArtifactsListOutput as fX, ObserveArtifactsResolveInput as fY, ObserveArtifactsResolveOutput as fZ, ObserveIssuesArchiveInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationDomainsAddOutput as g$, ObserveIssuesAssignInput as g0, ObserveIssuesAssignOutput as g1, ObserveIssuesGetInput as g2, ObserveIssuesGetOutput as g3, ObserveIssuesListInput as g4, ObserveIssuesListOutput as g5, ObserveIssuesResolveInput as g6, ObserveIssuesResolveOutput as g7, ObserveKeysCreateInput as g8, ObserveKeysCreateOutput as g9, OrganizationConnectorsApproveRequestInput as gA, OrganizationConnectorsApproveRequestOutput as gB, OrganizationConnectorsAttachInput as gC, OrganizationConnectorsAttachOutput as gD, OrganizationConnectorsDeleteInput as gE, OrganizationConnectorsDeleteOutput as gF, OrganizationConnectorsDenyRequestInput as gG, OrganizationConnectorsDenyRequestOutput as gH, OrganizationConnectorsDetachInput as gI, OrganizationConnectorsDetachOutput as gJ, OrganizationConnectorsListAttachmentsInput as gK, OrganizationConnectorsListAttachmentsOutput as gL, OrganizationConnectorsListAvailableInput as gM, OrganizationConnectorsListAvailableOutput as gN, OrganizationConnectorsListOrgInput as gO, OrganizationConnectorsListOrgOutput as gP, OrganizationConnectorsListInput as gQ, OrganizationConnectorsListOutput as gR, OrganizationConnectorsListRequestsInput as gS, OrganizationConnectorsListRequestsOutput as gT, OrganizationConnectorsRemoveInput as gU, OrganizationConnectorsRemoveOutput as gV, OrganizationConnectorsRequestInput as gW, OrganizationConnectorsRequestOutput as gX, OrganizationCreateInput as gY, OrganizationCreateOutput as gZ, OrganizationDomainsAddInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsSearchInput as ge, ObserveLogsSearchOutput as gf, ObserveLogsTailInput as gg, ObserveLogsTailOutput as gh, OrganizationAuthMeInput as gi, OrganizationAuthMeOutput as gj, OrganizationBillingBudgetsGetInput as gk, OrganizationBillingBudgetsGetOutput as gl, OrganizationBillingBudgetsSetInput as gm, OrganizationBillingBudgetsSetOutput as gn, OrganizationBillingCapsClearInput as go, OrganizationBillingCapsClearOutput as gp, OrganizationBillingCapsSetInput as gq, OrganizationBillingCapsSetOutput as gr, OrganizationBindingsListInput as gs, OrganizationBindingsListOutput as gt, OrganizationClickupInstallInput as gu, OrganizationClickupInstallOutput as gv, OrganizationClickupListInstallationsInput as gw, OrganizationClickupListInstallationsOutput as gx, OrganizationCloudflareInstallInput as gy, OrganizationCloudflareInstallOutput as gz, BrainBackupsListOutput as h, OrganizationProductRevokeInvitationOutput as h$, OrganizationDomainsGetInput as h0, OrganizationDomainsGetOutput as h1, OrganizationDomainsListInput as h2, OrganizationDomainsListOutput as h3, OrganizationDomainsRemoveInput as h4, OrganizationDomainsRemoveOutput as h5, OrganizationDomainsSetModeInput as h6, OrganizationDomainsSetModeOutput as h7, OrganizationExtensionsListInstalledInput as h8, OrganizationExtensionsListInstalledOutput as h9, OrganizationMemberSetRoleInput as hA, OrganizationMemberSetRoleOutput as hB, OrganizationMemberShareProductInput as hC, OrganizationMemberShareProductOutput as hD, OrganizationMemberUnshareProductInput as hE, OrganizationMemberUnshareProductOutput as hF, OrganizationMembersAssignRoleInput as hG, OrganizationMembersAssignRoleOutput as hH, OrganizationPermissionCatalogInput as hI, OrganizationPermissionCatalogOutput as hJ, OrganizationProductAcceptInvitationInput as hK, OrganizationProductAcceptInvitationOutput as hL, OrganizationProductCreateInput as hM, OrganizationProductCreateOutput as hN, OrganizationProductInviteInput as hO, OrganizationProductInviteOutput as hP, OrganizationProductListInvitationsInput as hQ, OrganizationProductListInvitationsOutput as hR, OrganizationProductListMembersInput as hS, OrganizationProductListMembersOutput as hT, OrganizationProductListInput as hU, OrganizationProductListOutput as hV, OrganizationProductListRolesInput as hW, OrganizationProductListRolesOutput as hX, OrganizationProductResendInvitationInput as hY, OrganizationProductResendInvitationOutput as hZ, OrganizationProductRevokeInvitationInput as h_, OrganizationFeedbackSubmitInput as ha, OrganizationFeedbackSubmitOutput as hb, OrganizationGdriveInstallInput as hc, OrganizationGdriveInstallOutput as hd, OrganizationGithubInstallInput as he, OrganizationGithubInstallOutput as hf, OrganizationGithubListInstallationsInput as hg, OrganizationGithubListInstallationsOutput as hh, OrganizationGoogleadsInstallInput as hi, OrganizationGoogleadsInstallOutput as hj, OrganizationListInput as hk, OrganizationListOutput as hl, OrganizationMemberAcceptInviteInput as hm, OrganizationMemberAcceptInviteOutput as hn, OrganizationMemberInviteInput as ho, OrganizationMemberInviteOutput as hp, OrganizationMemberListInvitationsInput as hq, OrganizationMemberListInvitationsOutput as hr, OrganizationMemberListProductAccessInput as hs, OrganizationMemberListProductAccessOutput as ht, OrganizationMemberListInput as hu, OrganizationMemberListOutput as hv, OrganizationMemberRemoveInput as hw, OrganizationMemberRemoveOutput as hx, OrganizationMemberRevokeInvitationInput as hy, OrganizationMemberRevokeInvitationOutput as hz, BrainClickupChannelsListInput as i, RealtimeArchiveExportOutput as i$, OrganizationProductSelectInput as i0, OrganizationProductSelectOutput as i1, OrganizationProductUpdateInput as i2, OrganizationProductUpdateOutput as i3, OrganizationPublicKeysCreateInput as i4, OrganizationPublicKeysCreateOutput as i5, OrganizationPublicKeysListInput as i6, OrganizationPublicKeysListOutput as i7, OrganizationPublicKeysRevokeInput as i8, OrganizationPublicKeysRevokeOutput as i9, OrganizationSupportThreadsListInput as iA, OrganizationSupportThreadsListOutput as iB, PlaygroundAnalyticsOverviewInput as iC, PlaygroundAnalyticsOverviewOutput as iD, PlaygroundBillingEntitlementsInput as iE, PlaygroundBillingEntitlementsOutput as iF, PlaygroundBillingRecordUsageInput as iG, PlaygroundBillingRecordUsageOutput as iH, PlaygroundClickupCreateTaskInput as iI, PlaygroundClickupCreateTaskOutput as iJ, PlaygroundClickupGetLastWebhookInput as iK, PlaygroundClickupGetLastWebhookOutput as iL, PlaygroundClickupGetOverviewInput as iM, PlaygroundClickupGetOverviewOutput as iN, PlaygroundGdriveGetLastChangeInput as iO, PlaygroundGdriveGetLastChangeOutput as iP, PlaygroundGdriveReadFileInput as iQ, PlaygroundGdriveReadFileOutput as iR, PlaygroundGoogleadsReadCustomerInput as iS, PlaygroundGoogleadsReadCustomerOutput as iT, PlaygroundLifecycleGetStateInput as iU, PlaygroundLifecycleGetStateOutput as iV, PlaygroundLifecycleListEventsInput as iW, PlaygroundLifecycleListEventsOutput as iX, PlaygroundWebhookGetLastInput as iY, PlaygroundWebhookGetLastOutput as iZ, RealtimeArchiveExportInput as i_, OrganizationPublicKeysUpdateScopeInput as ia, OrganizationPublicKeysUpdateScopeOutput as ib, OrganizationPublicRoutesListInput as ic, OrganizationPublicRoutesListOutput as id, OrganizationRolesCreateInput as ie, OrganizationRolesCreateOutput as ig, OrganizationRolesDeleteInput as ih, OrganizationRolesDeleteOutput as ii, OrganizationRolesGetInput as ij, OrganizationRolesGetOutput as ik, OrganizationRolesListInput as il, OrganizationRolesListOutput as im, OrganizationRolesUpdateInput as io, OrganizationRolesUpdateOutput as ip, OrganizationSecurityMfaEnableInput as iq, OrganizationSecurityMfaEnableOutput as ir, OrganizationSelectInput as is, OrganizationSelectOutput as it, OrganizationSupportThreadCreateInput as iu, OrganizationSupportThreadCreateOutput as iv, OrganizationSupportThreadGetInput as iw, OrganizationSupportThreadGetOutput as ix, OrganizationSupportThreadReplyInput as iy, OrganizationSupportThreadReplyOutput as iz, BrainClickupChannelsListOutput as j, SupportAttachmentCreateOutput as j$, RealtimeArchiveExportStatusInput as j0, RealtimeArchiveExportStatusOutput as j1, RealtimeArchiveGetInput as j2, RealtimeArchiveGetOutput as j3, RealtimeGrantCreateInput as j4, RealtimeGrantCreateOutput as j5, RealtimeGrantListInput as j6, RealtimeGrantListOutput as j7, RealtimeGrantRevokeInput as j8, RealtimeGrantRevokeOutput as j9, RealtimeStatusGetInput as jA, RealtimeStatusGetOutput as jB, RealtimeTokensCreateInput as jC, RealtimeTokensCreateOutput as jD, RealtimeWebhookCreateInput as jE, RealtimeWebhookCreateOutput as jF, RealtimeWebhookDeleteInput as jG, RealtimeWebhookDeleteOutput as jH, RealtimeWebhookDeliveriesListInput as jI, RealtimeWebhookDeliveriesListOutput as jJ, RealtimeWebhookGetInput as jK, RealtimeWebhookGetOutput as jL, RealtimeWebhookListInput as jM, RealtimeWebhookListOutput as jN, RealtimeWebhookSecretRotateInput as jO, RealtimeWebhookSecretRotateOutput as jP, RealtimeWebhookUpdateInput as jQ, RealtimeWebhookUpdateOutput as jR, SupportAgentCreateInput as jS, SupportAgentCreateOutput as jT, SupportAgentGetInput as jU, SupportAgentGetOutput as jV, SupportAgentListInput as jW, SupportAgentListOutput as jX, SupportAgentUpdateInput as jY, SupportAgentUpdateOutput as jZ, SupportAttachmentCreateInput as j_, RealtimeHistoryGetInput as ja, RealtimeHistoryGetOutput as jb, RealtimeMessagesPublishInput as jc, RealtimeMessagesPublishOutput as jd, RealtimeNamespaceCreateInput as je, RealtimeNamespaceCreateOutput as jf, RealtimeNamespaceDeleteInput as jg, RealtimeNamespaceDeleteOutput as jh, RealtimeNamespaceGetInput as ji, RealtimeNamespaceGetOutput as jj, RealtimeNamespaceListInput as jk, RealtimeNamespaceListOutput as jl, RealtimeNamespaceUpdateInput as jm, RealtimeNamespaceUpdateOutput as jn, RealtimePresenceEnterInput as jo, RealtimePresenceEnterOutput as jp, RealtimePresenceGetInput as jq, RealtimePresenceGetOutput as jr, RealtimePresenceLeaveInput as js, RealtimePresenceLeaveOutput as jt, RealtimePresenceStatsInput as ju, RealtimePresenceStatsOutput as jv, RealtimePresenceUpdateInput as jw, RealtimePresenceUpdateOutput as jx, RealtimePublicAccessStatusInput as jy, RealtimePublicAccessStatusOutput as jz, BrainClickupConnectionsListInput as k, TrackingGoogleadsConnectionStatusOutput as k$, SupportAttachmentFinalizeInput as k0, SupportAttachmentFinalizeOutput as k1, SupportLabelCreateInput as k2, SupportLabelCreateOutput as k3, SupportLabelListInput as k4, SupportLabelListOutput as k5, SupportMessageCreateInput as k6, SupportMessageCreateOutput as k7, SupportMessageListInput as k8, SupportMessageListOutput as k9, SupportWebhookGetInput as kA, SupportWebhookGetOutput as kB, SupportWebhookListInput as kC, SupportWebhookListOutput as kD, SupportWebhookRedeliverInput as kE, SupportWebhookRedeliverOutput as kF, SupportWebhookRotateSecretInput as kG, SupportWebhookRotateSecretOutput as kH, SupportWebhookUpdateInput as kI, SupportWebhookUpdateOutput as kJ, TrackingDomainsCreateInput as kK, TrackingDomainsCreateOutput as kL, TrackingDomainsDeleteInput as kM, TrackingDomainsDeleteOutput as kN, TrackingDomainsGetInput as kO, TrackingDomainsGetOutput as kP, TrackingDomainsListInput as kQ, TrackingDomainsListOutput as kR, TrackingDomainsVerifyInput as kS, TrackingDomainsVerifyOutput as kT, TrackingEventNamesArchiveInput as kU, TrackingEventNamesArchiveOutput as kV, TrackingEventNamesListInput as kW, TrackingEventNamesListOutput as kX, TrackingEventNamesUnarchiveInput as kY, TrackingEventNamesUnarchiveOutput as kZ, TrackingGoogleadsConnectionStatusInput as k_, SupportStatusArchiveInput as ka, SupportStatusArchiveOutput as kb, SupportStatusCreateInput as kc, SupportStatusCreateOutput as kd, SupportStatusListInput as ke, SupportStatusListOutput as kf, SupportStatusUpdateInput as kg, SupportStatusUpdateOutput as kh, SupportThreadAssignInput as ki, SupportThreadAssignOutput as kj, SupportThreadCreateInput as kk, SupportThreadCreateOutput as kl, SupportThreadGetInput as km, SupportThreadGetOutput as kn, SupportThreadListInput as ko, SupportThreadListOutput as kp, SupportThreadStatusSetInput as kq, SupportThreadStatusSetOutput as kr, SupportThreadUpdateInput as ks, SupportThreadUpdateOutput as kt, SupportWebhookCreateInput as ku, SupportWebhookCreateOutput as kv, SupportWebhookDeleteInput as kw, SupportWebhookDeleteOutput as kx, SupportWebhookDeliveriesListInput as ky, SupportWebhookDeliveriesListOutput as kz, BrainClickupConnectionsListOutput as l, UsersConfigGetOutput as l$, TrackingGoogleadsConversionActionsInput as l0, TrackingGoogleadsConversionActionsOutput as l1, TrackingGoogleadsFeedbackConfigGetInput as l2, TrackingGoogleadsFeedbackConfigGetOutput as l3, TrackingGoogleadsFeedbackConfigSetInput as l4, TrackingGoogleadsFeedbackConfigSetOutput as l5, TrackingGoogleadsFeedbackRunInput as l6, TrackingGoogleadsFeedbackRunOutput as l7, TrackingGoogleadsFeedbackStatusInput as l8, TrackingGoogleadsFeedbackStatusOutput as l9, TrackingProfilesDeleteInput as lA, TrackingProfilesDeleteOutput as lB, TrackingProfilesExportInput as lC, TrackingProfilesExportOutput as lD, TrackingProfilesGetInput as lE, TrackingProfilesGetOutput as lF, TrackingProfilesListInput as lG, TrackingProfilesListOutput as lH, TrackingReportsAttributedJourneyInput as lI, TrackingReportsAttributedJourneyOutput as lJ, TrackingReportsEventVolumeInput as lK, TrackingReportsEventVolumeOutput as lL, TrackingReportsRevenueBySourceInput as lM, TrackingReportsRevenueBySourceOutput as lN, TrackingReportsSourcePeopleInput as lO, TrackingReportsSourcePeopleOutput as lP, TrackingSnippetsGetInput as lQ, TrackingSnippetsGetOutput as lR, UsersApikeysCreateInput as lS, UsersApikeysCreateOutput as lT, UsersApikeysListInput as lU, UsersApikeysListOutput as lV, UsersApikeysRevokeInput as lW, UsersApikeysRevokeOutput as lX, UsersAuditListInput as lY, UsersAuditListOutput as lZ, UsersConfigGetInput as l_, TrackingGoogleadsFeedbackUploadsInput as la, TrackingGoogleadsFeedbackUploadsOutput as lb, TrackingGoogleadsRoasReportInput as lc, TrackingGoogleadsRoasReportOutput as ld, TrackingGoogleadsSyncNowInput as le, TrackingGoogleadsSyncNowOutput as lf, TrackingGoogleadsTrackingHealthInput as lg, TrackingGoogleadsTrackingHealthOutput as lh, TrackingGoogleadsUsVsPlatformInput as li, TrackingGoogleadsUsVsPlatformOutput as lj, TrackingIdentityHealthInput as lk, TrackingIdentityHealthOutput as ll, TrackingInstallDomainsCreateInput as lm, TrackingInstallDomainsCreateOutput as ln, TrackingInstallDomainsDeleteInput as lo, TrackingInstallDomainsDeleteOutput as lp, TrackingInstallDomainsListInput as lq, TrackingInstallDomainsListOutput as lr, TrackingLinkDomainsCreateInput as ls, TrackingLinkDomainsCreateOutput as lt, TrackingLinkDomainsDeleteInput as lu, TrackingLinkDomainsDeleteOutput as lv, TrackingLinkDomainsListInput as lw, TrackingLinkDomainsListOutput as lx, TrackingLiveEventsListInput as ly, TrackingLiveEventsListOutput as lz, BrainClickupListsListInput as m, UsersWebhooksDeleteOutput as m$, UsersConfigUpsertInput as m0, UsersConfigUpsertOutput as m1, UsersFactorsListInput as m2, UsersFactorsListOutput as m3, UsersFactorsResetInput as m4, UsersFactorsResetOutput as m5, UsersKeysListInput as m6, UsersKeysListOutput as m7, UsersKeysRevokeInput as m8, UsersKeysRevokeOutput as m9, UsersUsersGetInput as mA, UsersUsersGetOutput as mB, UsersUsersImportInput as mC, UsersUsersImportOutput as mD, UsersUsersInviteInput as mE, UsersUsersInviteOutput as mF, UsersUsersListInput as mG, UsersUsersListOutput as mH, UsersUsersSetPrimaryIdentifierInput as mI, UsersUsersSetPrimaryIdentifierOutput as mJ, UsersUsersUnbanInput as mK, UsersUsersUnbanOutput as mL, UsersUsersUpdateInput as mM, UsersUsersUpdateOutput as mN, UsersWaitlistEraseInput as mO, UsersWaitlistEraseOutput as mP, UsersWaitlistFunnelInput as mQ, UsersWaitlistFunnelOutput as mR, UsersWaitlistImportInput as mS, UsersWaitlistImportOutput as mT, UsersWaitlistInviteInput as mU, UsersWaitlistInviteOutput as mV, UsersWaitlistListInput as mW, UsersWaitlistListOutput as mX, UsersWebhooksCreateInput as mY, UsersWebhooksCreateOutput as mZ, UsersWebhooksDeleteInput as m_, UsersKeysRotateInput as ma, UsersKeysRotateOutput as mb, UsersOpsRetentionGetInput as mc, UsersOpsRetentionGetOutput as md, UsersOpsSloGetInput as me, UsersOpsSloGetOutput as mf, UsersSessionsGetInput as mg, UsersSessionsGetOutput as mh, UsersSessionsImpersonateInput as mi, UsersSessionsImpersonateOutput as mj, UsersSessionsListInput as mk, UsersSessionsListOutput as ml, UsersSessionsRevokeInput as mm, UsersSessionsRevokeOutput as mn, UsersStatsGetInput as mo, UsersStatsGetOutput as mp, UsersUsersBanInput as mq, UsersUsersBanOutput as mr, UsersUsersCreateInput as ms, UsersUsersCreateOutput as mt, UsersUsersDeleteInput as mu, UsersUsersDeleteOutput as mv, UsersUsersEraseInput as mw, UsersUsersEraseOutput as mx, UsersUsersExportInput as my, UsersUsersExportOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksDeliveriesListInput as n0, UsersWebhooksDeliveriesListOutput as n1, UsersWebhooksGetInput as n2, UsersWebhooksGetOutput as n3, UsersWebhooksListInput as n4, UsersWebhooksListOutput as n5, UsersWebhooksRotateSecretInput as n6, UsersWebhooksRotateSecretOutput as n7, UsersWebhooksUpdateInput as n8, UsersWebhooksUpdateOutput as n9, WaitlistConfigGetInput as na, WaitlistConfigGetOutput as nb, WaitlistConfigUpsertInput as nc, WaitlistConfigUpsertOutput as nd, WaitlistEmbedGetInput as ne, WaitlistEmbedGetOutput as nf, WaitlistInvitesSendInput as ng, WaitlistInvitesSendOutput as nh, WaitlistSignupsEraseInput as ni, WaitlistSignupsEraseOutput as nj, WaitlistSignupsFunnelInput as nk, WaitlistSignupsFunnelOutput as nl, WaitlistSignupsListInput as nm, WaitlistSignupsListOutput as nn, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };