@lessly/sdk-app 31.0.0 → 31.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.d.cts +1 -1
- package/dist/brain/index.d.ts +1 -1
- package/dist/{client.gen-Cn7kIdt-.d.cts → client.gen-CgxJO9Bv.d.cts} +827 -1
- package/dist/{client.gen-Cn7kIdt-.d.ts → client.gen-CgxJO9Bv.d.ts} +827 -1
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +270 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +270 -0
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/observe/index.cjs +71 -0
- package/dist/observe/index.cjs.map +1 -0
- package/dist/observe/index.d.cts +56 -0
- package/dist/observe/index.d.ts +56 -0
- package/dist/observe/index.js +57 -0
- package/dist/observe/index.js.map +1 -0
- package/dist/organization/index.cjs +15 -0
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.d.cts +14 -2
- package/dist/organization/index.d.ts +14 -2
- package/dist/organization/index.js +13 -1
- package/dist/organization/index.js.map +1 -1
- package/dist/playground/index.d.cts +1 -1
- package/dist/playground/index.d.ts +1 -1
- package/dist/realtime/index.d.cts +1 -1
- package/dist/realtime/index.d.ts +1 -1
- package/dist/support/index.d.cts +1 -1
- package/dist/support/index.d.ts +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/users/index.d.cts +1 -1
- package/dist/users/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +7 -2
- package/src/gen/bindings.gen.ts +270 -0
- package/src/gen/client.gen.ts +58 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/observe/index.ts +3 -0
- package/src/gen/observe/queryOptions.gen.ts +89 -0
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +19 -0
- package/src/gen/types.gen.ts +832 -0
|
@@ -12510,6 +12510,753 @@ interface MailWebhookUpdateOutput {
|
|
|
12510
12510
|
description: (string | null);
|
|
12511
12511
|
enabled_events: string[];
|
|
12512
12512
|
}
|
|
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;
|
|
12518
|
+
}
|
|
12519
|
+
interface ObserveArtifactsDeleteOutput {
|
|
12520
|
+
/**
|
|
12521
|
+
* Identifier of the stored artifact
|
|
12522
|
+
*/
|
|
12523
|
+
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;
|
|
12544
|
+
}
|
|
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;
|
|
12554
|
+
}
|
|
12555
|
+
type ObserveArtifactsListOutput = {
|
|
12556
|
+
/**
|
|
12557
|
+
* Identifier of the stored artifact
|
|
12558
|
+
*/
|
|
12559
|
+
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;
|
|
12586
|
+
}
|
|
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;
|
|
12616
|
+
}[];
|
|
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;
|
|
12625
|
+
}
|
|
12626
|
+
interface ObserveIssuesArchiveInput {
|
|
12627
|
+
/**
|
|
12628
|
+
* Identifier of the issue
|
|
12629
|
+
*/
|
|
12630
|
+
id: string;
|
|
12631
|
+
}
|
|
12632
|
+
interface ObserveIssuesArchiveOutput {
|
|
12633
|
+
/**
|
|
12634
|
+
* Identifier of the issue
|
|
12635
|
+
*/
|
|
12636
|
+
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;
|
|
12697
|
+
}
|
|
12698
|
+
interface ObserveIssuesAssignInput {
|
|
12699
|
+
/**
|
|
12700
|
+
* Identifier of the issue
|
|
12701
|
+
*/
|
|
12702
|
+
id: string;
|
|
12703
|
+
/**
|
|
12704
|
+
* Who should own the issue; null clears the assignment
|
|
12705
|
+
*/
|
|
12706
|
+
assignee: (string | null);
|
|
12707
|
+
}
|
|
12708
|
+
interface ObserveIssuesAssignOutput {
|
|
12709
|
+
/**
|
|
12710
|
+
* Identifier of the issue
|
|
12711
|
+
*/
|
|
12712
|
+
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
|
+
* Display title, set when the issue opened and never rewritten
|
|
12787
|
+
*/
|
|
12788
|
+
title: string;
|
|
12789
|
+
/**
|
|
12790
|
+
* unresolved, resolved or archived
|
|
12791
|
+
*/
|
|
12792
|
+
status: string;
|
|
12793
|
+
/**
|
|
12794
|
+
* Where the error appears to come from, or null
|
|
12795
|
+
*/
|
|
12796
|
+
culprit: (string | null);
|
|
12797
|
+
/**
|
|
12798
|
+
* Who owns the issue, or null if unassigned
|
|
12799
|
+
*/
|
|
12800
|
+
assignee: (string | null);
|
|
12801
|
+
/**
|
|
12802
|
+
* ISO 8601 timestamp of the most recent event
|
|
12803
|
+
*/
|
|
12804
|
+
lastSeen: string;
|
|
12805
|
+
/**
|
|
12806
|
+
* ISO 8601 timestamp of the first event
|
|
12807
|
+
*/
|
|
12808
|
+
firstSeen: string;
|
|
12809
|
+
/**
|
|
12810
|
+
* ISO 8601 archive timestamp, or null
|
|
12811
|
+
*/
|
|
12812
|
+
archivedAt: (string | null);
|
|
12813
|
+
/**
|
|
12814
|
+
* How many events have landed on this issue
|
|
12815
|
+
*/
|
|
12816
|
+
eventCount: number;
|
|
12817
|
+
/**
|
|
12818
|
+
* ISO 8601 resolution timestamp, or null
|
|
12819
|
+
*/
|
|
12820
|
+
resolvedAt: (string | null);
|
|
12821
|
+
/**
|
|
12822
|
+
* Environment the issue was first seen in, or null
|
|
12823
|
+
*/
|
|
12824
|
+
environment: (string | null);
|
|
12825
|
+
/**
|
|
12826
|
+
* Stable grouping hash the issue is keyed on
|
|
12827
|
+
*/
|
|
12828
|
+
fingerprint: string;
|
|
12829
|
+
/**
|
|
12830
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12831
|
+
*/
|
|
12832
|
+
regressedAt: (string | null);
|
|
12833
|
+
/**
|
|
12834
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12835
|
+
*/
|
|
12836
|
+
groupingRule: string;
|
|
12837
|
+
/**
|
|
12838
|
+
* Exception class of the first event, or null
|
|
12839
|
+
*/
|
|
12840
|
+
exceptionType: (string | null);
|
|
12841
|
+
/**
|
|
12842
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12843
|
+
*/
|
|
12844
|
+
groupingVersion: string;
|
|
12845
|
+
}
|
|
12846
|
+
interface ObserveIssuesListInput {
|
|
12847
|
+
/**
|
|
12848
|
+
* How many issues to return, most recently seen first. 1-200, default 50
|
|
12849
|
+
*/
|
|
12850
|
+
limit?: number;
|
|
12851
|
+
/**
|
|
12852
|
+
* Only return issues in this state; omit to list every state
|
|
12853
|
+
*/
|
|
12854
|
+
status?: ("unresolved" | "resolved" | "archived");
|
|
12855
|
+
/**
|
|
12856
|
+
* Only return issues owned by this assignee
|
|
12857
|
+
*/
|
|
12858
|
+
assignee?: string;
|
|
12859
|
+
}
|
|
12860
|
+
type ObserveIssuesListOutput = {
|
|
12861
|
+
/**
|
|
12862
|
+
* Identifier of the issue
|
|
12863
|
+
*/
|
|
12864
|
+
id: string;
|
|
12865
|
+
/**
|
|
12866
|
+
* Display title, set when the issue opened and never rewritten
|
|
12867
|
+
*/
|
|
12868
|
+
title: string;
|
|
12869
|
+
/**
|
|
12870
|
+
* unresolved, resolved or archived
|
|
12871
|
+
*/
|
|
12872
|
+
status: string;
|
|
12873
|
+
/**
|
|
12874
|
+
* Where the error appears to come from, or null
|
|
12875
|
+
*/
|
|
12876
|
+
culprit: (string | null);
|
|
12877
|
+
/**
|
|
12878
|
+
* Who owns the issue, or null if unassigned
|
|
12879
|
+
*/
|
|
12880
|
+
assignee: (string | null);
|
|
12881
|
+
/**
|
|
12882
|
+
* ISO 8601 timestamp of the most recent event
|
|
12883
|
+
*/
|
|
12884
|
+
lastSeen: string;
|
|
12885
|
+
/**
|
|
12886
|
+
* ISO 8601 timestamp of the first event
|
|
12887
|
+
*/
|
|
12888
|
+
firstSeen: string;
|
|
12889
|
+
/**
|
|
12890
|
+
* ISO 8601 archive timestamp, or null
|
|
12891
|
+
*/
|
|
12892
|
+
archivedAt: (string | null);
|
|
12893
|
+
/**
|
|
12894
|
+
* How many events have landed on this issue
|
|
12895
|
+
*/
|
|
12896
|
+
eventCount: number;
|
|
12897
|
+
/**
|
|
12898
|
+
* ISO 8601 resolution timestamp, or null
|
|
12899
|
+
*/
|
|
12900
|
+
resolvedAt: (string | null);
|
|
12901
|
+
/**
|
|
12902
|
+
* Environment the issue was first seen in, or null
|
|
12903
|
+
*/
|
|
12904
|
+
environment: (string | null);
|
|
12905
|
+
/**
|
|
12906
|
+
* Stable grouping hash the issue is keyed on
|
|
12907
|
+
*/
|
|
12908
|
+
fingerprint: string;
|
|
12909
|
+
/**
|
|
12910
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12911
|
+
*/
|
|
12912
|
+
regressedAt: (string | null);
|
|
12913
|
+
/**
|
|
12914
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12915
|
+
*/
|
|
12916
|
+
groupingRule: string;
|
|
12917
|
+
/**
|
|
12918
|
+
* Exception class of the first event, or null
|
|
12919
|
+
*/
|
|
12920
|
+
exceptionType: (string | null);
|
|
12921
|
+
/**
|
|
12922
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12923
|
+
*/
|
|
12924
|
+
groupingVersion: string;
|
|
12925
|
+
}[];
|
|
12926
|
+
interface ObserveIssuesResolveInput {
|
|
12927
|
+
/**
|
|
12928
|
+
* Identifier of the issue
|
|
12929
|
+
*/
|
|
12930
|
+
id: string;
|
|
12931
|
+
}
|
|
12932
|
+
interface ObserveIssuesResolveOutput {
|
|
12933
|
+
/**
|
|
12934
|
+
* Identifier of the issue
|
|
12935
|
+
*/
|
|
12936
|
+
id: string;
|
|
12937
|
+
/**
|
|
12938
|
+
* Display title, set when the issue opened and never rewritten
|
|
12939
|
+
*/
|
|
12940
|
+
title: string;
|
|
12941
|
+
/**
|
|
12942
|
+
* unresolved, resolved or archived
|
|
12943
|
+
*/
|
|
12944
|
+
status: string;
|
|
12945
|
+
/**
|
|
12946
|
+
* Where the error appears to come from, or null
|
|
12947
|
+
*/
|
|
12948
|
+
culprit: (string | null);
|
|
12949
|
+
/**
|
|
12950
|
+
* Who owns the issue, or null if unassigned
|
|
12951
|
+
*/
|
|
12952
|
+
assignee: (string | null);
|
|
12953
|
+
/**
|
|
12954
|
+
* ISO 8601 timestamp of the most recent event
|
|
12955
|
+
*/
|
|
12956
|
+
lastSeen: string;
|
|
12957
|
+
/**
|
|
12958
|
+
* ISO 8601 timestamp of the first event
|
|
12959
|
+
*/
|
|
12960
|
+
firstSeen: string;
|
|
12961
|
+
/**
|
|
12962
|
+
* ISO 8601 archive timestamp, or null
|
|
12963
|
+
*/
|
|
12964
|
+
archivedAt: (string | null);
|
|
12965
|
+
/**
|
|
12966
|
+
* How many events have landed on this issue
|
|
12967
|
+
*/
|
|
12968
|
+
eventCount: number;
|
|
12969
|
+
/**
|
|
12970
|
+
* ISO 8601 resolution timestamp, or null
|
|
12971
|
+
*/
|
|
12972
|
+
resolvedAt: (string | null);
|
|
12973
|
+
/**
|
|
12974
|
+
* Environment the issue was first seen in, or null
|
|
12975
|
+
*/
|
|
12976
|
+
environment: (string | null);
|
|
12977
|
+
/**
|
|
12978
|
+
* Stable grouping hash the issue is keyed on
|
|
12979
|
+
*/
|
|
12980
|
+
fingerprint: string;
|
|
12981
|
+
/**
|
|
12982
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12983
|
+
*/
|
|
12984
|
+
regressedAt: (string | null);
|
|
12985
|
+
/**
|
|
12986
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12987
|
+
*/
|
|
12988
|
+
groupingRule: string;
|
|
12989
|
+
/**
|
|
12990
|
+
* Exception class of the first event, or null
|
|
12991
|
+
*/
|
|
12992
|
+
exceptionType: (string | null);
|
|
12993
|
+
/**
|
|
12994
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12995
|
+
*/
|
|
12996
|
+
groupingVersion: string;
|
|
12997
|
+
}
|
|
12998
|
+
interface ObserveKeysCreateInput {
|
|
12999
|
+
/**
|
|
13000
|
+
* ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
|
|
13001
|
+
*/
|
|
13002
|
+
kind?: ("ingest" | "dsn");
|
|
13003
|
+
/**
|
|
13004
|
+
* Optional human label for the key, e.g. "ci" or "backend pods"
|
|
13005
|
+
*/
|
|
13006
|
+
name?: string;
|
|
13007
|
+
/**
|
|
13008
|
+
* Environment this key sends telemetry for, e.g. "staging" or "production"
|
|
13009
|
+
*/
|
|
13010
|
+
environment: string;
|
|
13011
|
+
}
|
|
13012
|
+
interface ObserveKeysCreateOutput {
|
|
13013
|
+
/**
|
|
13014
|
+
* Identifier of the ingest key
|
|
13015
|
+
*/
|
|
13016
|
+
id: string;
|
|
13017
|
+
/**
|
|
13018
|
+
* The full DSN, for kind "dsn" — shown only here, store it now
|
|
13019
|
+
*/
|
|
13020
|
+
dsn?: string;
|
|
13021
|
+
/**
|
|
13022
|
+
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13023
|
+
*/
|
|
13024
|
+
kind: ("ingest" | "dsn");
|
|
13025
|
+
/**
|
|
13026
|
+
* Human label given at creation, or null
|
|
13027
|
+
*/
|
|
13028
|
+
name: (string | null);
|
|
13029
|
+
/**
|
|
13030
|
+
* The full ingest token, for kind "ingest" — shown only here, store it now
|
|
13031
|
+
*/
|
|
13032
|
+
token?: string;
|
|
13033
|
+
/**
|
|
13034
|
+
* First characters of the token, shown for recognition
|
|
13035
|
+
*/
|
|
13036
|
+
prefix: string;
|
|
13037
|
+
/**
|
|
13038
|
+
* ISO 8601 creation timestamp
|
|
13039
|
+
*/
|
|
13040
|
+
createdAt: string;
|
|
13041
|
+
/**
|
|
13042
|
+
* ISO 8601 revocation timestamp, or null if active
|
|
13043
|
+
*/
|
|
13044
|
+
revokedAt: (string | null);
|
|
13045
|
+
/**
|
|
13046
|
+
* Environment the key writes telemetry for
|
|
13047
|
+
*/
|
|
13048
|
+
environment: string;
|
|
13049
|
+
}
|
|
13050
|
+
interface ObserveKeysListInput {
|
|
13051
|
+
/**
|
|
13052
|
+
* Only return keys of this environment; omit to list all of them
|
|
13053
|
+
*/
|
|
13054
|
+
environment?: string;
|
|
13055
|
+
}
|
|
13056
|
+
type ObserveKeysListOutput = {
|
|
13057
|
+
/**
|
|
13058
|
+
* Identifier of the ingest key
|
|
13059
|
+
*/
|
|
13060
|
+
id: string;
|
|
13061
|
+
/**
|
|
13062
|
+
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13063
|
+
*/
|
|
13064
|
+
kind: ("ingest" | "dsn");
|
|
13065
|
+
/**
|
|
13066
|
+
* Human label given at creation, or null
|
|
13067
|
+
*/
|
|
13068
|
+
name: (string | null);
|
|
13069
|
+
/**
|
|
13070
|
+
* First characters of the token, shown for recognition
|
|
13071
|
+
*/
|
|
13072
|
+
prefix: string;
|
|
13073
|
+
/**
|
|
13074
|
+
* ISO 8601 creation timestamp
|
|
13075
|
+
*/
|
|
13076
|
+
createdAt: string;
|
|
13077
|
+
/**
|
|
13078
|
+
* ISO 8601 revocation timestamp, or null if active
|
|
13079
|
+
*/
|
|
13080
|
+
revokedAt: (string | null);
|
|
13081
|
+
/**
|
|
13082
|
+
* Environment the key writes telemetry for
|
|
13083
|
+
*/
|
|
13084
|
+
environment: string;
|
|
13085
|
+
}[];
|
|
13086
|
+
interface ObserveKeysRevokeInput {
|
|
13087
|
+
/**
|
|
13088
|
+
* Identifier of the ingest key to revoke
|
|
13089
|
+
*/
|
|
13090
|
+
id: string;
|
|
13091
|
+
}
|
|
13092
|
+
interface ObserveKeysRevokeOutput {
|
|
13093
|
+
/**
|
|
13094
|
+
* Identifier of the revoked key
|
|
13095
|
+
*/
|
|
13096
|
+
id: string;
|
|
13097
|
+
/**
|
|
13098
|
+
* ISO 8601 timestamp of the revocation
|
|
13099
|
+
*/
|
|
13100
|
+
revokedAt: string;
|
|
13101
|
+
}
|
|
13102
|
+
interface ObserveLogsSearchInput {
|
|
13103
|
+
/**
|
|
13104
|
+
* Newest timestamp to include, ISO 8601
|
|
13105
|
+
*/
|
|
13106
|
+
to?: string;
|
|
13107
|
+
/**
|
|
13108
|
+
* Oldest timestamp to include, ISO 8601
|
|
13109
|
+
*/
|
|
13110
|
+
from?: string;
|
|
13111
|
+
/**
|
|
13112
|
+
* How many lines to return, 1-1000, default 100
|
|
13113
|
+
*/
|
|
13114
|
+
limit?: number;
|
|
13115
|
+
/**
|
|
13116
|
+
* The nextCursor of the previous page; omit for the first page
|
|
13117
|
+
*/
|
|
13118
|
+
cursor?: string;
|
|
13119
|
+
/**
|
|
13120
|
+
* Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
|
|
13121
|
+
*/
|
|
13122
|
+
search?: string;
|
|
13123
|
+
/**
|
|
13124
|
+
* Only lines of this service, e.g. "api"
|
|
13125
|
+
*/
|
|
13126
|
+
service?: string;
|
|
13127
|
+
/**
|
|
13128
|
+
* Only lines of this trace
|
|
13129
|
+
*/
|
|
13130
|
+
traceId?: string;
|
|
13131
|
+
/**
|
|
13132
|
+
* Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
|
|
13133
|
+
*
|
|
13134
|
+
* @minItems 1
|
|
13135
|
+
*/
|
|
13136
|
+
severityIn?: [string, ...(string)[]];
|
|
13137
|
+
/**
|
|
13138
|
+
* Only lines of this environment, e.g. "production"
|
|
13139
|
+
*/
|
|
13140
|
+
environment?: string;
|
|
13141
|
+
}
|
|
13142
|
+
interface ObserveLogsSearchOutput {
|
|
13143
|
+
/**
|
|
13144
|
+
* The matching log lines, newest first
|
|
13145
|
+
*/
|
|
13146
|
+
rows: {
|
|
13147
|
+
/**
|
|
13148
|
+
* The log message itself
|
|
13149
|
+
*/
|
|
13150
|
+
body: string;
|
|
13151
|
+
/**
|
|
13152
|
+
* Span this line belongs to, empty when untraced
|
|
13153
|
+
*/
|
|
13154
|
+
spanId: string;
|
|
13155
|
+
/**
|
|
13156
|
+
* Service that wrote the line
|
|
13157
|
+
*/
|
|
13158
|
+
service: string;
|
|
13159
|
+
/**
|
|
13160
|
+
* Trace this line belongs to, empty when untraced
|
|
13161
|
+
*/
|
|
13162
|
+
traceId: string;
|
|
13163
|
+
/**
|
|
13164
|
+
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13165
|
+
*/
|
|
13166
|
+
timestamp: string;
|
|
13167
|
+
/**
|
|
13168
|
+
* Attributes the emitter attached
|
|
13169
|
+
*/
|
|
13170
|
+
attributes: {
|
|
13171
|
+
[k: string]: string;
|
|
13172
|
+
};
|
|
13173
|
+
/**
|
|
13174
|
+
* Environment the line was written in
|
|
13175
|
+
*/
|
|
13176
|
+
environment: string;
|
|
13177
|
+
/**
|
|
13178
|
+
* Severity as the emitter named it, e.g. "ERROR"
|
|
13179
|
+
*/
|
|
13180
|
+
severityText: string;
|
|
13181
|
+
/**
|
|
13182
|
+
* OpenTelemetry severity number, 1-24
|
|
13183
|
+
*/
|
|
13184
|
+
severityNumber: number;
|
|
13185
|
+
}[];
|
|
13186
|
+
/**
|
|
13187
|
+
* Pass back as cursor for the next page; null when the last page was reached
|
|
13188
|
+
*/
|
|
13189
|
+
nextCursor: (string | null);
|
|
13190
|
+
}
|
|
13191
|
+
interface ObserveLogsTailInput {
|
|
13192
|
+
/**
|
|
13193
|
+
* The nextCursor of the previous poll; omit to start at the newest lines
|
|
13194
|
+
*/
|
|
13195
|
+
cursor?: string;
|
|
13196
|
+
/**
|
|
13197
|
+
* Only lines of this service
|
|
13198
|
+
*/
|
|
13199
|
+
service?: string;
|
|
13200
|
+
/**
|
|
13201
|
+
* Only lines whose severity is one of these
|
|
13202
|
+
*
|
|
13203
|
+
* @minItems 1
|
|
13204
|
+
*/
|
|
13205
|
+
severityIn?: [string, ...(string)[]];
|
|
13206
|
+
/**
|
|
13207
|
+
* Only lines of this environment
|
|
13208
|
+
*/
|
|
13209
|
+
environment?: string;
|
|
13210
|
+
}
|
|
13211
|
+
interface ObserveLogsTailOutput {
|
|
13212
|
+
/**
|
|
13213
|
+
* The new log lines, oldest first
|
|
13214
|
+
*/
|
|
13215
|
+
rows: {
|
|
13216
|
+
/**
|
|
13217
|
+
* The log message itself
|
|
13218
|
+
*/
|
|
13219
|
+
body: string;
|
|
13220
|
+
/**
|
|
13221
|
+
* Span this line belongs to, empty when untraced
|
|
13222
|
+
*/
|
|
13223
|
+
spanId: string;
|
|
13224
|
+
/**
|
|
13225
|
+
* Service that wrote the line
|
|
13226
|
+
*/
|
|
13227
|
+
service: string;
|
|
13228
|
+
/**
|
|
13229
|
+
* Trace this line belongs to, empty when untraced
|
|
13230
|
+
*/
|
|
13231
|
+
traceId: string;
|
|
13232
|
+
/**
|
|
13233
|
+
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13234
|
+
*/
|
|
13235
|
+
timestamp: string;
|
|
13236
|
+
/**
|
|
13237
|
+
* Attributes the emitter attached
|
|
13238
|
+
*/
|
|
13239
|
+
attributes: {
|
|
13240
|
+
[k: string]: string;
|
|
13241
|
+
};
|
|
13242
|
+
/**
|
|
13243
|
+
* Environment the line was written in
|
|
13244
|
+
*/
|
|
13245
|
+
environment: string;
|
|
13246
|
+
/**
|
|
13247
|
+
* Severity as the emitter named it, e.g. "ERROR"
|
|
13248
|
+
*/
|
|
13249
|
+
severityText: string;
|
|
13250
|
+
/**
|
|
13251
|
+
* OpenTelemetry severity number, 1-24
|
|
13252
|
+
*/
|
|
13253
|
+
severityNumber: number;
|
|
13254
|
+
}[];
|
|
13255
|
+
/**
|
|
13256
|
+
* Pass back as cursor on the next poll; null only while the product has no logs
|
|
13257
|
+
*/
|
|
13258
|
+
nextCursor: (string | null);
|
|
13259
|
+
}
|
|
12513
13260
|
interface OrganizationAuthMeInput {
|
|
12514
13261
|
}
|
|
12515
13262
|
interface OrganizationAuthMeOutput {
|
|
@@ -13135,6 +13882,41 @@ interface OrganizationProductListOutput {
|
|
|
13135
13882
|
organizationId: string;
|
|
13136
13883
|
}[];
|
|
13137
13884
|
}
|
|
13885
|
+
interface OrganizationProductListAccessInput {
|
|
13886
|
+
productId: string;
|
|
13887
|
+
}
|
|
13888
|
+
interface OrganizationProductListAccessOutput {
|
|
13889
|
+
members: {
|
|
13890
|
+
role: string;
|
|
13891
|
+
email: (string | null);
|
|
13892
|
+
roleId: (string | null);
|
|
13893
|
+
userId: string;
|
|
13894
|
+
isCustom: boolean;
|
|
13895
|
+
roleName: (string | null);
|
|
13896
|
+
sourceRole: ({
|
|
13897
|
+
id: string;
|
|
13898
|
+
name: string;
|
|
13899
|
+
} | null);
|
|
13900
|
+
displayName: (string | null);
|
|
13901
|
+
}[];
|
|
13902
|
+
orgRoles: {
|
|
13903
|
+
id: string;
|
|
13904
|
+
name: string;
|
|
13905
|
+
description: (string | null);
|
|
13906
|
+
}[];
|
|
13907
|
+
canManage: boolean;
|
|
13908
|
+
inherited: {
|
|
13909
|
+
email: (string | null);
|
|
13910
|
+
userId: string;
|
|
13911
|
+
orgRole: ("owner" | "admin");
|
|
13912
|
+
displayName: (string | null);
|
|
13913
|
+
}[];
|
|
13914
|
+
candidates: {
|
|
13915
|
+
email: (string | null);
|
|
13916
|
+
userId: string;
|
|
13917
|
+
displayName: (string | null);
|
|
13918
|
+
}[];
|
|
13919
|
+
}
|
|
13138
13920
|
interface OrganizationProductListInvitationsInput {
|
|
13139
13921
|
productId: string;
|
|
13140
13922
|
}
|
|
@@ -13192,6 +13974,13 @@ interface OrganizationProductResendInvitationOutput {
|
|
|
13192
13974
|
createdAt: string;
|
|
13193
13975
|
expiresAt: string;
|
|
13194
13976
|
}
|
|
13977
|
+
interface OrganizationProductRevokeAccessInput {
|
|
13978
|
+
userId: string;
|
|
13979
|
+
productId: string;
|
|
13980
|
+
}
|
|
13981
|
+
interface OrganizationProductRevokeAccessOutput {
|
|
13982
|
+
[k: string]: unknown;
|
|
13983
|
+
}
|
|
13195
13984
|
interface OrganizationProductRevokeInvitationInput {
|
|
13196
13985
|
productId: string;
|
|
13197
13986
|
invitationId: string;
|
|
@@ -13207,6 +13996,17 @@ interface OrganizationProductSelectOutput {
|
|
|
13207
13996
|
name: string;
|
|
13208
13997
|
slug: string;
|
|
13209
13998
|
}
|
|
13999
|
+
interface OrganizationProductSetAccessInput {
|
|
14000
|
+
role?: ("admin" | "member" | "viewer");
|
|
14001
|
+
roleId?: string;
|
|
14002
|
+
userId: string;
|
|
14003
|
+
productId: string;
|
|
14004
|
+
}
|
|
14005
|
+
interface OrganizationProductSetAccessOutput {
|
|
14006
|
+
role: string;
|
|
14007
|
+
userId: string;
|
|
14008
|
+
productId: string;
|
|
14009
|
+
}
|
|
13210
14010
|
interface OrganizationProductUpdateInput {
|
|
13211
14011
|
name: string;
|
|
13212
14012
|
productId: string;
|
|
@@ -20417,6 +21217,29 @@ interface GeneratedClient {
|
|
|
20417
21217
|
list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
|
|
20418
21218
|
};
|
|
20419
21219
|
};
|
|
21220
|
+
observe: {
|
|
21221
|
+
artifacts: {
|
|
21222
|
+
delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
|
|
21223
|
+
list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
|
|
21224
|
+
resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
|
|
21225
|
+
};
|
|
21226
|
+
issues: {
|
|
21227
|
+
archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
|
|
21228
|
+
assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
|
|
21229
|
+
get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
|
|
21230
|
+
list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
|
|
21231
|
+
resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
|
|
21232
|
+
};
|
|
21233
|
+
keys: {
|
|
21234
|
+
create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
|
|
21235
|
+
list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
|
|
21236
|
+
revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
|
|
21237
|
+
};
|
|
21238
|
+
logs: {
|
|
21239
|
+
search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
|
|
21240
|
+
tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
|
|
21241
|
+
};
|
|
21242
|
+
};
|
|
20420
21243
|
organization: {
|
|
20421
21244
|
create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
|
|
20422
21245
|
list(input: OrganizationListInput): Promise<OrganizationListOutput>;
|
|
@@ -20502,12 +21325,15 @@ interface GeneratedClient {
|
|
|
20502
21325
|
create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
|
|
20503
21326
|
invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
|
|
20504
21327
|
list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
|
|
21328
|
+
'list-access'(input: OrganizationProductListAccessInput): Promise<OrganizationProductListAccessOutput>;
|
|
20505
21329
|
'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
|
|
20506
21330
|
'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
|
|
20507
21331
|
'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
|
|
20508
21332
|
'resend-invitation'(input: OrganizationProductResendInvitationInput): Promise<OrganizationProductResendInvitationOutput>;
|
|
21333
|
+
'revoke-access'(input: OrganizationProductRevokeAccessInput): Promise<OrganizationProductRevokeAccessOutput>;
|
|
20509
21334
|
'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
|
|
20510
21335
|
select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
|
|
21336
|
+
'set-access'(input: OrganizationProductSetAccessInput): Promise<OrganizationProductSetAccessOutput>;
|
|
20511
21337
|
update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
|
|
20512
21338
|
};
|
|
20513
21339
|
'public-keys': {
|
|
@@ -20843,4 +21669,4 @@ interface GeneratedClient {
|
|
|
20843
21669
|
};
|
|
20844
21670
|
}
|
|
20845
21671
|
|
|
20846
|
-
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, OrganizationBillingCapsClearOutput 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, OrganizationAuthMeInput as fU, OrganizationAuthMeOutput as fV, OrganizationBillingBudgetsGetInput as fW, OrganizationBillingBudgetsGetOutput as fX, OrganizationBillingBudgetsSetInput as fY, OrganizationBillingBudgetsSetOutput as fZ, OrganizationBillingCapsClearInput 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, OrganizationMemberInviteOutput as g$, OrganizationBillingCapsSetInput as g0, OrganizationBillingCapsSetOutput as g1, OrganizationBindingsListInput as g2, OrganizationBindingsListOutput as g3, OrganizationClickupInstallInput as g4, OrganizationClickupInstallOutput as g5, OrganizationClickupListInstallationsInput as g6, OrganizationClickupListInstallationsOutput as g7, OrganizationCloudflareInstallInput as g8, OrganizationCloudflareInstallOutput as g9, OrganizationDomainsAddInput as gA, OrganizationDomainsAddOutput as gB, OrganizationDomainsGetInput as gC, OrganizationDomainsGetOutput as gD, OrganizationDomainsListInput as gE, OrganizationDomainsListOutput as gF, OrganizationDomainsRemoveInput as gG, OrganizationDomainsRemoveOutput as gH, OrganizationDomainsSetModeInput as gI, OrganizationDomainsSetModeOutput as gJ, OrganizationExtensionsListInstalledInput as gK, OrganizationExtensionsListInstalledOutput as gL, OrganizationFeedbackSubmitInput as gM, OrganizationFeedbackSubmitOutput as gN, OrganizationGdriveInstallInput as gO, OrganizationGdriveInstallOutput as gP, OrganizationGithubInstallInput as gQ, OrganizationGithubInstallOutput as gR, OrganizationGithubListInstallationsInput as gS, OrganizationGithubListInstallationsOutput as gT, OrganizationGoogleadsInstallInput as gU, OrganizationGoogleadsInstallOutput as gV, OrganizationListInput as gW, OrganizationListOutput as gX, OrganizationMemberAcceptInviteInput as gY, OrganizationMemberAcceptInviteOutput as gZ, OrganizationMemberInviteInput as g_, OrganizationConnectorsApproveRequestInput as ga, OrganizationConnectorsApproveRequestOutput as gb, OrganizationConnectorsAttachInput as gc, OrganizationConnectorsAttachOutput as gd, OrganizationConnectorsDeleteInput as ge, OrganizationConnectorsDeleteOutput as gf, OrganizationConnectorsDenyRequestInput as gg, OrganizationConnectorsDenyRequestOutput as gh, OrganizationConnectorsDetachInput as gi, OrganizationConnectorsDetachOutput as gj, OrganizationConnectorsListAttachmentsInput as gk, OrganizationConnectorsListAttachmentsOutput as gl, OrganizationConnectorsListAvailableInput as gm, OrganizationConnectorsListAvailableOutput as gn, OrganizationConnectorsListOrgInput as go, OrganizationConnectorsListOrgOutput as gp, OrganizationConnectorsListInput as gq, OrganizationConnectorsListOutput as gr, OrganizationConnectorsListRequestsInput as gs, OrganizationConnectorsListRequestsOutput as gt, OrganizationConnectorsRemoveInput as gu, OrganizationConnectorsRemoveOutput as gv, OrganizationConnectorsRequestInput as gw, OrganizationConnectorsRequestOutput as gx, OrganizationCreateInput as gy, OrganizationCreateOutput as gz, BrainBackupsListOutput as h, OrganizationSecurityMfaEnableOutput as h$, OrganizationMemberListInvitationsInput as h0, OrganizationMemberListInvitationsOutput as h1, OrganizationMemberListProductAccessInput as h2, OrganizationMemberListProductAccessOutput as h3, OrganizationMemberListInput as h4, OrganizationMemberListOutput as h5, OrganizationMemberRemoveInput as h6, OrganizationMemberRemoveOutput as h7, OrganizationMemberRevokeInvitationInput as h8, OrganizationMemberRevokeInvitationOutput 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_, OrganizationMemberSetRoleInput as ha, OrganizationMemberSetRoleOutput as hb, OrganizationMemberShareProductInput as hc, OrganizationMemberShareProductOutput as hd, OrganizationMemberUnshareProductInput as he, OrganizationMemberUnshareProductOutput as hf, OrganizationMembersAssignRoleInput as hg, OrganizationMembersAssignRoleOutput as hh, OrganizationPermissionCatalogInput as hi, OrganizationPermissionCatalogOutput as hj, OrganizationProductAcceptInvitationInput as hk, OrganizationProductAcceptInvitationOutput as hl, OrganizationProductCreateInput as hm, OrganizationProductCreateOutput as hn, OrganizationProductInviteInput as ho, OrganizationProductInviteOutput as hp, OrganizationProductListInvitationsInput as hq, OrganizationProductListInvitationsOutput as hr, OrganizationProductListMembersInput as hs, OrganizationProductListMembersOutput as ht, OrganizationProductListInput as hu, OrganizationProductListOutput as hv, OrganizationProductListRolesInput as hw, OrganizationProductListRolesOutput as hx, OrganizationProductResendInvitationInput as hy, OrganizationProductResendInvitationOutput as hz, BrainClickupChannelsListInput as i, RealtimePresenceEnterOutput as i$, OrganizationSelectInput as i0, OrganizationSelectOutput as i1, OrganizationSupportThreadCreateInput as i2, OrganizationSupportThreadCreateOutput as i3, OrganizationSupportThreadGetInput as i4, OrganizationSupportThreadGetOutput as i5, OrganizationSupportThreadReplyInput as i6, OrganizationSupportThreadReplyOutput as i7, OrganizationSupportThreadsListInput as i8, OrganizationSupportThreadsListOutput as i9, RealtimeArchiveExportInput as iA, RealtimeArchiveExportOutput as iB, RealtimeArchiveExportStatusInput as iC, RealtimeArchiveExportStatusOutput as iD, RealtimeArchiveGetInput as iE, RealtimeArchiveGetOutput as iF, RealtimeGrantCreateInput as iG, RealtimeGrantCreateOutput as iH, RealtimeGrantListInput as iI, RealtimeGrantListOutput as iJ, RealtimeGrantRevokeInput as iK, RealtimeGrantRevokeOutput as iL, RealtimeHistoryGetInput as iM, RealtimeHistoryGetOutput as iN, RealtimeMessagesPublishInput as iO, RealtimeMessagesPublishOutput as iP, RealtimeNamespaceCreateInput as iQ, RealtimeNamespaceCreateOutput as iR, RealtimeNamespaceDeleteInput as iS, RealtimeNamespaceDeleteOutput as iT, RealtimeNamespaceGetInput as iU, RealtimeNamespaceGetOutput as iV, RealtimeNamespaceListInput as iW, RealtimeNamespaceListOutput as iX, RealtimeNamespaceUpdateInput as iY, RealtimeNamespaceUpdateOutput as iZ, RealtimePresenceEnterInput as i_, PlaygroundAnalyticsOverviewInput as ia, PlaygroundAnalyticsOverviewOutput as ib, PlaygroundBillingEntitlementsInput as ic, PlaygroundBillingEntitlementsOutput as id, PlaygroundBillingRecordUsageInput as ie, PlaygroundBillingRecordUsageOutput as ig, PlaygroundClickupCreateTaskInput as ih, PlaygroundClickupCreateTaskOutput as ii, PlaygroundClickupGetLastWebhookInput as ij, PlaygroundClickupGetLastWebhookOutput as ik, PlaygroundClickupGetOverviewInput as il, PlaygroundClickupGetOverviewOutput as im, PlaygroundGdriveGetLastChangeInput as io, PlaygroundGdriveGetLastChangeOutput as ip, PlaygroundGdriveReadFileInput as iq, PlaygroundGdriveReadFileOutput as ir, PlaygroundGoogleadsReadCustomerInput as is, PlaygroundGoogleadsReadCustomerOutput as it, PlaygroundLifecycleGetStateInput as iu, PlaygroundLifecycleGetStateOutput as iv, PlaygroundLifecycleListEventsInput as iw, PlaygroundLifecycleListEventsOutput as ix, PlaygroundWebhookGetLastInput as iy, PlaygroundWebhookGetLastOutput as iz, BrainClickupChannelsListOutput as j, SupportThreadListOutput as j$, RealtimePresenceGetInput as j0, RealtimePresenceGetOutput as j1, RealtimePresenceLeaveInput as j2, RealtimePresenceLeaveOutput as j3, RealtimePresenceStatsInput as j4, RealtimePresenceStatsOutput as j5, RealtimePresenceUpdateInput as j6, RealtimePresenceUpdateOutput as j7, RealtimePublicAccessStatusInput as j8, RealtimePublicAccessStatusOutput as j9, SupportAttachmentCreateInput as jA, SupportAttachmentCreateOutput as jB, SupportAttachmentFinalizeInput as jC, SupportAttachmentFinalizeOutput as jD, SupportLabelCreateInput as jE, SupportLabelCreateOutput as jF, SupportLabelListInput as jG, SupportLabelListOutput as jH, SupportMessageCreateInput as jI, SupportMessageCreateOutput as jJ, SupportMessageListInput as jK, SupportMessageListOutput 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, SupportThreadAssignInput as jU, SupportThreadAssignOutput as jV, SupportThreadCreateInput as jW, SupportThreadCreateOutput as jX, SupportThreadGetInput as jY, SupportThreadGetOutput as jZ, SupportThreadListInput as j_, RealtimeStatusGetInput as ja, RealtimeStatusGetOutput as jb, RealtimeTokensCreateInput as jc, RealtimeTokensCreateOutput as jd, RealtimeWebhookCreateInput as je, RealtimeWebhookCreateOutput as jf, RealtimeWebhookDeleteInput as jg, RealtimeWebhookDeleteOutput as jh, RealtimeWebhookDeliveriesListInput as ji, RealtimeWebhookDeliveriesListOutput as jj, RealtimeWebhookGetInput as jk, RealtimeWebhookGetOutput as jl, RealtimeWebhookListInput as jm, RealtimeWebhookListOutput as jn, RealtimeWebhookSecretRotateInput as jo, RealtimeWebhookSecretRotateOutput as jp, RealtimeWebhookUpdateInput as jq, RealtimeWebhookUpdateOutput as jr, SupportAgentCreateInput as js, SupportAgentCreateOutput as jt, SupportAgentGetInput as ju, SupportAgentGetOutput as jv, SupportAgentListInput as jw, SupportAgentListOutput as jx, SupportAgentUpdateInput as jy, SupportAgentUpdateOutput as jz, BrainClickupConnectionsListInput as k, TrackingInstallDomainsDeleteOutput as k$, SupportThreadStatusSetInput as k0, SupportThreadStatusSetOutput as k1, SupportThreadUpdateInput as k2, SupportThreadUpdateOutput as k3, SupportWebhookCreateInput as k4, SupportWebhookCreateOutput as k5, SupportWebhookDeleteInput as k6, SupportWebhookDeleteOutput as k7, SupportWebhookDeliveriesListInput as k8, SupportWebhookDeliveriesListOutput as k9, TrackingGoogleadsConnectionStatusInput as kA, TrackingGoogleadsConnectionStatusOutput as kB, TrackingGoogleadsConversionActionsInput as kC, TrackingGoogleadsConversionActionsOutput as kD, TrackingGoogleadsFeedbackConfigGetInput as kE, TrackingGoogleadsFeedbackConfigGetOutput as kF, TrackingGoogleadsFeedbackConfigSetInput as kG, TrackingGoogleadsFeedbackConfigSetOutput as kH, TrackingGoogleadsFeedbackRunInput as kI, TrackingGoogleadsFeedbackRunOutput as kJ, TrackingGoogleadsFeedbackStatusInput as kK, TrackingGoogleadsFeedbackStatusOutput as kL, TrackingGoogleadsFeedbackUploadsInput as kM, TrackingGoogleadsFeedbackUploadsOutput as kN, TrackingGoogleadsRoasReportInput as kO, TrackingGoogleadsRoasReportOutput as kP, TrackingGoogleadsSyncNowInput as kQ, TrackingGoogleadsSyncNowOutput as kR, TrackingGoogleadsTrackingHealthInput as kS, TrackingGoogleadsTrackingHealthOutput as kT, TrackingGoogleadsUsVsPlatformInput as kU, TrackingGoogleadsUsVsPlatformOutput as kV, TrackingIdentityHealthInput as kW, TrackingIdentityHealthOutput as kX, TrackingInstallDomainsCreateInput as kY, TrackingInstallDomainsCreateOutput as kZ, TrackingInstallDomainsDeleteInput as k_, SupportWebhookGetInput as ka, SupportWebhookGetOutput as kb, SupportWebhookListInput as kc, SupportWebhookListOutput as kd, SupportWebhookRedeliverInput as ke, SupportWebhookRedeliverOutput as kf, SupportWebhookRotateSecretInput as kg, SupportWebhookRotateSecretOutput as kh, SupportWebhookUpdateInput as ki, SupportWebhookUpdateOutput as kj, TrackingDomainsCreateInput as kk, TrackingDomainsCreateOutput as kl, TrackingDomainsDeleteInput as km, TrackingDomainsDeleteOutput as kn, TrackingDomainsGetInput as ko, TrackingDomainsGetOutput as kp, TrackingDomainsListInput as kq, TrackingDomainsListOutput as kr, TrackingDomainsVerifyInput as ks, TrackingDomainsVerifyOutput as kt, TrackingEventNamesArchiveInput as ku, TrackingEventNamesArchiveOutput as kv, TrackingEventNamesListInput as kw, TrackingEventNamesListOutput as kx, TrackingEventNamesUnarchiveInput as ky, TrackingEventNamesUnarchiveOutput as kz, BrainClickupConnectionsListOutput as l, UsersStatsGetOutput as l$, TrackingInstallDomainsListInput as l0, TrackingInstallDomainsListOutput as l1, TrackingLinkDomainsCreateInput as l2, TrackingLinkDomainsCreateOutput as l3, TrackingLinkDomainsDeleteInput as l4, TrackingLinkDomainsDeleteOutput as l5, TrackingLinkDomainsListInput as l6, TrackingLinkDomainsListOutput as l7, TrackingLiveEventsListInput as l8, TrackingLiveEventsListOutput as l9, UsersConfigGetInput as lA, UsersConfigGetOutput as lB, UsersConfigUpsertInput as lC, UsersConfigUpsertOutput as lD, UsersFactorsListInput as lE, UsersFactorsListOutput as lF, UsersFactorsResetInput as lG, UsersFactorsResetOutput as lH, UsersKeysListInput as lI, UsersKeysListOutput as lJ, UsersKeysRevokeInput as lK, UsersKeysRevokeOutput as lL, UsersKeysRotateInput as lM, UsersKeysRotateOutput as lN, UsersOpsRetentionGetInput as lO, UsersOpsRetentionGetOutput as lP, UsersOpsSloGetInput as lQ, UsersOpsSloGetOutput as lR, UsersSessionsGetInput as lS, UsersSessionsGetOutput as lT, UsersSessionsImpersonateInput as lU, UsersSessionsImpersonateOutput as lV, UsersSessionsListInput as lW, UsersSessionsListOutput as lX, UsersSessionsRevokeInput as lY, UsersSessionsRevokeOutput as lZ, UsersStatsGetInput as l_, TrackingProfilesDeleteInput as la, TrackingProfilesDeleteOutput as lb, TrackingProfilesExportInput as lc, TrackingProfilesExportOutput as ld, TrackingProfilesGetInput as le, TrackingProfilesGetOutput as lf, TrackingProfilesListInput as lg, TrackingProfilesListOutput as lh, TrackingReportsAttributedJourneyInput as li, TrackingReportsAttributedJourneyOutput as lj, TrackingReportsEventVolumeInput as lk, TrackingReportsEventVolumeOutput as ll, TrackingReportsRevenueBySourceInput as lm, TrackingReportsRevenueBySourceOutput as ln, TrackingReportsSourcePeopleInput as lo, TrackingReportsSourcePeopleOutput as lp, TrackingSnippetsGetInput as lq, TrackingSnippetsGetOutput as lr, UsersApikeysCreateInput as ls, UsersApikeysCreateOutput as lt, UsersApikeysListInput as lu, UsersApikeysListOutput as lv, UsersApikeysRevokeInput as lw, UsersApikeysRevokeOutput as lx, UsersAuditListInput as ly, UsersAuditListOutput as lz, BrainClickupListsListInput as m, UsersUsersBanInput as m0, UsersUsersBanOutput as m1, UsersUsersCreateInput as m2, UsersUsersCreateOutput as m3, UsersUsersDeleteInput as m4, UsersUsersDeleteOutput as m5, UsersUsersEraseInput as m6, UsersUsersEraseOutput as m7, UsersUsersExportInput as m8, UsersUsersExportOutput as m9, UsersWebhooksDeleteInput as mA, UsersWebhooksDeleteOutput as mB, UsersWebhooksDeliveriesListInput as mC, UsersWebhooksDeliveriesListOutput as mD, UsersWebhooksGetInput as mE, UsersWebhooksGetOutput as mF, UsersWebhooksListInput as mG, UsersWebhooksListOutput as mH, UsersWebhooksRotateSecretInput as mI, UsersWebhooksRotateSecretOutput as mJ, UsersWebhooksUpdateInput as mK, UsersWebhooksUpdateOutput as mL, WaitlistConfigGetInput as mM, WaitlistConfigGetOutput as mN, WaitlistConfigUpsertInput as mO, WaitlistConfigUpsertOutput as mP, WaitlistEmbedGetInput as mQ, WaitlistEmbedGetOutput as mR, WaitlistInvitesSendInput as mS, WaitlistInvitesSendOutput as mT, WaitlistSignupsEraseInput as mU, WaitlistSignupsEraseOutput as mV, WaitlistSignupsFunnelInput as mW, WaitlistSignupsFunnelOutput as mX, WaitlistSignupsListInput as mY, WaitlistSignupsListOutput as mZ, UsersUsersGetInput as ma, UsersUsersGetOutput as mb, UsersUsersImportInput as mc, UsersUsersImportOutput as md, UsersUsersInviteInput as me, UsersUsersInviteOutput as mf, UsersUsersListInput as mg, UsersUsersListOutput as mh, UsersUsersSetPrimaryIdentifierInput as mi, UsersUsersSetPrimaryIdentifierOutput as mj, UsersUsersUnbanInput as mk, UsersUsersUnbanOutput as ml, UsersUsersUpdateInput as mm, UsersUsersUpdateOutput as mn, UsersWaitlistEraseInput as mo, UsersWaitlistEraseOutput as mp, UsersWaitlistFunnelInput as mq, UsersWaitlistFunnelOutput as mr, UsersWaitlistImportInput as ms, UsersWaitlistImportOutput as mt, UsersWaitlistInviteInput as mu, UsersWaitlistInviteOutput as mv, UsersWaitlistListInput as mw, UsersWaitlistListOutput as mx, UsersWebhooksCreateInput as my, UsersWebhooksCreateOutput as mz, 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 };
|
|
21672
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveIssuesArchiveOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveArtifactsDeleteInput as fU, ObserveArtifactsDeleteOutput as fV, ObserveArtifactsListInput as fW, ObserveArtifactsListOutput as fX, ObserveArtifactsResolveInput as fY, ObserveArtifactsResolveOutput as fZ, ObserveIssuesArchiveInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationDomainsAddOutput as g$, ObserveIssuesAssignInput as g0, ObserveIssuesAssignOutput as g1, ObserveIssuesGetInput as g2, ObserveIssuesGetOutput as g3, ObserveIssuesListInput as g4, ObserveIssuesListOutput as g5, ObserveIssuesResolveInput as g6, ObserveIssuesResolveOutput as g7, ObserveKeysCreateInput as g8, ObserveKeysCreateOutput as g9, OrganizationConnectorsApproveRequestInput as gA, OrganizationConnectorsApproveRequestOutput as gB, OrganizationConnectorsAttachInput as gC, OrganizationConnectorsAttachOutput as gD, OrganizationConnectorsDeleteInput as gE, OrganizationConnectorsDeleteOutput as gF, OrganizationConnectorsDenyRequestInput as gG, OrganizationConnectorsDenyRequestOutput as gH, OrganizationConnectorsDetachInput as gI, OrganizationConnectorsDetachOutput as gJ, OrganizationConnectorsListAttachmentsInput as gK, OrganizationConnectorsListAttachmentsOutput as gL, OrganizationConnectorsListAvailableInput as gM, OrganizationConnectorsListAvailableOutput as gN, OrganizationConnectorsListOrgInput as gO, OrganizationConnectorsListOrgOutput as gP, OrganizationConnectorsListInput as gQ, OrganizationConnectorsListOutput as gR, OrganizationConnectorsListRequestsInput as gS, OrganizationConnectorsListRequestsOutput as gT, OrganizationConnectorsRemoveInput as gU, OrganizationConnectorsRemoveOutput as gV, OrganizationConnectorsRequestInput as gW, OrganizationConnectorsRequestOutput as gX, OrganizationCreateInput as gY, OrganizationCreateOutput as gZ, OrganizationDomainsAddInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsSearchInput as ge, ObserveLogsSearchOutput as gf, ObserveLogsTailInput as gg, ObserveLogsTailOutput as gh, OrganizationAuthMeInput as gi, OrganizationAuthMeOutput as gj, OrganizationBillingBudgetsGetInput as gk, OrganizationBillingBudgetsGetOutput as gl, OrganizationBillingBudgetsSetInput as gm, OrganizationBillingBudgetsSetOutput as gn, OrganizationBillingCapsClearInput as go, OrganizationBillingCapsClearOutput as gp, OrganizationBillingCapsSetInput as gq, OrganizationBillingCapsSetOutput as gr, OrganizationBindingsListInput as gs, OrganizationBindingsListOutput as gt, OrganizationClickupInstallInput as gu, OrganizationClickupInstallOutput as gv, OrganizationClickupListInstallationsInput as gw, OrganizationClickupListInstallationsOutput as gx, OrganizationCloudflareInstallInput as gy, OrganizationCloudflareInstallOutput as gz, BrainBackupsListOutput as h, OrganizationProductResendInvitationOutput as h$, OrganizationDomainsGetInput as h0, OrganizationDomainsGetOutput as h1, OrganizationDomainsListInput as h2, OrganizationDomainsListOutput as h3, OrganizationDomainsRemoveInput as h4, OrganizationDomainsRemoveOutput as h5, OrganizationDomainsSetModeInput as h6, OrganizationDomainsSetModeOutput as h7, OrganizationExtensionsListInstalledInput as h8, OrganizationExtensionsListInstalledOutput as h9, OrganizationMemberSetRoleInput as hA, OrganizationMemberSetRoleOutput as hB, OrganizationMemberShareProductInput as hC, OrganizationMemberShareProductOutput as hD, OrganizationMemberUnshareProductInput as hE, OrganizationMemberUnshareProductOutput as hF, OrganizationMembersAssignRoleInput as hG, OrganizationMembersAssignRoleOutput as hH, OrganizationPermissionCatalogInput as hI, OrganizationPermissionCatalogOutput as hJ, OrganizationProductAcceptInvitationInput as hK, OrganizationProductAcceptInvitationOutput as hL, OrganizationProductCreateInput as hM, OrganizationProductCreateOutput as hN, OrganizationProductInviteInput as hO, OrganizationProductInviteOutput as hP, OrganizationProductListAccessInput as hQ, OrganizationProductListAccessOutput 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, OrganizationProductResendInvitationInput as h_, OrganizationFeedbackSubmitInput as ha, OrganizationFeedbackSubmitOutput as hb, OrganizationGdriveInstallInput as hc, OrganizationGdriveInstallOutput as hd, OrganizationGithubInstallInput as he, OrganizationGithubInstallOutput as hf, OrganizationGithubListInstallationsInput as hg, OrganizationGithubListInstallationsOutput as hh, OrganizationGoogleadsInstallInput as hi, OrganizationGoogleadsInstallOutput as hj, OrganizationListInput as hk, OrganizationListOutput as hl, OrganizationMemberAcceptInviteInput as hm, OrganizationMemberAcceptInviteOutput as hn, OrganizationMemberInviteInput as ho, OrganizationMemberInviteOutput as hp, OrganizationMemberListInvitationsInput as hq, OrganizationMemberListInvitationsOutput as hr, OrganizationMemberListProductAccessInput as hs, OrganizationMemberListProductAccessOutput as ht, OrganizationMemberListInput as hu, OrganizationMemberListOutput as hv, OrganizationMemberRemoveInput as hw, OrganizationMemberRemoveOutput as hx, OrganizationMemberRevokeInvitationInput as hy, OrganizationMemberRevokeInvitationOutput as hz, BrainClickupChannelsListInput as i, PlaygroundLifecycleGetStateOutput as i$, OrganizationProductRevokeAccessInput as i0, OrganizationProductRevokeAccessOutput as i1, OrganizationProductRevokeInvitationInput as i2, OrganizationProductRevokeInvitationOutput as i3, OrganizationProductSelectInput as i4, OrganizationProductSelectOutput as i5, OrganizationProductSetAccessInput as i6, OrganizationProductSetAccessOutput as i7, OrganizationProductUpdateInput as i8, OrganizationProductUpdateOutput as i9, OrganizationSupportThreadCreateInput as iA, OrganizationSupportThreadCreateOutput as iB, OrganizationSupportThreadGetInput as iC, OrganizationSupportThreadGetOutput as iD, OrganizationSupportThreadReplyInput as iE, OrganizationSupportThreadReplyOutput as iF, OrganizationSupportThreadsListInput as iG, OrganizationSupportThreadsListOutput as iH, PlaygroundAnalyticsOverviewInput as iI, PlaygroundAnalyticsOverviewOutput as iJ, PlaygroundBillingEntitlementsInput as iK, PlaygroundBillingEntitlementsOutput as iL, PlaygroundBillingRecordUsageInput as iM, PlaygroundBillingRecordUsageOutput as iN, PlaygroundClickupCreateTaskInput as iO, PlaygroundClickupCreateTaskOutput as iP, PlaygroundClickupGetLastWebhookInput as iQ, PlaygroundClickupGetLastWebhookOutput as iR, PlaygroundClickupGetOverviewInput as iS, PlaygroundClickupGetOverviewOutput as iT, PlaygroundGdriveGetLastChangeInput as iU, PlaygroundGdriveGetLastChangeOutput as iV, PlaygroundGdriveReadFileInput as iW, PlaygroundGdriveReadFileOutput as iX, PlaygroundGoogleadsReadCustomerInput as iY, PlaygroundGoogleadsReadCustomerOutput as iZ, PlaygroundLifecycleGetStateInput as i_, OrganizationPublicKeysCreateInput as ia, OrganizationPublicKeysCreateOutput as ib, OrganizationPublicKeysListInput as ic, OrganizationPublicKeysListOutput as id, OrganizationPublicKeysRevokeInput as ie, OrganizationPublicKeysRevokeOutput as ig, OrganizationPublicKeysUpdateScopeInput as ih, OrganizationPublicKeysUpdateScopeOutput as ii, OrganizationPublicRoutesListInput as ij, OrganizationPublicRoutesListOutput as ik, OrganizationRolesCreateInput as il, OrganizationRolesCreateOutput as im, OrganizationRolesDeleteInput as io, OrganizationRolesDeleteOutput as ip, OrganizationRolesGetInput as iq, OrganizationRolesGetOutput as ir, OrganizationRolesListInput as is, OrganizationRolesListOutput as it, OrganizationRolesUpdateInput as iu, OrganizationRolesUpdateOutput as iv, OrganizationSecurityMfaEnableInput as iw, OrganizationSecurityMfaEnableOutput as ix, OrganizationSelectInput as iy, OrganizationSelectOutput as iz, BrainClickupChannelsListOutput as j, SupportAgentGetOutput as j$, PlaygroundLifecycleListEventsInput as j0, PlaygroundLifecycleListEventsOutput as j1, PlaygroundWebhookGetLastInput as j2, PlaygroundWebhookGetLastOutput as j3, RealtimeArchiveExportInput as j4, RealtimeArchiveExportOutput as j5, RealtimeArchiveExportStatusInput as j6, RealtimeArchiveExportStatusOutput as j7, RealtimeArchiveGetInput as j8, RealtimeArchiveGetOutput as j9, RealtimePresenceStatsInput as jA, RealtimePresenceStatsOutput as jB, RealtimePresenceUpdateInput as jC, RealtimePresenceUpdateOutput as jD, RealtimePublicAccessStatusInput as jE, RealtimePublicAccessStatusOutput as jF, RealtimeStatusGetInput as jG, RealtimeStatusGetOutput as jH, RealtimeTokensCreateInput as jI, RealtimeTokensCreateOutput as jJ, RealtimeWebhookCreateInput as jK, RealtimeWebhookCreateOutput as jL, RealtimeWebhookDeleteInput as jM, RealtimeWebhookDeleteOutput as jN, RealtimeWebhookDeliveriesListInput as jO, RealtimeWebhookDeliveriesListOutput as jP, RealtimeWebhookGetInput as jQ, RealtimeWebhookGetOutput as jR, RealtimeWebhookListInput as jS, RealtimeWebhookListOutput as jT, RealtimeWebhookSecretRotateInput as jU, RealtimeWebhookSecretRotateOutput as jV, RealtimeWebhookUpdateInput as jW, RealtimeWebhookUpdateOutput as jX, SupportAgentCreateInput as jY, SupportAgentCreateOutput as jZ, SupportAgentGetInput as j_, RealtimeGrantCreateInput as ja, RealtimeGrantCreateOutput as jb, RealtimeGrantListInput as jc, RealtimeGrantListOutput as jd, RealtimeGrantRevokeInput as je, RealtimeGrantRevokeOutput as jf, RealtimeHistoryGetInput as jg, RealtimeHistoryGetOutput as jh, RealtimeMessagesPublishInput as ji, RealtimeMessagesPublishOutput as jj, RealtimeNamespaceCreateInput as jk, RealtimeNamespaceCreateOutput as jl, RealtimeNamespaceDeleteInput as jm, RealtimeNamespaceDeleteOutput as jn, RealtimeNamespaceGetInput as jo, RealtimeNamespaceGetOutput as jp, RealtimeNamespaceListInput as jq, RealtimeNamespaceListOutput as jr, RealtimeNamespaceUpdateInput as js, RealtimeNamespaceUpdateOutput as jt, RealtimePresenceEnterInput as ju, RealtimePresenceEnterOutput as jv, RealtimePresenceGetInput as jw, RealtimePresenceGetOutput as jx, RealtimePresenceLeaveInput as jy, RealtimePresenceLeaveOutput as jz, BrainClickupConnectionsListInput as k, TrackingEventNamesArchiveOutput as k$, SupportAgentListInput as k0, SupportAgentListOutput as k1, SupportAgentUpdateInput as k2, SupportAgentUpdateOutput as k3, SupportAttachmentCreateInput as k4, SupportAttachmentCreateOutput as k5, SupportAttachmentFinalizeInput as k6, SupportAttachmentFinalizeOutput as k7, SupportLabelCreateInput as k8, SupportLabelCreateOutput as k9, SupportWebhookCreateInput as kA, SupportWebhookCreateOutput as kB, SupportWebhookDeleteInput as kC, SupportWebhookDeleteOutput as kD, SupportWebhookDeliveriesListInput as kE, SupportWebhookDeliveriesListOutput as kF, SupportWebhookGetInput as kG, SupportWebhookGetOutput as kH, SupportWebhookListInput as kI, SupportWebhookListOutput as kJ, SupportWebhookRedeliverInput as kK, SupportWebhookRedeliverOutput as kL, SupportWebhookRotateSecretInput as kM, SupportWebhookRotateSecretOutput as kN, SupportWebhookUpdateInput as kO, SupportWebhookUpdateOutput as kP, TrackingDomainsCreateInput as kQ, TrackingDomainsCreateOutput as kR, TrackingDomainsDeleteInput as kS, TrackingDomainsDeleteOutput as kT, TrackingDomainsGetInput as kU, TrackingDomainsGetOutput as kV, TrackingDomainsListInput as kW, TrackingDomainsListOutput as kX, TrackingDomainsVerifyInput as kY, TrackingDomainsVerifyOutput as kZ, TrackingEventNamesArchiveInput as k_, SupportLabelListInput as ka, SupportLabelListOutput as kb, SupportMessageCreateInput as kc, SupportMessageCreateOutput as kd, SupportMessageListInput as ke, SupportMessageListOutput as kf, SupportStatusArchiveInput as kg, SupportStatusArchiveOutput as kh, SupportStatusCreateInput as ki, SupportStatusCreateOutput as kj, SupportStatusListInput as kk, SupportStatusListOutput as kl, SupportStatusUpdateInput as km, SupportStatusUpdateOutput as kn, SupportThreadAssignInput as ko, SupportThreadAssignOutput as kp, SupportThreadCreateInput as kq, SupportThreadCreateOutput as kr, SupportThreadGetInput as ks, SupportThreadGetOutput as kt, SupportThreadListInput as ku, SupportThreadListOutput as kv, SupportThreadStatusSetInput as kw, SupportThreadStatusSetOutput as kx, SupportThreadUpdateInput as ky, SupportThreadUpdateOutput as kz, BrainClickupConnectionsListOutput as l, UsersApikeysListOutput as l$, TrackingEventNamesListInput as l0, TrackingEventNamesListOutput as l1, TrackingEventNamesUnarchiveInput as l2, TrackingEventNamesUnarchiveOutput as l3, TrackingGoogleadsConnectionStatusInput as l4, TrackingGoogleadsConnectionStatusOutput as l5, TrackingGoogleadsConversionActionsInput as l6, TrackingGoogleadsConversionActionsOutput as l7, TrackingGoogleadsFeedbackConfigGetInput as l8, TrackingGoogleadsFeedbackConfigGetOutput as l9, TrackingLinkDomainsDeleteInput as lA, TrackingLinkDomainsDeleteOutput as lB, TrackingLinkDomainsListInput as lC, TrackingLinkDomainsListOutput as lD, TrackingLiveEventsListInput as lE, TrackingLiveEventsListOutput as lF, TrackingProfilesDeleteInput as lG, TrackingProfilesDeleteOutput as lH, TrackingProfilesExportInput as lI, TrackingProfilesExportOutput as lJ, TrackingProfilesGetInput as lK, TrackingProfilesGetOutput as lL, TrackingProfilesListInput as lM, TrackingProfilesListOutput as lN, TrackingReportsAttributedJourneyInput as lO, TrackingReportsAttributedJourneyOutput as lP, TrackingReportsEventVolumeInput as lQ, TrackingReportsEventVolumeOutput as lR, TrackingReportsRevenueBySourceInput as lS, TrackingReportsRevenueBySourceOutput as lT, TrackingReportsSourcePeopleInput as lU, TrackingReportsSourcePeopleOutput as lV, TrackingSnippetsGetInput as lW, TrackingSnippetsGetOutput as lX, UsersApikeysCreateInput as lY, UsersApikeysCreateOutput as lZ, UsersApikeysListInput as l_, TrackingGoogleadsFeedbackConfigSetInput as la, TrackingGoogleadsFeedbackConfigSetOutput as lb, TrackingGoogleadsFeedbackRunInput as lc, TrackingGoogleadsFeedbackRunOutput as ld, TrackingGoogleadsFeedbackStatusInput as le, TrackingGoogleadsFeedbackStatusOutput as lf, TrackingGoogleadsFeedbackUploadsInput as lg, TrackingGoogleadsFeedbackUploadsOutput as lh, TrackingGoogleadsRoasReportInput as li, TrackingGoogleadsRoasReportOutput as lj, TrackingGoogleadsSyncNowInput as lk, TrackingGoogleadsSyncNowOutput as ll, TrackingGoogleadsTrackingHealthInput as lm, TrackingGoogleadsTrackingHealthOutput as ln, TrackingGoogleadsUsVsPlatformInput as lo, TrackingGoogleadsUsVsPlatformOutput as lp, TrackingIdentityHealthInput as lq, TrackingIdentityHealthOutput as lr, TrackingInstallDomainsCreateInput as ls, TrackingInstallDomainsCreateOutput as lt, TrackingInstallDomainsDeleteInput as lu, TrackingInstallDomainsDeleteOutput as lv, TrackingInstallDomainsListInput as lw, TrackingInstallDomainsListOutput as lx, TrackingLinkDomainsCreateInput as ly, TrackingLinkDomainsCreateOutput as lz, BrainClickupListsListInput as m, UsersWaitlistInviteOutput as m$, UsersApikeysRevokeInput as m0, UsersApikeysRevokeOutput as m1, UsersAuditListInput as m2, UsersAuditListOutput as m3, UsersConfigGetInput as m4, UsersConfigGetOutput as m5, UsersConfigUpsertInput as m6, UsersConfigUpsertOutput as m7, UsersFactorsListInput as m8, UsersFactorsListOutput as m9, UsersUsersDeleteInput as mA, UsersUsersDeleteOutput as mB, UsersUsersEraseInput as mC, UsersUsersEraseOutput as mD, UsersUsersExportInput as mE, UsersUsersExportOutput as mF, UsersUsersGetInput as mG, UsersUsersGetOutput as mH, UsersUsersImportInput as mI, UsersUsersImportOutput as mJ, UsersUsersInviteInput as mK, UsersUsersInviteOutput as mL, UsersUsersListInput as mM, UsersUsersListOutput as mN, UsersUsersSetPrimaryIdentifierInput as mO, UsersUsersSetPrimaryIdentifierOutput as mP, UsersUsersUnbanInput as mQ, UsersUsersUnbanOutput as mR, UsersUsersUpdateInput as mS, UsersUsersUpdateOutput as mT, UsersWaitlistEraseInput as mU, UsersWaitlistEraseOutput as mV, UsersWaitlistFunnelInput as mW, UsersWaitlistFunnelOutput as mX, UsersWaitlistImportInput as mY, UsersWaitlistImportOutput as mZ, UsersWaitlistInviteInput as m_, UsersFactorsResetInput as ma, UsersFactorsResetOutput as mb, UsersKeysListInput as mc, UsersKeysListOutput as md, UsersKeysRevokeInput as me, UsersKeysRevokeOutput as mf, UsersKeysRotateInput as mg, UsersKeysRotateOutput as mh, UsersOpsRetentionGetInput as mi, UsersOpsRetentionGetOutput as mj, UsersOpsSloGetInput as mk, UsersOpsSloGetOutput as ml, UsersSessionsGetInput as mm, UsersSessionsGetOutput as mn, UsersSessionsImpersonateInput as mo, UsersSessionsImpersonateOutput as mp, UsersSessionsListInput as mq, UsersSessionsListOutput as mr, UsersSessionsRevokeInput as ms, UsersSessionsRevokeOutput as mt, UsersStatsGetInput as mu, UsersStatsGetOutput as mv, UsersUsersBanInput as mw, UsersUsersBanOutput as mx, UsersUsersCreateInput as my, UsersUsersCreateOutput as mz, BrainClickupListsListOutput as n, UsersWaitlistListInput as n0, UsersWaitlistListOutput as n1, UsersWebhooksCreateInput as n2, UsersWebhooksCreateOutput as n3, UsersWebhooksDeleteInput as n4, UsersWebhooksDeleteOutput as n5, UsersWebhooksDeliveriesListInput as n6, UsersWebhooksDeliveriesListOutput as n7, UsersWebhooksGetInput as n8, UsersWebhooksGetOutput as n9, UsersWebhooksListInput as na, UsersWebhooksListOutput as nb, UsersWebhooksRotateSecretInput as nc, UsersWebhooksRotateSecretOutput as nd, UsersWebhooksUpdateInput as ne, UsersWebhooksUpdateOutput as nf, WaitlistConfigGetInput as ng, WaitlistConfigGetOutput as nh, WaitlistConfigUpsertInput as ni, WaitlistConfigUpsertOutput as nj, WaitlistEmbedGetInput as nk, WaitlistEmbedGetOutput as nl, WaitlistInvitesSendInput as nm, WaitlistInvitesSendOutput as nn, WaitlistSignupsEraseInput as no, WaitlistSignupsEraseOutput as np, WaitlistSignupsFunnelInput as nq, WaitlistSignupsFunnelOutput as nr, WaitlistSignupsListInput as ns, WaitlistSignupsListOutput as nt, 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 };
|