@lessly/sdk-app 36.2.0 → 37.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +5 -0
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +6 -2
- package/dist/brain/index.d.ts +6 -2
- package/dist/brain/index.js +5 -1
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-B78AtFRC.d.cts → client.gen-C7SVQnZq.d.cts} +94 -1596
- package/dist/{client.gen-B78AtFRC.d.ts → client.gen-C7SVQnZq.d.ts} +94 -1596
- 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 +13 -520
- 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 +13 -520
- 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/organization/index.d.cts +1 -1
- package/dist/organization/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 +2 -12
- package/src/gen/bindings.gen.ts +13 -520
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +7 -0
- package/src/gen/client.gen.ts +5 -142
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/types.gen.ts +190 -1704
- package/dist/observe/index.cjs +0 -126
- package/dist/observe/index.cjs.map +0 -1
- package/dist/observe/index.d.cts +0 -100
- package/dist/observe/index.d.ts +0 -100
- package/dist/observe/index.js +0 -101
- package/dist/observe/index.js.map +0 -1
- package/dist/playground/index.cjs +0 -66
- package/dist/playground/index.cjs.map +0 -1
- package/dist/playground/index.d.cts +0 -52
- package/dist/playground/index.d.ts +0 -52
- package/dist/playground/index.js +0 -53
- package/dist/playground/index.js.map +0 -1
- package/src/gen/observe/index.ts +0 -3
- package/src/gen/observe/queryOptions.gen.ts +0 -161
- package/src/gen/playground/index.ts +0 -3
- package/src/gen/playground/queryOptions.gen.ts +0 -86
|
@@ -935,6 +935,96 @@ type BrainRestoreStatusOutput = ({
|
|
|
935
935
|
snapshotId: string;
|
|
936
936
|
preRestoreSnapshotId: (string | null);
|
|
937
937
|
} | null);
|
|
938
|
+
interface BrainUsageReportInput {
|
|
939
|
+
/**
|
|
940
|
+
* How many UTC days of this product's ledger to return, ending today (default 30, max 90)
|
|
941
|
+
*/
|
|
942
|
+
days?: number;
|
|
943
|
+
}
|
|
944
|
+
interface BrainUsageReportOutput {
|
|
945
|
+
note: string;
|
|
946
|
+
/**
|
|
947
|
+
* Brain's own ledger, for THIS product only
|
|
948
|
+
*/
|
|
949
|
+
product: {
|
|
950
|
+
/**
|
|
951
|
+
* Inclusive UTC end of the window (today), YYYY-MM-DD
|
|
952
|
+
*/
|
|
953
|
+
to: string;
|
|
954
|
+
/**
|
|
955
|
+
* The window actually used, after clamping
|
|
956
|
+
*/
|
|
957
|
+
days: number;
|
|
958
|
+
/**
|
|
959
|
+
* Inclusive UTC start of the window, YYYY-MM-DD
|
|
960
|
+
*/
|
|
961
|
+
from: string;
|
|
962
|
+
rows: {
|
|
963
|
+
/**
|
|
964
|
+
* 'sync' | 'batch'; '' when the push carried none
|
|
965
|
+
*/
|
|
966
|
+
mode: string;
|
|
967
|
+
/**
|
|
968
|
+
* Manifest meter slug, e.g. llm-tokens
|
|
969
|
+
*/
|
|
970
|
+
meter: string;
|
|
971
|
+
/**
|
|
972
|
+
* Model dimension; '' when the push carried none
|
|
973
|
+
*/
|
|
974
|
+
model: string;
|
|
975
|
+
/**
|
|
976
|
+
* How many record() calls landed in this slice
|
|
977
|
+
*/
|
|
978
|
+
events: number;
|
|
979
|
+
/**
|
|
980
|
+
* Tokens we metered for this slice, delivered or not
|
|
981
|
+
*/
|
|
982
|
+
tokens: number;
|
|
983
|
+
/**
|
|
984
|
+
* Purpose dimension; '' when the push carried none
|
|
985
|
+
*/
|
|
986
|
+
purpose: string;
|
|
987
|
+
/**
|
|
988
|
+
* UTC calendar day, YYYY-MM-DD
|
|
989
|
+
*/
|
|
990
|
+
usage_date: string;
|
|
991
|
+
/**
|
|
992
|
+
* Of those events, how many billing did not accept
|
|
993
|
+
*/
|
|
994
|
+
delivery_failed: number;
|
|
995
|
+
}[];
|
|
996
|
+
/**
|
|
997
|
+
* The rows rolled up per meter across the whole window
|
|
998
|
+
*/
|
|
999
|
+
totals: {
|
|
1000
|
+
meter: string;
|
|
1001
|
+
events: number;
|
|
1002
|
+
tokens: number;
|
|
1003
|
+
delivery_failed: number;
|
|
1004
|
+
}[];
|
|
1005
|
+
product_id: string;
|
|
1006
|
+
};
|
|
1007
|
+
/**
|
|
1008
|
+
* The platform billing aggregate for the whole ORG; null if it could not be read
|
|
1009
|
+
*/
|
|
1010
|
+
platform: ({
|
|
1011
|
+
plan: string;
|
|
1012
|
+
scope: "org";
|
|
1013
|
+
meters: {
|
|
1014
|
+
unit?: string;
|
|
1015
|
+
used?: number;
|
|
1016
|
+
limit?: (number | null);
|
|
1017
|
+
remaining?: (number | null);
|
|
1018
|
+
unlimited?: boolean;
|
|
1019
|
+
meter_slug: string;
|
|
1020
|
+
}[];
|
|
1021
|
+
org_id: string;
|
|
1022
|
+
} | null);
|
|
1023
|
+
/**
|
|
1024
|
+
* Why the platform aggregate is null; null when it was read successfully
|
|
1025
|
+
*/
|
|
1026
|
+
platform_error: (string | null);
|
|
1027
|
+
}
|
|
938
1028
|
interface ConsentConfigCookieDomainUpsertInput {
|
|
939
1029
|
cookieDomain: ("" | null | string);
|
|
940
1030
|
}
|
|
@@ -12510,1342 +12600,6 @@ interface MailWebhookUpdateOutput {
|
|
|
12510
12600
|
description: (string | null);
|
|
12511
12601
|
enabled_events: string[];
|
|
12512
12602
|
}
|
|
12513
|
-
interface ObserveArtifactsDeleteInput {
|
|
12514
|
-
/**
|
|
12515
|
-
* Identifier of the artifact to delete. An artifact of another product is reported as not found
|
|
12516
|
-
*/
|
|
12517
|
-
id: string;
|
|
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
|
-
* Stack of the most recent event, or null when the issue has no events yet or the stack could not be read
|
|
12787
|
-
*/
|
|
12788
|
-
stack: ({
|
|
12789
|
-
/**
|
|
12790
|
-
* The stack, resolved where a stored source map matched the frame
|
|
12791
|
-
*/
|
|
12792
|
-
frames: {
|
|
12793
|
-
/**
|
|
12794
|
-
* Column number, original when the frame resolved
|
|
12795
|
-
*/
|
|
12796
|
-
colno?: number;
|
|
12797
|
-
/**
|
|
12798
|
-
* Whether the frame belongs to the application rather than a dependency
|
|
12799
|
-
*/
|
|
12800
|
-
inApp?: boolean;
|
|
12801
|
-
/**
|
|
12802
|
-
* Line number, original when the frame resolved
|
|
12803
|
-
*/
|
|
12804
|
-
lineno?: number;
|
|
12805
|
-
/**
|
|
12806
|
-
* Original file when the frame resolved, else the minified one
|
|
12807
|
-
*/
|
|
12808
|
-
filename?: string;
|
|
12809
|
-
/**
|
|
12810
|
-
* Function name, original where the source map names one
|
|
12811
|
-
*/
|
|
12812
|
-
function?: string;
|
|
12813
|
-
/**
|
|
12814
|
-
* False means no source map matched and the frame is exactly as it was recorded
|
|
12815
|
-
*/
|
|
12816
|
-
resolved: boolean;
|
|
12817
|
-
}[];
|
|
12818
|
-
/**
|
|
12819
|
-
* Identifier of the event the stack was taken from
|
|
12820
|
-
*/
|
|
12821
|
-
eventId: string;
|
|
12822
|
-
} | null);
|
|
12823
|
-
/**
|
|
12824
|
-
* Display title, set when the issue opened and never rewritten
|
|
12825
|
-
*/
|
|
12826
|
-
title: string;
|
|
12827
|
-
/**
|
|
12828
|
-
* unresolved, resolved or archived
|
|
12829
|
-
*/
|
|
12830
|
-
status: string;
|
|
12831
|
-
/**
|
|
12832
|
-
* Where the error appears to come from, or null
|
|
12833
|
-
*/
|
|
12834
|
-
culprit: (string | null);
|
|
12835
|
-
/**
|
|
12836
|
-
* Who owns the issue, or null if unassigned
|
|
12837
|
-
*/
|
|
12838
|
-
assignee: (string | null);
|
|
12839
|
-
/**
|
|
12840
|
-
* ISO 8601 timestamp of the most recent event
|
|
12841
|
-
*/
|
|
12842
|
-
lastSeen: string;
|
|
12843
|
-
/**
|
|
12844
|
-
* ISO 8601 timestamp of the first event
|
|
12845
|
-
*/
|
|
12846
|
-
firstSeen: string;
|
|
12847
|
-
/**
|
|
12848
|
-
* ISO 8601 archive timestamp, or null
|
|
12849
|
-
*/
|
|
12850
|
-
archivedAt: (string | null);
|
|
12851
|
-
/**
|
|
12852
|
-
* How many events have landed on this issue
|
|
12853
|
-
*/
|
|
12854
|
-
eventCount: number;
|
|
12855
|
-
/**
|
|
12856
|
-
* ISO 8601 resolution timestamp, or null
|
|
12857
|
-
*/
|
|
12858
|
-
resolvedAt: (string | null);
|
|
12859
|
-
/**
|
|
12860
|
-
* Environment the issue was first seen in, or null
|
|
12861
|
-
*/
|
|
12862
|
-
environment: (string | null);
|
|
12863
|
-
/**
|
|
12864
|
-
* Stable grouping hash the issue is keyed on
|
|
12865
|
-
*/
|
|
12866
|
-
fingerprint: string;
|
|
12867
|
-
/**
|
|
12868
|
-
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12869
|
-
*/
|
|
12870
|
-
regressedAt: (string | null);
|
|
12871
|
-
/**
|
|
12872
|
-
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12873
|
-
*/
|
|
12874
|
-
groupingRule: string;
|
|
12875
|
-
/**
|
|
12876
|
-
* Exception class of the first event, or null
|
|
12877
|
-
*/
|
|
12878
|
-
exceptionType: (string | null);
|
|
12879
|
-
/**
|
|
12880
|
-
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12881
|
-
*/
|
|
12882
|
-
groupingVersion: string;
|
|
12883
|
-
}
|
|
12884
|
-
interface ObserveIssuesListInput {
|
|
12885
|
-
/**
|
|
12886
|
-
* How many issues to return, most recently seen first. 1-200, default 50
|
|
12887
|
-
*/
|
|
12888
|
-
limit?: number;
|
|
12889
|
-
/**
|
|
12890
|
-
* Only return issues in this state; omit to list every state
|
|
12891
|
-
*/
|
|
12892
|
-
status?: ("unresolved" | "resolved" | "archived");
|
|
12893
|
-
/**
|
|
12894
|
-
* Only return issues owned by this assignee
|
|
12895
|
-
*/
|
|
12896
|
-
assignee?: string;
|
|
12897
|
-
}
|
|
12898
|
-
type ObserveIssuesListOutput = {
|
|
12899
|
-
/**
|
|
12900
|
-
* Identifier of the issue
|
|
12901
|
-
*/
|
|
12902
|
-
id: string;
|
|
12903
|
-
/**
|
|
12904
|
-
* Display title, set when the issue opened and never rewritten
|
|
12905
|
-
*/
|
|
12906
|
-
title: string;
|
|
12907
|
-
/**
|
|
12908
|
-
* unresolved, resolved or archived
|
|
12909
|
-
*/
|
|
12910
|
-
status: string;
|
|
12911
|
-
/**
|
|
12912
|
-
* Where the error appears to come from, or null
|
|
12913
|
-
*/
|
|
12914
|
-
culprit: (string | null);
|
|
12915
|
-
/**
|
|
12916
|
-
* Who owns the issue, or null if unassigned
|
|
12917
|
-
*/
|
|
12918
|
-
assignee: (string | null);
|
|
12919
|
-
/**
|
|
12920
|
-
* ISO 8601 timestamp of the most recent event
|
|
12921
|
-
*/
|
|
12922
|
-
lastSeen: string;
|
|
12923
|
-
/**
|
|
12924
|
-
* ISO 8601 timestamp of the first event
|
|
12925
|
-
*/
|
|
12926
|
-
firstSeen: string;
|
|
12927
|
-
/**
|
|
12928
|
-
* ISO 8601 archive timestamp, or null
|
|
12929
|
-
*/
|
|
12930
|
-
archivedAt: (string | null);
|
|
12931
|
-
/**
|
|
12932
|
-
* How many events have landed on this issue
|
|
12933
|
-
*/
|
|
12934
|
-
eventCount: number;
|
|
12935
|
-
/**
|
|
12936
|
-
* ISO 8601 resolution timestamp, or null
|
|
12937
|
-
*/
|
|
12938
|
-
resolvedAt: (string | null);
|
|
12939
|
-
/**
|
|
12940
|
-
* Environment the issue was first seen in, or null
|
|
12941
|
-
*/
|
|
12942
|
-
environment: (string | null);
|
|
12943
|
-
/**
|
|
12944
|
-
* Stable grouping hash the issue is keyed on
|
|
12945
|
-
*/
|
|
12946
|
-
fingerprint: string;
|
|
12947
|
-
/**
|
|
12948
|
-
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12949
|
-
*/
|
|
12950
|
-
regressedAt: (string | null);
|
|
12951
|
-
/**
|
|
12952
|
-
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12953
|
-
*/
|
|
12954
|
-
groupingRule: string;
|
|
12955
|
-
/**
|
|
12956
|
-
* Exception class of the first event, or null
|
|
12957
|
-
*/
|
|
12958
|
-
exceptionType: (string | null);
|
|
12959
|
-
/**
|
|
12960
|
-
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12961
|
-
*/
|
|
12962
|
-
groupingVersion: string;
|
|
12963
|
-
}[];
|
|
12964
|
-
interface ObserveIssuesResolveInput {
|
|
12965
|
-
/**
|
|
12966
|
-
* Identifier of the issue
|
|
12967
|
-
*/
|
|
12968
|
-
id: string;
|
|
12969
|
-
}
|
|
12970
|
-
interface ObserveIssuesResolveOutput {
|
|
12971
|
-
/**
|
|
12972
|
-
* Identifier of the issue
|
|
12973
|
-
*/
|
|
12974
|
-
id: string;
|
|
12975
|
-
/**
|
|
12976
|
-
* Display title, set when the issue opened and never rewritten
|
|
12977
|
-
*/
|
|
12978
|
-
title: string;
|
|
12979
|
-
/**
|
|
12980
|
-
* unresolved, resolved or archived
|
|
12981
|
-
*/
|
|
12982
|
-
status: string;
|
|
12983
|
-
/**
|
|
12984
|
-
* Where the error appears to come from, or null
|
|
12985
|
-
*/
|
|
12986
|
-
culprit: (string | null);
|
|
12987
|
-
/**
|
|
12988
|
-
* Who owns the issue, or null if unassigned
|
|
12989
|
-
*/
|
|
12990
|
-
assignee: (string | null);
|
|
12991
|
-
/**
|
|
12992
|
-
* ISO 8601 timestamp of the most recent event
|
|
12993
|
-
*/
|
|
12994
|
-
lastSeen: string;
|
|
12995
|
-
/**
|
|
12996
|
-
* ISO 8601 timestamp of the first event
|
|
12997
|
-
*/
|
|
12998
|
-
firstSeen: string;
|
|
12999
|
-
/**
|
|
13000
|
-
* ISO 8601 archive timestamp, or null
|
|
13001
|
-
*/
|
|
13002
|
-
archivedAt: (string | null);
|
|
13003
|
-
/**
|
|
13004
|
-
* How many events have landed on this issue
|
|
13005
|
-
*/
|
|
13006
|
-
eventCount: number;
|
|
13007
|
-
/**
|
|
13008
|
-
* ISO 8601 resolution timestamp, or null
|
|
13009
|
-
*/
|
|
13010
|
-
resolvedAt: (string | null);
|
|
13011
|
-
/**
|
|
13012
|
-
* Environment the issue was first seen in, or null
|
|
13013
|
-
*/
|
|
13014
|
-
environment: (string | null);
|
|
13015
|
-
/**
|
|
13016
|
-
* Stable grouping hash the issue is keyed on
|
|
13017
|
-
*/
|
|
13018
|
-
fingerprint: string;
|
|
13019
|
-
/**
|
|
13020
|
-
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13021
|
-
*/
|
|
13022
|
-
regressedAt: (string | null);
|
|
13023
|
-
/**
|
|
13024
|
-
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13025
|
-
*/
|
|
13026
|
-
groupingRule: string;
|
|
13027
|
-
/**
|
|
13028
|
-
* Exception class of the first event, or null
|
|
13029
|
-
*/
|
|
13030
|
-
exceptionType: (string | null);
|
|
13031
|
-
/**
|
|
13032
|
-
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13033
|
-
*/
|
|
13034
|
-
groupingVersion: string;
|
|
13035
|
-
}
|
|
13036
|
-
interface ObserveKeysCreateInput {
|
|
13037
|
-
/**
|
|
13038
|
-
* ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
|
|
13039
|
-
*/
|
|
13040
|
-
kind?: ("ingest" | "dsn");
|
|
13041
|
-
/**
|
|
13042
|
-
* Optional human label for the key, e.g. "ci" or "backend pods"
|
|
13043
|
-
*/
|
|
13044
|
-
name?: string;
|
|
13045
|
-
/**
|
|
13046
|
-
* Environment this key sends telemetry for, e.g. "staging" or "production"
|
|
13047
|
-
*/
|
|
13048
|
-
environment: string;
|
|
13049
|
-
}
|
|
13050
|
-
interface ObserveKeysCreateOutput {
|
|
13051
|
-
/**
|
|
13052
|
-
* Identifier of the ingest key
|
|
13053
|
-
*/
|
|
13054
|
-
id: string;
|
|
13055
|
-
/**
|
|
13056
|
-
* The full DSN, for kind "dsn" — shown only here, store it now
|
|
13057
|
-
*/
|
|
13058
|
-
dsn?: string;
|
|
13059
|
-
/**
|
|
13060
|
-
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13061
|
-
*/
|
|
13062
|
-
kind: ("ingest" | "dsn");
|
|
13063
|
-
/**
|
|
13064
|
-
* Human label given at creation, or null
|
|
13065
|
-
*/
|
|
13066
|
-
name: (string | null);
|
|
13067
|
-
/**
|
|
13068
|
-
* The full ingest token, for kind "ingest" — shown only here, store it now
|
|
13069
|
-
*/
|
|
13070
|
-
token?: string;
|
|
13071
|
-
/**
|
|
13072
|
-
* First characters of the token, shown for recognition
|
|
13073
|
-
*/
|
|
13074
|
-
prefix: string;
|
|
13075
|
-
/**
|
|
13076
|
-
* ISO 8601 creation timestamp
|
|
13077
|
-
*/
|
|
13078
|
-
createdAt: string;
|
|
13079
|
-
/**
|
|
13080
|
-
* ISO 8601 revocation timestamp, or null if active
|
|
13081
|
-
*/
|
|
13082
|
-
revokedAt: (string | null);
|
|
13083
|
-
/**
|
|
13084
|
-
* Environment the key writes telemetry for
|
|
13085
|
-
*/
|
|
13086
|
-
environment: string;
|
|
13087
|
-
}
|
|
13088
|
-
interface ObserveKeysListInput {
|
|
13089
|
-
/**
|
|
13090
|
-
* Only return keys of this environment; omit to list all of them
|
|
13091
|
-
*/
|
|
13092
|
-
environment?: string;
|
|
13093
|
-
}
|
|
13094
|
-
type ObserveKeysListOutput = {
|
|
13095
|
-
/**
|
|
13096
|
-
* Identifier of the ingest key
|
|
13097
|
-
*/
|
|
13098
|
-
id: string;
|
|
13099
|
-
/**
|
|
13100
|
-
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13101
|
-
*/
|
|
13102
|
-
kind: ("ingest" | "dsn");
|
|
13103
|
-
/**
|
|
13104
|
-
* Human label given at creation, or null
|
|
13105
|
-
*/
|
|
13106
|
-
name: (string | null);
|
|
13107
|
-
/**
|
|
13108
|
-
* First characters of the token, shown for recognition
|
|
13109
|
-
*/
|
|
13110
|
-
prefix: string;
|
|
13111
|
-
/**
|
|
13112
|
-
* ISO 8601 creation timestamp
|
|
13113
|
-
*/
|
|
13114
|
-
createdAt: string;
|
|
13115
|
-
/**
|
|
13116
|
-
* ISO 8601 revocation timestamp, or null if active
|
|
13117
|
-
*/
|
|
13118
|
-
revokedAt: (string | null);
|
|
13119
|
-
/**
|
|
13120
|
-
* Environment the key writes telemetry for
|
|
13121
|
-
*/
|
|
13122
|
-
environment: string;
|
|
13123
|
-
}[];
|
|
13124
|
-
interface ObserveKeysRevokeInput {
|
|
13125
|
-
/**
|
|
13126
|
-
* Identifier of the ingest key to revoke
|
|
13127
|
-
*/
|
|
13128
|
-
id: string;
|
|
13129
|
-
}
|
|
13130
|
-
interface ObserveKeysRevokeOutput {
|
|
13131
|
-
/**
|
|
13132
|
-
* Identifier of the revoked key
|
|
13133
|
-
*/
|
|
13134
|
-
id: string;
|
|
13135
|
-
/**
|
|
13136
|
-
* ISO 8601 timestamp of the revocation
|
|
13137
|
-
*/
|
|
13138
|
-
revokedAt: string;
|
|
13139
|
-
}
|
|
13140
|
-
interface ObserveLogsFacetsInput {
|
|
13141
|
-
/**
|
|
13142
|
-
* How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
|
|
13143
|
-
*/
|
|
13144
|
-
window?: string;
|
|
13145
|
-
}
|
|
13146
|
-
interface ObserveLogsFacetsOutput {
|
|
13147
|
-
/**
|
|
13148
|
-
* Newest timestamp counted, ISO 8601
|
|
13149
|
-
*/
|
|
13150
|
-
to: string;
|
|
13151
|
-
/**
|
|
13152
|
-
* Oldest timestamp counted, ISO 8601
|
|
13153
|
-
*/
|
|
13154
|
-
from: string;
|
|
13155
|
-
/**
|
|
13156
|
-
* The window that was counted, e.g. "24h"
|
|
13157
|
-
*/
|
|
13158
|
-
window: string;
|
|
13159
|
-
/**
|
|
13160
|
-
* Services, most frequent first
|
|
13161
|
-
*/
|
|
13162
|
-
services: ObserveLogsFacetsOutputItems[];
|
|
13163
|
-
/**
|
|
13164
|
-
* Severities, most frequent first
|
|
13165
|
-
*/
|
|
13166
|
-
severities: ObserveLogsFacetsOutputItems[];
|
|
13167
|
-
/**
|
|
13168
|
-
* Environments, most frequent first
|
|
13169
|
-
*/
|
|
13170
|
-
environments: ObserveLogsFacetsOutputItems[];
|
|
13171
|
-
}
|
|
13172
|
-
interface ObserveLogsFacetsOutputItems {
|
|
13173
|
-
/**
|
|
13174
|
-
* How many lines carried it inside the window
|
|
13175
|
-
*/
|
|
13176
|
-
count: number;
|
|
13177
|
-
/**
|
|
13178
|
-
* The value as the emitter wrote it
|
|
13179
|
-
*/
|
|
13180
|
-
value: string;
|
|
13181
|
-
}
|
|
13182
|
-
interface ObserveLogsSearchInput {
|
|
13183
|
-
/**
|
|
13184
|
-
* Lucene-style expression, ANDed with the structured filters. `key:value` (service, environment, severity, trace_id, span_id, body; any other key matches an attribute), "quoted phrases", AND / OR / NOT in uppercase, parentheses. A bare word matches a whole word in the message body. Example: service:api AND NOT severity:INFO AND "connection refused"
|
|
13185
|
-
*/
|
|
13186
|
-
q?: string;
|
|
13187
|
-
/**
|
|
13188
|
-
* Newest timestamp to include, ISO 8601
|
|
13189
|
-
*/
|
|
13190
|
-
to?: string;
|
|
13191
|
-
/**
|
|
13192
|
-
* Oldest timestamp to include, ISO 8601
|
|
13193
|
-
*/
|
|
13194
|
-
from?: string;
|
|
13195
|
-
/**
|
|
13196
|
-
* How many lines to return, 1-1000, default 100
|
|
13197
|
-
*/
|
|
13198
|
-
limit?: number;
|
|
13199
|
-
/**
|
|
13200
|
-
* The nextCursor of the previous page; omit for the first page
|
|
13201
|
-
*/
|
|
13202
|
-
cursor?: string;
|
|
13203
|
-
/**
|
|
13204
|
-
* Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
|
|
13205
|
-
*/
|
|
13206
|
-
search?: string;
|
|
13207
|
-
/**
|
|
13208
|
-
* Only lines of this service, e.g. "api"
|
|
13209
|
-
*/
|
|
13210
|
-
service?: string;
|
|
13211
|
-
/**
|
|
13212
|
-
* Only lines of this trace
|
|
13213
|
-
*/
|
|
13214
|
-
traceId?: string;
|
|
13215
|
-
/**
|
|
13216
|
-
* Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
|
|
13217
|
-
*
|
|
13218
|
-
* @minItems 1
|
|
13219
|
-
*/
|
|
13220
|
-
severityIn?: [string, ...(string)[]];
|
|
13221
|
-
/**
|
|
13222
|
-
* Only lines of this environment, e.g. "production"
|
|
13223
|
-
*/
|
|
13224
|
-
environment?: string;
|
|
13225
|
-
}
|
|
13226
|
-
interface ObserveLogsSearchOutput {
|
|
13227
|
-
/**
|
|
13228
|
-
* The matching log lines, newest first
|
|
13229
|
-
*/
|
|
13230
|
-
rows: {
|
|
13231
|
-
/**
|
|
13232
|
-
* The log message itself
|
|
13233
|
-
*/
|
|
13234
|
-
body: string;
|
|
13235
|
-
/**
|
|
13236
|
-
* Span this line belongs to, empty when untraced
|
|
13237
|
-
*/
|
|
13238
|
-
spanId: string;
|
|
13239
|
-
/**
|
|
13240
|
-
* Service that wrote the line
|
|
13241
|
-
*/
|
|
13242
|
-
service: string;
|
|
13243
|
-
/**
|
|
13244
|
-
* Trace this line belongs to, empty when untraced
|
|
13245
|
-
*/
|
|
13246
|
-
traceId: string;
|
|
13247
|
-
/**
|
|
13248
|
-
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13249
|
-
*/
|
|
13250
|
-
timestamp: string;
|
|
13251
|
-
/**
|
|
13252
|
-
* Attributes the emitter attached
|
|
13253
|
-
*/
|
|
13254
|
-
attributes: {
|
|
13255
|
-
[k: string]: string;
|
|
13256
|
-
};
|
|
13257
|
-
/**
|
|
13258
|
-
* Environment the line was written in
|
|
13259
|
-
*/
|
|
13260
|
-
environment: string;
|
|
13261
|
-
/**
|
|
13262
|
-
* Severity as the emitter named it, e.g. "ERROR"
|
|
13263
|
-
*/
|
|
13264
|
-
severityText: string;
|
|
13265
|
-
/**
|
|
13266
|
-
* OpenTelemetry severity number, 1-24
|
|
13267
|
-
*/
|
|
13268
|
-
severityNumber: number;
|
|
13269
|
-
}[];
|
|
13270
|
-
/**
|
|
13271
|
-
* Pass back as cursor for the next page; null when the last page was reached
|
|
13272
|
-
*/
|
|
13273
|
-
nextCursor: (string | null);
|
|
13274
|
-
}
|
|
13275
|
-
interface ObserveLogsTailInput {
|
|
13276
|
-
/**
|
|
13277
|
-
* The nextCursor of the previous poll; omit to start at the newest lines
|
|
13278
|
-
*/
|
|
13279
|
-
cursor?: string;
|
|
13280
|
-
/**
|
|
13281
|
-
* Only lines of this service
|
|
13282
|
-
*/
|
|
13283
|
-
service?: string;
|
|
13284
|
-
/**
|
|
13285
|
-
* Only lines whose severity is one of these
|
|
13286
|
-
*
|
|
13287
|
-
* @minItems 1
|
|
13288
|
-
*/
|
|
13289
|
-
severityIn?: [string, ...(string)[]];
|
|
13290
|
-
/**
|
|
13291
|
-
* Only lines of this environment
|
|
13292
|
-
*/
|
|
13293
|
-
environment?: string;
|
|
13294
|
-
}
|
|
13295
|
-
interface ObserveLogsTailOutput {
|
|
13296
|
-
/**
|
|
13297
|
-
* The new log lines, oldest first
|
|
13298
|
-
*/
|
|
13299
|
-
rows: {
|
|
13300
|
-
/**
|
|
13301
|
-
* The log message itself
|
|
13302
|
-
*/
|
|
13303
|
-
body: string;
|
|
13304
|
-
/**
|
|
13305
|
-
* Span this line belongs to, empty when untraced
|
|
13306
|
-
*/
|
|
13307
|
-
spanId: string;
|
|
13308
|
-
/**
|
|
13309
|
-
* Service that wrote the line
|
|
13310
|
-
*/
|
|
13311
|
-
service: string;
|
|
13312
|
-
/**
|
|
13313
|
-
* Trace this line belongs to, empty when untraced
|
|
13314
|
-
*/
|
|
13315
|
-
traceId: string;
|
|
13316
|
-
/**
|
|
13317
|
-
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13318
|
-
*/
|
|
13319
|
-
timestamp: string;
|
|
13320
|
-
/**
|
|
13321
|
-
* Attributes the emitter attached
|
|
13322
|
-
*/
|
|
13323
|
-
attributes: {
|
|
13324
|
-
[k: string]: string;
|
|
13325
|
-
};
|
|
13326
|
-
/**
|
|
13327
|
-
* Environment the line was written in
|
|
13328
|
-
*/
|
|
13329
|
-
environment: string;
|
|
13330
|
-
/**
|
|
13331
|
-
* Severity as the emitter named it, e.g. "ERROR"
|
|
13332
|
-
*/
|
|
13333
|
-
severityText: string;
|
|
13334
|
-
/**
|
|
13335
|
-
* OpenTelemetry severity number, 1-24
|
|
13336
|
-
*/
|
|
13337
|
-
severityNumber: number;
|
|
13338
|
-
}[];
|
|
13339
|
-
/**
|
|
13340
|
-
* Pass back as cursor on the next poll; null only while the product has no logs
|
|
13341
|
-
*/
|
|
13342
|
-
nextCursor: (string | null);
|
|
13343
|
-
}
|
|
13344
|
-
interface ObserveTracesGetInput {
|
|
13345
|
-
/**
|
|
13346
|
-
* The trace to render, by its 32-character hex id
|
|
13347
|
-
*/
|
|
13348
|
-
traceId: string;
|
|
13349
|
-
}
|
|
13350
|
-
interface ObserveTracesGetOutput {
|
|
13351
|
-
/**
|
|
13352
|
-
* Every span of the trace, oldest first; empty when the product has no such trace
|
|
13353
|
-
*/
|
|
13354
|
-
spans: {
|
|
13355
|
-
/**
|
|
13356
|
-
* OTLP span kind: UNSPECIFIED, INTERNAL, SERVER, CLIENT, PRODUCER or CONSUMER
|
|
13357
|
-
*/
|
|
13358
|
-
kind: string;
|
|
13359
|
-
/**
|
|
13360
|
-
* Span name, e.g. "GET /users"
|
|
13361
|
-
*/
|
|
13362
|
-
name: string;
|
|
13363
|
-
/**
|
|
13364
|
-
* How many ancestors the span has inside this trace; the root is 0
|
|
13365
|
-
*/
|
|
13366
|
-
depth: number;
|
|
13367
|
-
/**
|
|
13368
|
-
* Events recorded on the span, in the order they were sent
|
|
13369
|
-
*/
|
|
13370
|
-
events: {
|
|
13371
|
-
/**
|
|
13372
|
-
* Event name as the emitter wrote it, e.g. "exception"
|
|
13373
|
-
*/
|
|
13374
|
-
name: string;
|
|
13375
|
-
/**
|
|
13376
|
-
* When the event was recorded, ISO 8601
|
|
13377
|
-
*/
|
|
13378
|
-
timestamp: string;
|
|
13379
|
-
/**
|
|
13380
|
-
* The event's own attributes, raw
|
|
13381
|
-
*/
|
|
13382
|
-
attributes: {
|
|
13383
|
-
[k: string]: unknown;
|
|
13384
|
-
};
|
|
13385
|
-
}[];
|
|
13386
|
-
/**
|
|
13387
|
-
* The span id, 16 hex characters
|
|
13388
|
-
*/
|
|
13389
|
-
spanId: string;
|
|
13390
|
-
/**
|
|
13391
|
-
* OTLP span status: UNSET, OK or ERROR
|
|
13392
|
-
*/
|
|
13393
|
-
status: string;
|
|
13394
|
-
/**
|
|
13395
|
-
* When the span ended, ISO 8601, nanosecond precision
|
|
13396
|
-
*/
|
|
13397
|
-
endTime: string;
|
|
13398
|
-
/**
|
|
13399
|
-
* Service that recorded the span
|
|
13400
|
-
*/
|
|
13401
|
-
service: string;
|
|
13402
|
-
/**
|
|
13403
|
-
* When the span started, ISO 8601, nanosecond precision
|
|
13404
|
-
*/
|
|
13405
|
-
startTime: string;
|
|
13406
|
-
/**
|
|
13407
|
-
* Attributes the emitter attached
|
|
13408
|
-
*/
|
|
13409
|
-
attributes: {
|
|
13410
|
-
[k: string]: string;
|
|
13411
|
-
};
|
|
13412
|
-
/**
|
|
13413
|
-
* How long the span took, in milliseconds
|
|
13414
|
-
*/
|
|
13415
|
-
durationMs: number;
|
|
13416
|
-
/**
|
|
13417
|
-
* Environment the span was recorded in
|
|
13418
|
-
*/
|
|
13419
|
-
environment: string;
|
|
13420
|
-
/**
|
|
13421
|
-
* Parent span id; empty for the root or when the parent is not in this trace
|
|
13422
|
-
*/
|
|
13423
|
-
parentSpanId: string;
|
|
13424
|
-
/**
|
|
13425
|
-
* Status message the emitter attached, empty when none
|
|
13426
|
-
*/
|
|
13427
|
-
statusMessage: string;
|
|
13428
|
-
/**
|
|
13429
|
-
* Attributes of the emitting resource
|
|
13430
|
-
*/
|
|
13431
|
-
resourceAttributes: {
|
|
13432
|
-
[k: string]: string;
|
|
13433
|
-
};
|
|
13434
|
-
}[];
|
|
13435
|
-
/**
|
|
13436
|
-
* The trace that was read
|
|
13437
|
-
*/
|
|
13438
|
-
traceId: string;
|
|
13439
|
-
}
|
|
13440
|
-
interface ObserveTracesSearchInput {
|
|
13441
|
-
/**
|
|
13442
|
-
* Newest span start to include, ISO 8601
|
|
13443
|
-
*/
|
|
13444
|
-
to?: string;
|
|
13445
|
-
/**
|
|
13446
|
-
* Oldest span start to include, ISO 8601
|
|
13447
|
-
*/
|
|
13448
|
-
from?: string;
|
|
13449
|
-
/**
|
|
13450
|
-
* Only traces one of whose spans carries this exact span name, e.g. "GET /users"
|
|
13451
|
-
*/
|
|
13452
|
-
name?: string;
|
|
13453
|
-
/**
|
|
13454
|
-
* How many traces to return, 1-1000, default 100
|
|
13455
|
-
*/
|
|
13456
|
-
limit?: number;
|
|
13457
|
-
/**
|
|
13458
|
-
* The nextCursor of the previous page; omit for the first page
|
|
13459
|
-
*/
|
|
13460
|
-
cursor?: string;
|
|
13461
|
-
/**
|
|
13462
|
-
* Only traces in this state: "error" when any span failed, "ok" when none did and at least one reported OK, "unset" when no span reported a status
|
|
13463
|
-
*/
|
|
13464
|
-
status?: ("ok" | "error" | "unset");
|
|
13465
|
-
/**
|
|
13466
|
-
* Only traces one of whose spans belongs to this service, e.g. "api"
|
|
13467
|
-
*/
|
|
13468
|
-
service?: string;
|
|
13469
|
-
/**
|
|
13470
|
-
* Only this trace, by its 32-character hex id
|
|
13471
|
-
*/
|
|
13472
|
-
traceId?: string;
|
|
13473
|
-
/**
|
|
13474
|
-
* Only traces of this environment, e.g. "production"
|
|
13475
|
-
*/
|
|
13476
|
-
environment?: string;
|
|
13477
|
-
/**
|
|
13478
|
-
* Only traces that took at most this many milliseconds end to end
|
|
13479
|
-
*/
|
|
13480
|
-
maxDurationMs?: number;
|
|
13481
|
-
/**
|
|
13482
|
-
* Only traces that took at least this many milliseconds end to end
|
|
13483
|
-
*/
|
|
13484
|
-
minDurationMs?: number;
|
|
13485
|
-
}
|
|
13486
|
-
interface ObserveTracesSearchOutput {
|
|
13487
|
-
/**
|
|
13488
|
-
* The matching traces, newest first
|
|
13489
|
-
*/
|
|
13490
|
-
traces: {
|
|
13491
|
-
/**
|
|
13492
|
-
* The trace id, 32 hex characters
|
|
13493
|
-
*/
|
|
13494
|
-
traceId: string;
|
|
13495
|
-
/**
|
|
13496
|
-
* True when at least one span failed
|
|
13497
|
-
*/
|
|
13498
|
-
hasError: boolean;
|
|
13499
|
-
/**
|
|
13500
|
-
* Name of the root span — the one with no parent, or the earliest span
|
|
13501
|
-
*/
|
|
13502
|
-
rootName: string;
|
|
13503
|
-
/**
|
|
13504
|
-
* How many spans the trace has
|
|
13505
|
-
*/
|
|
13506
|
-
spanCount: number;
|
|
13507
|
-
/**
|
|
13508
|
-
* When the earliest span started, ISO 8601
|
|
13509
|
-
*/
|
|
13510
|
-
startTime: string;
|
|
13511
|
-
/**
|
|
13512
|
-
* Earliest start to latest end, in milliseconds
|
|
13513
|
-
*/
|
|
13514
|
-
durationMs: number;
|
|
13515
|
-
/**
|
|
13516
|
-
* How many of them reported an ERROR status
|
|
13517
|
-
*/
|
|
13518
|
-
errorCount: number;
|
|
13519
|
-
/**
|
|
13520
|
-
* Environment the root span was recorded in
|
|
13521
|
-
*/
|
|
13522
|
-
environment: string;
|
|
13523
|
-
/**
|
|
13524
|
-
* Service the root span belongs to
|
|
13525
|
-
*/
|
|
13526
|
-
rootService: string;
|
|
13527
|
-
}[];
|
|
13528
|
-
/**
|
|
13529
|
-
* Pass back as cursor for the next page; null when the last page was reached
|
|
13530
|
-
*/
|
|
13531
|
-
nextCursor: (string | null);
|
|
13532
|
-
}
|
|
13533
|
-
interface ObserveWebhooksCreateInput {
|
|
13534
|
-
/**
|
|
13535
|
-
* HTTPS endpoint the event is POSTed to. Plain http:// is rejected
|
|
13536
|
-
*/
|
|
13537
|
-
url: string;
|
|
13538
|
-
/**
|
|
13539
|
-
* Free-form note about what this endpoint is for, up to 1000 characters
|
|
13540
|
-
*/
|
|
13541
|
-
description?: string;
|
|
13542
|
-
}
|
|
13543
|
-
interface ObserveWebhooksCreateOutput {
|
|
13544
|
-
/**
|
|
13545
|
-
* Identifier of the endpoint
|
|
13546
|
-
*/
|
|
13547
|
-
id: string;
|
|
13548
|
-
/**
|
|
13549
|
-
* HTTPS endpoint events are POSTed to
|
|
13550
|
-
*/
|
|
13551
|
-
url: string;
|
|
13552
|
-
/**
|
|
13553
|
-
* Whether deliveries are being attempted for it
|
|
13554
|
-
*/
|
|
13555
|
-
active: boolean;
|
|
13556
|
-
/**
|
|
13557
|
-
* The signing secret — shown only here, store it now; it cannot be read back
|
|
13558
|
-
*/
|
|
13559
|
-
secret: string;
|
|
13560
|
-
/**
|
|
13561
|
-
* ISO 8601 registration timestamp
|
|
13562
|
-
*/
|
|
13563
|
-
createdAt: string;
|
|
13564
|
-
/**
|
|
13565
|
-
* ISO 8601 timestamp of the last change
|
|
13566
|
-
*/
|
|
13567
|
-
updatedAt: string;
|
|
13568
|
-
/**
|
|
13569
|
-
* Free-form note given at registration, or null
|
|
13570
|
-
*/
|
|
13571
|
-
description: (string | null);
|
|
13572
|
-
}
|
|
13573
|
-
interface ObserveWebhooksDeleteInput {
|
|
13574
|
-
/**
|
|
13575
|
-
* Identifier of the endpoint
|
|
13576
|
-
*/
|
|
13577
|
-
id: string;
|
|
13578
|
-
}
|
|
13579
|
-
interface ObserveWebhooksDeleteOutput {
|
|
13580
|
-
/**
|
|
13581
|
-
* Identifier of the removed endpoint
|
|
13582
|
-
*/
|
|
13583
|
-
id: string;
|
|
13584
|
-
/**
|
|
13585
|
-
* Always true; the call fails otherwise
|
|
13586
|
-
*/
|
|
13587
|
-
deleted: true;
|
|
13588
|
-
}
|
|
13589
|
-
interface ObserveWebhooksDeliveriesListInput {
|
|
13590
|
-
/**
|
|
13591
|
-
* Page size, 1..200
|
|
13592
|
-
*/
|
|
13593
|
-
limit?: number;
|
|
13594
|
-
/**
|
|
13595
|
-
* Number of deliveries to skip
|
|
13596
|
-
*/
|
|
13597
|
-
offset?: number;
|
|
13598
|
-
/**
|
|
13599
|
-
* Only deliveries in this state
|
|
13600
|
-
*/
|
|
13601
|
-
status?: ("pending" | "success" | "failed");
|
|
13602
|
-
/**
|
|
13603
|
-
* Only deliveries for this endpoint
|
|
13604
|
-
*/
|
|
13605
|
-
webhookId?: string;
|
|
13606
|
-
}
|
|
13607
|
-
type ObserveWebhooksDeliveriesListOutput = {
|
|
13608
|
-
/**
|
|
13609
|
-
* Identifier of the delivery, also sent as the envelope id
|
|
13610
|
-
*/
|
|
13611
|
-
id: string;
|
|
13612
|
-
/**
|
|
13613
|
-
* pending means attempts remain; failed means the retry ladder is spent
|
|
13614
|
-
*/
|
|
13615
|
-
status: ("pending" | "success" | "failed");
|
|
13616
|
-
/**
|
|
13617
|
-
* The event data that was sent, before snake_case conversion
|
|
13618
|
-
*/
|
|
13619
|
-
payload?: {
|
|
13620
|
-
[k: string]: unknown;
|
|
13621
|
-
};
|
|
13622
|
-
/**
|
|
13623
|
-
* ISO 8601 time the delivery was opened
|
|
13624
|
-
*/
|
|
13625
|
-
createdAt: string;
|
|
13626
|
-
/**
|
|
13627
|
-
* Event that was delivered, e.g. "observe/issue.created"
|
|
13628
|
-
*/
|
|
13629
|
-
eventName: string;
|
|
13630
|
-
/**
|
|
13631
|
-
* Why the last attempt failed, or null
|
|
13632
|
-
*/
|
|
13633
|
-
lastError: (string | null);
|
|
13634
|
-
/**
|
|
13635
|
-
* Endpoint the delivery is for
|
|
13636
|
-
*/
|
|
13637
|
-
webhookId: string;
|
|
13638
|
-
/**
|
|
13639
|
-
* ISO 8601 time it succeeded, or null
|
|
13640
|
-
*/
|
|
13641
|
-
deliveredAt: (string | null);
|
|
13642
|
-
/**
|
|
13643
|
-
* How many attempts have been made so far
|
|
13644
|
-
*/
|
|
13645
|
-
attemptCount: number;
|
|
13646
|
-
/**
|
|
13647
|
-
* Identity of the source event, repeated on every attempt and on a redelivery
|
|
13648
|
-
*/
|
|
13649
|
-
idempotencyKey: string;
|
|
13650
|
-
/**
|
|
13651
|
-
* HTTP status of the last attempt, or null
|
|
13652
|
-
*/
|
|
13653
|
-
lastStatusCode: (number | null);
|
|
13654
|
-
}[];
|
|
13655
|
-
interface ObserveWebhooksGetInput {
|
|
13656
|
-
/**
|
|
13657
|
-
* Identifier of the endpoint
|
|
13658
|
-
*/
|
|
13659
|
-
id: string;
|
|
13660
|
-
}
|
|
13661
|
-
interface ObserveWebhooksGetOutput {
|
|
13662
|
-
/**
|
|
13663
|
-
* Identifier of the endpoint
|
|
13664
|
-
*/
|
|
13665
|
-
id: string;
|
|
13666
|
-
/**
|
|
13667
|
-
* HTTPS endpoint events are POSTed to
|
|
13668
|
-
*/
|
|
13669
|
-
url: string;
|
|
13670
|
-
/**
|
|
13671
|
-
* Whether deliveries are being attempted for it
|
|
13672
|
-
*/
|
|
13673
|
-
active: boolean;
|
|
13674
|
-
/**
|
|
13675
|
-
* ISO 8601 registration timestamp
|
|
13676
|
-
*/
|
|
13677
|
-
createdAt: string;
|
|
13678
|
-
/**
|
|
13679
|
-
* ISO 8601 timestamp of the last change
|
|
13680
|
-
*/
|
|
13681
|
-
updatedAt: string;
|
|
13682
|
-
/**
|
|
13683
|
-
* Free-form note given at registration, or null
|
|
13684
|
-
*/
|
|
13685
|
-
description: (string | null);
|
|
13686
|
-
}
|
|
13687
|
-
interface ObserveWebhooksListInput {
|
|
13688
|
-
}
|
|
13689
|
-
type ObserveWebhooksListOutput = {
|
|
13690
|
-
/**
|
|
13691
|
-
* Identifier of the endpoint
|
|
13692
|
-
*/
|
|
13693
|
-
id: string;
|
|
13694
|
-
/**
|
|
13695
|
-
* HTTPS endpoint events are POSTed to
|
|
13696
|
-
*/
|
|
13697
|
-
url: string;
|
|
13698
|
-
/**
|
|
13699
|
-
* Whether deliveries are being attempted for it
|
|
13700
|
-
*/
|
|
13701
|
-
active: boolean;
|
|
13702
|
-
/**
|
|
13703
|
-
* ISO 8601 registration timestamp
|
|
13704
|
-
*/
|
|
13705
|
-
createdAt: string;
|
|
13706
|
-
/**
|
|
13707
|
-
* ISO 8601 timestamp of the last change
|
|
13708
|
-
*/
|
|
13709
|
-
updatedAt: string;
|
|
13710
|
-
/**
|
|
13711
|
-
* Free-form note given at registration, or null
|
|
13712
|
-
*/
|
|
13713
|
-
description: (string | null);
|
|
13714
|
-
}[];
|
|
13715
|
-
interface ObserveWebhooksRedeliverInput {
|
|
13716
|
-
/**
|
|
13717
|
-
* Identifier of the delivery to send again
|
|
13718
|
-
*/
|
|
13719
|
-
id: string;
|
|
13720
|
-
}
|
|
13721
|
-
interface ObserveWebhooksRedeliverOutput {
|
|
13722
|
-
/**
|
|
13723
|
-
* Identifier of the delivery, also sent as the envelope id
|
|
13724
|
-
*/
|
|
13725
|
-
id: string;
|
|
13726
|
-
/**
|
|
13727
|
-
* pending means attempts remain; failed means the retry ladder is spent
|
|
13728
|
-
*/
|
|
13729
|
-
status: ("pending" | "success" | "failed");
|
|
13730
|
-
/**
|
|
13731
|
-
* The event data that was sent, before snake_case conversion
|
|
13732
|
-
*/
|
|
13733
|
-
payload?: {
|
|
13734
|
-
[k: string]: unknown;
|
|
13735
|
-
};
|
|
13736
|
-
/**
|
|
13737
|
-
* ISO 8601 time the delivery was opened
|
|
13738
|
-
*/
|
|
13739
|
-
createdAt: string;
|
|
13740
|
-
/**
|
|
13741
|
-
* Event that was delivered, e.g. "observe/issue.created"
|
|
13742
|
-
*/
|
|
13743
|
-
eventName: string;
|
|
13744
|
-
/**
|
|
13745
|
-
* Why the last attempt failed, or null
|
|
13746
|
-
*/
|
|
13747
|
-
lastError: (string | null);
|
|
13748
|
-
/**
|
|
13749
|
-
* Endpoint the delivery is for
|
|
13750
|
-
*/
|
|
13751
|
-
webhookId: string;
|
|
13752
|
-
/**
|
|
13753
|
-
* ISO 8601 time it succeeded, or null
|
|
13754
|
-
*/
|
|
13755
|
-
deliveredAt: (string | null);
|
|
13756
|
-
/**
|
|
13757
|
-
* How many attempts have been made so far
|
|
13758
|
-
*/
|
|
13759
|
-
attemptCount: number;
|
|
13760
|
-
/**
|
|
13761
|
-
* Identity of the source event, repeated on every attempt and on a redelivery
|
|
13762
|
-
*/
|
|
13763
|
-
idempotencyKey: string;
|
|
13764
|
-
/**
|
|
13765
|
-
* HTTP status of the last attempt, or null
|
|
13766
|
-
*/
|
|
13767
|
-
lastStatusCode: (number | null);
|
|
13768
|
-
}
|
|
13769
|
-
interface ObserveWebhooksRotateSecretInput {
|
|
13770
|
-
/**
|
|
13771
|
-
* Identifier of the endpoint
|
|
13772
|
-
*/
|
|
13773
|
-
id: string;
|
|
13774
|
-
}
|
|
13775
|
-
interface ObserveWebhooksRotateSecretOutput {
|
|
13776
|
-
/**
|
|
13777
|
-
* Identifier of the endpoint
|
|
13778
|
-
*/
|
|
13779
|
-
id: string;
|
|
13780
|
-
/**
|
|
13781
|
-
* HTTPS endpoint events are POSTed to
|
|
13782
|
-
*/
|
|
13783
|
-
url: string;
|
|
13784
|
-
/**
|
|
13785
|
-
* Whether deliveries are being attempted for it
|
|
13786
|
-
*/
|
|
13787
|
-
active: boolean;
|
|
13788
|
-
/**
|
|
13789
|
-
* The signing secret — shown only here, store it now; it cannot be read back
|
|
13790
|
-
*/
|
|
13791
|
-
secret: string;
|
|
13792
|
-
/**
|
|
13793
|
-
* ISO 8601 registration timestamp
|
|
13794
|
-
*/
|
|
13795
|
-
createdAt: string;
|
|
13796
|
-
/**
|
|
13797
|
-
* ISO 8601 timestamp of the last change
|
|
13798
|
-
*/
|
|
13799
|
-
updatedAt: string;
|
|
13800
|
-
/**
|
|
13801
|
-
* Free-form note given at registration, or null
|
|
13802
|
-
*/
|
|
13803
|
-
description: (string | null);
|
|
13804
|
-
}
|
|
13805
|
-
interface ObserveWebhooksUpdateInput {
|
|
13806
|
-
/**
|
|
13807
|
-
* Identifier of the endpoint to change
|
|
13808
|
-
*/
|
|
13809
|
-
id: string;
|
|
13810
|
-
/**
|
|
13811
|
-
* New HTTPS endpoint. Plain http:// is rejected
|
|
13812
|
-
*/
|
|
13813
|
-
url?: string;
|
|
13814
|
-
/**
|
|
13815
|
-
* false keeps the registration and stops delivery; true resumes it
|
|
13816
|
-
*/
|
|
13817
|
-
active?: boolean;
|
|
13818
|
-
/**
|
|
13819
|
-
* New note, or null to clear it
|
|
13820
|
-
*/
|
|
13821
|
-
description?: (string | null);
|
|
13822
|
-
}
|
|
13823
|
-
interface ObserveWebhooksUpdateOutput {
|
|
13824
|
-
/**
|
|
13825
|
-
* Identifier of the endpoint
|
|
13826
|
-
*/
|
|
13827
|
-
id: string;
|
|
13828
|
-
/**
|
|
13829
|
-
* HTTPS endpoint events are POSTed to
|
|
13830
|
-
*/
|
|
13831
|
-
url: string;
|
|
13832
|
-
/**
|
|
13833
|
-
* Whether deliveries are being attempted for it
|
|
13834
|
-
*/
|
|
13835
|
-
active: boolean;
|
|
13836
|
-
/**
|
|
13837
|
-
* ISO 8601 registration timestamp
|
|
13838
|
-
*/
|
|
13839
|
-
createdAt: string;
|
|
13840
|
-
/**
|
|
13841
|
-
* ISO 8601 timestamp of the last change
|
|
13842
|
-
*/
|
|
13843
|
-
updatedAt: string;
|
|
13844
|
-
/**
|
|
13845
|
-
* Free-form note given at registration, or null
|
|
13846
|
-
*/
|
|
13847
|
-
description: (string | null);
|
|
13848
|
-
}
|
|
13849
12603
|
interface OrganizationAuthMeInput {
|
|
13850
12604
|
}
|
|
13851
12605
|
interface OrganizationAuthMeOutput {
|
|
@@ -14458,7 +13212,6 @@ interface OrganizationProductListAccessOutput {
|
|
|
14458
13212
|
orgRoles: {
|
|
14459
13213
|
id: string;
|
|
14460
13214
|
name: string;
|
|
14461
|
-
description: (string | null);
|
|
14462
13215
|
}[];
|
|
14463
13216
|
canManage: boolean;
|
|
14464
13217
|
inherited: {
|
|
@@ -14809,194 +13562,6 @@ interface OrganizationSupportThreadsListOutput {
|
|
|
14809
13562
|
lastMessagePreview: (string | null);
|
|
14810
13563
|
}[];
|
|
14811
13564
|
}
|
|
14812
|
-
interface PlaygroundAnalyticsOverviewInput {
|
|
14813
|
-
/**
|
|
14814
|
-
* Max records per entity in recent[]; omit for the endpoint default
|
|
14815
|
-
*/
|
|
14816
|
-
limit?: number;
|
|
14817
|
-
}
|
|
14818
|
-
interface PlaygroundAnalyticsOverviewOutput {
|
|
14819
|
-
ok: boolean;
|
|
14820
|
-
minted: boolean;
|
|
14821
|
-
overview?: unknown;
|
|
14822
|
-
http_status: number;
|
|
14823
|
-
}
|
|
14824
|
-
interface PlaygroundBillingEntitlementsInput {
|
|
14825
|
-
}
|
|
14826
|
-
interface PlaygroundBillingEntitlementsOutput {
|
|
14827
|
-
ok: boolean;
|
|
14828
|
-
minted: boolean;
|
|
14829
|
-
http_status: number;
|
|
14830
|
-
entitlements?: unknown;
|
|
14831
|
-
}
|
|
14832
|
-
interface PlaygroundBillingRecordUsageInput {
|
|
14833
|
-
/**
|
|
14834
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
14835
|
-
*/
|
|
14836
|
-
value?: number;
|
|
14837
|
-
}
|
|
14838
|
-
interface PlaygroundBillingRecordUsageOutput {
|
|
14839
|
-
minted: boolean;
|
|
14840
|
-
accepted: (number | null);
|
|
14841
|
-
recorded: boolean;
|
|
14842
|
-
duplicates: (number | null);
|
|
14843
|
-
http_status: number;
|
|
14844
|
-
}
|
|
14845
|
-
interface PlaygroundClickupCreateTaskInput {
|
|
14846
|
-
/**
|
|
14847
|
-
* Task title; defaults to a fixture label
|
|
14848
|
-
*/
|
|
14849
|
-
name?: string;
|
|
14850
|
-
/**
|
|
14851
|
-
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
14852
|
-
*/
|
|
14853
|
-
listId?: string;
|
|
14854
|
-
}
|
|
14855
|
-
interface PlaygroundClickupCreateTaskOutput {
|
|
14856
|
-
minted: boolean;
|
|
14857
|
-
task_id: (string | null);
|
|
14858
|
-
list_status: number;
|
|
14859
|
-
vend_status: number;
|
|
14860
|
-
clickup_status: number;
|
|
14861
|
-
installation_count: number;
|
|
14862
|
-
}
|
|
14863
|
-
interface PlaygroundClickupGetLastWebhookInput {
|
|
14864
|
-
}
|
|
14865
|
-
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
14866
|
-
payload: string;
|
|
14867
|
-
event_id: string;
|
|
14868
|
-
provider: string;
|
|
14869
|
-
verified: boolean;
|
|
14870
|
-
product_id: string;
|
|
14871
|
-
occurred_at: string;
|
|
14872
|
-
connector_id: string;
|
|
14873
|
-
clickup_event: (string | null);
|
|
14874
|
-
receipt_count: number;
|
|
14875
|
-
} | {
|
|
14876
|
-
found: false;
|
|
14877
|
-
});
|
|
14878
|
-
interface PlaygroundClickupGetOverviewInput {
|
|
14879
|
-
}
|
|
14880
|
-
interface PlaygroundClickupGetOverviewOutput {
|
|
14881
|
-
team: ({
|
|
14882
|
-
teamId: string;
|
|
14883
|
-
teamName: string;
|
|
14884
|
-
} | null);
|
|
14885
|
-
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
14886
|
-
tasks: {
|
|
14887
|
-
id: string;
|
|
14888
|
-
name: string;
|
|
14889
|
-
status: (string | null);
|
|
14890
|
-
}[];
|
|
14891
|
-
minted: boolean;
|
|
14892
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
14893
|
-
list_status: number;
|
|
14894
|
-
vend_status: number;
|
|
14895
|
-
lists_status: number;
|
|
14896
|
-
tasks_status: number;
|
|
14897
|
-
spaces_status: number;
|
|
14898
|
-
folders_status: number;
|
|
14899
|
-
installation_count: number;
|
|
14900
|
-
}
|
|
14901
|
-
interface PlaygroundClickupGetOverviewOutputItems {
|
|
14902
|
-
id: string;
|
|
14903
|
-
name: string;
|
|
14904
|
-
}
|
|
14905
|
-
interface PlaygroundGdriveGetLastChangeInput {
|
|
14906
|
-
}
|
|
14907
|
-
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
14908
|
-
file_id: string;
|
|
14909
|
-
removed: boolean;
|
|
14910
|
-
file_name: (string | null);
|
|
14911
|
-
mime_type: (string | null);
|
|
14912
|
-
product_id: string;
|
|
14913
|
-
occurred_at: string;
|
|
14914
|
-
connector_id: string;
|
|
14915
|
-
resource_state: string;
|
|
14916
|
-
} | {
|
|
14917
|
-
found: false;
|
|
14918
|
-
});
|
|
14919
|
-
interface PlaygroundGdriveReadFileInput {
|
|
14920
|
-
/**
|
|
14921
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
14922
|
-
*/
|
|
14923
|
-
fileId?: string;
|
|
14924
|
-
}
|
|
14925
|
-
interface PlaygroundGdriveReadFileOutput {
|
|
14926
|
-
minted: boolean;
|
|
14927
|
-
file_id: (string | null);
|
|
14928
|
-
file_name: (string | null);
|
|
14929
|
-
mime_type: (string | null);
|
|
14930
|
-
file_count: number;
|
|
14931
|
-
get_status: number;
|
|
14932
|
-
list_status: number;
|
|
14933
|
-
vend_status: number;
|
|
14934
|
-
content_bytes: (number | null);
|
|
14935
|
-
}
|
|
14936
|
-
interface PlaygroundGoogleadsReadCustomerInput {
|
|
14937
|
-
}
|
|
14938
|
-
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
14939
|
-
minted: boolean;
|
|
14940
|
-
vended: boolean;
|
|
14941
|
-
customer_id: (string | null);
|
|
14942
|
-
vend_status: number;
|
|
14943
|
-
result_count: number;
|
|
14944
|
-
search_status: number;
|
|
14945
|
-
login_customer_id: (string | null);
|
|
14946
|
-
}
|
|
14947
|
-
interface PlaygroundLifecycleGetStateInput {
|
|
14948
|
-
}
|
|
14949
|
-
interface PlaygroundLifecycleGetStateOutput {
|
|
14950
|
-
blocked: boolean;
|
|
14951
|
-
archived: boolean;
|
|
14952
|
-
productId: string;
|
|
14953
|
-
lastBlockTransition: ({
|
|
14954
|
-
eventId: string;
|
|
14955
|
-
eventName: string;
|
|
14956
|
-
productId: string;
|
|
14957
|
-
occurredAt: string;
|
|
14958
|
-
recordedAt: string;
|
|
14959
|
-
receiptCount: number;
|
|
14960
|
-
organizationId: string;
|
|
14961
|
-
cascadedFromOrg: boolean;
|
|
14962
|
-
} | null);
|
|
14963
|
-
lastArchiveTransition: ({
|
|
14964
|
-
eventId: string;
|
|
14965
|
-
eventName: string;
|
|
14966
|
-
productId: string;
|
|
14967
|
-
occurredAt: string;
|
|
14968
|
-
recordedAt: string;
|
|
14969
|
-
receiptCount: number;
|
|
14970
|
-
organizationId: string;
|
|
14971
|
-
cascadedFromOrg: boolean;
|
|
14972
|
-
} | null);
|
|
14973
|
-
}
|
|
14974
|
-
interface PlaygroundLifecycleListEventsInput {
|
|
14975
|
-
}
|
|
14976
|
-
type PlaygroundLifecycleListEventsOutput = {
|
|
14977
|
-
eventId: string;
|
|
14978
|
-
eventName: string;
|
|
14979
|
-
productId: string;
|
|
14980
|
-
occurredAt: string;
|
|
14981
|
-
recordedAt: string;
|
|
14982
|
-
receiptCount: number;
|
|
14983
|
-
organizationId: string;
|
|
14984
|
-
cascadedFromOrg: boolean;
|
|
14985
|
-
}[];
|
|
14986
|
-
interface PlaygroundWebhookGetLastInput {
|
|
14987
|
-
}
|
|
14988
|
-
type PlaygroundWebhookGetLastOutput = ({
|
|
14989
|
-
payload?: unknown;
|
|
14990
|
-
event_id: string;
|
|
14991
|
-
provider: string;
|
|
14992
|
-
verified: boolean;
|
|
14993
|
-
product_id: string;
|
|
14994
|
-
occurred_at: string;
|
|
14995
|
-
connector_id: string;
|
|
14996
|
-
delivery_count: number;
|
|
14997
|
-
} | {
|
|
14998
|
-
found: false;
|
|
14999
|
-
});
|
|
15000
13565
|
interface RealtimeArchiveExportInput {
|
|
15001
13566
|
/**
|
|
15002
13567
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -40943,6 +39508,9 @@ interface GeneratedClient {
|
|
|
40943
39508
|
restore: {
|
|
40944
39509
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
40945
39510
|
};
|
|
39511
|
+
usage: {
|
|
39512
|
+
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
39513
|
+
};
|
|
40946
39514
|
};
|
|
40947
39515
|
consent: {
|
|
40948
39516
|
'config-cookie-domain': {
|
|
@@ -41253,48 +39821,6 @@ interface GeneratedClient {
|
|
|
41253
39821
|
list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
|
|
41254
39822
|
};
|
|
41255
39823
|
};
|
|
41256
|
-
observe: {
|
|
41257
|
-
artifacts: {
|
|
41258
|
-
delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
|
|
41259
|
-
list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
|
|
41260
|
-
resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
|
|
41261
|
-
};
|
|
41262
|
-
issues: {
|
|
41263
|
-
archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
|
|
41264
|
-
assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
|
|
41265
|
-
get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
|
|
41266
|
-
list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
|
|
41267
|
-
resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
|
|
41268
|
-
};
|
|
41269
|
-
keys: {
|
|
41270
|
-
create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
|
|
41271
|
-
list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
|
|
41272
|
-
revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
|
|
41273
|
-
};
|
|
41274
|
-
logs: {
|
|
41275
|
-
facets(input: ObserveLogsFacetsInput): Promise<ObserveLogsFacetsOutput>;
|
|
41276
|
-
search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
|
|
41277
|
-
tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
|
|
41278
|
-
};
|
|
41279
|
-
traces: {
|
|
41280
|
-
get(input: ObserveTracesGetInput): Promise<ObserveTracesGetOutput>;
|
|
41281
|
-
search(input: ObserveTracesSearchInput): Promise<ObserveTracesSearchOutput>;
|
|
41282
|
-
};
|
|
41283
|
-
webhooks: {
|
|
41284
|
-
create(input: ObserveWebhooksCreateInput): Promise<ObserveWebhooksCreateOutput>;
|
|
41285
|
-
delete(input: ObserveWebhooksDeleteInput): Promise<ObserveWebhooksDeleteOutput>;
|
|
41286
|
-
get(input: ObserveWebhooksGetInput): Promise<ObserveWebhooksGetOutput>;
|
|
41287
|
-
list(input: ObserveWebhooksListInput): Promise<ObserveWebhooksListOutput>;
|
|
41288
|
-
redeliver(input: ObserveWebhooksRedeliverInput): Promise<ObserveWebhooksRedeliverOutput>;
|
|
41289
|
-
update(input: ObserveWebhooksUpdateInput): Promise<ObserveWebhooksUpdateOutput>;
|
|
41290
|
-
};
|
|
41291
|
-
'webhooks-deliveries': {
|
|
41292
|
-
list(input: ObserveWebhooksDeliveriesListInput): Promise<ObserveWebhooksDeliveriesListOutput>;
|
|
41293
|
-
};
|
|
41294
|
-
'webhooks-rotate': {
|
|
41295
|
-
secret(input: ObserveWebhooksRotateSecretInput): Promise<ObserveWebhooksRotateSecretOutput>;
|
|
41296
|
-
};
|
|
41297
|
-
};
|
|
41298
39824
|
organization: {
|
|
41299
39825
|
create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
|
|
41300
39826
|
list(input: OrganizationListInput): Promise<OrganizationListOutput>;
|
|
@@ -41414,34 +39940,6 @@ interface GeneratedClient {
|
|
|
41414
39940
|
list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
|
|
41415
39941
|
};
|
|
41416
39942
|
};
|
|
41417
|
-
playground: {
|
|
41418
|
-
analytics: {
|
|
41419
|
-
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
41420
|
-
};
|
|
41421
|
-
billing: {
|
|
41422
|
-
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
41423
|
-
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
41424
|
-
};
|
|
41425
|
-
clickup: {
|
|
41426
|
-
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
41427
|
-
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
41428
|
-
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
41429
|
-
};
|
|
41430
|
-
gdrive: {
|
|
41431
|
-
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
41432
|
-
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
41433
|
-
};
|
|
41434
|
-
googleads: {
|
|
41435
|
-
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
41436
|
-
};
|
|
41437
|
-
lifecycle: {
|
|
41438
|
-
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
41439
|
-
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
41440
|
-
};
|
|
41441
|
-
webhook: {
|
|
41442
|
-
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
41443
|
-
};
|
|
41444
|
-
};
|
|
41445
39943
|
realtime: {
|
|
41446
39944
|
archive: {
|
|
41447
39945
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
@@ -41741,4 +40239,4 @@ interface GeneratedClient {
|
|
|
41741
40239
|
};
|
|
41742
40240
|
}
|
|
41743
40241
|
|
|
41744
|
-
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, OrganizationConnectorsDeleteOutput 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, ObserveWebhooksRotateSecretInput as gA, ObserveWebhooksRotateSecretOutput as gB, ObserveWebhooksUpdateInput as gC, ObserveWebhooksUpdateOutput as gD, OrganizationAuthMeInput as gE, OrganizationAuthMeOutput as gF, OrganizationBillingBudgetsGetInput as gG, OrganizationBillingBudgetsGetOutput as gH, OrganizationBillingBudgetsSetInput as gI, OrganizationBillingBudgetsSetOutput as gJ, OrganizationBillingCapsClearInput as gK, OrganizationBillingCapsClearOutput as gL, OrganizationBillingCapsSetInput as gM, OrganizationBillingCapsSetOutput as gN, OrganizationBindingsListInput as gO, OrganizationBindingsListOutput as gP, OrganizationClickupInstallInput as gQ, OrganizationClickupInstallOutput as gR, OrganizationClickupListInstallationsInput as gS, OrganizationClickupListInstallationsOutput as gT, OrganizationCloudflareInstallInput as gU, OrganizationCloudflareInstallOutput as gV, OrganizationConnectorsApproveRequestInput as gW, OrganizationConnectorsApproveRequestOutput as gX, OrganizationConnectorsAttachInput as gY, OrganizationConnectorsAttachOutput as gZ, OrganizationConnectorsDeleteInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsFacetsInput as ge, ObserveLogsFacetsOutput as gf, ObserveLogsSearchInput as gg, ObserveLogsSearchOutput as gh, ObserveLogsTailInput as gi, ObserveLogsTailOutput as gj, ObserveTracesGetInput as gk, ObserveTracesGetOutput as gl, ObserveTracesSearchInput as gm, ObserveTracesSearchOutput as gn, ObserveWebhooksCreateInput as go, ObserveWebhooksCreateOutput as gp, ObserveWebhooksDeleteInput as gq, ObserveWebhooksDeleteOutput as gr, ObserveWebhooksDeliveriesListInput as gs, ObserveWebhooksDeliveriesListOutput as gt, ObserveWebhooksGetInput as gu, ObserveWebhooksGetOutput as gv, ObserveWebhooksListInput as gw, ObserveWebhooksListOutput as gx, ObserveWebhooksRedeliverInput as gy, ObserveWebhooksRedeliverOutput as gz, BrainBackupsListOutput as h, OrganizationMemberUnshareProductOutput as h$, OrganizationConnectorsDenyRequestInput as h0, OrganizationConnectorsDenyRequestOutput as h1, OrganizationConnectorsDetachInput as h2, OrganizationConnectorsDetachOutput as h3, OrganizationConnectorsListAttachmentsInput as h4, OrganizationConnectorsListAttachmentsOutput as h5, OrganizationConnectorsListAvailableInput as h6, OrganizationConnectorsListAvailableOutput as h7, OrganizationConnectorsListOrgInput as h8, OrganizationConnectorsListOrgOutput as h9, OrganizationGithubInstallInput as hA, OrganizationGithubInstallOutput as hB, OrganizationGithubListInstallationsInput as hC, OrganizationGithubListInstallationsOutput as hD, OrganizationGoogleadsInstallInput as hE, OrganizationGoogleadsInstallOutput as hF, OrganizationListInput as hG, OrganizationListOutput as hH, OrganizationMemberAcceptInviteInput as hI, OrganizationMemberAcceptInviteOutput as hJ, OrganizationMemberInviteInput as hK, OrganizationMemberInviteOutput as hL, OrganizationMemberListInvitationsInput as hM, OrganizationMemberListInvitationsOutput as hN, OrganizationMemberListProductAccessInput as hO, OrganizationMemberListProductAccessOutput as hP, OrganizationMemberListInput as hQ, OrganizationMemberListOutput as hR, OrganizationMemberRemoveInput as hS, OrganizationMemberRemoveOutput as hT, OrganizationMemberRevokeInvitationInput as hU, OrganizationMemberRevokeInvitationOutput as hV, OrganizationMemberSetRoleInput as hW, OrganizationMemberSetRoleOutput as hX, OrganizationMemberShareProductInput as hY, OrganizationMemberShareProductOutput as hZ, OrganizationMemberUnshareProductInput as h_, OrganizationConnectorsListInput as ha, OrganizationConnectorsListOutput as hb, OrganizationConnectorsListRequestsInput as hc, OrganizationConnectorsListRequestsOutput as hd, OrganizationConnectorsRemoveInput as he, OrganizationConnectorsRemoveOutput as hf, OrganizationConnectorsRequestInput as hg, OrganizationConnectorsRequestOutput as hh, OrganizationCreateInput as hi, OrganizationCreateOutput as hj, OrganizationDomainsAddInput as hk, OrganizationDomainsAddOutput as hl, OrganizationDomainsGetInput as hm, OrganizationDomainsGetOutput as hn, OrganizationDomainsListInput as ho, OrganizationDomainsListOutput as hp, OrganizationDomainsRemoveInput as hq, OrganizationDomainsRemoveOutput as hr, OrganizationDomainsSetModeInput as hs, OrganizationDomainsSetModeOutput as ht, OrganizationExtensionsListInstalledInput as hu, OrganizationExtensionsListInstalledOutput as hv, OrganizationFeedbackSubmitInput as hw, OrganizationFeedbackSubmitOutput as hx, OrganizationGdriveInstallInput as hy, OrganizationGdriveInstallOutput as hz, BrainClickupChannelsListInput as i, PlaygroundClickupCreateTaskOutput as i$, OrganizationMembersAssignRoleInput as i0, OrganizationMembersAssignRoleOutput as i1, OrganizationPermissionCatalogInput as i2, OrganizationPermissionCatalogOutput as i3, OrganizationProductCreateInput as i4, OrganizationProductCreateOutput as i5, OrganizationProductListAccessInput as i6, OrganizationProductListAccessOutput as i7, OrganizationProductListMembersInput as i8, OrganizationProductListMembersOutput as i9, OrganizationRolesDeleteInput as iA, OrganizationRolesDeleteOutput as iB, OrganizationRolesGetInput as iC, OrganizationRolesGetOutput as iD, OrganizationRolesListInput as iE, OrganizationRolesListOutput as iF, OrganizationRolesUpdateInput as iG, OrganizationRolesUpdateOutput as iH, OrganizationSecurityMfaEnableInput as iI, OrganizationSecurityMfaEnableOutput as iJ, OrganizationSelectInput as iK, OrganizationSelectOutput as iL, OrganizationSupportThreadCreateInput as iM, OrganizationSupportThreadCreateOutput as iN, OrganizationSupportThreadGetInput as iO, OrganizationSupportThreadGetOutput as iP, OrganizationSupportThreadReplyInput as iQ, OrganizationSupportThreadReplyOutput as iR, OrganizationSupportThreadsListInput as iS, OrganizationSupportThreadsListOutput as iT, PlaygroundAnalyticsOverviewInput as iU, PlaygroundAnalyticsOverviewOutput as iV, PlaygroundBillingEntitlementsInput as iW, PlaygroundBillingEntitlementsOutput as iX, PlaygroundBillingRecordUsageInput as iY, PlaygroundBillingRecordUsageOutput as iZ, PlaygroundClickupCreateTaskInput as i_, OrganizationProductListInput as ia, OrganizationProductListOutput as ib, OrganizationProductListRolesInput as ic, OrganizationProductListRolesOutput as id, OrganizationProductRevokeAccessInput as ie, OrganizationProductRevokeAccessOutput as ig, OrganizationProductSelectInput as ih, OrganizationProductSelectOutput as ii, OrganizationProductSetAccessInput as ij, OrganizationProductSetAccessOutput as ik, OrganizationProductUpdateInput as il, OrganizationProductUpdateOutput as im, OrganizationPublicKeysCreateInput as io, OrganizationPublicKeysCreateOutput as ip, OrganizationPublicKeysListInput as iq, OrganizationPublicKeysListOutput as ir, OrganizationPublicKeysRevokeInput as is, OrganizationPublicKeysRevokeOutput as it, OrganizationPublicKeysUpdateScopeInput as iu, OrganizationPublicKeysUpdateScopeOutput as iv, OrganizationPublicRoutesListInput as iw, OrganizationPublicRoutesListOutput as ix, OrganizationRolesCreateInput as iy, OrganizationRolesCreateOutput as iz, BrainClickupChannelsListOutput as j, RealtimeWebhookDeliveriesListOutput as j$, PlaygroundClickupGetLastWebhookInput as j0, PlaygroundClickupGetLastWebhookOutput as j1, PlaygroundClickupGetOverviewInput as j2, PlaygroundClickupGetOverviewOutput as j3, PlaygroundGdriveGetLastChangeInput as j4, PlaygroundGdriveGetLastChangeOutput as j5, PlaygroundGdriveReadFileInput as j6, PlaygroundGdriveReadFileOutput as j7, PlaygroundGoogleadsReadCustomerInput as j8, PlaygroundGoogleadsReadCustomerOutput as j9, RealtimeNamespaceGetInput as jA, RealtimeNamespaceGetOutput as jB, RealtimeNamespaceListInput as jC, RealtimeNamespaceListOutput as jD, RealtimeNamespaceUpdateInput as jE, RealtimeNamespaceUpdateOutput as jF, RealtimePresenceEnterInput as jG, RealtimePresenceEnterOutput as jH, RealtimePresenceGetInput as jI, RealtimePresenceGetOutput as jJ, RealtimePresenceLeaveInput as jK, RealtimePresenceLeaveOutput as jL, RealtimePresenceStatsInput as jM, RealtimePresenceStatsOutput as jN, RealtimePresenceUpdateInput as jO, RealtimePresenceUpdateOutput as jP, RealtimePublicAccessStatusInput as jQ, RealtimePublicAccessStatusOutput as jR, RealtimeStatusGetInput as jS, RealtimeStatusGetOutput as jT, RealtimeTokensCreateInput as jU, RealtimeTokensCreateOutput as jV, RealtimeWebhookCreateInput as jW, RealtimeWebhookCreateOutput as jX, RealtimeWebhookDeleteInput as jY, RealtimeWebhookDeleteOutput as jZ, RealtimeWebhookDeliveriesListInput as j_, PlaygroundLifecycleGetStateInput as ja, PlaygroundLifecycleGetStateOutput as jb, PlaygroundLifecycleListEventsInput as jc, PlaygroundLifecycleListEventsOutput as jd, PlaygroundWebhookGetLastInput as je, PlaygroundWebhookGetLastOutput as jf, RealtimeArchiveExportInput as jg, RealtimeArchiveExportOutput as jh, RealtimeArchiveExportStatusInput as ji, RealtimeArchiveExportStatusOutput as jj, RealtimeArchiveGetInput as jk, RealtimeArchiveGetOutput as jl, RealtimeGrantCreateInput as jm, RealtimeGrantCreateOutput as jn, RealtimeGrantListInput as jo, RealtimeGrantListOutput as jp, RealtimeGrantRevokeInput as jq, RealtimeGrantRevokeOutput as jr, RealtimeHistoryGetInput as js, RealtimeHistoryGetOutput as jt, RealtimeMessagesPublishInput as ju, RealtimeMessagesPublishOutput as jv, RealtimeNamespaceCreateInput as jw, RealtimeNamespaceCreateOutput as jx, RealtimeNamespaceDeleteInput as jy, RealtimeNamespaceDeleteOutput as jz, BrainClickupConnectionsListInput as k, SupportSurveyStatsOutput as k$, RealtimeWebhookGetInput as k0, RealtimeWebhookGetOutput as k1, RealtimeWebhookListInput as k2, RealtimeWebhookListOutput as k3, RealtimeWebhookSecretRotateInput as k4, RealtimeWebhookSecretRotateOutput as k5, RealtimeWebhookUpdateInput as k6, RealtimeWebhookUpdateOutput as k7, SupportAgentCreateInput as k8, SupportAgentCreateOutput as k9, SupportRuleDeleteInput as kA, SupportRuleDeleteOutput as kB, SupportRuleGetInput as kC, SupportRuleGetOutput as kD, SupportRuleListInput as kE, SupportRuleListOutput as kF, SupportRuleUpdateInput as kG, SupportRuleUpdateOutput as kH, SupportStatusArchiveInput as kI, SupportStatusArchiveOutput as kJ, SupportStatusCreateInput as kK, SupportStatusCreateOutput as kL, SupportStatusListInput as kM, SupportStatusListOutput as kN, SupportStatusUpdateInput as kO, SupportStatusUpdateOutput as kP, SupportSurveyArchiveInput as kQ, SupportSurveyArchiveOutput as kR, SupportSurveyCreateInput as kS, SupportSurveyCreateOutput as kT, SupportSurveyGetInput as kU, SupportSurveyGetOutput as kV, SupportSurveyListInput as kW, SupportSurveyListOutput as kX, SupportSurveyPublishInput as kY, SupportSurveyPublishOutput as kZ, SupportSurveyStatsInput as k_, SupportAgentGetInput as ka, SupportAgentGetOutput as kb, SupportAgentListInput as kc, SupportAgentListOutput as kd, SupportAgentUpdateInput as ke, SupportAgentUpdateOutput as kf, SupportAttachmentCreateInput as kg, SupportAttachmentCreateOutput as kh, SupportAttachmentFinalizeInput as ki, SupportAttachmentFinalizeOutput as kj, SupportLabelCreateInput as kk, SupportLabelCreateOutput as kl, SupportLabelListInput as km, SupportLabelListOutput as kn, SupportMessageCreateInput as ko, SupportMessageCreateOutput as kp, SupportMessageListInput as kq, SupportMessageListOutput as kr, SupportResponseEscalateInput as ks, SupportResponseEscalateOutput as kt, SupportResponseGetInput as ku, SupportResponseGetOutput as kv, SupportResponseListInput as kw, SupportResponseListOutput as kx, SupportRuleCreateInput as ky, SupportRuleCreateOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsRoasReportOutput as l$, SupportSurveyUnpublishInput as l0, SupportSurveyUnpublishOutput as l1, SupportSurveyUpdateInput as l2, SupportSurveyUpdateOutput as l3, SupportThreadAssignInput as l4, SupportThreadAssignOutput as l5, SupportThreadCreateInput as l6, SupportThreadCreateOutput as l7, SupportThreadGetInput as l8, SupportThreadGetOutput as l9, TrackingDomainsGetInput as lA, TrackingDomainsGetOutput as lB, TrackingDomainsListInput as lC, TrackingDomainsListOutput as lD, TrackingDomainsVerifyInput as lE, TrackingDomainsVerifyOutput as lF, TrackingEventNamesArchiveInput as lG, TrackingEventNamesArchiveOutput as lH, TrackingEventNamesListInput as lI, TrackingEventNamesListOutput as lJ, TrackingEventNamesUnarchiveInput as lK, TrackingEventNamesUnarchiveOutput as lL, TrackingGoogleadsConnectionStatusInput as lM, TrackingGoogleadsConnectionStatusOutput as lN, TrackingGoogleadsConversionActionsInput as lO, TrackingGoogleadsConversionActionsOutput as lP, TrackingGoogleadsFeedbackConfigGetInput as lQ, TrackingGoogleadsFeedbackConfigGetOutput as lR, TrackingGoogleadsFeedbackConfigSetInput as lS, TrackingGoogleadsFeedbackConfigSetOutput as lT, TrackingGoogleadsFeedbackRunInput as lU, TrackingGoogleadsFeedbackRunOutput as lV, TrackingGoogleadsFeedbackStatusInput as lW, TrackingGoogleadsFeedbackStatusOutput as lX, TrackingGoogleadsFeedbackUploadsInput as lY, TrackingGoogleadsFeedbackUploadsOutput as lZ, TrackingGoogleadsRoasReportInput as l_, SupportThreadListInput as la, SupportThreadListOutput as lb, SupportThreadStatusSetInput as lc, SupportThreadStatusSetOutput as ld, SupportThreadUpdateInput as le, SupportThreadUpdateOutput as lf, SupportWebhookCreateInput as lg, SupportWebhookCreateOutput as lh, SupportWebhookDeleteInput as li, SupportWebhookDeleteOutput as lj, SupportWebhookDeliveriesListInput as lk, SupportWebhookDeliveriesListOutput as ll, SupportWebhookGetInput as lm, SupportWebhookGetOutput as ln, SupportWebhookListInput as lo, SupportWebhookListOutput as lp, SupportWebhookRedeliverInput as lq, SupportWebhookRedeliverOutput as lr, SupportWebhookRotateSecretInput as ls, SupportWebhookRotateSecretOutput as lt, SupportWebhookUpdateInput as lu, SupportWebhookUpdateOutput as lv, TrackingDomainsCreateInput as lw, TrackingDomainsCreateOutput as lx, TrackingDomainsDeleteInput as ly, TrackingDomainsDeleteOutput as lz, BrainClickupListsListInput as m, UsersOpsRetentionGetOutput as m$, TrackingGoogleadsSyncNowInput as m0, TrackingGoogleadsSyncNowOutput as m1, TrackingGoogleadsTrackingHealthInput as m2, TrackingGoogleadsTrackingHealthOutput as m3, TrackingGoogleadsUsVsPlatformInput as m4, TrackingGoogleadsUsVsPlatformOutput as m5, TrackingIdentityHealthInput as m6, TrackingIdentityHealthOutput as m7, TrackingInstallDomainsCreateInput as m8, TrackingInstallDomainsCreateOutput as m9, TrackingReportsSourcePeopleInput as mA, TrackingReportsSourcePeopleOutput as mB, TrackingSnippetsGetInput as mC, TrackingSnippetsGetOutput as mD, UsersApikeysCreateInput as mE, UsersApikeysCreateOutput as mF, UsersApikeysListInput as mG, UsersApikeysListOutput as mH, UsersApikeysRevokeInput as mI, UsersApikeysRevokeOutput as mJ, UsersAuditListInput as mK, UsersAuditListOutput as mL, UsersConfigGetInput as mM, UsersConfigGetOutput as mN, UsersConfigUpsertInput as mO, UsersConfigUpsertOutput as mP, UsersFactorsListInput as mQ, UsersFactorsListOutput as mR, UsersFactorsResetInput as mS, UsersFactorsResetOutput as mT, UsersKeysListInput as mU, UsersKeysListOutput as mV, UsersKeysRevokeInput as mW, UsersKeysRevokeOutput as mX, UsersKeysRotateInput as mY, UsersKeysRotateOutput as mZ, UsersOpsRetentionGetInput as m_, TrackingInstallDomainsDeleteInput as ma, TrackingInstallDomainsDeleteOutput as mb, TrackingInstallDomainsListInput as mc, TrackingInstallDomainsListOutput as md, TrackingLinkDomainsCreateInput as me, TrackingLinkDomainsCreateOutput as mf, TrackingLinkDomainsDeleteInput as mg, TrackingLinkDomainsDeleteOutput as mh, TrackingLinkDomainsListInput as mi, TrackingLinkDomainsListOutput as mj, TrackingLiveEventsListInput as mk, TrackingLiveEventsListOutput as ml, TrackingProfilesDeleteInput as mm, TrackingProfilesDeleteOutput as mn, TrackingProfilesExportInput as mo, TrackingProfilesExportOutput as mp, TrackingProfilesGetInput as mq, TrackingProfilesGetOutput as mr, TrackingProfilesListInput as ms, TrackingProfilesListOutput as mt, TrackingReportsAttributedJourneyInput as mu, TrackingReportsAttributedJourneyOutput as mv, TrackingReportsEventVolumeInput as mw, TrackingReportsEventVolumeOutput as mx, TrackingReportsRevenueBySourceInput as my, TrackingReportsRevenueBySourceOutput as mz, BrainClickupListsListOutput as n, WaitlistConfigUpsertOutput as n$, UsersOpsSloGetInput as n0, UsersOpsSloGetOutput as n1, UsersSessionsGetInput as n2, UsersSessionsGetOutput as n3, UsersSessionsImpersonateInput as n4, UsersSessionsImpersonateOutput as n5, UsersSessionsListInput as n6, UsersSessionsListOutput as n7, UsersSessionsRevokeInput as n8, UsersSessionsRevokeOutput as n9, UsersWaitlistEraseInput as nA, UsersWaitlistEraseOutput as nB, UsersWaitlistFunnelInput as nC, UsersWaitlistFunnelOutput as nD, UsersWaitlistImportInput as nE, UsersWaitlistImportOutput as nF, UsersWaitlistInviteInput as nG, UsersWaitlistInviteOutput as nH, UsersWaitlistListInput as nI, UsersWaitlistListOutput as nJ, UsersWebhooksCreateInput as nK, UsersWebhooksCreateOutput as nL, UsersWebhooksDeleteInput as nM, UsersWebhooksDeleteOutput as nN, UsersWebhooksDeliveriesListInput as nO, UsersWebhooksDeliveriesListOutput as nP, UsersWebhooksGetInput as nQ, UsersWebhooksGetOutput as nR, UsersWebhooksListInput as nS, UsersWebhooksListOutput as nT, UsersWebhooksRotateSecretInput as nU, UsersWebhooksRotateSecretOutput as nV, UsersWebhooksUpdateInput as nW, UsersWebhooksUpdateOutput as nX, WaitlistConfigGetInput as nY, WaitlistConfigGetOutput as nZ, WaitlistConfigUpsertInput as n_, UsersStatsGetInput as na, UsersStatsGetOutput as nb, UsersUsersBanInput as nc, UsersUsersBanOutput as nd, UsersUsersCreateInput as ne, UsersUsersCreateOutput as nf, UsersUsersDeleteInput as ng, UsersUsersDeleteOutput as nh, UsersUsersEraseInput as ni, UsersUsersEraseOutput as nj, UsersUsersExportInput as nk, UsersUsersExportOutput as nl, UsersUsersGetInput as nm, UsersUsersGetOutput as nn, UsersUsersImportInput as no, UsersUsersImportOutput as np, UsersUsersInviteInput as nq, UsersUsersInviteOutput as nr, UsersUsersListInput as ns, UsersUsersListOutput as nt, UsersUsersSetPrimaryIdentifierInput as nu, UsersUsersSetPrimaryIdentifierOutput as nv, UsersUsersUnbanInput as nw, UsersUsersUnbanOutput as nx, UsersUsersUpdateInput as ny, UsersUsersUpdateOutput as nz, BrainClickupSpacesListInput as o, WaitlistEmbedGetInput as o0, WaitlistEmbedGetOutput as o1, WaitlistInvitesSendInput as o2, WaitlistInvitesSendOutput as o3, WaitlistSignupsEraseInput as o4, WaitlistSignupsEraseOutput as o5, WaitlistSignupsFunnelInput as o6, WaitlistSignupsFunnelOutput as o7, WaitlistSignupsListInput as o8, WaitlistSignupsListOutput as o9, 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 };
|
|
40242
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSelectOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductSetAccessInput as hA, OrganizationProductSetAccessOutput as hB, OrganizationProductUpdateInput as hC, OrganizationProductUpdateOutput as hD, OrganizationPublicKeysCreateInput as hE, OrganizationPublicKeysCreateOutput as hF, OrganizationPublicKeysListInput as hG, OrganizationPublicKeysListOutput as hH, OrganizationPublicKeysRevokeInput as hI, OrganizationPublicKeysRevokeOutput as hJ, OrganizationPublicKeysUpdateScopeInput as hK, OrganizationPublicKeysUpdateScopeOutput as hL, OrganizationPublicRoutesListInput as hM, OrganizationPublicRoutesListOutput as hN, OrganizationRolesCreateInput as hO, OrganizationRolesCreateOutput as hP, OrganizationRolesDeleteInput as hQ, OrganizationRolesDeleteOutput as hR, OrganizationRolesGetInput as hS, OrganizationRolesGetOutput as hT, OrganizationRolesListInput as hU, OrganizationRolesListOutput as hV, OrganizationRolesUpdateInput as hW, OrganizationRolesUpdateOutput as hX, OrganizationSecurityMfaEnableInput as hY, OrganizationSecurityMfaEnableOutput as hZ, OrganizationSelectInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductCreateInput as hm, OrganizationProductCreateOutput as hn, OrganizationProductListAccessInput as ho, OrganizationProductListAccessOutput as hp, OrganizationProductListMembersInput as hq, OrganizationProductListMembersOutput as hr, OrganizationProductListInput as hs, OrganizationProductListOutput as ht, OrganizationProductListRolesInput as hu, OrganizationProductListRolesOutput as hv, OrganizationProductRevokeAccessInput as hw, OrganizationProductRevokeAccessOutput as hx, OrganizationProductSelectInput as hy, OrganizationProductSelectOutput as hz, BrainClickupChannelsListInput as i, RealtimeWebhookSecretRotateOutput as i$, OrganizationSupportThreadCreateInput as i0, OrganizationSupportThreadCreateOutput as i1, OrganizationSupportThreadGetInput as i2, OrganizationSupportThreadGetOutput as i3, OrganizationSupportThreadReplyInput as i4, OrganizationSupportThreadReplyOutput as i5, OrganizationSupportThreadsListInput as i6, OrganizationSupportThreadsListOutput as i7, RealtimeArchiveExportInput as i8, RealtimeArchiveExportOutput as i9, RealtimePresenceEnterInput as iA, RealtimePresenceEnterOutput as iB, RealtimePresenceGetInput as iC, RealtimePresenceGetOutput as iD, RealtimePresenceLeaveInput as iE, RealtimePresenceLeaveOutput as iF, RealtimePresenceStatsInput as iG, RealtimePresenceStatsOutput as iH, RealtimePresenceUpdateInput as iI, RealtimePresenceUpdateOutput as iJ, RealtimePublicAccessStatusInput as iK, RealtimePublicAccessStatusOutput as iL, RealtimeStatusGetInput as iM, RealtimeStatusGetOutput as iN, RealtimeTokensCreateInput as iO, RealtimeTokensCreateOutput as iP, RealtimeWebhookCreateInput as iQ, RealtimeWebhookCreateOutput as iR, RealtimeWebhookDeleteInput as iS, RealtimeWebhookDeleteOutput as iT, RealtimeWebhookDeliveriesListInput as iU, RealtimeWebhookDeliveriesListOutput as iV, RealtimeWebhookGetInput as iW, RealtimeWebhookGetOutput as iX, RealtimeWebhookListInput as iY, RealtimeWebhookListOutput as iZ, RealtimeWebhookSecretRotateInput as i_, RealtimeArchiveExportStatusInput as ia, RealtimeArchiveExportStatusOutput as ib, RealtimeArchiveGetInput as ic, RealtimeArchiveGetOutput as id, RealtimeGrantCreateInput as ie, RealtimeGrantCreateOutput as ig, RealtimeGrantListInput as ih, RealtimeGrantListOutput as ii, RealtimeGrantRevokeInput as ij, RealtimeGrantRevokeOutput as ik, RealtimeHistoryGetInput as il, RealtimeHistoryGetOutput as im, 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, BrainClickupChannelsListOutput as j, SupportThreadAssignOutput as j$, RealtimeWebhookUpdateInput as j0, RealtimeWebhookUpdateOutput as j1, SupportAgentCreateInput as j2, SupportAgentCreateOutput as j3, SupportAgentGetInput as j4, SupportAgentGetOutput as j5, SupportAgentListInput as j6, SupportAgentListOutput as j7, SupportAgentUpdateInput as j8, SupportAgentUpdateOutput as j9, SupportRuleUpdateInput as jA, SupportRuleUpdateOutput as jB, SupportStatusArchiveInput as jC, SupportStatusArchiveOutput as jD, SupportStatusCreateInput as jE, SupportStatusCreateOutput as jF, SupportStatusListInput as jG, SupportStatusListOutput as jH, SupportStatusUpdateInput as jI, SupportStatusUpdateOutput as jJ, SupportSurveyArchiveInput as jK, SupportSurveyArchiveOutput as jL, SupportSurveyCreateInput as jM, SupportSurveyCreateOutput as jN, SupportSurveyGetInput as jO, SupportSurveyGetOutput as jP, SupportSurveyListInput as jQ, SupportSurveyListOutput as jR, SupportSurveyPublishInput as jS, SupportSurveyPublishOutput as jT, SupportSurveyStatsInput as jU, SupportSurveyStatsOutput as jV, SupportSurveyUnpublishInput as jW, SupportSurveyUnpublishOutput as jX, SupportSurveyUpdateInput as jY, SupportSurveyUpdateOutput as jZ, SupportThreadAssignInput as j_, 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, SupportResponseEscalateInput as jm, SupportResponseEscalateOutput as jn, SupportResponseGetInput as jo, SupportResponseGetOutput as jp, SupportResponseListInput as jq, SupportResponseListOutput as jr, SupportRuleCreateInput as js, SupportRuleCreateOutput as jt, SupportRuleDeleteInput as ju, SupportRuleDeleteOutput as jv, SupportRuleGetInput as jw, SupportRuleGetOutput as jx, SupportRuleListInput as jy, SupportRuleListOutput as jz, BrainClickupConnectionsListInput as k, TrackingGoogleadsUsVsPlatformOutput as k$, SupportThreadCreateInput as k0, SupportThreadCreateOutput as k1, SupportThreadGetInput as k2, SupportThreadGetOutput as k3, SupportThreadListInput as k4, SupportThreadListOutput as k5, SupportThreadStatusSetInput as k6, SupportThreadStatusSetOutput as k7, SupportThreadUpdateInput as k8, SupportThreadUpdateOutput as k9, TrackingEventNamesArchiveInput as kA, TrackingEventNamesArchiveOutput as kB, TrackingEventNamesListInput as kC, TrackingEventNamesListOutput as kD, TrackingEventNamesUnarchiveInput as kE, TrackingEventNamesUnarchiveOutput as kF, TrackingGoogleadsConnectionStatusInput as kG, TrackingGoogleadsConnectionStatusOutput as kH, TrackingGoogleadsConversionActionsInput as kI, TrackingGoogleadsConversionActionsOutput as kJ, TrackingGoogleadsFeedbackConfigGetInput as kK, TrackingGoogleadsFeedbackConfigGetOutput as kL, TrackingGoogleadsFeedbackConfigSetInput as kM, TrackingGoogleadsFeedbackConfigSetOutput as kN, TrackingGoogleadsFeedbackRunInput as kO, TrackingGoogleadsFeedbackRunOutput as kP, TrackingGoogleadsFeedbackStatusInput as kQ, TrackingGoogleadsFeedbackStatusOutput as kR, TrackingGoogleadsFeedbackUploadsInput as kS, TrackingGoogleadsFeedbackUploadsOutput as kT, TrackingGoogleadsRoasReportInput as kU, TrackingGoogleadsRoasReportOutput as kV, TrackingGoogleadsSyncNowInput as kW, TrackingGoogleadsSyncNowOutput as kX, TrackingGoogleadsTrackingHealthInput as kY, TrackingGoogleadsTrackingHealthOutput as kZ, TrackingGoogleadsUsVsPlatformInput as k_, 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, BrainClickupConnectionsListOutput as l, UsersSessionsImpersonateOutput as l$, TrackingIdentityHealthInput as l0, TrackingIdentityHealthOutput as l1, TrackingInstallDomainsCreateInput as l2, TrackingInstallDomainsCreateOutput as l3, TrackingInstallDomainsDeleteInput as l4, TrackingInstallDomainsDeleteOutput as l5, TrackingInstallDomainsListInput as l6, TrackingInstallDomainsListOutput as l7, TrackingLinkDomainsCreateInput as l8, TrackingLinkDomainsCreateOutput as l9, UsersApikeysListInput as lA, UsersApikeysListOutput as lB, UsersApikeysRevokeInput as lC, UsersApikeysRevokeOutput as lD, UsersAuditListInput as lE, UsersAuditListOutput as lF, UsersConfigGetInput as lG, UsersConfigGetOutput as lH, UsersConfigUpsertInput as lI, UsersConfigUpsertOutput as lJ, UsersFactorsListInput as lK, UsersFactorsListOutput as lL, UsersFactorsResetInput as lM, UsersFactorsResetOutput as lN, UsersKeysListInput as lO, UsersKeysListOutput as lP, UsersKeysRevokeInput as lQ, UsersKeysRevokeOutput as lR, UsersKeysRotateInput as lS, UsersKeysRotateOutput as lT, UsersOpsRetentionGetInput as lU, UsersOpsRetentionGetOutput as lV, UsersOpsSloGetInput as lW, UsersOpsSloGetOutput as lX, UsersSessionsGetInput as lY, UsersSessionsGetOutput as lZ, UsersSessionsImpersonateInput as l_, 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, BrainClickupListsListInput as m, WaitlistSignupsEraseOutput as m$, UsersSessionsListInput as m0, UsersSessionsListOutput as m1, UsersSessionsRevokeInput as m2, UsersSessionsRevokeOutput as m3, UsersStatsGetInput as m4, UsersStatsGetOutput as m5, UsersUsersBanInput as m6, UsersUsersBanOutput as m7, UsersUsersCreateInput as m8, UsersUsersCreateOutput as m9, UsersWaitlistInviteInput as mA, UsersWaitlistInviteOutput as mB, UsersWaitlistListInput as mC, UsersWaitlistListOutput as mD, UsersWebhooksCreateInput as mE, UsersWebhooksCreateOutput as mF, UsersWebhooksDeleteInput as mG, UsersWebhooksDeleteOutput as mH, UsersWebhooksDeliveriesListInput as mI, UsersWebhooksDeliveriesListOutput as mJ, UsersWebhooksGetInput as mK, UsersWebhooksGetOutput as mL, UsersWebhooksListInput as mM, UsersWebhooksListOutput as mN, UsersWebhooksRotateSecretInput as mO, UsersWebhooksRotateSecretOutput as mP, UsersWebhooksUpdateInput as mQ, UsersWebhooksUpdateOutput as mR, WaitlistConfigGetInput as mS, WaitlistConfigGetOutput as mT, WaitlistConfigUpsertInput as mU, WaitlistConfigUpsertOutput as mV, WaitlistEmbedGetInput as mW, WaitlistEmbedGetOutput as mX, WaitlistInvitesSendInput as mY, WaitlistInvitesSendOutput as mZ, WaitlistSignupsEraseInput as m_, 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, BrainClickupListsListOutput as n, WaitlistSignupsFunnelInput as n0, WaitlistSignupsFunnelOutput as n1, WaitlistSignupsListInput as n2, WaitlistSignupsListOutput as n3, 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 };
|