@lessly/sdk-app 35.1.0 → 36.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +5 -0
  4. package/dist/brain/index.cjs.map +1 -1
  5. package/dist/brain/index.d.cts +6 -2
  6. package/dist/brain/index.d.ts +6 -2
  7. package/dist/brain/index.js +5 -1
  8. package/dist/brain/index.js.map +1 -1
  9. package/dist/{client.gen-B_GMJlI1.d.cts → client.gen-BSiYBjET.d.cts} +255 -1651
  10. package/dist/{client.gen-B_GMJlI1.d.ts → client.gen-BSiYBjET.d.ts} +255 -1651
  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 +51 -541
  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 +51 -541
  20. package/dist/index.js.map +1 -1
  21. package/dist/mail/index.d.cts +2 -2
  22. package/dist/mail/index.d.ts +2 -2
  23. package/dist/organization/index.cjs +18 -33
  24. package/dist/organization/index.cjs.map +1 -1
  25. package/dist/organization/index.d.cts +15 -27
  26. package/dist/organization/index.d.ts +15 -27
  27. package/dist/organization/index.js +15 -27
  28. package/dist/organization/index.js.map +1 -1
  29. package/dist/realtime/index.d.cts +1 -1
  30. package/dist/realtime/index.d.ts +1 -1
  31. package/dist/support/index.d.cts +1 -1
  32. package/dist/support/index.d.ts +1 -1
  33. package/dist/tracking/index.d.cts +1 -1
  34. package/dist/tracking/index.d.ts +1 -1
  35. package/dist/users/index.d.cts +1 -1
  36. package/dist/users/index.d.ts +1 -1
  37. package/dist/waitlist/index.d.cts +1 -1
  38. package/dist/waitlist/index.d.ts +1 -1
  39. package/package.json +2 -12
  40. package/src/gen/bindings.gen.ts +51 -541
  41. package/src/gen/brain/index.ts +1 -1
  42. package/src/gen/brain/queryOptions.gen.ts +7 -0
  43. package/src/gen/client.gen.ts +17 -159
  44. package/src/gen/manifest.gen.ts +1 -1
  45. package/src/gen/organization/index.ts +1 -1
  46. package/src/gen/organization/queryOptions.gen.ts +21 -41
  47. package/src/gen/types.gen.ts +246 -1654
  48. package/dist/observe/index.cjs +0 -116
  49. package/dist/observe/index.cjs.map +0 -1
  50. package/dist/observe/index.d.cts +0 -92
  51. package/dist/observe/index.d.ts +0 -92
  52. package/dist/observe/index.js +0 -93
  53. package/dist/observe/index.js.map +0 -1
  54. package/dist/playground/index.cjs +0 -66
  55. package/dist/playground/index.cjs.map +0 -1
  56. package/dist/playground/index.d.cts +0 -52
  57. package/dist/playground/index.d.ts +0 -52
  58. package/dist/playground/index.js +0 -53
  59. package/dist/playground/index.js.map +0 -1
  60. package/src/gen/observe/index.ts +0 -3
  61. package/src/gen/observe/queryOptions.gen.ts +0 -147
  62. package/src/gen/playground/index.ts +0 -3
  63. package/src/gen/playground/queryOptions.gen.ts +0 -86
@@ -935,6 +935,96 @@ 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
+ }
938
1028
  interface ConsentConfigCookieDomainUpsertInput {
939
1029
  cookieDomain: ("" | null | string);
940
1030
  }
@@ -12510,1273 +12600,126 @@ interface MailWebhookUpdateOutput {
12510
12600
  description: (string | null);
12511
12601
  enabled_events: string[];
12512
12602
  }
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;
12603
+ interface OrganizationAuthMeInput {
12518
12604
  }
12519
- interface ObserveArtifactsDeleteOutput {
12520
- /**
12521
- * Identifier of the stored artifact
12522
- */
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;
12672
+ }
12673
+ interface OrganizationConnectorsApproveRequestInput {
12523
12674
  id: 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;
12675
+ requestId: string;
12544
12676
  }
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;
12677
+ interface OrganizationConnectorsApproveRequestOutput {
12678
+ success: boolean;
12554
12679
  }
12555
- type ObserveArtifactsListOutput = {
12556
- /**
12557
- * Identifier of the stored artifact
12558
- */
12680
+ interface OrganizationConnectorsAttachInput {
12559
12681
  id: 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;
12682
+ productIds: string[];
12586
12683
  }
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;
12684
+ interface OrganizationConnectorsAttachOutput {
12685
+ attachments: {
12686
+ createdAt: string;
12687
+ createdBy: (string | null);
12688
+ productId: string;
12689
+ customerId: (string | null);
12690
+ descriptiveName: (string | null);
12616
12691
  }[];
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;
12692
+ connectorId: string;
12625
12693
  }
12626
- interface ObserveIssuesArchiveInput {
12627
- /**
12628
- * Identifier of the issue
12629
- */
12694
+ interface OrganizationConnectorsDeleteInput {
12630
12695
  id: string;
12631
12696
  }
12632
- interface ObserveIssuesArchiveOutput {
12633
- /**
12634
- * Identifier of the issue
12635
- */
12697
+ interface OrganizationConnectorsDeleteOutput {
12698
+ success: boolean;
12699
+ }
12700
+ interface OrganizationConnectorsDenyRequestInput {
12636
12701
  id: string;
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;
12702
+ requestId: string;
12697
12703
  }
12698
- interface ObserveIssuesAssignInput {
12699
- /**
12700
- * Identifier of the issue
12701
- */
12704
+ interface OrganizationConnectorsDenyRequestOutput {
12705
+ success: boolean;
12706
+ }
12707
+ interface OrganizationConnectorsDetachInput {
12702
12708
  id: string;
12703
- /**
12704
- * Who should own the issue; null clears the assignment
12705
- */
12706
- assignee: (string | null);
12709
+ productId: string;
12707
12710
  }
12708
- interface ObserveIssuesAssignOutput {
12709
- /**
12710
- * Identifier of the issue
12711
- */
12711
+ interface OrganizationConnectorsDetachOutput {
12712
+ success: boolean;
12713
+ }
12714
+ interface OrganizationConnectorsListInput {
12715
+ productId: string;
12716
+ }
12717
+ type OrganizationConnectorsListOutput = {
12712
12718
  id: string;
12713
- /**
12714
- * Display title, set when the issue opened and never rewritten
12715
- */
12716
- title: string;
12717
- /**
12718
- * unresolved, resolved or archived
12719
- */
12720
- status: string;
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
- * Stack of the most recent event, or null when the issue has no events yet or the stack could not be read
12787
- */
12788
- stack: ({
12789
- /**
12790
- * The stack, resolved where a stored source map matched the frame
12791
- */
12792
- frames: {
12793
- /**
12794
- * Column number, original when the frame resolved
12795
- */
12796
- colno?: number;
12797
- /**
12798
- * Whether the frame belongs to the application rather than a dependency
12799
- */
12800
- inApp?: boolean;
12801
- /**
12802
- * Line number, original when the frame resolved
12803
- */
12804
- lineno?: number;
12805
- /**
12806
- * Original file when the frame resolved, else the minified one
12807
- */
12808
- filename?: string;
12809
- /**
12810
- * Function name, original where the source map names one
12811
- */
12812
- function?: string;
12813
- /**
12814
- * False means no source map matched and the frame is exactly as it was recorded
12815
- */
12816
- resolved: boolean;
12817
- }[];
12818
- /**
12819
- * Identifier of the event the stack was taken from
12820
- */
12821
- eventId: string;
12822
- } | null);
12823
- /**
12824
- * Display title, set when the issue opened and never rewritten
12825
- */
12826
- title: string;
12827
- /**
12828
- * unresolved, resolved or archived
12829
- */
12830
- status: string;
12831
- /**
12832
- * Where the error appears to come from, or null
12833
- */
12834
- culprit: (string | null);
12835
- /**
12836
- * Who owns the issue, or null if unassigned
12837
- */
12838
- assignee: (string | null);
12839
- /**
12840
- * ISO 8601 timestamp of the most recent event
12841
- */
12842
- lastSeen: string;
12843
- /**
12844
- * ISO 8601 timestamp of the first event
12845
- */
12846
- firstSeen: string;
12847
- /**
12848
- * ISO 8601 archive timestamp, or null
12849
- */
12850
- archivedAt: (string | null);
12851
- /**
12852
- * How many events have landed on this issue
12853
- */
12854
- eventCount: number;
12855
- /**
12856
- * ISO 8601 resolution timestamp, or null
12857
- */
12858
- resolvedAt: (string | null);
12859
- /**
12860
- * Environment the issue was first seen in, or null
12861
- */
12862
- environment: (string | null);
12863
- /**
12864
- * Stable grouping hash the issue is keyed on
12865
- */
12866
- fingerprint: string;
12867
- /**
12868
- * ISO 8601 timestamp of the last regression, or null if it never regressed
12869
- */
12870
- regressedAt: (string | null);
12871
- /**
12872
- * Which rule of the ladder matched: explicit, stack, exception or message
12873
- */
12874
- groupingRule: string;
12875
- /**
12876
- * Exception class of the first event, or null
12877
- */
12878
- exceptionType: (string | null);
12879
- /**
12880
- * Grouping config version that produced the fingerprint; part of the issue identity
12881
- */
12882
- groupingVersion: string;
12883
- }
12884
- interface ObserveIssuesListInput {
12885
- /**
12886
- * How many issues to return, most recently seen first. 1-200, default 50
12887
- */
12888
- limit?: number;
12889
- /**
12890
- * Only return issues in this state; omit to list every state
12891
- */
12892
- status?: ("unresolved" | "resolved" | "archived");
12893
- /**
12894
- * Only return issues owned by this assignee
12895
- */
12896
- assignee?: string;
12897
- }
12898
- type ObserveIssuesListOutput = {
12899
- /**
12900
- * Identifier of the issue
12901
- */
12902
- id: string;
12903
- /**
12904
- * Display title, set when the issue opened and never rewritten
12905
- */
12906
- title: string;
12907
- /**
12908
- * unresolved, resolved or archived
12909
- */
12910
- status: string;
12911
- /**
12912
- * Where the error appears to come from, or null
12913
- */
12914
- culprit: (string | null);
12915
- /**
12916
- * Who owns the issue, or null if unassigned
12917
- */
12918
- assignee: (string | null);
12919
- /**
12920
- * ISO 8601 timestamp of the most recent event
12921
- */
12922
- lastSeen: string;
12923
- /**
12924
- * ISO 8601 timestamp of the first event
12925
- */
12926
- firstSeen: string;
12927
- /**
12928
- * ISO 8601 archive timestamp, or null
12929
- */
12930
- archivedAt: (string | null);
12931
- /**
12932
- * How many events have landed on this issue
12933
- */
12934
- eventCount: number;
12935
- /**
12936
- * ISO 8601 resolution timestamp, or null
12937
- */
12938
- resolvedAt: (string | null);
12939
- /**
12940
- * Environment the issue was first seen in, or null
12941
- */
12942
- environment: (string | null);
12943
- /**
12944
- * Stable grouping hash the issue is keyed on
12945
- */
12946
- fingerprint: string;
12947
- /**
12948
- * ISO 8601 timestamp of the last regression, or null if it never regressed
12949
- */
12950
- regressedAt: (string | null);
12951
- /**
12952
- * Which rule of the ladder matched: explicit, stack, exception or message
12953
- */
12954
- groupingRule: string;
12955
- /**
12956
- * Exception class of the first event, or null
12957
- */
12958
- exceptionType: (string | null);
12959
- /**
12960
- * Grouping config version that produced the fingerprint; part of the issue identity
12961
- */
12962
- groupingVersion: string;
12963
- }[];
12964
- interface ObserveIssuesResolveInput {
12965
- /**
12966
- * Identifier of the issue
12967
- */
12968
- id: string;
12969
- }
12970
- interface ObserveIssuesResolveOutput {
12971
- /**
12972
- * Identifier of the issue
12973
- */
12974
- id: string;
12975
- /**
12976
- * Display title, set when the issue opened and never rewritten
12977
- */
12978
- title: string;
12979
- /**
12980
- * unresolved, resolved or archived
12981
- */
12982
- status: string;
12983
- /**
12984
- * Where the error appears to come from, or null
12985
- */
12986
- culprit: (string | null);
12987
- /**
12988
- * Who owns the issue, or null if unassigned
12989
- */
12990
- assignee: (string | null);
12991
- /**
12992
- * ISO 8601 timestamp of the most recent event
12993
- */
12994
- lastSeen: string;
12995
- /**
12996
- * ISO 8601 timestamp of the first event
12997
- */
12998
- firstSeen: string;
12999
- /**
13000
- * ISO 8601 archive timestamp, or null
13001
- */
13002
- archivedAt: (string | null);
13003
- /**
13004
- * How many events have landed on this issue
13005
- */
13006
- eventCount: number;
13007
- /**
13008
- * ISO 8601 resolution timestamp, or null
13009
- */
13010
- resolvedAt: (string | null);
13011
- /**
13012
- * Environment the issue was first seen in, or null
13013
- */
13014
- environment: (string | null);
13015
- /**
13016
- * Stable grouping hash the issue is keyed on
13017
- */
13018
- fingerprint: string;
13019
- /**
13020
- * ISO 8601 timestamp of the last regression, or null if it never regressed
13021
- */
13022
- regressedAt: (string | null);
13023
- /**
13024
- * Which rule of the ladder matched: explicit, stack, exception or message
13025
- */
13026
- groupingRule: string;
13027
- /**
13028
- * Exception class of the first event, or null
13029
- */
13030
- exceptionType: (string | null);
13031
- /**
13032
- * Grouping config version that produced the fingerprint; part of the issue identity
13033
- */
13034
- groupingVersion: string;
13035
- }
13036
- interface ObserveKeysCreateInput {
13037
- /**
13038
- * ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
13039
- */
13040
- kind?: ("ingest" | "dsn");
13041
- /**
13042
- * Optional human label for the key, e.g. "ci" or "backend pods"
13043
- */
13044
- name?: string;
13045
- /**
13046
- * Environment this key sends telemetry for, e.g. "staging" or "production"
13047
- */
13048
- environment: string;
13049
- }
13050
- interface ObserveKeysCreateOutput {
13051
- /**
13052
- * Identifier of the ingest key
13053
- */
13054
- id: string;
13055
- /**
13056
- * The full DSN, for kind "dsn" — shown only here, store it now
13057
- */
13058
- dsn?: string;
13059
- /**
13060
- * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13061
- */
13062
- kind: ("ingest" | "dsn");
13063
- /**
13064
- * Human label given at creation, or null
13065
- */
13066
- name: (string | null);
13067
- /**
13068
- * The full ingest token, for kind "ingest" — shown only here, store it now
13069
- */
13070
- token?: string;
13071
- /**
13072
- * First characters of the token, shown for recognition
13073
- */
13074
- prefix: string;
13075
- /**
13076
- * ISO 8601 creation timestamp
13077
- */
13078
- createdAt: string;
13079
- /**
13080
- * ISO 8601 revocation timestamp, or null if active
13081
- */
13082
- revokedAt: (string | null);
13083
- /**
13084
- * Environment the key writes telemetry for
13085
- */
13086
- environment: string;
13087
- }
13088
- interface ObserveKeysListInput {
13089
- /**
13090
- * Only return keys of this environment; omit to list all of them
13091
- */
13092
- environment?: string;
13093
- }
13094
- type ObserveKeysListOutput = {
13095
- /**
13096
- * Identifier of the ingest key
13097
- */
13098
- id: string;
13099
- /**
13100
- * ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
13101
- */
13102
- kind: ("ingest" | "dsn");
13103
- /**
13104
- * Human label given at creation, or null
13105
- */
13106
- name: (string | null);
13107
- /**
13108
- * First characters of the token, shown for recognition
13109
- */
13110
- prefix: string;
13111
- /**
13112
- * ISO 8601 creation timestamp
13113
- */
13114
- createdAt: string;
13115
- /**
13116
- * ISO 8601 revocation timestamp, or null if active
13117
- */
13118
- revokedAt: (string | null);
13119
- /**
13120
- * Environment the key writes telemetry for
13121
- */
13122
- environment: string;
13123
- }[];
13124
- interface ObserveKeysRevokeInput {
13125
- /**
13126
- * Identifier of the ingest key to revoke
13127
- */
13128
- id: string;
13129
- }
13130
- interface ObserveKeysRevokeOutput {
13131
- /**
13132
- * Identifier of the revoked key
13133
- */
13134
- id: string;
13135
- /**
13136
- * ISO 8601 timestamp of the revocation
13137
- */
13138
- revokedAt: string;
13139
- }
13140
- interface ObserveLogsFacetsInput {
13141
- /**
13142
- * How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
13143
- */
13144
- window?: string;
13145
- }
13146
- interface ObserveLogsFacetsOutput {
13147
- /**
13148
- * Newest timestamp counted, ISO 8601
13149
- */
13150
- to: string;
13151
- /**
13152
- * Oldest timestamp counted, ISO 8601
13153
- */
13154
- from: string;
13155
- /**
13156
- * The window that was counted, e.g. "24h"
13157
- */
13158
- window: string;
13159
- /**
13160
- * Services, most frequent first
13161
- */
13162
- services: ObserveLogsFacetsOutputItems[];
13163
- /**
13164
- * Severities, most frequent first
13165
- */
13166
- severities: ObserveLogsFacetsOutputItems[];
13167
- /**
13168
- * Environments, most frequent first
13169
- */
13170
- environments: ObserveLogsFacetsOutputItems[];
13171
- }
13172
- interface ObserveLogsFacetsOutputItems {
13173
- /**
13174
- * How many lines carried it inside the window
13175
- */
13176
- count: number;
13177
- /**
13178
- * The value as the emitter wrote it
13179
- */
13180
- value: string;
13181
- }
13182
- interface ObserveLogsSearchInput {
13183
- /**
13184
- * Lucene-style expression, ANDed with the structured filters. `key:value` (service, environment, severity, trace_id, span_id, body; any other key matches an attribute), "quoted phrases", AND / OR / NOT in uppercase, parentheses. A bare word matches a whole word in the message body. Example: service:api AND NOT severity:INFO AND "connection refused"
13185
- */
13186
- q?: string;
13187
- /**
13188
- * Newest timestamp to include, ISO 8601
13189
- */
13190
- to?: string;
13191
- /**
13192
- * Oldest timestamp to include, ISO 8601
13193
- */
13194
- from?: string;
13195
- /**
13196
- * How many lines to return, 1-1000, default 100
13197
- */
13198
- limit?: number;
13199
- /**
13200
- * The nextCursor of the previous page; omit for the first page
13201
- */
13202
- cursor?: string;
13203
- /**
13204
- * Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
13205
- */
13206
- search?: string;
13207
- /**
13208
- * Only lines of this service, e.g. "api"
13209
- */
13210
- service?: string;
13211
- /**
13212
- * Only lines of this trace
13213
- */
13214
- traceId?: string;
13215
- /**
13216
- * Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
13217
- *
13218
- * @minItems 1
13219
- */
13220
- severityIn?: [string, ...(string)[]];
13221
- /**
13222
- * Only lines of this environment, e.g. "production"
13223
- */
13224
- environment?: string;
13225
- }
13226
- interface ObserveLogsSearchOutput {
13227
- /**
13228
- * The matching log lines, newest first
13229
- */
13230
- rows: {
13231
- /**
13232
- * The log message itself
13233
- */
13234
- body: string;
13235
- /**
13236
- * Span this line belongs to, empty when untraced
13237
- */
13238
- spanId: string;
13239
- /**
13240
- * Service that wrote the line
13241
- */
13242
- service: string;
13243
- /**
13244
- * Trace this line belongs to, empty when untraced
13245
- */
13246
- traceId: string;
13247
- /**
13248
- * ISO 8601 timestamp of the log line, millisecond precision
13249
- */
13250
- timestamp: string;
13251
- /**
13252
- * Attributes the emitter attached
13253
- */
13254
- attributes: {
13255
- [k: string]: string;
13256
- };
13257
- /**
13258
- * Environment the line was written in
13259
- */
13260
- environment: string;
13261
- /**
13262
- * Severity as the emitter named it, e.g. "ERROR"
13263
- */
13264
- severityText: string;
13265
- /**
13266
- * OpenTelemetry severity number, 1-24
13267
- */
13268
- severityNumber: number;
13269
- }[];
13270
- /**
13271
- * Pass back as cursor for the next page; null when the last page was reached
13272
- */
13273
- nextCursor: (string | null);
13274
- }
13275
- interface ObserveLogsTailInput {
13276
- /**
13277
- * The nextCursor of the previous poll; omit to start at the newest lines
13278
- */
13279
- cursor?: string;
13280
- /**
13281
- * Only lines of this service
13282
- */
13283
- service?: string;
13284
- /**
13285
- * Only lines whose severity is one of these
13286
- *
13287
- * @minItems 1
13288
- */
13289
- severityIn?: [string, ...(string)[]];
13290
- /**
13291
- * Only lines of this environment
13292
- */
13293
- environment?: string;
13294
- }
13295
- interface ObserveLogsTailOutput {
13296
- /**
13297
- * The new log lines, oldest first
13298
- */
13299
- rows: {
13300
- /**
13301
- * The log message itself
13302
- */
13303
- body: string;
13304
- /**
13305
- * Span this line belongs to, empty when untraced
13306
- */
13307
- spanId: string;
13308
- /**
13309
- * Service that wrote the line
13310
- */
13311
- service: string;
13312
- /**
13313
- * Trace this line belongs to, empty when untraced
13314
- */
13315
- traceId: string;
13316
- /**
13317
- * ISO 8601 timestamp of the log line, millisecond precision
13318
- */
13319
- timestamp: string;
13320
- /**
13321
- * Attributes the emitter attached
13322
- */
13323
- attributes: {
13324
- [k: string]: string;
13325
- };
13326
- /**
13327
- * Environment the line was written in
13328
- */
13329
- environment: string;
13330
- /**
13331
- * Severity as the emitter named it, e.g. "ERROR"
13332
- */
13333
- severityText: string;
13334
- /**
13335
- * OpenTelemetry severity number, 1-24
13336
- */
13337
- severityNumber: number;
13338
- }[];
13339
- /**
13340
- * Pass back as cursor on the next poll; null only while the product has no logs
13341
- */
13342
- nextCursor: (string | null);
13343
- }
13344
- interface ObserveWebhooksCreateInput {
13345
- /**
13346
- * HTTPS endpoint the event is POSTed to. Plain http:// is rejected
13347
- */
13348
- url: string;
13349
- /**
13350
- * Free-form note about what this endpoint is for, up to 1000 characters
13351
- */
13352
- description?: string;
13353
- }
13354
- interface ObserveWebhooksCreateOutput {
13355
- /**
13356
- * Identifier of the endpoint
13357
- */
13358
- id: string;
13359
- /**
13360
- * HTTPS endpoint events are POSTed to
13361
- */
13362
- url: string;
13363
- /**
13364
- * Whether deliveries are being attempted for it
13365
- */
13366
- active: boolean;
13367
- /**
13368
- * The signing secret — shown only here, store it now; it cannot be read back
13369
- */
13370
- secret: string;
13371
- /**
13372
- * ISO 8601 registration timestamp
13373
- */
13374
- createdAt: string;
13375
- /**
13376
- * ISO 8601 timestamp of the last change
13377
- */
13378
- updatedAt: string;
13379
- /**
13380
- * Free-form note given at registration, or null
13381
- */
13382
- description: (string | null);
13383
- }
13384
- interface ObserveWebhooksDeleteInput {
13385
- /**
13386
- * Identifier of the endpoint
13387
- */
13388
- id: string;
13389
- }
13390
- interface ObserveWebhooksDeleteOutput {
13391
- /**
13392
- * Identifier of the removed endpoint
13393
- */
13394
- id: string;
13395
- /**
13396
- * Always true; the call fails otherwise
13397
- */
13398
- deleted: true;
13399
- }
13400
- interface ObserveWebhooksDeliveriesListInput {
13401
- /**
13402
- * Page size, 1..200
13403
- */
13404
- limit?: number;
13405
- /**
13406
- * Number of deliveries to skip
13407
- */
13408
- offset?: number;
13409
- /**
13410
- * Only deliveries in this state
13411
- */
13412
- status?: ("pending" | "success" | "failed");
13413
- /**
13414
- * Only deliveries for this endpoint
13415
- */
13416
- webhookId?: string;
13417
- }
13418
- type ObserveWebhooksDeliveriesListOutput = {
13419
- /**
13420
- * Identifier of the delivery, also sent as the envelope id
13421
- */
13422
- id: string;
13423
- /**
13424
- * pending means attempts remain; failed means the retry ladder is spent
13425
- */
13426
- status: ("pending" | "success" | "failed");
13427
- /**
13428
- * The event data that was sent, before snake_case conversion
13429
- */
13430
- payload?: {
13431
- [k: string]: unknown;
13432
- };
13433
- /**
13434
- * ISO 8601 time the delivery was opened
13435
- */
13436
- createdAt: string;
13437
- /**
13438
- * Event that was delivered, e.g. "observe/issue.created"
13439
- */
13440
- eventName: string;
13441
- /**
13442
- * Why the last attempt failed, or null
13443
- */
13444
- lastError: (string | null);
13445
- /**
13446
- * Endpoint the delivery is for
13447
- */
13448
- webhookId: string;
13449
- /**
13450
- * ISO 8601 time it succeeded, or null
13451
- */
13452
- deliveredAt: (string | null);
13453
- /**
13454
- * How many attempts have been made so far
13455
- */
13456
- attemptCount: number;
13457
- /**
13458
- * Identity of the source event, repeated on every attempt and on a redelivery
13459
- */
13460
- idempotencyKey: string;
13461
- /**
13462
- * HTTP status of the last attempt, or null
13463
- */
13464
- lastStatusCode: (number | null);
13465
- }[];
13466
- interface ObserveWebhooksGetInput {
13467
- /**
13468
- * Identifier of the endpoint
13469
- */
13470
- id: string;
13471
- }
13472
- interface ObserveWebhooksGetOutput {
13473
- /**
13474
- * Identifier of the endpoint
13475
- */
13476
- id: string;
13477
- /**
13478
- * HTTPS endpoint events are POSTed to
13479
- */
13480
- url: string;
13481
- /**
13482
- * Whether deliveries are being attempted for it
13483
- */
13484
- active: boolean;
13485
- /**
13486
- * ISO 8601 registration timestamp
13487
- */
13488
- createdAt: string;
13489
- /**
13490
- * ISO 8601 timestamp of the last change
13491
- */
13492
- updatedAt: string;
13493
- /**
13494
- * Free-form note given at registration, or null
13495
- */
13496
- description: (string | null);
13497
- }
13498
- interface ObserveWebhooksListInput {
13499
- }
13500
- type ObserveWebhooksListOutput = {
13501
- /**
13502
- * Identifier of the endpoint
13503
- */
13504
- id: string;
13505
- /**
13506
- * HTTPS endpoint events are POSTed to
13507
- */
13508
- url: string;
13509
- /**
13510
- * Whether deliveries are being attempted for it
13511
- */
13512
- active: boolean;
13513
- /**
13514
- * ISO 8601 registration timestamp
13515
- */
13516
- createdAt: string;
13517
- /**
13518
- * ISO 8601 timestamp of the last change
13519
- */
13520
- updatedAt: string;
13521
- /**
13522
- * Free-form note given at registration, or null
13523
- */
13524
- description: (string | null);
13525
- }[];
13526
- interface ObserveWebhooksRedeliverInput {
13527
- /**
13528
- * Identifier of the delivery to send again
13529
- */
13530
- id: string;
13531
- }
13532
- interface ObserveWebhooksRedeliverOutput {
13533
- /**
13534
- * Identifier of the delivery, also sent as the envelope id
13535
- */
13536
- id: string;
13537
- /**
13538
- * pending means attempts remain; failed means the retry ladder is spent
13539
- */
13540
- status: ("pending" | "success" | "failed");
13541
- /**
13542
- * The event data that was sent, before snake_case conversion
13543
- */
13544
- payload?: {
13545
- [k: string]: unknown;
13546
- };
13547
- /**
13548
- * ISO 8601 time the delivery was opened
13549
- */
13550
- createdAt: string;
13551
- /**
13552
- * Event that was delivered, e.g. "observe/issue.created"
13553
- */
13554
- eventName: string;
13555
- /**
13556
- * Why the last attempt failed, or null
13557
- */
13558
- lastError: (string | null);
13559
- /**
13560
- * Endpoint the delivery is for
13561
- */
13562
- webhookId: string;
13563
- /**
13564
- * ISO 8601 time it succeeded, or null
13565
- */
13566
- deliveredAt: (string | null);
13567
- /**
13568
- * How many attempts have been made so far
13569
- */
13570
- attemptCount: number;
13571
- /**
13572
- * Identity of the source event, repeated on every attempt and on a redelivery
13573
- */
13574
- idempotencyKey: string;
13575
- /**
13576
- * HTTP status of the last attempt, or null
13577
- */
13578
- lastStatusCode: (number | null);
13579
- }
13580
- interface ObserveWebhooksRotateSecretInput {
13581
- /**
13582
- * Identifier of the endpoint
13583
- */
13584
- id: string;
13585
- }
13586
- interface ObserveWebhooksRotateSecretOutput {
13587
- /**
13588
- * Identifier of the endpoint
13589
- */
13590
- id: string;
13591
- /**
13592
- * HTTPS endpoint events are POSTed to
13593
- */
13594
- url: string;
13595
- /**
13596
- * Whether deliveries are being attempted for it
13597
- */
13598
- active: boolean;
13599
- /**
13600
- * The signing secret — shown only here, store it now; it cannot be read back
13601
- */
13602
- secret: string;
13603
- /**
13604
- * ISO 8601 registration timestamp
13605
- */
13606
- createdAt: string;
13607
- /**
13608
- * ISO 8601 timestamp of the last change
13609
- */
13610
- updatedAt: string;
13611
- /**
13612
- * Free-form note given at registration, or null
13613
- */
13614
- description: (string | null);
13615
- }
13616
- interface ObserveWebhooksUpdateInput {
13617
- /**
13618
- * Identifier of the endpoint to change
13619
- */
13620
- id: string;
13621
- /**
13622
- * New HTTPS endpoint. Plain http:// is rejected
13623
- */
13624
- url?: string;
13625
- /**
13626
- * false keeps the registration and stops delivery; true resumes it
13627
- */
13628
- active?: boolean;
13629
- /**
13630
- * New note, or null to clear it
13631
- */
13632
- description?: (string | null);
13633
- }
13634
- interface ObserveWebhooksUpdateOutput {
13635
- /**
13636
- * Identifier of the endpoint
13637
- */
13638
- id: string;
13639
- /**
13640
- * HTTPS endpoint events are POSTed to
13641
- */
13642
- url: string;
13643
- /**
13644
- * Whether deliveries are being attempted for it
13645
- */
13646
- active: boolean;
13647
- /**
13648
- * ISO 8601 registration timestamp
13649
- */
13650
- createdAt: string;
13651
- /**
13652
- * ISO 8601 timestamp of the last change
13653
- */
13654
- updatedAt: string;
13655
- /**
13656
- * Free-form note given at registration, or null
13657
- */
13658
- description: (string | null);
13659
- }
13660
- interface OrganizationAuthMeInput {
13661
- }
13662
- interface OrganizationAuthMeOutput {
13663
- email: string;
13664
- identityId: string;
13665
- displayName: string;
13666
- identityType: string;
13667
- }
13668
- interface OrganizationBillingBudgetsGetInput {
13669
- }
13670
- interface OrganizationBillingBudgetsGetOutput {
13671
- [k: string]: unknown;
13672
- }
13673
- interface OrganizationBillingBudgetsSetInput {
13674
- ceiling_minor: number;
13675
- }
13676
- interface OrganizationBillingBudgetsSetOutput {
13677
- [k: string]: unknown;
13678
- }
13679
- interface OrganizationBillingCapsClearInput {
13680
- productId: string;
13681
- }
13682
- interface OrganizationBillingCapsClearOutput {
13683
- [k: string]: unknown;
13684
- }
13685
- interface OrganizationBillingCapsSetInput {
13686
- cap_minor: number;
13687
- productId: string;
13688
- }
13689
- interface OrganizationBillingCapsSetOutput {
13690
- [k: string]: unknown;
13691
- }
13692
- interface OrganizationBindingsListInput {
13693
- domainId: string;
13694
- productId: string;
13695
- }
13696
- type OrganizationBindingsListOutput = {
13697
- host: string;
13698
- status: ("pending" | "active" | "failed");
13699
- records: {
13700
- ttl?: number;
13701
- name?: string;
13702
- target: string;
13703
- proxied?: boolean;
13704
- priority?: number;
13705
- recordType: string;
13706
- }[];
13707
- domainId: string;
13708
- bindingId: string;
13709
- instruction: (string | null);
13710
- statusDetail: (string | null);
13711
- ownerExtension: string;
13712
- }[];
13713
- interface OrganizationClickupInstallInput {
13714
- }
13715
- interface OrganizationClickupInstallOutput {
13716
- url: string;
13717
- }
13718
- interface OrganizationClickupListInstallationsInput {
13719
- }
13720
- type OrganizationClickupListInstallationsOutput = {
13721
- status: string;
13722
- teamId: string;
13723
- teamName: string;
13724
- }[];
13725
- interface OrganizationCloudflareInstallInput {
13726
- }
13727
- interface OrganizationCloudflareInstallOutput {
13728
- url: string;
13729
- }
13730
- interface OrganizationConnectorsApproveRequestInput {
13731
- id: string;
13732
- requestId: string;
13733
- }
13734
- interface OrganizationConnectorsApproveRequestOutput {
13735
- success: boolean;
13736
- }
13737
- interface OrganizationConnectorsAttachInput {
13738
- id: string;
13739
- productIds: string[];
13740
- }
13741
- interface OrganizationConnectorsAttachOutput {
13742
- attachments: {
13743
- createdAt: string;
13744
- createdBy: (string | null);
13745
- productId: string;
13746
- customerId: (string | null);
13747
- descriptiveName: (string | null);
13748
- }[];
13749
- connectorId: string;
13750
- }
13751
- interface OrganizationConnectorsDeleteInput {
13752
- id: string;
13753
- }
13754
- interface OrganizationConnectorsDeleteOutput {
13755
- success: boolean;
13756
- }
13757
- interface OrganizationConnectorsDenyRequestInput {
13758
- id: string;
13759
- requestId: string;
13760
- }
13761
- interface OrganizationConnectorsDenyRequestOutput {
13762
- success: boolean;
13763
- }
13764
- interface OrganizationConnectorsDetachInput {
13765
- id: string;
13766
- productId: string;
13767
- }
13768
- interface OrganizationConnectorsDetachOutput {
13769
- success: boolean;
13770
- }
13771
- interface OrganizationConnectorsListInput {
13772
- productId: string;
13773
- }
13774
- type OrganizationConnectorsListOutput = {
13775
- id: string;
13776
- config: {
13777
- [k: string]: unknown;
13778
- };
13779
- origin: ("product" | "org");
12719
+ config: {
12720
+ [k: string]: unknown;
12721
+ };
12722
+ origin: ("product" | "org");
13780
12723
  status: string;
13781
12724
  provider: string;
13782
12725
  createdAt: string;
@@ -13971,9 +12914,8 @@ interface OrganizationFeedbackSubmitInput {
13971
12914
  details: string;
13972
12915
  }
13973
12916
  interface OrganizationFeedbackSubmitOutput {
13974
- url: (string | null);
13975
- number: (number | null);
13976
- supportThreadId?: string;
12917
+ url: string;
12918
+ number: number;
13977
12919
  }
13978
12920
  interface OrganizationGdriveInstallInput {
13979
12921
  }
@@ -14212,6 +13154,23 @@ interface OrganizationPermissionCatalogOutput {
14212
13154
  display_name: string;
14213
13155
  }[];
14214
13156
  }
13157
+ interface OrganizationProductAcceptInvitationInput {
13158
+ token: string;
13159
+ }
13160
+ interface OrganizationProductAcceptInvitationOutput {
13161
+ product: {
13162
+ id: string;
13163
+ name: string;
13164
+ role: string;
13165
+ slug: string;
13166
+ demoAt: (string | null);
13167
+ status: string;
13168
+ blockedAt: (string | null);
13169
+ createdAt: string;
13170
+ archivedAt: (string | null);
13171
+ organizationId: string;
13172
+ };
13173
+ }
14215
13174
  interface OrganizationProductCreateInput {
14216
13175
  name: string;
14217
13176
  region?: "eu";
@@ -14224,13 +13183,31 @@ interface OrganizationProductCreateOutput {
14224
13183
  slug: string;
14225
13184
  demoAt: (string | null);
14226
13185
  status: string;
14227
- logoUrl: (string | null);
14228
13186
  blockedAt: (string | null);
14229
13187
  createdAt: string;
14230
13188
  archivedAt: (string | null);
14231
- description: (string | null);
14232
13189
  organizationId: string;
14233
13190
  }
13191
+ interface OrganizationProductInviteInput {
13192
+ role?: ("admin" | "member" | "viewer");
13193
+ email: string;
13194
+ productId: string;
13195
+ }
13196
+ type OrganizationProductInviteOutput = ({
13197
+ id: string;
13198
+ role: string;
13199
+ email: (string | null);
13200
+ status: string;
13201
+ outcome: "invited";
13202
+ createdAt: string;
13203
+ expiresAt: string;
13204
+ } | {
13205
+ role: string;
13206
+ userId: string;
13207
+ outcome: "added";
13208
+ memberId: string;
13209
+ productId: string;
13210
+ });
14234
13211
  interface OrganizationProductListInput {
14235
13212
  }
14236
13213
  interface OrganizationProductListOutput {
@@ -14241,47 +13218,24 @@ interface OrganizationProductListOutput {
14241
13218
  slug: string;
14242
13219
  demoAt: (string | null);
14243
13220
  status: string;
14244
- logoUrl: (string | null);
14245
13221
  blockedAt: (string | null);
14246
13222
  createdAt: string;
14247
13223
  archivedAt: (string | null);
14248
- description: (string | null);
14249
13224
  organizationId: string;
14250
13225
  }[];
14251
13226
  }
14252
- interface OrganizationProductListAccessInput {
13227
+ interface OrganizationProductListInvitationsInput {
14253
13228
  productId: string;
14254
13229
  }
14255
- interface OrganizationProductListAccessOutput {
14256
- members: {
14257
- role: string;
14258
- email: (string | null);
14259
- roleId: (string | null);
14260
- userId: string;
14261
- isCustom: boolean;
14262
- roleName: (string | null);
14263
- sourceRole: ({
14264
- id: string;
14265
- name: string;
14266
- } | null);
14267
- displayName: (string | null);
14268
- }[];
14269
- orgRoles: {
13230
+ interface OrganizationProductListInvitationsOutput {
13231
+ invitations: {
14270
13232
  id: string;
14271
- name: string;
14272
- description: (string | null);
14273
- }[];
14274
- canManage: boolean;
14275
- inherited: {
14276
- email: (string | null);
14277
- userId: string;
14278
- orgRole: ("owner" | "admin");
14279
- displayName: (string | null);
14280
- }[];
14281
- candidates: {
13233
+ role: string;
14282
13234
  email: (string | null);
14283
- userId: string;
14284
- displayName: (string | null);
13235
+ status: string;
13236
+ createdAt: string;
13237
+ expiresAt: string;
13238
+ invitedByDisplayName: string;
14285
13239
  }[];
14286
13240
  }
14287
13241
  interface OrganizationProductListMembersInput {
@@ -14315,12 +13269,12 @@ interface OrganizationProductListRolesOutput {
14315
13269
  productId: (string | null);
14316
13270
  }[];
14317
13271
  }
14318
- interface OrganizationProductRevokeAccessInput {
14319
- userId: string;
13272
+ interface OrganizationProductRevokeInvitationInput {
14320
13273
  productId: string;
13274
+ invitationId: string;
14321
13275
  }
14322
- interface OrganizationProductRevokeAccessOutput {
14323
- [k: string]: unknown;
13276
+ interface OrganizationProductRevokeInvitationOutput {
13277
+ message: string;
14324
13278
  }
14325
13279
  interface OrganizationProductSelectInput {
14326
13280
  productId: string;
@@ -14330,21 +13284,9 @@ interface OrganizationProductSelectOutput {
14330
13284
  name: string;
14331
13285
  slug: string;
14332
13286
  }
14333
- interface OrganizationProductSetAccessInput {
14334
- role?: ("admin" | "member" | "viewer");
14335
- roleId?: string;
14336
- userId: string;
14337
- productId: string;
14338
- }
14339
- interface OrganizationProductSetAccessOutput {
14340
- role: string;
14341
- userId: string;
14342
- productId: string;
14343
- }
14344
13287
  interface OrganizationProductUpdateInput {
14345
- name?: string;
13288
+ name: string;
14346
13289
  productId: string;
14347
- description?: (string | null);
14348
13290
  }
14349
13291
  interface OrganizationProductUpdateOutput {
14350
13292
  id: string;
@@ -14353,11 +13295,9 @@ interface OrganizationProductUpdateOutput {
14353
13295
  slug: string;
14354
13296
  demoAt: (string | null);
14355
13297
  status: string;
14356
- logoUrl: (string | null);
14357
13298
  blockedAt: (string | null);
14358
13299
  createdAt: string;
14359
13300
  archivedAt: (string | null);
14360
- description: (string | null);
14361
13301
  organizationId: string;
14362
13302
  }
14363
13303
  interface OrganizationPublicKeysCreateInput {
@@ -14542,272 +13482,6 @@ interface OrganizationSelectOutput {
14542
13482
  };
14543
13483
  activeProductId: (string | null);
14544
13484
  }
14545
- interface OrganizationSupportThreadCreateInput {
14546
- body: string;
14547
- title: string;
14548
- }
14549
- interface OrganizationSupportThreadCreateOutput {
14550
- id: string;
14551
- title: string;
14552
- status: string;
14553
- category: ("open" | "pending" | "resolved" | "closed");
14554
- messages: {
14555
- id: string;
14556
- body: string;
14557
- author: {
14558
- kind: ("user" | "agent");
14559
- name: string;
14560
- };
14561
- createdAt: string;
14562
- }[];
14563
- createdAt: string;
14564
- lastMessageAt: string;
14565
- lastMessagePreview: (string | null);
14566
- }
14567
- interface OrganizationSupportThreadGetInput {
14568
- id: string;
14569
- }
14570
- interface OrganizationSupportThreadGetOutput {
14571
- id: string;
14572
- title: string;
14573
- status: string;
14574
- category: ("open" | "pending" | "resolved" | "closed");
14575
- messages: {
14576
- id: string;
14577
- body: string;
14578
- author: {
14579
- kind: ("user" | "agent");
14580
- name: string;
14581
- };
14582
- createdAt: string;
14583
- }[];
14584
- createdAt: string;
14585
- lastMessageAt: string;
14586
- lastMessagePreview: (string | null);
14587
- }
14588
- interface OrganizationSupportThreadReplyInput {
14589
- id: string;
14590
- body: string;
14591
- }
14592
- interface OrganizationSupportThreadReplyOutput {
14593
- id: string;
14594
- title: string;
14595
- status: string;
14596
- category: ("open" | "pending" | "resolved" | "closed");
14597
- messages: {
14598
- id: string;
14599
- body: string;
14600
- author: {
14601
- kind: ("user" | "agent");
14602
- name: string;
14603
- };
14604
- createdAt: string;
14605
- }[];
14606
- createdAt: string;
14607
- lastMessageAt: string;
14608
- lastMessagePreview: (string | null);
14609
- }
14610
- interface OrganizationSupportThreadsListInput {
14611
- }
14612
- interface OrganizationSupportThreadsListOutput {
14613
- threads: {
14614
- id: string;
14615
- title: string;
14616
- status: string;
14617
- category: ("open" | "pending" | "resolved" | "closed");
14618
- createdAt: string;
14619
- lastMessageAt: string;
14620
- lastMessagePreview: (string | null);
14621
- }[];
14622
- }
14623
- interface PlaygroundAnalyticsOverviewInput {
14624
- /**
14625
- * Max records per entity in recent[]; omit for the endpoint default
14626
- */
14627
- limit?: number;
14628
- }
14629
- interface PlaygroundAnalyticsOverviewOutput {
14630
- ok: boolean;
14631
- minted: boolean;
14632
- overview?: unknown;
14633
- http_status: number;
14634
- }
14635
- interface PlaygroundBillingEntitlementsInput {
14636
- }
14637
- interface PlaygroundBillingEntitlementsOutput {
14638
- ok: boolean;
14639
- minted: boolean;
14640
- http_status: number;
14641
- entitlements?: unknown;
14642
- }
14643
- interface PlaygroundBillingRecordUsageInput {
14644
- /**
14645
- * Quantity of events to record against playground-events (SUM); defaults to 1
14646
- */
14647
- value?: number;
14648
- }
14649
- interface PlaygroundBillingRecordUsageOutput {
14650
- minted: boolean;
14651
- accepted: (number | null);
14652
- recorded: boolean;
14653
- duplicates: (number | null);
14654
- http_status: number;
14655
- }
14656
- interface PlaygroundClickupCreateTaskInput {
14657
- /**
14658
- * Task title; defaults to a fixture label
14659
- */
14660
- name?: string;
14661
- /**
14662
- * ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
14663
- */
14664
- listId?: string;
14665
- }
14666
- interface PlaygroundClickupCreateTaskOutput {
14667
- minted: boolean;
14668
- task_id: (string | null);
14669
- list_status: number;
14670
- vend_status: number;
14671
- clickup_status: number;
14672
- installation_count: number;
14673
- }
14674
- interface PlaygroundClickupGetLastWebhookInput {
14675
- }
14676
- type PlaygroundClickupGetLastWebhookOutput = ({
14677
- payload: string;
14678
- event_id: string;
14679
- provider: string;
14680
- verified: boolean;
14681
- product_id: string;
14682
- occurred_at: string;
14683
- connector_id: string;
14684
- clickup_event: (string | null);
14685
- receipt_count: number;
14686
- } | {
14687
- found: false;
14688
- });
14689
- interface PlaygroundClickupGetOverviewInput {
14690
- }
14691
- interface PlaygroundClickupGetOverviewOutput {
14692
- team: ({
14693
- teamId: string;
14694
- teamName: string;
14695
- } | null);
14696
- lists: PlaygroundClickupGetOverviewOutputItems[];
14697
- tasks: {
14698
- id: string;
14699
- name: string;
14700
- status: (string | null);
14701
- }[];
14702
- minted: boolean;
14703
- spaces: PlaygroundClickupGetOverviewOutputItems[];
14704
- list_status: number;
14705
- vend_status: number;
14706
- lists_status: number;
14707
- tasks_status: number;
14708
- spaces_status: number;
14709
- folders_status: number;
14710
- installation_count: number;
14711
- }
14712
- interface PlaygroundClickupGetOverviewOutputItems {
14713
- id: string;
14714
- name: string;
14715
- }
14716
- interface PlaygroundGdriveGetLastChangeInput {
14717
- }
14718
- type PlaygroundGdriveGetLastChangeOutput = ({
14719
- file_id: string;
14720
- removed: boolean;
14721
- file_name: (string | null);
14722
- mime_type: (string | null);
14723
- product_id: string;
14724
- occurred_at: string;
14725
- connector_id: string;
14726
- resource_state: string;
14727
- } | {
14728
- found: false;
14729
- });
14730
- interface PlaygroundGdriveReadFileInput {
14731
- /**
14732
- * Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
14733
- */
14734
- fileId?: string;
14735
- }
14736
- interface PlaygroundGdriveReadFileOutput {
14737
- minted: boolean;
14738
- file_id: (string | null);
14739
- file_name: (string | null);
14740
- mime_type: (string | null);
14741
- file_count: number;
14742
- get_status: number;
14743
- list_status: number;
14744
- vend_status: number;
14745
- content_bytes: (number | null);
14746
- }
14747
- interface PlaygroundGoogleadsReadCustomerInput {
14748
- }
14749
- interface PlaygroundGoogleadsReadCustomerOutput {
14750
- minted: boolean;
14751
- vended: boolean;
14752
- customer_id: (string | null);
14753
- vend_status: number;
14754
- result_count: number;
14755
- search_status: number;
14756
- login_customer_id: (string | null);
14757
- }
14758
- interface PlaygroundLifecycleGetStateInput {
14759
- }
14760
- interface PlaygroundLifecycleGetStateOutput {
14761
- blocked: boolean;
14762
- archived: boolean;
14763
- productId: string;
14764
- lastBlockTransition: ({
14765
- eventId: string;
14766
- eventName: string;
14767
- productId: string;
14768
- occurredAt: string;
14769
- recordedAt: string;
14770
- receiptCount: number;
14771
- organizationId: string;
14772
- cascadedFromOrg: boolean;
14773
- } | null);
14774
- lastArchiveTransition: ({
14775
- eventId: string;
14776
- eventName: string;
14777
- productId: string;
14778
- occurredAt: string;
14779
- recordedAt: string;
14780
- receiptCount: number;
14781
- organizationId: string;
14782
- cascadedFromOrg: boolean;
14783
- } | null);
14784
- }
14785
- interface PlaygroundLifecycleListEventsInput {
14786
- }
14787
- type PlaygroundLifecycleListEventsOutput = {
14788
- eventId: string;
14789
- eventName: string;
14790
- productId: string;
14791
- occurredAt: string;
14792
- recordedAt: string;
14793
- receiptCount: number;
14794
- organizationId: string;
14795
- cascadedFromOrg: boolean;
14796
- }[];
14797
- interface PlaygroundWebhookGetLastInput {
14798
- }
14799
- type PlaygroundWebhookGetLastOutput = ({
14800
- payload?: unknown;
14801
- event_id: string;
14802
- provider: string;
14803
- verified: boolean;
14804
- product_id: string;
14805
- occurred_at: string;
14806
- connector_id: string;
14807
- delivery_count: number;
14808
- } | {
14809
- found: false;
14810
- });
14811
13485
  interface RealtimeArchiveExportInput {
14812
13486
  /**
14813
13487
  * Only entries with ts <= to_ts (epoch ms)
@@ -22553,6 +21227,9 @@ interface GeneratedClient {
22553
21227
  restore: {
22554
21228
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
22555
21229
  };
21230
+ usage: {
21231
+ report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
21232
+ };
22556
21233
  };
22557
21234
  consent: {
22558
21235
  'config-cookie-domain': {
@@ -22863,44 +21540,6 @@ interface GeneratedClient {
22863
21540
  list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
22864
21541
  };
22865
21542
  };
22866
- observe: {
22867
- artifacts: {
22868
- delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
22869
- list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
22870
- resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
22871
- };
22872
- issues: {
22873
- archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
22874
- assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
22875
- get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
22876
- list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
22877
- resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
22878
- };
22879
- keys: {
22880
- create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
22881
- list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
22882
- revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
22883
- };
22884
- logs: {
22885
- facets(input: ObserveLogsFacetsInput): Promise<ObserveLogsFacetsOutput>;
22886
- search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
22887
- tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
22888
- };
22889
- webhooks: {
22890
- create(input: ObserveWebhooksCreateInput): Promise<ObserveWebhooksCreateOutput>;
22891
- delete(input: ObserveWebhooksDeleteInput): Promise<ObserveWebhooksDeleteOutput>;
22892
- get(input: ObserveWebhooksGetInput): Promise<ObserveWebhooksGetOutput>;
22893
- list(input: ObserveWebhooksListInput): Promise<ObserveWebhooksListOutput>;
22894
- redeliver(input: ObserveWebhooksRedeliverInput): Promise<ObserveWebhooksRedeliverOutput>;
22895
- update(input: ObserveWebhooksUpdateInput): Promise<ObserveWebhooksUpdateOutput>;
22896
- };
22897
- 'webhooks-deliveries': {
22898
- list(input: ObserveWebhooksDeliveriesListInput): Promise<ObserveWebhooksDeliveriesListOutput>;
22899
- };
22900
- 'webhooks-rotate': {
22901
- secret(input: ObserveWebhooksRotateSecretInput): Promise<ObserveWebhooksRotateSecretOutput>;
22902
- };
22903
- };
22904
21543
  organization: {
22905
21544
  create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
22906
21545
  list(input: OrganizationListInput): Promise<OrganizationListOutput>;
@@ -22982,14 +21621,15 @@ interface GeneratedClient {
22982
21621
  catalog(input: OrganizationPermissionCatalogInput): Promise<OrganizationPermissionCatalogOutput>;
22983
21622
  };
22984
21623
  product: {
21624
+ 'accept-invitation'(input: OrganizationProductAcceptInvitationInput): Promise<OrganizationProductAcceptInvitationOutput>;
22985
21625
  create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
21626
+ invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
22986
21627
  list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
22987
- 'list-access'(input: OrganizationProductListAccessInput): Promise<OrganizationProductListAccessOutput>;
21628
+ 'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
22988
21629
  'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
22989
21630
  'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
22990
- 'revoke-access'(input: OrganizationProductRevokeAccessInput): Promise<OrganizationProductRevokeAccessOutput>;
21631
+ 'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
22991
21632
  select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
22992
- 'set-access'(input: OrganizationProductSetAccessInput): Promise<OrganizationProductSetAccessOutput>;
22993
21633
  update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
22994
21634
  };
22995
21635
  'public-keys': {
@@ -23011,42 +21651,6 @@ interface GeneratedClient {
23011
21651
  'security-mfa': {
23012
21652
  enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
23013
21653
  };
23014
- 'support-thread': {
23015
- create(input: OrganizationSupportThreadCreateInput): Promise<OrganizationSupportThreadCreateOutput>;
23016
- get(input: OrganizationSupportThreadGetInput): Promise<OrganizationSupportThreadGetOutput>;
23017
- reply(input: OrganizationSupportThreadReplyInput): Promise<OrganizationSupportThreadReplyOutput>;
23018
- };
23019
- 'support-threads': {
23020
- list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
23021
- };
23022
- };
23023
- playground: {
23024
- analytics: {
23025
- overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
23026
- };
23027
- billing: {
23028
- entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
23029
- 'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
23030
- };
23031
- clickup: {
23032
- 'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
23033
- 'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
23034
- 'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
23035
- };
23036
- gdrive: {
23037
- 'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
23038
- 'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
23039
- };
23040
- googleads: {
23041
- 'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
23042
- };
23043
- lifecycle: {
23044
- 'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
23045
- 'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
23046
- };
23047
- webhook: {
23048
- 'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
23049
- };
23050
21654
  };
23051
21655
  realtime: {
23052
21656
  archive: {
@@ -23340,4 +21944,4 @@ interface GeneratedClient {
23340
21944
  };
23341
21945
  }
23342
21946
 
23343
- 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, OrganizationConnectorsDetachOutput 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, OrganizationAuthMeInput as gA, OrganizationAuthMeOutput as gB, OrganizationBillingBudgetsGetInput as gC, OrganizationBillingBudgetsGetOutput as gD, OrganizationBillingBudgetsSetInput as gE, OrganizationBillingBudgetsSetOutput as gF, OrganizationBillingCapsClearInput as gG, OrganizationBillingCapsClearOutput as gH, OrganizationBillingCapsSetInput as gI, OrganizationBillingCapsSetOutput as gJ, OrganizationBindingsListInput as gK, OrganizationBindingsListOutput as gL, OrganizationClickupInstallInput as gM, OrganizationClickupInstallOutput as gN, OrganizationClickupListInstallationsInput as gO, OrganizationClickupListInstallationsOutput as gP, OrganizationCloudflareInstallInput as gQ, OrganizationCloudflareInstallOutput as gR, OrganizationConnectorsApproveRequestInput as gS, OrganizationConnectorsApproveRequestOutput as gT, OrganizationConnectorsAttachInput as gU, OrganizationConnectorsAttachOutput as gV, OrganizationConnectorsDeleteInput as gW, OrganizationConnectorsDeleteOutput as gX, OrganizationConnectorsDenyRequestInput as gY, OrganizationConnectorsDenyRequestOutput as gZ, OrganizationConnectorsDetachInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsFacetsInput as ge, ObserveLogsFacetsOutput as gf, ObserveLogsSearchInput as gg, ObserveLogsSearchOutput as gh, ObserveLogsTailInput as gi, ObserveLogsTailOutput as gj, ObserveWebhooksCreateInput as gk, ObserveWebhooksCreateOutput as gl, ObserveWebhooksDeleteInput as gm, ObserveWebhooksDeleteOutput as gn, ObserveWebhooksDeliveriesListInput as go, ObserveWebhooksDeliveriesListOutput as gp, ObserveWebhooksGetInput as gq, ObserveWebhooksGetOutput as gr, ObserveWebhooksListInput as gs, ObserveWebhooksListOutput as gt, ObserveWebhooksRedeliverInput as gu, ObserveWebhooksRedeliverOutput as gv, ObserveWebhooksRotateSecretInput as gw, ObserveWebhooksRotateSecretOutput as gx, ObserveWebhooksUpdateInput as gy, ObserveWebhooksUpdateOutput as gz, BrainBackupsListOutput as h, OrganizationPermissionCatalogOutput as h$, OrganizationConnectorsListAttachmentsInput as h0, OrganizationConnectorsListAttachmentsOutput as h1, OrganizationConnectorsListAvailableInput as h2, OrganizationConnectorsListAvailableOutput as h3, OrganizationConnectorsListOrgInput as h4, OrganizationConnectorsListOrgOutput as h5, OrganizationConnectorsListInput as h6, OrganizationConnectorsListOutput as h7, OrganizationConnectorsListRequestsInput as h8, OrganizationConnectorsListRequestsOutput as h9, OrganizationGoogleadsInstallInput as hA, OrganizationGoogleadsInstallOutput as hB, OrganizationListInput as hC, OrganizationListOutput as hD, OrganizationMemberAcceptInviteInput as hE, OrganizationMemberAcceptInviteOutput as hF, OrganizationMemberInviteInput as hG, OrganizationMemberInviteOutput as hH, OrganizationMemberListInvitationsInput as hI, OrganizationMemberListInvitationsOutput as hJ, OrganizationMemberListProductAccessInput as hK, OrganizationMemberListProductAccessOutput as hL, OrganizationMemberListInput as hM, OrganizationMemberListOutput as hN, OrganizationMemberRemoveInput as hO, OrganizationMemberRemoveOutput as hP, OrganizationMemberRevokeInvitationInput as hQ, OrganizationMemberRevokeInvitationOutput as hR, OrganizationMemberSetRoleInput as hS, OrganizationMemberSetRoleOutput as hT, OrganizationMemberShareProductInput as hU, OrganizationMemberShareProductOutput as hV, OrganizationMemberUnshareProductInput as hW, OrganizationMemberUnshareProductOutput as hX, OrganizationMembersAssignRoleInput as hY, OrganizationMembersAssignRoleOutput as hZ, OrganizationPermissionCatalogInput as h_, OrganizationConnectorsRemoveInput as ha, OrganizationConnectorsRemoveOutput as hb, OrganizationConnectorsRequestInput as hc, OrganizationConnectorsRequestOutput as hd, OrganizationCreateInput as he, OrganizationCreateOutput as hf, OrganizationDomainsAddInput as hg, OrganizationDomainsAddOutput as hh, OrganizationDomainsGetInput as hi, OrganizationDomainsGetOutput as hj, OrganizationDomainsListInput as hk, OrganizationDomainsListOutput as hl, OrganizationDomainsRemoveInput as hm, OrganizationDomainsRemoveOutput as hn, OrganizationDomainsSetModeInput as ho, OrganizationDomainsSetModeOutput as hp, OrganizationExtensionsListInstalledInput as hq, OrganizationExtensionsListInstalledOutput as hr, OrganizationFeedbackSubmitInput as hs, OrganizationFeedbackSubmitOutput as ht, OrganizationGdriveInstallInput as hu, OrganizationGdriveInstallOutput as hv, OrganizationGithubInstallInput as hw, OrganizationGithubInstallOutput as hx, OrganizationGithubListInstallationsInput as hy, OrganizationGithubListInstallationsOutput as hz, BrainClickupChannelsListInput as i, PlaygroundClickupGetOverviewOutput as i$, OrganizationProductCreateInput as i0, OrganizationProductCreateOutput as i1, OrganizationProductListAccessInput as i2, OrganizationProductListAccessOutput as i3, OrganizationProductListMembersInput as i4, OrganizationProductListMembersOutput as i5, OrganizationProductListInput as i6, OrganizationProductListOutput as i7, OrganizationProductListRolesInput as i8, OrganizationProductListRolesOutput as i9, OrganizationRolesListInput as iA, OrganizationRolesListOutput as iB, OrganizationRolesUpdateInput as iC, OrganizationRolesUpdateOutput as iD, OrganizationSecurityMfaEnableInput as iE, OrganizationSecurityMfaEnableOutput as iF, OrganizationSelectInput as iG, OrganizationSelectOutput as iH, OrganizationSupportThreadCreateInput as iI, OrganizationSupportThreadCreateOutput as iJ, OrganizationSupportThreadGetInput as iK, OrganizationSupportThreadGetOutput as iL, OrganizationSupportThreadReplyInput as iM, OrganizationSupportThreadReplyOutput as iN, OrganizationSupportThreadsListInput as iO, OrganizationSupportThreadsListOutput as iP, PlaygroundAnalyticsOverviewInput as iQ, PlaygroundAnalyticsOverviewOutput as iR, PlaygroundBillingEntitlementsInput as iS, PlaygroundBillingEntitlementsOutput as iT, PlaygroundBillingRecordUsageInput as iU, PlaygroundBillingRecordUsageOutput as iV, PlaygroundClickupCreateTaskInput as iW, PlaygroundClickupCreateTaskOutput as iX, PlaygroundClickupGetLastWebhookInput as iY, PlaygroundClickupGetLastWebhookOutput as iZ, PlaygroundClickupGetOverviewInput as i_, OrganizationProductRevokeAccessInput as ia, OrganizationProductRevokeAccessOutput as ib, OrganizationProductSelectInput as ic, OrganizationProductSelectOutput as id, OrganizationProductSetAccessInput as ie, OrganizationProductSetAccessOutput as ig, OrganizationProductUpdateInput as ih, OrganizationProductUpdateOutput as ii, OrganizationPublicKeysCreateInput as ij, OrganizationPublicKeysCreateOutput as ik, OrganizationPublicKeysListInput as il, OrganizationPublicKeysListOutput as im, OrganizationPublicKeysRevokeInput as io, OrganizationPublicKeysRevokeOutput as ip, OrganizationPublicKeysUpdateScopeInput as iq, OrganizationPublicKeysUpdateScopeOutput as ir, OrganizationPublicRoutesListInput as is, OrganizationPublicRoutesListOutput as it, OrganizationRolesCreateInput as iu, OrganizationRolesCreateOutput as iv, OrganizationRolesDeleteInput as iw, OrganizationRolesDeleteOutput as ix, OrganizationRolesGetInput as iy, OrganizationRolesGetOutput as iz, BrainClickupChannelsListOutput as j, RealtimeWebhookListOutput as j$, PlaygroundGdriveGetLastChangeInput as j0, PlaygroundGdriveGetLastChangeOutput as j1, PlaygroundGdriveReadFileInput as j2, PlaygroundGdriveReadFileOutput as j3, PlaygroundGoogleadsReadCustomerInput as j4, PlaygroundGoogleadsReadCustomerOutput as j5, PlaygroundLifecycleGetStateInput as j6, PlaygroundLifecycleGetStateOutput as j7, PlaygroundLifecycleListEventsInput as j8, PlaygroundLifecycleListEventsOutput as j9, RealtimeNamespaceUpdateInput as jA, RealtimeNamespaceUpdateOutput as jB, RealtimePresenceEnterInput as jC, RealtimePresenceEnterOutput as jD, RealtimePresenceGetInput as jE, RealtimePresenceGetOutput as jF, RealtimePresenceLeaveInput as jG, RealtimePresenceLeaveOutput as jH, RealtimePresenceStatsInput as jI, RealtimePresenceStatsOutput as jJ, RealtimePresenceUpdateInput as jK, RealtimePresenceUpdateOutput as jL, RealtimePublicAccessStatusInput as jM, RealtimePublicAccessStatusOutput as jN, RealtimeStatusGetInput as jO, RealtimeStatusGetOutput as jP, RealtimeTokensCreateInput as jQ, RealtimeTokensCreateOutput as jR, RealtimeWebhookCreateInput as jS, RealtimeWebhookCreateOutput as jT, RealtimeWebhookDeleteInput as jU, RealtimeWebhookDeleteOutput as jV, RealtimeWebhookDeliveriesListInput as jW, RealtimeWebhookDeliveriesListOutput as jX, RealtimeWebhookGetInput as jY, RealtimeWebhookGetOutput as jZ, RealtimeWebhookListInput as j_, PlaygroundWebhookGetLastInput as ja, PlaygroundWebhookGetLastOutput as jb, RealtimeArchiveExportInput as jc, RealtimeArchiveExportOutput as jd, RealtimeArchiveExportStatusInput as je, RealtimeArchiveExportStatusOutput as jf, RealtimeArchiveGetInput as jg, RealtimeArchiveGetOutput as jh, RealtimeGrantCreateInput as ji, RealtimeGrantCreateOutput as jj, RealtimeGrantListInput as jk, RealtimeGrantListOutput as jl, RealtimeGrantRevokeInput as jm, RealtimeGrantRevokeOutput as jn, RealtimeHistoryGetInput as jo, RealtimeHistoryGetOutput as jp, RealtimeMessagesPublishInput as jq, RealtimeMessagesPublishOutput as jr, RealtimeNamespaceCreateInput as js, RealtimeNamespaceCreateOutput as jt, RealtimeNamespaceDeleteInput as ju, RealtimeNamespaceDeleteOutput as jv, RealtimeNamespaceGetInput as jw, RealtimeNamespaceGetOutput as jx, RealtimeNamespaceListInput as jy, RealtimeNamespaceListOutput as jz, BrainClickupConnectionsListInput as k, SupportThreadStatusSetOutput as k$, RealtimeWebhookSecretRotateInput as k0, RealtimeWebhookSecretRotateOutput as k1, RealtimeWebhookUpdateInput as k2, RealtimeWebhookUpdateOutput as k3, SupportAgentCreateInput as k4, SupportAgentCreateOutput as k5, SupportAgentGetInput as k6, SupportAgentGetOutput as k7, SupportAgentListInput as k8, SupportAgentListOutput as k9, SupportStatusUpdateInput as kA, SupportStatusUpdateOutput as kB, SupportSurveyArchiveInput as kC, SupportSurveyArchiveOutput as kD, SupportSurveyCreateInput as kE, SupportSurveyCreateOutput as kF, SupportSurveyGetInput as kG, SupportSurveyGetOutput as kH, SupportSurveyListInput as kI, SupportSurveyListOutput as kJ, SupportSurveyPublishInput as kK, SupportSurveyPublishOutput as kL, SupportSurveyStatsInput as kM, SupportSurveyStatsOutput as kN, SupportSurveyUnpublishInput as kO, SupportSurveyUnpublishOutput as kP, SupportSurveyUpdateInput as kQ, SupportSurveyUpdateOutput as kR, SupportThreadAssignInput as kS, SupportThreadAssignOutput as kT, SupportThreadCreateInput as kU, SupportThreadCreateOutput as kV, SupportThreadGetInput as kW, SupportThreadGetOutput as kX, SupportThreadListInput as kY, SupportThreadListOutput as kZ, SupportThreadStatusSetInput as k_, SupportAgentUpdateInput as ka, SupportAgentUpdateOutput as kb, SupportAttachmentCreateInput as kc, SupportAttachmentCreateOutput as kd, SupportAttachmentFinalizeInput as ke, SupportAttachmentFinalizeOutput as kf, SupportLabelCreateInput as kg, SupportLabelCreateOutput as kh, SupportLabelListInput as ki, SupportLabelListOutput as kj, SupportMessageCreateInput as kk, SupportMessageCreateOutput as kl, SupportMessageListInput as km, SupportMessageListOutput as kn, SupportResponseEscalateInput as ko, SupportResponseEscalateOutput as kp, SupportResponseGetInput as kq, SupportResponseGetOutput as kr, SupportResponseListInput as ks, SupportResponseListOutput as kt, SupportStatusArchiveInput as ku, SupportStatusArchiveOutput as kv, SupportStatusCreateInput as kw, SupportStatusCreateOutput as kx, SupportStatusListInput as ky, SupportStatusListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingInstallDomainsListOutput as l$, SupportThreadUpdateInput as l0, SupportThreadUpdateOutput as l1, SupportWebhookCreateInput as l2, SupportWebhookCreateOutput as l3, SupportWebhookDeleteInput as l4, SupportWebhookDeleteOutput as l5, SupportWebhookDeliveriesListInput as l6, SupportWebhookDeliveriesListOutput as l7, SupportWebhookGetInput as l8, SupportWebhookGetOutput as l9, TrackingGoogleadsConversionActionsInput as lA, TrackingGoogleadsConversionActionsOutput as lB, TrackingGoogleadsFeedbackConfigGetInput as lC, TrackingGoogleadsFeedbackConfigGetOutput as lD, TrackingGoogleadsFeedbackConfigSetInput as lE, TrackingGoogleadsFeedbackConfigSetOutput as lF, TrackingGoogleadsFeedbackRunInput as lG, TrackingGoogleadsFeedbackRunOutput as lH, TrackingGoogleadsFeedbackStatusInput as lI, TrackingGoogleadsFeedbackStatusOutput as lJ, TrackingGoogleadsFeedbackUploadsInput as lK, TrackingGoogleadsFeedbackUploadsOutput as lL, TrackingGoogleadsRoasReportInput as lM, TrackingGoogleadsRoasReportOutput as lN, TrackingGoogleadsSyncNowInput as lO, TrackingGoogleadsSyncNowOutput as lP, TrackingGoogleadsTrackingHealthInput as lQ, TrackingGoogleadsTrackingHealthOutput as lR, TrackingGoogleadsUsVsPlatformInput as lS, TrackingGoogleadsUsVsPlatformOutput as lT, TrackingIdentityHealthInput as lU, TrackingIdentityHealthOutput as lV, TrackingInstallDomainsCreateInput as lW, TrackingInstallDomainsCreateOutput as lX, TrackingInstallDomainsDeleteInput as lY, TrackingInstallDomainsDeleteOutput as lZ, TrackingInstallDomainsListInput as l_, SupportWebhookListInput as la, SupportWebhookListOutput as lb, SupportWebhookRedeliverInput as lc, SupportWebhookRedeliverOutput as ld, SupportWebhookRotateSecretInput as le, SupportWebhookRotateSecretOutput as lf, SupportWebhookUpdateInput as lg, SupportWebhookUpdateOutput as lh, TrackingDomainsCreateInput as li, TrackingDomainsCreateOutput as lj, TrackingDomainsDeleteInput as lk, TrackingDomainsDeleteOutput as ll, TrackingDomainsGetInput as lm, TrackingDomainsGetOutput as ln, TrackingDomainsListInput as lo, TrackingDomainsListOutput as lp, TrackingDomainsVerifyInput as lq, TrackingDomainsVerifyOutput as lr, TrackingEventNamesArchiveInput as ls, TrackingEventNamesArchiveOutput as lt, TrackingEventNamesListInput as lu, TrackingEventNamesListOutput as lv, TrackingEventNamesUnarchiveInput as lw, TrackingEventNamesUnarchiveOutput as lx, TrackingGoogleadsConnectionStatusInput as ly, TrackingGoogleadsConnectionStatusOutput as lz, BrainClickupListsListInput as m, UsersUsersBanOutput as m$, TrackingLinkDomainsCreateInput as m0, TrackingLinkDomainsCreateOutput as m1, TrackingLinkDomainsDeleteInput as m2, TrackingLinkDomainsDeleteOutput as m3, TrackingLinkDomainsListInput as m4, TrackingLinkDomainsListOutput as m5, TrackingLiveEventsListInput as m6, TrackingLiveEventsListOutput as m7, TrackingProfilesDeleteInput as m8, TrackingProfilesDeleteOutput as m9, UsersConfigUpsertInput as mA, UsersConfigUpsertOutput as mB, UsersFactorsListInput as mC, UsersFactorsListOutput as mD, UsersFactorsResetInput as mE, UsersFactorsResetOutput as mF, UsersKeysListInput as mG, UsersKeysListOutput as mH, UsersKeysRevokeInput as mI, UsersKeysRevokeOutput as mJ, UsersKeysRotateInput as mK, UsersKeysRotateOutput as mL, UsersOpsRetentionGetInput as mM, UsersOpsRetentionGetOutput as mN, UsersOpsSloGetInput as mO, UsersOpsSloGetOutput as mP, UsersSessionsGetInput as mQ, UsersSessionsGetOutput as mR, UsersSessionsImpersonateInput as mS, UsersSessionsImpersonateOutput as mT, UsersSessionsListInput as mU, UsersSessionsListOutput as mV, UsersSessionsRevokeInput as mW, UsersSessionsRevokeOutput as mX, UsersStatsGetInput as mY, UsersStatsGetOutput as mZ, UsersUsersBanInput as m_, TrackingProfilesExportInput as ma, TrackingProfilesExportOutput as mb, TrackingProfilesGetInput as mc, TrackingProfilesGetOutput as md, TrackingProfilesListInput as me, TrackingProfilesListOutput as mf, TrackingReportsAttributedJourneyInput as mg, TrackingReportsAttributedJourneyOutput as mh, TrackingReportsEventVolumeInput as mi, TrackingReportsEventVolumeOutput as mj, TrackingReportsRevenueBySourceInput as mk, TrackingReportsRevenueBySourceOutput as ml, TrackingReportsSourcePeopleInput as mm, TrackingReportsSourcePeopleOutput as mn, TrackingSnippetsGetInput as mo, TrackingSnippetsGetOutput as mp, UsersApikeysCreateInput as mq, UsersApikeysCreateOutput as mr, UsersApikeysListInput as ms, UsersApikeysListOutput as mt, UsersApikeysRevokeInput as mu, UsersApikeysRevokeOutput as mv, UsersAuditListInput as mw, UsersAuditListOutput as mx, UsersConfigGetInput as my, UsersConfigGetOutput as mz, BrainClickupListsListOutput as n, UsersUsersCreateInput as n0, UsersUsersCreateOutput as n1, UsersUsersDeleteInput as n2, UsersUsersDeleteOutput as n3, UsersUsersEraseInput as n4, UsersUsersEraseOutput as n5, UsersUsersExportInput as n6, UsersUsersExportOutput as n7, UsersUsersGetInput as n8, UsersUsersGetOutput as n9, UsersWebhooksDeliveriesListInput as nA, UsersWebhooksDeliveriesListOutput as nB, UsersWebhooksGetInput as nC, UsersWebhooksGetOutput as nD, UsersWebhooksListInput as nE, UsersWebhooksListOutput as nF, UsersWebhooksRotateSecretInput as nG, UsersWebhooksRotateSecretOutput as nH, UsersWebhooksUpdateInput as nI, UsersWebhooksUpdateOutput as nJ, WaitlistConfigGetInput as nK, WaitlistConfigGetOutput as nL, WaitlistConfigUpsertInput as nM, WaitlistConfigUpsertOutput as nN, WaitlistEmbedGetInput as nO, WaitlistEmbedGetOutput as nP, WaitlistInvitesSendInput as nQ, WaitlistInvitesSendOutput as nR, WaitlistSignupsEraseInput as nS, WaitlistSignupsEraseOutput as nT, WaitlistSignupsFunnelInput as nU, WaitlistSignupsFunnelOutput as nV, WaitlistSignupsListInput as nW, WaitlistSignupsListOutput as nX, UsersUsersImportInput as na, UsersUsersImportOutput as nb, UsersUsersInviteInput as nc, UsersUsersInviteOutput as nd, UsersUsersListInput as ne, UsersUsersListOutput as nf, UsersUsersSetPrimaryIdentifierInput as ng, UsersUsersSetPrimaryIdentifierOutput as nh, UsersUsersUnbanInput as ni, UsersUsersUnbanOutput as nj, UsersUsersUpdateInput as nk, UsersUsersUpdateOutput as nl, UsersWaitlistEraseInput as nm, UsersWaitlistEraseOutput as nn, UsersWaitlistFunnelInput as no, UsersWaitlistFunnelOutput as np, UsersWaitlistImportInput as nq, UsersWaitlistImportOutput as nr, UsersWaitlistInviteInput as ns, UsersWaitlistInviteOutput as nt, UsersWaitlistListInput as nu, UsersWaitlistListOutput as nv, UsersWebhooksCreateInput as nw, UsersWebhooksCreateOutput as nx, UsersWebhooksDeleteInput as ny, UsersWebhooksDeleteOutput as nz, 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 };
21947
+ 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, SupportWebhookDeliveriesListOutput 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, SupportSurveyListInput as jA, SupportSurveyListOutput as jB, SupportSurveyPublishInput as jC, SupportSurveyPublishOutput as jD, SupportSurveyStatsInput as jE, SupportSurveyStatsOutput as jF, SupportSurveyUnpublishInput as jG, SupportSurveyUnpublishOutput as jH, SupportSurveyUpdateInput as jI, SupportSurveyUpdateOutput as jJ, SupportThreadAssignInput as jK, SupportThreadAssignOutput as jL, SupportThreadCreateInput as jM, SupportThreadCreateOutput as jN, SupportThreadGetInput as jO, SupportThreadGetOutput as jP, SupportThreadListInput as jQ, SupportThreadListOutput as jR, SupportThreadStatusSetInput as jS, SupportThreadStatusSetOutput as jT, SupportThreadUpdateInput as jU, SupportThreadUpdateOutput as jV, SupportWebhookCreateInput as jW, SupportWebhookCreateOutput as jX, SupportWebhookDeleteInput as jY, SupportWebhookDeleteOutput as jZ, SupportWebhookDeliveriesListInput as j_, SupportLabelListInput as ja, SupportLabelListOutput as jb, SupportMessageCreateInput as jc, SupportMessageCreateOutput as jd, SupportMessageListInput as je, SupportMessageListOutput as jf, SupportResponseEscalateInput as jg, SupportResponseEscalateOutput as jh, SupportResponseGetInput as ji, SupportResponseGetOutput as jj, SupportResponseListInput as jk, SupportResponseListOutput as jl, SupportStatusArchiveInput as jm, SupportStatusArchiveOutput as jn, SupportStatusCreateInput as jo, SupportStatusCreateOutput as jp, SupportStatusListInput as jq, SupportStatusListOutput as jr, SupportStatusUpdateInput as js, SupportStatusUpdateOutput as jt, SupportSurveyArchiveInput as ju, SupportSurveyArchiveOutput as jv, SupportSurveyCreateInput as jw, SupportSurveyCreateOutput as jx, SupportSurveyGetInput as jy, SupportSurveyGetOutput as jz, BrainClickupConnectionsListInput as k, TrackingLiveEventsListOutput as k$, SupportWebhookGetInput as k0, SupportWebhookGetOutput as k1, SupportWebhookListInput as k2, SupportWebhookListOutput as k3, SupportWebhookRedeliverInput as k4, SupportWebhookRedeliverOutput as k5, SupportWebhookRotateSecretInput as k6, SupportWebhookRotateSecretOutput as k7, SupportWebhookUpdateInput as k8, SupportWebhookUpdateOutput as k9, TrackingGoogleadsFeedbackStatusInput as kA, TrackingGoogleadsFeedbackStatusOutput as kB, TrackingGoogleadsFeedbackUploadsInput as kC, TrackingGoogleadsFeedbackUploadsOutput as kD, TrackingGoogleadsRoasReportInput as kE, TrackingGoogleadsRoasReportOutput as kF, TrackingGoogleadsSyncNowInput as kG, TrackingGoogleadsSyncNowOutput as kH, TrackingGoogleadsTrackingHealthInput as kI, TrackingGoogleadsTrackingHealthOutput as kJ, TrackingGoogleadsUsVsPlatformInput as kK, TrackingGoogleadsUsVsPlatformOutput as kL, TrackingIdentityHealthInput as kM, TrackingIdentityHealthOutput as kN, TrackingInstallDomainsCreateInput as kO, TrackingInstallDomainsCreateOutput as kP, TrackingInstallDomainsDeleteInput as kQ, TrackingInstallDomainsDeleteOutput as kR, TrackingInstallDomainsListInput as kS, TrackingInstallDomainsListOutput as kT, TrackingLinkDomainsCreateInput as kU, TrackingLinkDomainsCreateOutput as kV, TrackingLinkDomainsDeleteInput as kW, TrackingLinkDomainsDeleteOutput as kX, TrackingLinkDomainsListInput as kY, TrackingLinkDomainsListOutput as kZ, TrackingLiveEventsListInput as k_, TrackingDomainsCreateInput as ka, TrackingDomainsCreateOutput as kb, TrackingDomainsDeleteInput as kc, TrackingDomainsDeleteOutput as kd, TrackingDomainsGetInput as ke, TrackingDomainsGetOutput as kf, TrackingDomainsListInput as kg, TrackingDomainsListOutput as kh, TrackingDomainsVerifyInput as ki, TrackingDomainsVerifyOutput as kj, TrackingEventNamesArchiveInput as kk, TrackingEventNamesArchiveOutput as kl, TrackingEventNamesListInput as km, TrackingEventNamesListOutput as kn, TrackingEventNamesUnarchiveInput as ko, TrackingEventNamesUnarchiveOutput as kp, TrackingGoogleadsConnectionStatusInput as kq, TrackingGoogleadsConnectionStatusOutput as kr, TrackingGoogleadsConversionActionsInput as ks, TrackingGoogleadsConversionActionsOutput as kt, TrackingGoogleadsFeedbackConfigGetInput as ku, TrackingGoogleadsFeedbackConfigGetOutput as kv, TrackingGoogleadsFeedbackConfigSetInput as kw, TrackingGoogleadsFeedbackConfigSetOutput as kx, TrackingGoogleadsFeedbackRunInput as ky, TrackingGoogleadsFeedbackRunOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersExportOutput as l$, TrackingProfilesDeleteInput as l0, TrackingProfilesDeleteOutput as l1, TrackingProfilesExportInput as l2, TrackingProfilesExportOutput as l3, TrackingProfilesGetInput as l4, TrackingProfilesGetOutput as l5, TrackingProfilesListInput as l6, TrackingProfilesListOutput as l7, TrackingReportsAttributedJourneyInput as l8, TrackingReportsAttributedJourneyOutput as l9, UsersKeysRevokeInput as lA, UsersKeysRevokeOutput as lB, UsersKeysRotateInput as lC, UsersKeysRotateOutput as lD, UsersOpsRetentionGetInput as lE, UsersOpsRetentionGetOutput as lF, UsersOpsSloGetInput as lG, UsersOpsSloGetOutput as lH, UsersSessionsGetInput as lI, UsersSessionsGetOutput as lJ, UsersSessionsImpersonateInput as lK, UsersSessionsImpersonateOutput as lL, UsersSessionsListInput as lM, UsersSessionsListOutput as lN, UsersSessionsRevokeInput as lO, UsersSessionsRevokeOutput as lP, UsersStatsGetInput as lQ, UsersStatsGetOutput as lR, UsersUsersBanInput as lS, UsersUsersBanOutput as lT, UsersUsersCreateInput as lU, UsersUsersCreateOutput as lV, UsersUsersDeleteInput as lW, UsersUsersDeleteOutput as lX, UsersUsersEraseInput as lY, UsersUsersEraseOutput as lZ, UsersUsersExportInput as l_, TrackingReportsEventVolumeInput as la, TrackingReportsEventVolumeOutput as lb, TrackingReportsRevenueBySourceInput as lc, TrackingReportsRevenueBySourceOutput as ld, TrackingReportsSourcePeopleInput as le, TrackingReportsSourcePeopleOutput as lf, TrackingSnippetsGetInput as lg, TrackingSnippetsGetOutput as lh, UsersApikeysCreateInput as li, UsersApikeysCreateOutput as lj, UsersApikeysListInput as lk, UsersApikeysListOutput as ll, UsersApikeysRevokeInput as lm, UsersApikeysRevokeOutput as ln, UsersAuditListInput as lo, UsersAuditListOutput as lp, UsersConfigGetInput as lq, UsersConfigGetOutput as lr, UsersConfigUpsertInput as ls, UsersConfigUpsertOutput as lt, UsersFactorsListInput as lu, UsersFactorsListOutput as lv, UsersFactorsResetInput as lw, UsersFactorsResetOutput as lx, UsersKeysListInput as ly, UsersKeysListOutput as lz, BrainClickupListsListInput as m, UsersUsersGetInput as m0, UsersUsersGetOutput as m1, UsersUsersImportInput as m2, UsersUsersImportOutput as m3, UsersUsersInviteInput as m4, UsersUsersInviteOutput as m5, UsersUsersListInput as m6, UsersUsersListOutput as m7, UsersUsersSetPrimaryIdentifierInput as m8, UsersUsersSetPrimaryIdentifierOutput as m9, UsersWebhooksUpdateInput as mA, UsersWebhooksUpdateOutput as mB, WaitlistConfigGetInput as mC, WaitlistConfigGetOutput as mD, WaitlistConfigUpsertInput as mE, WaitlistConfigUpsertOutput as mF, WaitlistEmbedGetInput as mG, WaitlistEmbedGetOutput as mH, WaitlistInvitesSendInput as mI, WaitlistInvitesSendOutput as mJ, WaitlistSignupsEraseInput as mK, WaitlistSignupsEraseOutput as mL, WaitlistSignupsFunnelInput as mM, WaitlistSignupsFunnelOutput as mN, WaitlistSignupsListInput as mO, WaitlistSignupsListOutput as mP, UsersUsersUnbanInput as ma, UsersUsersUnbanOutput as mb, UsersUsersUpdateInput as mc, UsersUsersUpdateOutput as md, UsersWaitlistEraseInput as me, UsersWaitlistEraseOutput as mf, UsersWaitlistFunnelInput as mg, UsersWaitlistFunnelOutput as mh, UsersWaitlistImportInput as mi, UsersWaitlistImportOutput as mj, UsersWaitlistInviteInput as mk, UsersWaitlistInviteOutput as ml, UsersWaitlistListInput as mm, UsersWaitlistListOutput as mn, UsersWebhooksCreateInput as mo, UsersWebhooksCreateOutput as mp, UsersWebhooksDeleteInput as mq, UsersWebhooksDeleteOutput as mr, UsersWebhooksDeliveriesListInput as ms, UsersWebhooksDeliveriesListOutput as mt, UsersWebhooksGetInput as mu, UsersWebhooksGetOutput as mv, UsersWebhooksListInput as mw, UsersWebhooksListOutput as mx, UsersWebhooksRotateSecretInput as my, UsersWebhooksRotateSecretOutput as mz, 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 };