@lessly/sdk-app 35.0.0 → 36.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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-CvgJUdcU.d.cts → client.gen-BSiYBjET.d.cts} +255 -1274
- package/dist/{client.gen-CvgJUdcU.d.ts → client.gen-BSiYBjET.d.ts} +255 -1274
- 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 +51 -410
- 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 +51 -410
- 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.cjs +18 -33
- package/dist/organization/index.cjs.map +1 -1
- package/dist/organization/index.d.cts +15 -27
- package/dist/organization/index.d.ts +15 -27
- package/dist/organization/index.js +15 -27
- package/dist/organization/index.js.map +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 +51 -410
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +7 -0
- package/src/gen/client.gen.ts +17 -126
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/organization/index.ts +1 -1
- package/src/gen/organization/queryOptions.gen.ts +21 -41
- package/src/gen/types.gen.ts +246 -1273
- package/dist/observe/index.cjs +0 -71
- package/dist/observe/index.cjs.map +0 -1
- package/dist/observe/index.d.cts +0 -56
- package/dist/observe/index.d.ts +0 -56
- package/dist/observe/index.js +0 -57
- 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 -89
- 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,911 +12600,126 @@ interface MailWebhookUpdateOutput {
|
|
|
12510
12600
|
description: (string | null);
|
|
12511
12601
|
enabled_events: string[];
|
|
12512
12602
|
}
|
|
12513
|
-
interface
|
|
12514
|
-
/**
|
|
12515
|
-
* Identifier of the artifact to delete. An artifact of another product is reported as not found
|
|
12516
|
-
*/
|
|
12517
|
-
id: string;
|
|
12603
|
+
interface OrganizationAuthMeInput {
|
|
12518
12604
|
}
|
|
12519
|
-
interface
|
|
12520
|
-
|
|
12521
|
-
|
|
12522
|
-
|
|
12605
|
+
interface OrganizationAuthMeOutput {
|
|
12606
|
+
email: string;
|
|
12607
|
+
identityId: string;
|
|
12608
|
+
displayName: string;
|
|
12609
|
+
identityType: string;
|
|
12610
|
+
}
|
|
12611
|
+
interface OrganizationBillingBudgetsGetInput {
|
|
12612
|
+
}
|
|
12613
|
+
interface OrganizationBillingBudgetsGetOutput {
|
|
12614
|
+
[k: string]: unknown;
|
|
12615
|
+
}
|
|
12616
|
+
interface OrganizationBillingBudgetsSetInput {
|
|
12617
|
+
ceiling_minor: number;
|
|
12618
|
+
}
|
|
12619
|
+
interface OrganizationBillingBudgetsSetOutput {
|
|
12620
|
+
[k: string]: unknown;
|
|
12621
|
+
}
|
|
12622
|
+
interface OrganizationBillingCapsClearInput {
|
|
12623
|
+
productId: string;
|
|
12624
|
+
}
|
|
12625
|
+
interface OrganizationBillingCapsClearOutput {
|
|
12626
|
+
[k: string]: unknown;
|
|
12627
|
+
}
|
|
12628
|
+
interface OrganizationBillingCapsSetInput {
|
|
12629
|
+
cap_minor: number;
|
|
12630
|
+
productId: string;
|
|
12631
|
+
}
|
|
12632
|
+
interface OrganizationBillingCapsSetOutput {
|
|
12633
|
+
[k: string]: unknown;
|
|
12634
|
+
}
|
|
12635
|
+
interface OrganizationBindingsListInput {
|
|
12636
|
+
domainId: string;
|
|
12637
|
+
productId: string;
|
|
12638
|
+
}
|
|
12639
|
+
type OrganizationBindingsListOutput = {
|
|
12640
|
+
host: string;
|
|
12641
|
+
status: ("pending" | "active" | "failed");
|
|
12642
|
+
records: {
|
|
12643
|
+
ttl?: number;
|
|
12644
|
+
name?: string;
|
|
12645
|
+
target: string;
|
|
12646
|
+
proxied?: boolean;
|
|
12647
|
+
priority?: number;
|
|
12648
|
+
recordType: string;
|
|
12649
|
+
}[];
|
|
12650
|
+
domainId: string;
|
|
12651
|
+
bindingId: string;
|
|
12652
|
+
instruction: (string | null);
|
|
12653
|
+
statusDetail: (string | null);
|
|
12654
|
+
ownerExtension: string;
|
|
12655
|
+
}[];
|
|
12656
|
+
interface OrganizationClickupInstallInput {
|
|
12657
|
+
}
|
|
12658
|
+
interface OrganizationClickupInstallOutput {
|
|
12659
|
+
url: string;
|
|
12660
|
+
}
|
|
12661
|
+
interface OrganizationClickupListInstallationsInput {
|
|
12662
|
+
}
|
|
12663
|
+
type OrganizationClickupListInstallationsOutput = {
|
|
12664
|
+
status: string;
|
|
12665
|
+
teamId: string;
|
|
12666
|
+
teamName: string;
|
|
12667
|
+
}[];
|
|
12668
|
+
interface OrganizationCloudflareInstallInput {
|
|
12669
|
+
}
|
|
12670
|
+
interface OrganizationCloudflareInstallOutput {
|
|
12671
|
+
url: string;
|
|
12672
|
+
}
|
|
12673
|
+
interface OrganizationConnectorsApproveRequestInput {
|
|
12523
12674
|
id: string;
|
|
12524
|
-
|
|
12525
|
-
* Whether this is the minified source or its map
|
|
12526
|
-
*/
|
|
12527
|
-
kind: ("source" | "sourcemap");
|
|
12528
|
-
/**
|
|
12529
|
-
* Debug ID the build stamped into the file and its source map
|
|
12530
|
-
*/
|
|
12531
|
-
debugId: string;
|
|
12532
|
-
/**
|
|
12533
|
-
* Size of the stored artifact in bytes
|
|
12534
|
-
*/
|
|
12535
|
-
byteSize: number;
|
|
12536
|
-
/**
|
|
12537
|
-
* Name the file was uploaded under, e.g. "app.min.js.map"
|
|
12538
|
-
*/
|
|
12539
|
-
fileName: string;
|
|
12540
|
-
/**
|
|
12541
|
-
* ISO 8601 timestamp of the upload
|
|
12542
|
-
*/
|
|
12543
|
-
uploadedAt: string;
|
|
12675
|
+
requestId: string;
|
|
12544
12676
|
}
|
|
12545
|
-
interface
|
|
12546
|
-
|
|
12547
|
-
* Maximum number of artifacts to return, 1..200 (default 50)
|
|
12548
|
-
*/
|
|
12549
|
-
limit?: number;
|
|
12550
|
-
/**
|
|
12551
|
-
* Only return artifacts carrying this debug ID; omit to list all of them
|
|
12552
|
-
*/
|
|
12553
|
-
debugId?: string;
|
|
12677
|
+
interface OrganizationConnectorsApproveRequestOutput {
|
|
12678
|
+
success: boolean;
|
|
12554
12679
|
}
|
|
12555
|
-
|
|
12556
|
-
/**
|
|
12557
|
-
* Identifier of the stored artifact
|
|
12558
|
-
*/
|
|
12680
|
+
interface OrganizationConnectorsAttachInput {
|
|
12559
12681
|
id: string;
|
|
12560
|
-
|
|
12561
|
-
* Whether this is the minified source or its map
|
|
12562
|
-
*/
|
|
12563
|
-
kind: ("source" | "sourcemap");
|
|
12564
|
-
/**
|
|
12565
|
-
* Debug ID the build stamped into the file and its source map
|
|
12566
|
-
*/
|
|
12567
|
-
debugId: string;
|
|
12568
|
-
/**
|
|
12569
|
-
* Size of the stored artifact in bytes
|
|
12570
|
-
*/
|
|
12571
|
-
byteSize: number;
|
|
12572
|
-
/**
|
|
12573
|
-
* Name the file was uploaded under, e.g. "app.min.js.map"
|
|
12574
|
-
*/
|
|
12575
|
-
fileName: string;
|
|
12576
|
-
/**
|
|
12577
|
-
* ISO 8601 timestamp of the upload
|
|
12578
|
-
*/
|
|
12579
|
-
uploadedAt: string;
|
|
12580
|
-
}[];
|
|
12581
|
-
interface ObserveArtifactsResolveInput {
|
|
12582
|
-
/**
|
|
12583
|
-
* Issue whose latest event should have its stack resolved. An issue of another product is reported as not found
|
|
12584
|
-
*/
|
|
12585
|
-
issueId: string;
|
|
12682
|
+
productIds: string[];
|
|
12586
12683
|
}
|
|
12587
|
-
interface
|
|
12588
|
-
|
|
12589
|
-
|
|
12590
|
-
|
|
12591
|
-
|
|
12592
|
-
|
|
12593
|
-
|
|
12594
|
-
*/
|
|
12595
|
-
colno?: number;
|
|
12596
|
-
/**
|
|
12597
|
-
* Whether the frame belongs to the application rather than a dependency
|
|
12598
|
-
*/
|
|
12599
|
-
inApp?: boolean;
|
|
12600
|
-
/**
|
|
12601
|
-
* Line number, original when the frame resolved
|
|
12602
|
-
*/
|
|
12603
|
-
lineno?: number;
|
|
12604
|
-
/**
|
|
12605
|
-
* Original file when the frame resolved, else the minified one
|
|
12606
|
-
*/
|
|
12607
|
-
filename?: string;
|
|
12608
|
-
/**
|
|
12609
|
-
* Function name, original where the source map names one
|
|
12610
|
-
*/
|
|
12611
|
-
function?: string;
|
|
12612
|
-
/**
|
|
12613
|
-
* False means no source map matched and the frame is exactly as it was recorded
|
|
12614
|
-
*/
|
|
12615
|
-
resolved: boolean;
|
|
12684
|
+
interface OrganizationConnectorsAttachOutput {
|
|
12685
|
+
attachments: {
|
|
12686
|
+
createdAt: string;
|
|
12687
|
+
createdBy: (string | null);
|
|
12688
|
+
productId: string;
|
|
12689
|
+
customerId: (string | null);
|
|
12690
|
+
descriptiveName: (string | null);
|
|
12616
12691
|
}[];
|
|
12617
|
-
|
|
12618
|
-
* Identifier of the event the stack was taken from
|
|
12619
|
-
*/
|
|
12620
|
-
eventId: string;
|
|
12621
|
-
/**
|
|
12622
|
-
* The issue whose stack this is
|
|
12623
|
-
*/
|
|
12624
|
-
issueId: string;
|
|
12692
|
+
connectorId: string;
|
|
12625
12693
|
}
|
|
12626
|
-
interface
|
|
12627
|
-
/**
|
|
12628
|
-
* Identifier of the issue
|
|
12629
|
-
*/
|
|
12694
|
+
interface OrganizationConnectorsDeleteInput {
|
|
12630
12695
|
id: string;
|
|
12631
12696
|
}
|
|
12632
|
-
interface
|
|
12633
|
-
|
|
12634
|
-
|
|
12635
|
-
|
|
12697
|
+
interface OrganizationConnectorsDeleteOutput {
|
|
12698
|
+
success: boolean;
|
|
12699
|
+
}
|
|
12700
|
+
interface OrganizationConnectorsDenyRequestInput {
|
|
12636
12701
|
id: string;
|
|
12637
|
-
|
|
12638
|
-
* Display title, set when the issue opened and never rewritten
|
|
12639
|
-
*/
|
|
12640
|
-
title: string;
|
|
12641
|
-
/**
|
|
12642
|
-
* unresolved, resolved or archived
|
|
12643
|
-
*/
|
|
12644
|
-
status: string;
|
|
12645
|
-
/**
|
|
12646
|
-
* Where the error appears to come from, or null
|
|
12647
|
-
*/
|
|
12648
|
-
culprit: (string | null);
|
|
12649
|
-
/**
|
|
12650
|
-
* Who owns the issue, or null if unassigned
|
|
12651
|
-
*/
|
|
12652
|
-
assignee: (string | null);
|
|
12653
|
-
/**
|
|
12654
|
-
* ISO 8601 timestamp of the most recent event
|
|
12655
|
-
*/
|
|
12656
|
-
lastSeen: string;
|
|
12657
|
-
/**
|
|
12658
|
-
* ISO 8601 timestamp of the first event
|
|
12659
|
-
*/
|
|
12660
|
-
firstSeen: string;
|
|
12661
|
-
/**
|
|
12662
|
-
* ISO 8601 archive timestamp, or null
|
|
12663
|
-
*/
|
|
12664
|
-
archivedAt: (string | null);
|
|
12665
|
-
/**
|
|
12666
|
-
* How many events have landed on this issue
|
|
12667
|
-
*/
|
|
12668
|
-
eventCount: number;
|
|
12669
|
-
/**
|
|
12670
|
-
* ISO 8601 resolution timestamp, or null
|
|
12671
|
-
*/
|
|
12672
|
-
resolvedAt: (string | null);
|
|
12673
|
-
/**
|
|
12674
|
-
* Environment the issue was first seen in, or null
|
|
12675
|
-
*/
|
|
12676
|
-
environment: (string | null);
|
|
12677
|
-
/**
|
|
12678
|
-
* Stable grouping hash the issue is keyed on
|
|
12679
|
-
*/
|
|
12680
|
-
fingerprint: string;
|
|
12681
|
-
/**
|
|
12682
|
-
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
12683
|
-
*/
|
|
12684
|
-
regressedAt: (string | null);
|
|
12685
|
-
/**
|
|
12686
|
-
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
12687
|
-
*/
|
|
12688
|
-
groupingRule: string;
|
|
12689
|
-
/**
|
|
12690
|
-
* Exception class of the first event, or null
|
|
12691
|
-
*/
|
|
12692
|
-
exceptionType: (string | null);
|
|
12693
|
-
/**
|
|
12694
|
-
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
12695
|
-
*/
|
|
12696
|
-
groupingVersion: string;
|
|
12702
|
+
requestId: string;
|
|
12697
12703
|
}
|
|
12698
|
-
interface
|
|
12699
|
-
|
|
12700
|
-
|
|
12701
|
-
|
|
12704
|
+
interface OrganizationConnectorsDenyRequestOutput {
|
|
12705
|
+
success: boolean;
|
|
12706
|
+
}
|
|
12707
|
+
interface OrganizationConnectorsDetachInput {
|
|
12702
12708
|
id: string;
|
|
12703
|
-
|
|
12704
|
-
* Who should own the issue; null clears the assignment
|
|
12705
|
-
*/
|
|
12706
|
-
assignee: (string | null);
|
|
12709
|
+
productId: string;
|
|
12707
12710
|
}
|
|
12708
|
-
interface
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12711
|
+
interface OrganizationConnectorsDetachOutput {
|
|
12712
|
+
success: boolean;
|
|
12713
|
+
}
|
|
12714
|
+
interface OrganizationConnectorsListInput {
|
|
12715
|
+
productId: string;
|
|
12716
|
+
}
|
|
12717
|
+
type OrganizationConnectorsListOutput = {
|
|
12712
12718
|
id: string;
|
|
12713
|
-
|
|
12714
|
-
|
|
12715
|
-
|
|
12716
|
-
|
|
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 ObserveLogsSearchInput {
|
|
13141
|
-
/**
|
|
13142
|
-
* Newest timestamp to include, ISO 8601
|
|
13143
|
-
*/
|
|
13144
|
-
to?: string;
|
|
13145
|
-
/**
|
|
13146
|
-
* Oldest timestamp to include, ISO 8601
|
|
13147
|
-
*/
|
|
13148
|
-
from?: string;
|
|
13149
|
-
/**
|
|
13150
|
-
* How many lines to return, 1-1000, default 100
|
|
13151
|
-
*/
|
|
13152
|
-
limit?: number;
|
|
13153
|
-
/**
|
|
13154
|
-
* The nextCursor of the previous page; omit for the first page
|
|
13155
|
-
*/
|
|
13156
|
-
cursor?: string;
|
|
13157
|
-
/**
|
|
13158
|
-
* Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
|
|
13159
|
-
*/
|
|
13160
|
-
search?: string;
|
|
13161
|
-
/**
|
|
13162
|
-
* Only lines of this service, e.g. "api"
|
|
13163
|
-
*/
|
|
13164
|
-
service?: string;
|
|
13165
|
-
/**
|
|
13166
|
-
* Only lines of this trace
|
|
13167
|
-
*/
|
|
13168
|
-
traceId?: string;
|
|
13169
|
-
/**
|
|
13170
|
-
* Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
|
|
13171
|
-
*
|
|
13172
|
-
* @minItems 1
|
|
13173
|
-
*/
|
|
13174
|
-
severityIn?: [string, ...(string)[]];
|
|
13175
|
-
/**
|
|
13176
|
-
* Only lines of this environment, e.g. "production"
|
|
13177
|
-
*/
|
|
13178
|
-
environment?: string;
|
|
13179
|
-
}
|
|
13180
|
-
interface ObserveLogsSearchOutput {
|
|
13181
|
-
/**
|
|
13182
|
-
* The matching log lines, newest first
|
|
13183
|
-
*/
|
|
13184
|
-
rows: {
|
|
13185
|
-
/**
|
|
13186
|
-
* The log message itself
|
|
13187
|
-
*/
|
|
13188
|
-
body: string;
|
|
13189
|
-
/**
|
|
13190
|
-
* Span this line belongs to, empty when untraced
|
|
13191
|
-
*/
|
|
13192
|
-
spanId: string;
|
|
13193
|
-
/**
|
|
13194
|
-
* Service that wrote the line
|
|
13195
|
-
*/
|
|
13196
|
-
service: string;
|
|
13197
|
-
/**
|
|
13198
|
-
* Trace this line belongs to, empty when untraced
|
|
13199
|
-
*/
|
|
13200
|
-
traceId: string;
|
|
13201
|
-
/**
|
|
13202
|
-
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13203
|
-
*/
|
|
13204
|
-
timestamp: string;
|
|
13205
|
-
/**
|
|
13206
|
-
* Attributes the emitter attached
|
|
13207
|
-
*/
|
|
13208
|
-
attributes: {
|
|
13209
|
-
[k: string]: string;
|
|
13210
|
-
};
|
|
13211
|
-
/**
|
|
13212
|
-
* Environment the line was written in
|
|
13213
|
-
*/
|
|
13214
|
-
environment: string;
|
|
13215
|
-
/**
|
|
13216
|
-
* Severity as the emitter named it, e.g. "ERROR"
|
|
13217
|
-
*/
|
|
13218
|
-
severityText: string;
|
|
13219
|
-
/**
|
|
13220
|
-
* OpenTelemetry severity number, 1-24
|
|
13221
|
-
*/
|
|
13222
|
-
severityNumber: number;
|
|
13223
|
-
}[];
|
|
13224
|
-
/**
|
|
13225
|
-
* Pass back as cursor for the next page; null when the last page was reached
|
|
13226
|
-
*/
|
|
13227
|
-
nextCursor: (string | null);
|
|
13228
|
-
}
|
|
13229
|
-
interface ObserveLogsTailInput {
|
|
13230
|
-
/**
|
|
13231
|
-
* The nextCursor of the previous poll; omit to start at the newest lines
|
|
13232
|
-
*/
|
|
13233
|
-
cursor?: string;
|
|
13234
|
-
/**
|
|
13235
|
-
* Only lines of this service
|
|
13236
|
-
*/
|
|
13237
|
-
service?: string;
|
|
13238
|
-
/**
|
|
13239
|
-
* Only lines whose severity is one of these
|
|
13240
|
-
*
|
|
13241
|
-
* @minItems 1
|
|
13242
|
-
*/
|
|
13243
|
-
severityIn?: [string, ...(string)[]];
|
|
13244
|
-
/**
|
|
13245
|
-
* Only lines of this environment
|
|
13246
|
-
*/
|
|
13247
|
-
environment?: string;
|
|
13248
|
-
}
|
|
13249
|
-
interface ObserveLogsTailOutput {
|
|
13250
|
-
/**
|
|
13251
|
-
* The new log lines, oldest first
|
|
13252
|
-
*/
|
|
13253
|
-
rows: {
|
|
13254
|
-
/**
|
|
13255
|
-
* The log message itself
|
|
13256
|
-
*/
|
|
13257
|
-
body: string;
|
|
13258
|
-
/**
|
|
13259
|
-
* Span this line belongs to, empty when untraced
|
|
13260
|
-
*/
|
|
13261
|
-
spanId: string;
|
|
13262
|
-
/**
|
|
13263
|
-
* Service that wrote the line
|
|
13264
|
-
*/
|
|
13265
|
-
service: string;
|
|
13266
|
-
/**
|
|
13267
|
-
* Trace this line belongs to, empty when untraced
|
|
13268
|
-
*/
|
|
13269
|
-
traceId: string;
|
|
13270
|
-
/**
|
|
13271
|
-
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13272
|
-
*/
|
|
13273
|
-
timestamp: string;
|
|
13274
|
-
/**
|
|
13275
|
-
* Attributes the emitter attached
|
|
13276
|
-
*/
|
|
13277
|
-
attributes: {
|
|
13278
|
-
[k: string]: string;
|
|
13279
|
-
};
|
|
13280
|
-
/**
|
|
13281
|
-
* Environment the line was written in
|
|
13282
|
-
*/
|
|
13283
|
-
environment: string;
|
|
13284
|
-
/**
|
|
13285
|
-
* Severity as the emitter named it, e.g. "ERROR"
|
|
13286
|
-
*/
|
|
13287
|
-
severityText: string;
|
|
13288
|
-
/**
|
|
13289
|
-
* OpenTelemetry severity number, 1-24
|
|
13290
|
-
*/
|
|
13291
|
-
severityNumber: number;
|
|
13292
|
-
}[];
|
|
13293
|
-
/**
|
|
13294
|
-
* Pass back as cursor on the next poll; null only while the product has no logs
|
|
13295
|
-
*/
|
|
13296
|
-
nextCursor: (string | null);
|
|
13297
|
-
}
|
|
13298
|
-
interface OrganizationAuthMeInput {
|
|
13299
|
-
}
|
|
13300
|
-
interface OrganizationAuthMeOutput {
|
|
13301
|
-
email: string;
|
|
13302
|
-
identityId: string;
|
|
13303
|
-
displayName: string;
|
|
13304
|
-
identityType: string;
|
|
13305
|
-
}
|
|
13306
|
-
interface OrganizationBillingBudgetsGetInput {
|
|
13307
|
-
}
|
|
13308
|
-
interface OrganizationBillingBudgetsGetOutput {
|
|
13309
|
-
[k: string]: unknown;
|
|
13310
|
-
}
|
|
13311
|
-
interface OrganizationBillingBudgetsSetInput {
|
|
13312
|
-
ceiling_minor: number;
|
|
13313
|
-
}
|
|
13314
|
-
interface OrganizationBillingBudgetsSetOutput {
|
|
13315
|
-
[k: string]: unknown;
|
|
13316
|
-
}
|
|
13317
|
-
interface OrganizationBillingCapsClearInput {
|
|
13318
|
-
productId: string;
|
|
13319
|
-
}
|
|
13320
|
-
interface OrganizationBillingCapsClearOutput {
|
|
13321
|
-
[k: string]: unknown;
|
|
13322
|
-
}
|
|
13323
|
-
interface OrganizationBillingCapsSetInput {
|
|
13324
|
-
cap_minor: number;
|
|
13325
|
-
productId: string;
|
|
13326
|
-
}
|
|
13327
|
-
interface OrganizationBillingCapsSetOutput {
|
|
13328
|
-
[k: string]: unknown;
|
|
13329
|
-
}
|
|
13330
|
-
interface OrganizationBindingsListInput {
|
|
13331
|
-
domainId: string;
|
|
13332
|
-
productId: string;
|
|
13333
|
-
}
|
|
13334
|
-
type OrganizationBindingsListOutput = {
|
|
13335
|
-
host: string;
|
|
13336
|
-
status: ("pending" | "active" | "failed");
|
|
13337
|
-
records: {
|
|
13338
|
-
ttl?: number;
|
|
13339
|
-
name?: string;
|
|
13340
|
-
target: string;
|
|
13341
|
-
proxied?: boolean;
|
|
13342
|
-
priority?: number;
|
|
13343
|
-
recordType: string;
|
|
13344
|
-
}[];
|
|
13345
|
-
domainId: string;
|
|
13346
|
-
bindingId: string;
|
|
13347
|
-
instruction: (string | null);
|
|
13348
|
-
statusDetail: (string | null);
|
|
13349
|
-
ownerExtension: string;
|
|
13350
|
-
}[];
|
|
13351
|
-
interface OrganizationClickupInstallInput {
|
|
13352
|
-
}
|
|
13353
|
-
interface OrganizationClickupInstallOutput {
|
|
13354
|
-
url: string;
|
|
13355
|
-
}
|
|
13356
|
-
interface OrganizationClickupListInstallationsInput {
|
|
13357
|
-
}
|
|
13358
|
-
type OrganizationClickupListInstallationsOutput = {
|
|
13359
|
-
status: string;
|
|
13360
|
-
teamId: string;
|
|
13361
|
-
teamName: string;
|
|
13362
|
-
}[];
|
|
13363
|
-
interface OrganizationCloudflareInstallInput {
|
|
13364
|
-
}
|
|
13365
|
-
interface OrganizationCloudflareInstallOutput {
|
|
13366
|
-
url: string;
|
|
13367
|
-
}
|
|
13368
|
-
interface OrganizationConnectorsApproveRequestInput {
|
|
13369
|
-
id: string;
|
|
13370
|
-
requestId: string;
|
|
13371
|
-
}
|
|
13372
|
-
interface OrganizationConnectorsApproveRequestOutput {
|
|
13373
|
-
success: boolean;
|
|
13374
|
-
}
|
|
13375
|
-
interface OrganizationConnectorsAttachInput {
|
|
13376
|
-
id: string;
|
|
13377
|
-
productIds: string[];
|
|
13378
|
-
}
|
|
13379
|
-
interface OrganizationConnectorsAttachOutput {
|
|
13380
|
-
attachments: {
|
|
13381
|
-
createdAt: string;
|
|
13382
|
-
createdBy: (string | null);
|
|
13383
|
-
productId: string;
|
|
13384
|
-
customerId: (string | null);
|
|
13385
|
-
descriptiveName: (string | null);
|
|
13386
|
-
}[];
|
|
13387
|
-
connectorId: string;
|
|
13388
|
-
}
|
|
13389
|
-
interface OrganizationConnectorsDeleteInput {
|
|
13390
|
-
id: string;
|
|
13391
|
-
}
|
|
13392
|
-
interface OrganizationConnectorsDeleteOutput {
|
|
13393
|
-
success: boolean;
|
|
13394
|
-
}
|
|
13395
|
-
interface OrganizationConnectorsDenyRequestInput {
|
|
13396
|
-
id: string;
|
|
13397
|
-
requestId: string;
|
|
13398
|
-
}
|
|
13399
|
-
interface OrganizationConnectorsDenyRequestOutput {
|
|
13400
|
-
success: boolean;
|
|
13401
|
-
}
|
|
13402
|
-
interface OrganizationConnectorsDetachInput {
|
|
13403
|
-
id: string;
|
|
13404
|
-
productId: string;
|
|
13405
|
-
}
|
|
13406
|
-
interface OrganizationConnectorsDetachOutput {
|
|
13407
|
-
success: boolean;
|
|
13408
|
-
}
|
|
13409
|
-
interface OrganizationConnectorsListInput {
|
|
13410
|
-
productId: string;
|
|
13411
|
-
}
|
|
13412
|
-
type OrganizationConnectorsListOutput = {
|
|
13413
|
-
id: string;
|
|
13414
|
-
config: {
|
|
13415
|
-
[k: string]: unknown;
|
|
13416
|
-
};
|
|
13417
|
-
origin: ("product" | "org");
|
|
12719
|
+
config: {
|
|
12720
|
+
[k: string]: unknown;
|
|
12721
|
+
};
|
|
12722
|
+
origin: ("product" | "org");
|
|
13418
12723
|
status: string;
|
|
13419
12724
|
provider: string;
|
|
13420
12725
|
createdAt: string;
|
|
@@ -13609,9 +12914,8 @@ interface OrganizationFeedbackSubmitInput {
|
|
|
13609
12914
|
details: string;
|
|
13610
12915
|
}
|
|
13611
12916
|
interface OrganizationFeedbackSubmitOutput {
|
|
13612
|
-
url:
|
|
13613
|
-
number:
|
|
13614
|
-
supportThreadId?: string;
|
|
12917
|
+
url: string;
|
|
12918
|
+
number: number;
|
|
13615
12919
|
}
|
|
13616
12920
|
interface OrganizationGdriveInstallInput {
|
|
13617
12921
|
}
|
|
@@ -13850,6 +13154,23 @@ interface OrganizationPermissionCatalogOutput {
|
|
|
13850
13154
|
display_name: string;
|
|
13851
13155
|
}[];
|
|
13852
13156
|
}
|
|
13157
|
+
interface OrganizationProductAcceptInvitationInput {
|
|
13158
|
+
token: string;
|
|
13159
|
+
}
|
|
13160
|
+
interface OrganizationProductAcceptInvitationOutput {
|
|
13161
|
+
product: {
|
|
13162
|
+
id: string;
|
|
13163
|
+
name: string;
|
|
13164
|
+
role: string;
|
|
13165
|
+
slug: string;
|
|
13166
|
+
demoAt: (string | null);
|
|
13167
|
+
status: string;
|
|
13168
|
+
blockedAt: (string | null);
|
|
13169
|
+
createdAt: string;
|
|
13170
|
+
archivedAt: (string | null);
|
|
13171
|
+
organizationId: string;
|
|
13172
|
+
};
|
|
13173
|
+
}
|
|
13853
13174
|
interface OrganizationProductCreateInput {
|
|
13854
13175
|
name: string;
|
|
13855
13176
|
region?: "eu";
|
|
@@ -13862,13 +13183,31 @@ interface OrganizationProductCreateOutput {
|
|
|
13862
13183
|
slug: string;
|
|
13863
13184
|
demoAt: (string | null);
|
|
13864
13185
|
status: string;
|
|
13865
|
-
logoUrl: (string | null);
|
|
13866
13186
|
blockedAt: (string | null);
|
|
13867
13187
|
createdAt: string;
|
|
13868
13188
|
archivedAt: (string | null);
|
|
13869
|
-
description: (string | null);
|
|
13870
13189
|
organizationId: string;
|
|
13871
13190
|
}
|
|
13191
|
+
interface OrganizationProductInviteInput {
|
|
13192
|
+
role?: ("admin" | "member" | "viewer");
|
|
13193
|
+
email: string;
|
|
13194
|
+
productId: string;
|
|
13195
|
+
}
|
|
13196
|
+
type OrganizationProductInviteOutput = ({
|
|
13197
|
+
id: string;
|
|
13198
|
+
role: string;
|
|
13199
|
+
email: (string | null);
|
|
13200
|
+
status: string;
|
|
13201
|
+
outcome: "invited";
|
|
13202
|
+
createdAt: string;
|
|
13203
|
+
expiresAt: string;
|
|
13204
|
+
} | {
|
|
13205
|
+
role: string;
|
|
13206
|
+
userId: string;
|
|
13207
|
+
outcome: "added";
|
|
13208
|
+
memberId: string;
|
|
13209
|
+
productId: string;
|
|
13210
|
+
});
|
|
13872
13211
|
interface OrganizationProductListInput {
|
|
13873
13212
|
}
|
|
13874
13213
|
interface OrganizationProductListOutput {
|
|
@@ -13879,47 +13218,24 @@ interface OrganizationProductListOutput {
|
|
|
13879
13218
|
slug: string;
|
|
13880
13219
|
demoAt: (string | null);
|
|
13881
13220
|
status: string;
|
|
13882
|
-
logoUrl: (string | null);
|
|
13883
13221
|
blockedAt: (string | null);
|
|
13884
13222
|
createdAt: string;
|
|
13885
13223
|
archivedAt: (string | null);
|
|
13886
|
-
description: (string | null);
|
|
13887
13224
|
organizationId: string;
|
|
13888
13225
|
}[];
|
|
13889
13226
|
}
|
|
13890
|
-
interface
|
|
13227
|
+
interface OrganizationProductListInvitationsInput {
|
|
13891
13228
|
productId: string;
|
|
13892
13229
|
}
|
|
13893
|
-
interface
|
|
13894
|
-
|
|
13895
|
-
role: string;
|
|
13896
|
-
email: (string | null);
|
|
13897
|
-
roleId: (string | null);
|
|
13898
|
-
userId: string;
|
|
13899
|
-
isCustom: boolean;
|
|
13900
|
-
roleName: (string | null);
|
|
13901
|
-
sourceRole: ({
|
|
13902
|
-
id: string;
|
|
13903
|
-
name: string;
|
|
13904
|
-
} | null);
|
|
13905
|
-
displayName: (string | null);
|
|
13906
|
-
}[];
|
|
13907
|
-
orgRoles: {
|
|
13230
|
+
interface OrganizationProductListInvitationsOutput {
|
|
13231
|
+
invitations: {
|
|
13908
13232
|
id: string;
|
|
13909
|
-
|
|
13910
|
-
description: (string | null);
|
|
13911
|
-
}[];
|
|
13912
|
-
canManage: boolean;
|
|
13913
|
-
inherited: {
|
|
13914
|
-
email: (string | null);
|
|
13915
|
-
userId: string;
|
|
13916
|
-
orgRole: ("owner" | "admin");
|
|
13917
|
-
displayName: (string | null);
|
|
13918
|
-
}[];
|
|
13919
|
-
candidates: {
|
|
13233
|
+
role: string;
|
|
13920
13234
|
email: (string | null);
|
|
13921
|
-
|
|
13922
|
-
|
|
13235
|
+
status: string;
|
|
13236
|
+
createdAt: string;
|
|
13237
|
+
expiresAt: string;
|
|
13238
|
+
invitedByDisplayName: string;
|
|
13923
13239
|
}[];
|
|
13924
13240
|
}
|
|
13925
13241
|
interface OrganizationProductListMembersInput {
|
|
@@ -13953,12 +13269,12 @@ interface OrganizationProductListRolesOutput {
|
|
|
13953
13269
|
productId: (string | null);
|
|
13954
13270
|
}[];
|
|
13955
13271
|
}
|
|
13956
|
-
interface
|
|
13957
|
-
userId: string;
|
|
13272
|
+
interface OrganizationProductRevokeInvitationInput {
|
|
13958
13273
|
productId: string;
|
|
13274
|
+
invitationId: string;
|
|
13959
13275
|
}
|
|
13960
|
-
interface
|
|
13961
|
-
|
|
13276
|
+
interface OrganizationProductRevokeInvitationOutput {
|
|
13277
|
+
message: string;
|
|
13962
13278
|
}
|
|
13963
13279
|
interface OrganizationProductSelectInput {
|
|
13964
13280
|
productId: string;
|
|
@@ -13968,21 +13284,9 @@ interface OrganizationProductSelectOutput {
|
|
|
13968
13284
|
name: string;
|
|
13969
13285
|
slug: string;
|
|
13970
13286
|
}
|
|
13971
|
-
interface OrganizationProductSetAccessInput {
|
|
13972
|
-
role?: ("admin" | "member" | "viewer");
|
|
13973
|
-
roleId?: string;
|
|
13974
|
-
userId: string;
|
|
13975
|
-
productId: string;
|
|
13976
|
-
}
|
|
13977
|
-
interface OrganizationProductSetAccessOutput {
|
|
13978
|
-
role: string;
|
|
13979
|
-
userId: string;
|
|
13980
|
-
productId: string;
|
|
13981
|
-
}
|
|
13982
13287
|
interface OrganizationProductUpdateInput {
|
|
13983
|
-
name
|
|
13288
|
+
name: string;
|
|
13984
13289
|
productId: string;
|
|
13985
|
-
description?: (string | null);
|
|
13986
13290
|
}
|
|
13987
13291
|
interface OrganizationProductUpdateOutput {
|
|
13988
13292
|
id: string;
|
|
@@ -13991,11 +13295,9 @@ interface OrganizationProductUpdateOutput {
|
|
|
13991
13295
|
slug: string;
|
|
13992
13296
|
demoAt: (string | null);
|
|
13993
13297
|
status: string;
|
|
13994
|
-
logoUrl: (string | null);
|
|
13995
13298
|
blockedAt: (string | null);
|
|
13996
13299
|
createdAt: string;
|
|
13997
13300
|
archivedAt: (string | null);
|
|
13998
|
-
description: (string | null);
|
|
13999
13301
|
organizationId: string;
|
|
14000
13302
|
}
|
|
14001
13303
|
interface OrganizationPublicKeysCreateInput {
|
|
@@ -14180,272 +13482,6 @@ interface OrganizationSelectOutput {
|
|
|
14180
13482
|
};
|
|
14181
13483
|
activeProductId: (string | null);
|
|
14182
13484
|
}
|
|
14183
|
-
interface OrganizationSupportThreadCreateInput {
|
|
14184
|
-
body: string;
|
|
14185
|
-
title: string;
|
|
14186
|
-
}
|
|
14187
|
-
interface OrganizationSupportThreadCreateOutput {
|
|
14188
|
-
id: string;
|
|
14189
|
-
title: string;
|
|
14190
|
-
status: string;
|
|
14191
|
-
category: ("open" | "pending" | "resolved" | "closed");
|
|
14192
|
-
messages: {
|
|
14193
|
-
id: string;
|
|
14194
|
-
body: string;
|
|
14195
|
-
author: {
|
|
14196
|
-
kind: ("user" | "agent");
|
|
14197
|
-
name: string;
|
|
14198
|
-
};
|
|
14199
|
-
createdAt: string;
|
|
14200
|
-
}[];
|
|
14201
|
-
createdAt: string;
|
|
14202
|
-
lastMessageAt: string;
|
|
14203
|
-
lastMessagePreview: (string | null);
|
|
14204
|
-
}
|
|
14205
|
-
interface OrganizationSupportThreadGetInput {
|
|
14206
|
-
id: string;
|
|
14207
|
-
}
|
|
14208
|
-
interface OrganizationSupportThreadGetOutput {
|
|
14209
|
-
id: string;
|
|
14210
|
-
title: string;
|
|
14211
|
-
status: string;
|
|
14212
|
-
category: ("open" | "pending" | "resolved" | "closed");
|
|
14213
|
-
messages: {
|
|
14214
|
-
id: string;
|
|
14215
|
-
body: string;
|
|
14216
|
-
author: {
|
|
14217
|
-
kind: ("user" | "agent");
|
|
14218
|
-
name: string;
|
|
14219
|
-
};
|
|
14220
|
-
createdAt: string;
|
|
14221
|
-
}[];
|
|
14222
|
-
createdAt: string;
|
|
14223
|
-
lastMessageAt: string;
|
|
14224
|
-
lastMessagePreview: (string | null);
|
|
14225
|
-
}
|
|
14226
|
-
interface OrganizationSupportThreadReplyInput {
|
|
14227
|
-
id: string;
|
|
14228
|
-
body: string;
|
|
14229
|
-
}
|
|
14230
|
-
interface OrganizationSupportThreadReplyOutput {
|
|
14231
|
-
id: string;
|
|
14232
|
-
title: string;
|
|
14233
|
-
status: string;
|
|
14234
|
-
category: ("open" | "pending" | "resolved" | "closed");
|
|
14235
|
-
messages: {
|
|
14236
|
-
id: string;
|
|
14237
|
-
body: string;
|
|
14238
|
-
author: {
|
|
14239
|
-
kind: ("user" | "agent");
|
|
14240
|
-
name: string;
|
|
14241
|
-
};
|
|
14242
|
-
createdAt: string;
|
|
14243
|
-
}[];
|
|
14244
|
-
createdAt: string;
|
|
14245
|
-
lastMessageAt: string;
|
|
14246
|
-
lastMessagePreview: (string | null);
|
|
14247
|
-
}
|
|
14248
|
-
interface OrganizationSupportThreadsListInput {
|
|
14249
|
-
}
|
|
14250
|
-
interface OrganizationSupportThreadsListOutput {
|
|
14251
|
-
threads: {
|
|
14252
|
-
id: string;
|
|
14253
|
-
title: string;
|
|
14254
|
-
status: string;
|
|
14255
|
-
category: ("open" | "pending" | "resolved" | "closed");
|
|
14256
|
-
createdAt: string;
|
|
14257
|
-
lastMessageAt: string;
|
|
14258
|
-
lastMessagePreview: (string | null);
|
|
14259
|
-
}[];
|
|
14260
|
-
}
|
|
14261
|
-
interface PlaygroundAnalyticsOverviewInput {
|
|
14262
|
-
/**
|
|
14263
|
-
* Max records per entity in recent[]; omit for the endpoint default
|
|
14264
|
-
*/
|
|
14265
|
-
limit?: number;
|
|
14266
|
-
}
|
|
14267
|
-
interface PlaygroundAnalyticsOverviewOutput {
|
|
14268
|
-
ok: boolean;
|
|
14269
|
-
minted: boolean;
|
|
14270
|
-
overview?: unknown;
|
|
14271
|
-
http_status: number;
|
|
14272
|
-
}
|
|
14273
|
-
interface PlaygroundBillingEntitlementsInput {
|
|
14274
|
-
}
|
|
14275
|
-
interface PlaygroundBillingEntitlementsOutput {
|
|
14276
|
-
ok: boolean;
|
|
14277
|
-
minted: boolean;
|
|
14278
|
-
http_status: number;
|
|
14279
|
-
entitlements?: unknown;
|
|
14280
|
-
}
|
|
14281
|
-
interface PlaygroundBillingRecordUsageInput {
|
|
14282
|
-
/**
|
|
14283
|
-
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
14284
|
-
*/
|
|
14285
|
-
value?: number;
|
|
14286
|
-
}
|
|
14287
|
-
interface PlaygroundBillingRecordUsageOutput {
|
|
14288
|
-
minted: boolean;
|
|
14289
|
-
accepted: (number | null);
|
|
14290
|
-
recorded: boolean;
|
|
14291
|
-
duplicates: (number | null);
|
|
14292
|
-
http_status: number;
|
|
14293
|
-
}
|
|
14294
|
-
interface PlaygroundClickupCreateTaskInput {
|
|
14295
|
-
/**
|
|
14296
|
-
* Task title; defaults to a fixture label
|
|
14297
|
-
*/
|
|
14298
|
-
name?: string;
|
|
14299
|
-
/**
|
|
14300
|
-
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
14301
|
-
*/
|
|
14302
|
-
listId?: string;
|
|
14303
|
-
}
|
|
14304
|
-
interface PlaygroundClickupCreateTaskOutput {
|
|
14305
|
-
minted: boolean;
|
|
14306
|
-
task_id: (string | null);
|
|
14307
|
-
list_status: number;
|
|
14308
|
-
vend_status: number;
|
|
14309
|
-
clickup_status: number;
|
|
14310
|
-
installation_count: number;
|
|
14311
|
-
}
|
|
14312
|
-
interface PlaygroundClickupGetLastWebhookInput {
|
|
14313
|
-
}
|
|
14314
|
-
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
14315
|
-
payload: string;
|
|
14316
|
-
event_id: string;
|
|
14317
|
-
provider: string;
|
|
14318
|
-
verified: boolean;
|
|
14319
|
-
product_id: string;
|
|
14320
|
-
occurred_at: string;
|
|
14321
|
-
connector_id: string;
|
|
14322
|
-
clickup_event: (string | null);
|
|
14323
|
-
receipt_count: number;
|
|
14324
|
-
} | {
|
|
14325
|
-
found: false;
|
|
14326
|
-
});
|
|
14327
|
-
interface PlaygroundClickupGetOverviewInput {
|
|
14328
|
-
}
|
|
14329
|
-
interface PlaygroundClickupGetOverviewOutput {
|
|
14330
|
-
team: ({
|
|
14331
|
-
teamId: string;
|
|
14332
|
-
teamName: string;
|
|
14333
|
-
} | null);
|
|
14334
|
-
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
14335
|
-
tasks: {
|
|
14336
|
-
id: string;
|
|
14337
|
-
name: string;
|
|
14338
|
-
status: (string | null);
|
|
14339
|
-
}[];
|
|
14340
|
-
minted: boolean;
|
|
14341
|
-
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
14342
|
-
list_status: number;
|
|
14343
|
-
vend_status: number;
|
|
14344
|
-
lists_status: number;
|
|
14345
|
-
tasks_status: number;
|
|
14346
|
-
spaces_status: number;
|
|
14347
|
-
folders_status: number;
|
|
14348
|
-
installation_count: number;
|
|
14349
|
-
}
|
|
14350
|
-
interface PlaygroundClickupGetOverviewOutputItems {
|
|
14351
|
-
id: string;
|
|
14352
|
-
name: string;
|
|
14353
|
-
}
|
|
14354
|
-
interface PlaygroundGdriveGetLastChangeInput {
|
|
14355
|
-
}
|
|
14356
|
-
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
14357
|
-
file_id: string;
|
|
14358
|
-
removed: boolean;
|
|
14359
|
-
file_name: (string | null);
|
|
14360
|
-
mime_type: (string | null);
|
|
14361
|
-
product_id: string;
|
|
14362
|
-
occurred_at: string;
|
|
14363
|
-
connector_id: string;
|
|
14364
|
-
resource_state: string;
|
|
14365
|
-
} | {
|
|
14366
|
-
found: false;
|
|
14367
|
-
});
|
|
14368
|
-
interface PlaygroundGdriveReadFileInput {
|
|
14369
|
-
/**
|
|
14370
|
-
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
14371
|
-
*/
|
|
14372
|
-
fileId?: string;
|
|
14373
|
-
}
|
|
14374
|
-
interface PlaygroundGdriveReadFileOutput {
|
|
14375
|
-
minted: boolean;
|
|
14376
|
-
file_id: (string | null);
|
|
14377
|
-
file_name: (string | null);
|
|
14378
|
-
mime_type: (string | null);
|
|
14379
|
-
file_count: number;
|
|
14380
|
-
get_status: number;
|
|
14381
|
-
list_status: number;
|
|
14382
|
-
vend_status: number;
|
|
14383
|
-
content_bytes: (number | null);
|
|
14384
|
-
}
|
|
14385
|
-
interface PlaygroundGoogleadsReadCustomerInput {
|
|
14386
|
-
}
|
|
14387
|
-
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
14388
|
-
minted: boolean;
|
|
14389
|
-
vended: boolean;
|
|
14390
|
-
customer_id: (string | null);
|
|
14391
|
-
vend_status: number;
|
|
14392
|
-
result_count: number;
|
|
14393
|
-
search_status: number;
|
|
14394
|
-
login_customer_id: (string | null);
|
|
14395
|
-
}
|
|
14396
|
-
interface PlaygroundLifecycleGetStateInput {
|
|
14397
|
-
}
|
|
14398
|
-
interface PlaygroundLifecycleGetStateOutput {
|
|
14399
|
-
blocked: boolean;
|
|
14400
|
-
archived: boolean;
|
|
14401
|
-
productId: string;
|
|
14402
|
-
lastBlockTransition: ({
|
|
14403
|
-
eventId: string;
|
|
14404
|
-
eventName: string;
|
|
14405
|
-
productId: string;
|
|
14406
|
-
occurredAt: string;
|
|
14407
|
-
recordedAt: string;
|
|
14408
|
-
receiptCount: number;
|
|
14409
|
-
organizationId: string;
|
|
14410
|
-
cascadedFromOrg: boolean;
|
|
14411
|
-
} | null);
|
|
14412
|
-
lastArchiveTransition: ({
|
|
14413
|
-
eventId: string;
|
|
14414
|
-
eventName: string;
|
|
14415
|
-
productId: string;
|
|
14416
|
-
occurredAt: string;
|
|
14417
|
-
recordedAt: string;
|
|
14418
|
-
receiptCount: number;
|
|
14419
|
-
organizationId: string;
|
|
14420
|
-
cascadedFromOrg: boolean;
|
|
14421
|
-
} | null);
|
|
14422
|
-
}
|
|
14423
|
-
interface PlaygroundLifecycleListEventsInput {
|
|
14424
|
-
}
|
|
14425
|
-
type PlaygroundLifecycleListEventsOutput = {
|
|
14426
|
-
eventId: string;
|
|
14427
|
-
eventName: string;
|
|
14428
|
-
productId: string;
|
|
14429
|
-
occurredAt: string;
|
|
14430
|
-
recordedAt: string;
|
|
14431
|
-
receiptCount: number;
|
|
14432
|
-
organizationId: string;
|
|
14433
|
-
cascadedFromOrg: boolean;
|
|
14434
|
-
}[];
|
|
14435
|
-
interface PlaygroundWebhookGetLastInput {
|
|
14436
|
-
}
|
|
14437
|
-
type PlaygroundWebhookGetLastOutput = ({
|
|
14438
|
-
payload?: unknown;
|
|
14439
|
-
event_id: string;
|
|
14440
|
-
provider: string;
|
|
14441
|
-
verified: boolean;
|
|
14442
|
-
product_id: string;
|
|
14443
|
-
occurred_at: string;
|
|
14444
|
-
connector_id: string;
|
|
14445
|
-
delivery_count: number;
|
|
14446
|
-
} | {
|
|
14447
|
-
found: false;
|
|
14448
|
-
});
|
|
14449
13485
|
interface RealtimeArchiveExportInput {
|
|
14450
13486
|
/**
|
|
14451
13487
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -22191,6 +21227,9 @@ interface GeneratedClient {
|
|
|
22191
21227
|
restore: {
|
|
22192
21228
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
22193
21229
|
};
|
|
21230
|
+
usage: {
|
|
21231
|
+
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
21232
|
+
};
|
|
22194
21233
|
};
|
|
22195
21234
|
consent: {
|
|
22196
21235
|
'config-cookie-domain': {
|
|
@@ -22501,29 +21540,6 @@ interface GeneratedClient {
|
|
|
22501
21540
|
list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
|
|
22502
21541
|
};
|
|
22503
21542
|
};
|
|
22504
|
-
observe: {
|
|
22505
|
-
artifacts: {
|
|
22506
|
-
delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
|
|
22507
|
-
list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
|
|
22508
|
-
resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
|
|
22509
|
-
};
|
|
22510
|
-
issues: {
|
|
22511
|
-
archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
|
|
22512
|
-
assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
|
|
22513
|
-
get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
|
|
22514
|
-
list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
|
|
22515
|
-
resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
|
|
22516
|
-
};
|
|
22517
|
-
keys: {
|
|
22518
|
-
create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
|
|
22519
|
-
list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
|
|
22520
|
-
revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
|
|
22521
|
-
};
|
|
22522
|
-
logs: {
|
|
22523
|
-
search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
|
|
22524
|
-
tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
|
|
22525
|
-
};
|
|
22526
|
-
};
|
|
22527
21543
|
organization: {
|
|
22528
21544
|
create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
|
|
22529
21545
|
list(input: OrganizationListInput): Promise<OrganizationListOutput>;
|
|
@@ -22605,14 +21621,15 @@ interface GeneratedClient {
|
|
|
22605
21621
|
catalog(input: OrganizationPermissionCatalogInput): Promise<OrganizationPermissionCatalogOutput>;
|
|
22606
21622
|
};
|
|
22607
21623
|
product: {
|
|
21624
|
+
'accept-invitation'(input: OrganizationProductAcceptInvitationInput): Promise<OrganizationProductAcceptInvitationOutput>;
|
|
22608
21625
|
create(input: OrganizationProductCreateInput): Promise<OrganizationProductCreateOutput>;
|
|
21626
|
+
invite(input: OrganizationProductInviteInput): Promise<OrganizationProductInviteOutput>;
|
|
22609
21627
|
list(input: OrganizationProductListInput): Promise<OrganizationProductListOutput>;
|
|
22610
|
-
'list-
|
|
21628
|
+
'list-invitations'(input: OrganizationProductListInvitationsInput): Promise<OrganizationProductListInvitationsOutput>;
|
|
22611
21629
|
'list-members'(input: OrganizationProductListMembersInput): Promise<OrganizationProductListMembersOutput>;
|
|
22612
21630
|
'list-roles'(input: OrganizationProductListRolesInput): Promise<OrganizationProductListRolesOutput>;
|
|
22613
|
-
'revoke-
|
|
21631
|
+
'revoke-invitation'(input: OrganizationProductRevokeInvitationInput): Promise<OrganizationProductRevokeInvitationOutput>;
|
|
22614
21632
|
select(input: OrganizationProductSelectInput): Promise<OrganizationProductSelectOutput>;
|
|
22615
|
-
'set-access'(input: OrganizationProductSetAccessInput): Promise<OrganizationProductSetAccessOutput>;
|
|
22616
21633
|
update(input: OrganizationProductUpdateInput): Promise<OrganizationProductUpdateOutput>;
|
|
22617
21634
|
};
|
|
22618
21635
|
'public-keys': {
|
|
@@ -22634,42 +21651,6 @@ interface GeneratedClient {
|
|
|
22634
21651
|
'security-mfa': {
|
|
22635
21652
|
enable(input: OrganizationSecurityMfaEnableInput): Promise<OrganizationSecurityMfaEnableOutput>;
|
|
22636
21653
|
};
|
|
22637
|
-
'support-thread': {
|
|
22638
|
-
create(input: OrganizationSupportThreadCreateInput): Promise<OrganizationSupportThreadCreateOutput>;
|
|
22639
|
-
get(input: OrganizationSupportThreadGetInput): Promise<OrganizationSupportThreadGetOutput>;
|
|
22640
|
-
reply(input: OrganizationSupportThreadReplyInput): Promise<OrganizationSupportThreadReplyOutput>;
|
|
22641
|
-
};
|
|
22642
|
-
'support-threads': {
|
|
22643
|
-
list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
|
|
22644
|
-
};
|
|
22645
|
-
};
|
|
22646
|
-
playground: {
|
|
22647
|
-
analytics: {
|
|
22648
|
-
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
22649
|
-
};
|
|
22650
|
-
billing: {
|
|
22651
|
-
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
22652
|
-
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
22653
|
-
};
|
|
22654
|
-
clickup: {
|
|
22655
|
-
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
22656
|
-
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
22657
|
-
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
22658
|
-
};
|
|
22659
|
-
gdrive: {
|
|
22660
|
-
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
22661
|
-
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
22662
|
-
};
|
|
22663
|
-
googleads: {
|
|
22664
|
-
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
22665
|
-
};
|
|
22666
|
-
lifecycle: {
|
|
22667
|
-
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
22668
|
-
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
22669
|
-
};
|
|
22670
|
-
webhook: {
|
|
22671
|
-
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
22672
|
-
};
|
|
22673
21654
|
};
|
|
22674
21655
|
realtime: {
|
|
22675
21656
|
archive: {
|
|
@@ -22963,4 +21944,4 @@ interface GeneratedClient {
|
|
|
22963
21944
|
};
|
|
22964
21945
|
}
|
|
22965
21946
|
|
|
22966
|
-
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertEventsListInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigThemeUpsertOutput as aA, ConsentDashboardConfigGetInput as aB, ConsentDashboardConfigGetOutput as aC, ConsentDashboardDecisionsListInput as aD, ConsentDashboardDecisionsListOutput as aE, ConsentDashboardEmbedSnippetGetInput as aF, ConsentDashboardEmbedSnippetGetOutput as aG, ConsentDashboardStatsGetInput as aH, ConsentDashboardStatsGetOutput as aI, ConsentEmbedGetInput as aJ, ConsentEmbedGetOutput as aK, ConsentProvidersCreateInput as aL, ConsentProvidersCreateOutput as aM, ConsentProvidersDeleteInput as aN, ConsentProvidersDeleteOutput as aO, ConsentProvidersListInput as aP, ConsentProvidersListOutput as aQ, ConsentProvidersUpdateInput as aR, ConsentProvidersUpdateOutput as aS, ConsentRecordsExportInput as aT, ConsentRecordsExportOutput as aU, ConsentStatsGetInput as aV, ConsentStatsGetOutput as aW, DeploymentAlertCreateInput as aX, DeploymentAlertCreateOutput as aY, DeploymentAlertDeleteInput as aZ, DeploymentAlertDeleteOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, ConsentConfigCookieDomainUpsertInput as at, ConsentConfigCookieDomainUpsertOutput as au, ConsentConfigCustomizationUpsertInput as av, ConsentConfigCustomizationUpsertOutput as aw, ConsentConfigFloatingIconUpsertInput as ax, ConsentConfigFloatingIconUpsertOutput as ay, ConsentConfigThemeUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainListByServiceInput as b$, DeploymentAlertEventsListOutput as b0, DeploymentAlertListInput as b1, DeploymentAlertListOutput as b2, DeploymentAlertUpdateInput as b3, DeploymentAlertUpdateOutput as b4, DeploymentAnalyticsQueryInput as b5, DeploymentAnalyticsQueryOutput as b6, DeploymentAuditListInput as b7, DeploymentAuditListOutput as b8, DeploymentBuildGetInput as b9, DeploymentCloudSqlInstanceBackupOutput as bA, DeploymentCloudSqlInstanceCreateInput as bB, DeploymentCloudSqlInstanceCreateOutput as bC, DeploymentCloudSqlInstanceDeleteInput as bD, DeploymentCloudSqlInstanceDeleteOutput as bE, DeploymentCloudSqlInstanceGetInput as bF, DeploymentCloudSqlInstanceGetOutput as bG, DeploymentCloudSqlInstanceListInput as bH, DeploymentCloudSqlInstanceListOutput as bI, DeploymentCloudSqlInstanceResizeInput as bJ, DeploymentCloudSqlInstanceResizeOutput as bK, DeploymentCloudSqlInstanceRestoreInput as bL, DeploymentCloudSqlInstanceRestoreOutput as bM, DeploymentCloudSqlLogsInput as bN, DeploymentCloudSqlLogsOutput as bO, DeploymentDeploymentCancelInput as bP, DeploymentDeploymentCancelOutput as bQ, DeploymentDeploymentGetInput as bR, DeploymentDeploymentGetOutput as bS, DeploymentDeploymentListInput as bT, DeploymentDeploymentListOutput as bU, DeploymentDomainAddInput as bV, DeploymentDomainAddOutput as bW, DeploymentDomainAllowedListInput as bX, DeploymentDomainAllowedListOutput as bY, DeploymentDomainGetInput as bZ, DeploymentDomainGetOutput as b_, DeploymentBuildGetOutput as ba, DeploymentBuildListInput as bb, DeploymentBuildListOutput as bc, DeploymentBuildLogsInput as bd, DeploymentBuildLogsOutput as be, DeploymentCanvasGetInput as bf, DeploymentCanvasGetOutput as bg, DeploymentCanvasMoveNodeInput as bh, DeploymentCanvasMoveNodeOutput as bi, DeploymentCloudSqlBackfillLogFlagsInput as bj, DeploymentCloudSqlBackfillLogFlagsOutput as bk, DeploymentCloudSqlDatabaseAttachInput as bl, DeploymentCloudSqlDatabaseAttachOutput as bm, DeploymentCloudSqlDatabaseCreateInput as bn, DeploymentCloudSqlDatabaseCreateOutput as bo, DeploymentCloudSqlDatabaseDeleteInput as bp, DeploymentCloudSqlDatabaseDeleteOutput as bq, DeploymentCloudSqlDatabaseDetachInput as br, DeploymentCloudSqlDatabaseDetachOutput as bs, DeploymentCloudSqlDatabaseGetInput as bt, DeploymentCloudSqlDatabaseGetOutput as bu, DeploymentCloudSqlDatabaseListInput as bv, DeploymentCloudSqlDatabaseListOutput as bw, DeploymentCloudSqlInstanceBackupListInput as bx, DeploymentCloudSqlInstanceBackupListOutput as by, DeploymentCloudSqlInstanceBackupInput as bz, BrainBackupRestoreInput as c, DeploymentMetricsGetInput as c$, DeploymentDomainListByServiceOutput as c0, DeploymentDomainListInput as c1, DeploymentDomainListOutput as c2, DeploymentDomainRedirectWwwInput as c3, DeploymentDomainRedirectWwwOutput as c4, DeploymentDomainRemoveInput as c5, DeploymentDomainRemoveOutput as c6, DeploymentDomainRoutesAddInput as c7, DeploymentDomainRoutesAddOutput as c8, DeploymentDomainRoutesListInput as c9, DeploymentManagedServiceBackupListOutput as cA, DeploymentManagedServiceBackupInput as cB, DeploymentManagedServiceBackupOutput as cC, DeploymentManagedServiceConnectInfoInput as cD, DeploymentManagedServiceConnectInfoOutput as cE, DeploymentManagedServiceDeleteInput as cF, DeploymentManagedServiceDeleteOutput as cG, DeploymentManagedServiceGetInput as cH, DeploymentManagedServiceGetOutput as cI, DeploymentManagedServiceListInput as cJ, DeploymentManagedServiceListOutput as cK, DeploymentManagedServiceLogsInput as cL, DeploymentManagedServiceLogsOutput as cM, DeploymentManagedServiceProvisionInput as cN, DeploymentManagedServiceProvisionOutput as cO, DeploymentManagedServiceReconcileInput as cP, DeploymentManagedServiceReconcileOutput as cQ, DeploymentManagedServiceResizeInput as cR, DeploymentManagedServiceResizeOutput as cS, DeploymentManagedServiceRestoreInput as cT, DeploymentManagedServiceRestoreOutput as cU, DeploymentManagedServiceStartInput as cV, DeploymentManagedServiceStartOutput as cW, DeploymentManagedServiceStopInput as cX, DeploymentManagedServiceStopOutput as cY, DeploymentManagedServiceTypesInput as cZ, DeploymentManagedServiceTypesOutput as c_, DeploymentDomainRoutesListOutput as ca, DeploymentDomainRoutesRemoveInput as cb, DeploymentDomainRoutesRemoveOutput as cc, DeploymentDomainRoutesUpdateInput as cd, DeploymentDomainRoutesUpdateOutput as ce, DeploymentDomainVerifyInput as cf, DeploymentDomainVerifyOutput as cg, DeploymentEnvironmentCreateInput as ch, DeploymentEnvironmentCreateOutput as ci, DeploymentEnvironmentDeleteInput as cj, DeploymentEnvironmentDeleteOutput as ck, DeploymentEnvironmentForkInput as cl, DeploymentEnvironmentForkOutput as cm, DeploymentEnvironmentGetInput as cn, DeploymentEnvironmentGetOutput as co, DeploymentEnvironmentListInput as cp, DeploymentEnvironmentListOutput as cq, DeploymentEnvironmentReconcileInput as cr, DeploymentEnvironmentReconcileOutput as cs, DeploymentEnvironmentUpdateInput as ct, DeploymentEnvironmentUpdateOutput as cu, DeploymentEventsListByEnvironmentInput as cv, DeploymentEventsListByEnvironmentOutput as cw, DeploymentEventsListByServiceInput as cx, DeploymentEventsListByServiceOutput as cy, DeploymentManagedServiceBackupListInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetProductOutput as d$, DeploymentMetricsGetOutput as d0, DeploymentPreviewEnvironmentCreateInput as d1, DeploymentPreviewEnvironmentCreateOutput as d2, DeploymentPreviewEnvironmentDeleteInput as d3, DeploymentPreviewEnvironmentDeleteOutput as d4, DeploymentPreviewEnvironmentListInput as d5, DeploymentPreviewEnvironmentListOutput as d6, DeploymentPreviewPolicyGetInput as d7, DeploymentPreviewPolicyGetOutput as d8, DeploymentPreviewPolicySetInput as d9, DeploymentSshCommandInput as dA, DeploymentSshCommandOutput as dB, DeploymentSshKeyDeleteInput as dC, DeploymentSshKeyDeleteOutput as dD, DeploymentSshKeyListInput as dE, DeploymentSshKeyListOutput as dF, DeploymentSshKeyRegisterInput as dG, DeploymentSshKeyRegisterOutput as dH, DeploymentSuspensionGetInput as dI, DeploymentSuspensionGetOutput as dJ, DeploymentVariableListEnvInput as dK, DeploymentVariableListEnvOutput as dL, DeploymentVariableListProductInput as dM, DeploymentVariableListProductOutput as dN, DeploymentVariableListInput as dO, DeploymentVariableListOutput as dP, DeploymentVariableSetEnvInput as dQ, DeploymentVariableSetEnvOutput as dR, DeploymentVariableSetInput as dS, DeploymentVariableSetOutput as dT, DeploymentVariableSetProductInput as dU, DeploymentVariableSetProductOutput as dV, DeploymentVariableUnsetEnvInput as dW, DeploymentVariableUnsetEnvOutput as dX, DeploymentVariableUnsetInput as dY, DeploymentVariableUnsetOutput as dZ, DeploymentVariableUnsetProductInput as d_, DeploymentPreviewPolicySetOutput as da, DeploymentServiceCreateInput as db, DeploymentServiceCreateOutput as dc, DeploymentServiceDeleteInput as dd, DeploymentServiceDeleteOutput as de, DeploymentServiceExecInput as df, DeploymentServiceExecOutput as dg, DeploymentServiceGetInput as dh, DeploymentServiceGetOutput as di, DeploymentServiceListInput as dj, DeploymentServiceListOutput as dk, DeploymentServiceLogsInput as dl, DeploymentServiceLogsOutput as dm, DeploymentServiceRedeployInput as dn, DeploymentServiceRedeployOutput as dp, DeploymentServiceRestartInput as dq, DeploymentServiceRestartOutput as dr, DeploymentServiceRollbackInput as ds, DeploymentServiceRollbackOutput as dt, DeploymentServiceScaleInput as du, DeploymentServiceScaleOutput as dv, DeploymentServiceUpdateInput as dw, DeploymentServiceUpdateOutput as dx, DeploymentServiceWakeInput as dy, DeploymentServiceWakeOutput as dz, BrainBackupStatusInput as e, MailDomainCreateOutput as e$, DeploymentVcsBranchListInput as e0, DeploymentVcsBranchListOutput as e1, DeploymentVcsConnectionListInput as e2, DeploymentVcsConnectionListOutput as e3, DeploymentVcsRepoListInput as e4, DeploymentVcsRepoListOutput as e5, DeploymentVolumeCreateInput as e6, DeploymentVolumeCreateOutput as e7, DeploymentVolumeDeleteInput as e8, DeploymentVolumeDeleteOutput as e9, MailBroadcastCreateInput as eA, MailBroadcastCreateOutput as eB, MailBroadcastDeleteInput as eC, MailBroadcastDeleteOutput as eD, MailBroadcastGetInput as eE, MailBroadcastGetOutput as eF, MailBroadcastListInput as eG, MailBroadcastListOutput as eH, MailBroadcastQueueInput as eI, MailBroadcastQueueOutput as eJ, MailBroadcastStatsInput as eK, MailBroadcastStatsOutput as eL, MailBroadcastUpdateInput as eM, MailBroadcastUpdateOutput as eN, MailContactCreateInput as eO, MailContactCreateOutput as eP, MailContactDeleteInput as eQ, MailContactDeleteOutput as eR, MailContactGetInput as eS, MailContactGetOutput as eT, MailContactListInput as eU, MailContactListOutput as eV, MailContactUpdateInput as eW, MailContactUpdateOutput as eX, MailDomainAllowedListInput as eY, MailDomainAllowedListOutput as eZ, MailDomainCreateInput as e_, DeploymentVolumeDetachInput as ea, DeploymentVolumeDetachOutput as eb, DeploymentVolumeGetInput as ec, DeploymentVolumeGetOutput as ed, DeploymentVolumeListInput as ee, DeploymentVolumeListOutput as ef, DeploymentVolumeResizeInput as eg, DeploymentVolumeResizeOutput as eh, MailApikeyCreateInput as ei, MailApikeyCreateOutput as ej, MailApikeyDeleteInput as ek, MailApikeyDeleteOutput as el, MailApikeyListInput as em, MailApikeyListOutput as en, MailAudienceCreateInput as eo, MailAudienceCreateOutput as ep, MailAudienceDeleteInput as eq, MailAudienceDeleteOutput as er, MailAudienceGetInput as es, MailAudienceGetOutput as et, MailAudienceListInput as eu, MailAudienceListOutput as ev, MailAudienceUpdateInput as ew, MailAudienceUpdateOutput as ex, MailBroadcastCancelInput as ey, MailBroadcastCancelOutput as ez, BrainBackupStatusOutput as f, ObserveIssuesArchiveOutput as f$, MailDomainDeleteInput as f0, MailDomainDeleteOutput as f1, MailDomainGetInput as f2, MailDomainGetOutput as f3, MailDomainListInput as f4, MailDomainListOutput as f5, MailDomainUpdateInput as f6, MailDomainUpdateOutput as f7, MailDomainVerifyInput as f8, MailDomainVerifyOutput as f9, MailTemplateListOutput as fA, MailTemplatePublishInput as fB, MailTemplatePublishOutput as fC, MailTemplateUpdateInput as fD, MailTemplateUpdateOutput as fE, MailUsageGetInput as fF, MailUsageGetOutput as fG, MailWebhookCreateInput as fH, MailWebhookCreateOutput as fI, MailWebhookDeleteInput as fJ, MailWebhookDeleteOutput as fK, MailWebhookDeliveriesListInput as fL, MailWebhookDeliveriesListOutput as fM, MailWebhookGetInput as fN, MailWebhookGetOutput as fO, MailWebhookListInput as fP, MailWebhookListOutput as fQ, MailWebhookUpdateInput as fR, MailWebhookUpdateOutput as fS, MailEmailGetOutput as fT, ObserveArtifactsDeleteInput as fU, ObserveArtifactsDeleteOutput as fV, ObserveArtifactsListInput as fW, ObserveArtifactsListOutput as fX, ObserveArtifactsResolveInput as fY, ObserveArtifactsResolveOutput as fZ, ObserveIssuesArchiveInput as f_, MailEmailCancelInput as fa, MailEmailCancelOutput as fb, MailEmailGetInput as fc, MailEmailSendBatchInput as fd, MailEmailSendBatchOutput as fe, MailEmailSendInput as ff, MailEmailSendOutput as fg, MailEmailUpdateInput as fh, MailEmailUpdateOutput as fi, MailReputationGetInput as fj, MailReputationGetOutput as fk, MailStatsGetInput as fl, MailStatsGetOutput as fm, MailSuppressionAddInput as fn, MailSuppressionAddOutput as fo, MailSuppressionListInput as fp, MailSuppressionListOutput as fq, MailSuppressionRemoveInput as fr, MailSuppressionRemoveOutput as fs, MailTemplateCreateInput as ft, MailTemplateCreateOutput as fu, MailTemplateDeleteInput as fv, MailTemplateDeleteOutput as fw, MailTemplateGetInput as fx, MailTemplateGetOutput as fy, MailTemplateListInput as fz, BrainBackupsListInput as g, OrganizationDomainsAddOutput as g$, ObserveIssuesAssignInput as g0, ObserveIssuesAssignOutput as g1, ObserveIssuesGetInput as g2, ObserveIssuesGetOutput as g3, ObserveIssuesListInput as g4, ObserveIssuesListOutput as g5, ObserveIssuesResolveInput as g6, ObserveIssuesResolveOutput as g7, ObserveKeysCreateInput as g8, ObserveKeysCreateOutput as g9, OrganizationConnectorsApproveRequestInput as gA, OrganizationConnectorsApproveRequestOutput as gB, OrganizationConnectorsAttachInput as gC, OrganizationConnectorsAttachOutput as gD, OrganizationConnectorsDeleteInput as gE, OrganizationConnectorsDeleteOutput as gF, OrganizationConnectorsDenyRequestInput as gG, OrganizationConnectorsDenyRequestOutput as gH, OrganizationConnectorsDetachInput as gI, OrganizationConnectorsDetachOutput as gJ, OrganizationConnectorsListAttachmentsInput as gK, OrganizationConnectorsListAttachmentsOutput as gL, OrganizationConnectorsListAvailableInput as gM, OrganizationConnectorsListAvailableOutput as gN, OrganizationConnectorsListOrgInput as gO, OrganizationConnectorsListOrgOutput as gP, OrganizationConnectorsListInput as gQ, OrganizationConnectorsListOutput as gR, OrganizationConnectorsListRequestsInput as gS, OrganizationConnectorsListRequestsOutput as gT, OrganizationConnectorsRemoveInput as gU, OrganizationConnectorsRemoveOutput as gV, OrganizationConnectorsRequestInput as gW, OrganizationConnectorsRequestOutput as gX, OrganizationCreateInput as gY, OrganizationCreateOutput as gZ, OrganizationDomainsAddInput as g_, ObserveKeysListInput as ga, ObserveKeysListOutput as gb, ObserveKeysRevokeInput as gc, ObserveKeysRevokeOutput as gd, ObserveLogsSearchInput as ge, ObserveLogsSearchOutput as gf, ObserveLogsTailInput as gg, ObserveLogsTailOutput as gh, OrganizationAuthMeInput as gi, OrganizationAuthMeOutput as gj, OrganizationBillingBudgetsGetInput as gk, OrganizationBillingBudgetsGetOutput as gl, OrganizationBillingBudgetsSetInput as gm, OrganizationBillingBudgetsSetOutput as gn, OrganizationBillingCapsClearInput as go, OrganizationBillingCapsClearOutput as gp, OrganizationBillingCapsSetInput as gq, OrganizationBillingCapsSetOutput as gr, OrganizationBindingsListInput as gs, OrganizationBindingsListOutput as gt, OrganizationClickupInstallInput as gu, OrganizationClickupInstallOutput as gv, OrganizationClickupListInstallationsInput as gw, OrganizationClickupListInstallationsOutput as gx, OrganizationCloudflareInstallInput as gy, OrganizationCloudflareInstallOutput as gz, BrainBackupsListOutput as h, OrganizationProductUpdateOutput as h$, OrganizationDomainsGetInput as h0, OrganizationDomainsGetOutput as h1, OrganizationDomainsListInput as h2, OrganizationDomainsListOutput as h3, OrganizationDomainsRemoveInput as h4, OrganizationDomainsRemoveOutput as h5, OrganizationDomainsSetModeInput as h6, OrganizationDomainsSetModeOutput as h7, OrganizationExtensionsListInstalledInput as h8, OrganizationExtensionsListInstalledOutput as h9, OrganizationMemberSetRoleInput as hA, OrganizationMemberSetRoleOutput as hB, OrganizationMemberShareProductInput as hC, OrganizationMemberShareProductOutput as hD, OrganizationMemberUnshareProductInput as hE, OrganizationMemberUnshareProductOutput as hF, OrganizationMembersAssignRoleInput as hG, OrganizationMembersAssignRoleOutput as hH, OrganizationPermissionCatalogInput as hI, OrganizationPermissionCatalogOutput as hJ, OrganizationProductCreateInput as hK, OrganizationProductCreateOutput as hL, OrganizationProductListAccessInput as hM, OrganizationProductListAccessOutput as hN, OrganizationProductListMembersInput as hO, OrganizationProductListMembersOutput as hP, OrganizationProductListInput as hQ, OrganizationProductListOutput as hR, OrganizationProductListRolesInput as hS, OrganizationProductListRolesOutput as hT, OrganizationProductRevokeAccessInput as hU, OrganizationProductRevokeAccessOutput as hV, OrganizationProductSelectInput as hW, OrganizationProductSelectOutput as hX, OrganizationProductSetAccessInput as hY, OrganizationProductSetAccessOutput as hZ, OrganizationProductUpdateInput as h_, OrganizationFeedbackSubmitInput as ha, OrganizationFeedbackSubmitOutput as hb, OrganizationGdriveInstallInput as hc, OrganizationGdriveInstallOutput as hd, OrganizationGithubInstallInput as he, OrganizationGithubInstallOutput as hf, OrganizationGithubListInstallationsInput as hg, OrganizationGithubListInstallationsOutput as hh, OrganizationGoogleadsInstallInput as hi, OrganizationGoogleadsInstallOutput as hj, OrganizationListInput as hk, OrganizationListOutput as hl, OrganizationMemberAcceptInviteInput as hm, OrganizationMemberAcceptInviteOutput as hn, OrganizationMemberInviteInput as ho, OrganizationMemberInviteOutput as hp, OrganizationMemberListInvitationsInput as hq, OrganizationMemberListInvitationsOutput as hr, OrganizationMemberListProductAccessInput as hs, OrganizationMemberListProductAccessOutput as ht, OrganizationMemberListInput as hu, OrganizationMemberListOutput as hv, OrganizationMemberRemoveInput as hw, OrganizationMemberRemoveOutput as hx, OrganizationMemberRevokeInvitationInput as hy, OrganizationMemberRevokeInvitationOutput as hz, BrainClickupChannelsListInput as i, RealtimeArchiveGetOutput as i$, OrganizationPublicKeysCreateInput as i0, OrganizationPublicKeysCreateOutput as i1, OrganizationPublicKeysListInput as i2, OrganizationPublicKeysListOutput as i3, OrganizationPublicKeysRevokeInput as i4, OrganizationPublicKeysRevokeOutput as i5, OrganizationPublicKeysUpdateScopeInput as i6, OrganizationPublicKeysUpdateScopeOutput as i7, OrganizationPublicRoutesListInput as i8, OrganizationPublicRoutesListOutput as i9, PlaygroundBillingEntitlementsInput as iA, PlaygroundBillingEntitlementsOutput as iB, PlaygroundBillingRecordUsageInput as iC, PlaygroundBillingRecordUsageOutput as iD, PlaygroundClickupCreateTaskInput as iE, PlaygroundClickupCreateTaskOutput as iF, PlaygroundClickupGetLastWebhookInput as iG, PlaygroundClickupGetLastWebhookOutput as iH, PlaygroundClickupGetOverviewInput as iI, PlaygroundClickupGetOverviewOutput as iJ, PlaygroundGdriveGetLastChangeInput as iK, PlaygroundGdriveGetLastChangeOutput as iL, PlaygroundGdriveReadFileInput as iM, PlaygroundGdriveReadFileOutput as iN, PlaygroundGoogleadsReadCustomerInput as iO, PlaygroundGoogleadsReadCustomerOutput as iP, PlaygroundLifecycleGetStateInput as iQ, PlaygroundLifecycleGetStateOutput as iR, PlaygroundLifecycleListEventsInput as iS, PlaygroundLifecycleListEventsOutput as iT, PlaygroundWebhookGetLastInput as iU, PlaygroundWebhookGetLastOutput as iV, RealtimeArchiveExportInput as iW, RealtimeArchiveExportOutput as iX, RealtimeArchiveExportStatusInput as iY, RealtimeArchiveExportStatusOutput as iZ, RealtimeArchiveGetInput as i_, OrganizationRolesCreateInput as ia, OrganizationRolesCreateOutput as ib, OrganizationRolesDeleteInput as ic, OrganizationRolesDeleteOutput as id, OrganizationRolesGetInput as ie, OrganizationRolesGetOutput as ig, OrganizationRolesListInput as ih, OrganizationRolesListOutput as ii, OrganizationRolesUpdateInput as ij, OrganizationRolesUpdateOutput as ik, OrganizationSecurityMfaEnableInput as il, OrganizationSecurityMfaEnableOutput as im, OrganizationSelectInput as io, OrganizationSelectOutput as ip, OrganizationSupportThreadCreateInput as iq, OrganizationSupportThreadCreateOutput as ir, OrganizationSupportThreadGetInput as is, OrganizationSupportThreadGetOutput as it, OrganizationSupportThreadReplyInput as iu, OrganizationSupportThreadReplyOutput as iv, OrganizationSupportThreadsListInput as iw, OrganizationSupportThreadsListOutput as ix, PlaygroundAnalyticsOverviewInput as iy, PlaygroundAnalyticsOverviewOutput as iz, BrainClickupChannelsListOutput as j, SupportLabelCreateOutput as j$, RealtimeGrantCreateInput as j0, RealtimeGrantCreateOutput as j1, RealtimeGrantListInput as j2, RealtimeGrantListOutput as j3, RealtimeGrantRevokeInput as j4, RealtimeGrantRevokeOutput as j5, RealtimeHistoryGetInput as j6, RealtimeHistoryGetOutput as j7, RealtimeMessagesPublishInput as j8, RealtimeMessagesPublishOutput as j9, RealtimeWebhookCreateInput as jA, RealtimeWebhookCreateOutput as jB, RealtimeWebhookDeleteInput as jC, RealtimeWebhookDeleteOutput as jD, RealtimeWebhookDeliveriesListInput as jE, RealtimeWebhookDeliveriesListOutput as jF, RealtimeWebhookGetInput as jG, RealtimeWebhookGetOutput as jH, RealtimeWebhookListInput as jI, RealtimeWebhookListOutput as jJ, RealtimeWebhookSecretRotateInput as jK, RealtimeWebhookSecretRotateOutput as jL, RealtimeWebhookUpdateInput as jM, RealtimeWebhookUpdateOutput as jN, SupportAgentCreateInput as jO, SupportAgentCreateOutput as jP, SupportAgentGetInput as jQ, SupportAgentGetOutput as jR, SupportAgentListInput as jS, SupportAgentListOutput as jT, SupportAgentUpdateInput as jU, SupportAgentUpdateOutput as jV, SupportAttachmentCreateInput as jW, SupportAttachmentCreateOutput as jX, SupportAttachmentFinalizeInput as jY, SupportAttachmentFinalizeOutput as jZ, SupportLabelCreateInput as j_, RealtimeNamespaceCreateInput as ja, RealtimeNamespaceCreateOutput as jb, RealtimeNamespaceDeleteInput as jc, RealtimeNamespaceDeleteOutput as jd, RealtimeNamespaceGetInput as je, RealtimeNamespaceGetOutput as jf, RealtimeNamespaceListInput as jg, RealtimeNamespaceListOutput as jh, RealtimeNamespaceUpdateInput as ji, RealtimeNamespaceUpdateOutput as jj, RealtimePresenceEnterInput as jk, RealtimePresenceEnterOutput as jl, RealtimePresenceGetInput as jm, RealtimePresenceGetOutput as jn, RealtimePresenceLeaveInput as jo, RealtimePresenceLeaveOutput as jp, RealtimePresenceStatsInput as jq, RealtimePresenceStatsOutput as jr, RealtimePresenceUpdateInput as js, RealtimePresenceUpdateOutput as jt, RealtimePublicAccessStatusInput as ju, RealtimePublicAccessStatusOutput as jv, RealtimeStatusGetInput as jw, RealtimeStatusGetOutput as jx, RealtimeTokensCreateInput as jy, RealtimeTokensCreateOutput as jz, BrainClickupConnectionsListInput as k, SupportWebhookUpdateOutput as k$, SupportLabelListInput as k0, SupportLabelListOutput as k1, SupportMessageCreateInput as k2, SupportMessageCreateOutput as k3, SupportMessageListInput as k4, SupportMessageListOutput as k5, SupportResponseEscalateInput as k6, SupportResponseEscalateOutput as k7, SupportResponseGetInput as k8, SupportResponseGetOutput as k9, SupportThreadAssignInput as kA, SupportThreadAssignOutput as kB, SupportThreadCreateInput as kC, SupportThreadCreateOutput as kD, SupportThreadGetInput as kE, SupportThreadGetOutput as kF, SupportThreadListInput as kG, SupportThreadListOutput as kH, SupportThreadStatusSetInput as kI, SupportThreadStatusSetOutput as kJ, SupportThreadUpdateInput as kK, SupportThreadUpdateOutput as kL, SupportWebhookCreateInput as kM, SupportWebhookCreateOutput as kN, SupportWebhookDeleteInput as kO, SupportWebhookDeleteOutput as kP, SupportWebhookDeliveriesListInput as kQ, SupportWebhookDeliveriesListOutput as kR, SupportWebhookGetInput as kS, SupportWebhookGetOutput as kT, SupportWebhookListInput as kU, SupportWebhookListOutput as kV, SupportWebhookRedeliverInput as kW, SupportWebhookRedeliverOutput as kX, SupportWebhookRotateSecretInput as kY, SupportWebhookRotateSecretOutput as kZ, SupportWebhookUpdateInput as k_, SupportResponseListInput as ka, SupportResponseListOutput as kb, SupportStatusArchiveInput as kc, SupportStatusArchiveOutput as kd, SupportStatusCreateInput as ke, SupportStatusCreateOutput as kf, SupportStatusListInput as kg, SupportStatusListOutput as kh, SupportStatusUpdateInput as ki, SupportStatusUpdateOutput as kj, SupportSurveyArchiveInput as kk, SupportSurveyArchiveOutput as kl, SupportSurveyCreateInput as km, SupportSurveyCreateOutput as kn, SupportSurveyGetInput as ko, SupportSurveyGetOutput as kp, SupportSurveyListInput as kq, SupportSurveyListOutput as kr, SupportSurveyPublishInput as ks, SupportSurveyPublishOutput as kt, SupportSurveyStatsInput as ku, SupportSurveyStatsOutput as kv, SupportSurveyUnpublishInput as kw, SupportSurveyUnpublishOutput as kx, SupportSurveyUpdateInput as ky, SupportSurveyUpdateOutput as kz, BrainClickupConnectionsListOutput as l, TrackingReportsAttributedJourneyOutput as l$, TrackingDomainsCreateInput as l0, TrackingDomainsCreateOutput as l1, TrackingDomainsDeleteInput as l2, TrackingDomainsDeleteOutput as l3, TrackingDomainsGetInput as l4, TrackingDomainsGetOutput as l5, TrackingDomainsListInput as l6, TrackingDomainsListOutput as l7, TrackingDomainsVerifyInput as l8, TrackingDomainsVerifyOutput as l9, TrackingGoogleadsUsVsPlatformInput as lA, TrackingGoogleadsUsVsPlatformOutput as lB, TrackingIdentityHealthInput as lC, TrackingIdentityHealthOutput as lD, TrackingInstallDomainsCreateInput as lE, TrackingInstallDomainsCreateOutput as lF, TrackingInstallDomainsDeleteInput as lG, TrackingInstallDomainsDeleteOutput as lH, TrackingInstallDomainsListInput as lI, TrackingInstallDomainsListOutput as lJ, TrackingLinkDomainsCreateInput as lK, TrackingLinkDomainsCreateOutput as lL, TrackingLinkDomainsDeleteInput as lM, TrackingLinkDomainsDeleteOutput as lN, TrackingLinkDomainsListInput as lO, TrackingLinkDomainsListOutput as lP, TrackingLiveEventsListInput as lQ, TrackingLiveEventsListOutput as lR, TrackingProfilesDeleteInput as lS, TrackingProfilesDeleteOutput as lT, TrackingProfilesExportInput as lU, TrackingProfilesExportOutput as lV, TrackingProfilesGetInput as lW, TrackingProfilesGetOutput as lX, TrackingProfilesListInput as lY, TrackingProfilesListOutput as lZ, TrackingReportsAttributedJourneyInput as l_, TrackingEventNamesArchiveInput as la, TrackingEventNamesArchiveOutput as lb, TrackingEventNamesListInput as lc, TrackingEventNamesListOutput as ld, TrackingEventNamesUnarchiveInput as le, TrackingEventNamesUnarchiveOutput as lf, TrackingGoogleadsConnectionStatusInput as lg, TrackingGoogleadsConnectionStatusOutput as lh, TrackingGoogleadsConversionActionsInput as li, TrackingGoogleadsConversionActionsOutput as lj, TrackingGoogleadsFeedbackConfigGetInput as lk, TrackingGoogleadsFeedbackConfigGetOutput as ll, TrackingGoogleadsFeedbackConfigSetInput as lm, TrackingGoogleadsFeedbackConfigSetOutput as ln, TrackingGoogleadsFeedbackRunInput as lo, TrackingGoogleadsFeedbackRunOutput as lp, TrackingGoogleadsFeedbackStatusInput as lq, TrackingGoogleadsFeedbackStatusOutput as lr, TrackingGoogleadsFeedbackUploadsInput as ls, TrackingGoogleadsFeedbackUploadsOutput as lt, TrackingGoogleadsRoasReportInput as lu, TrackingGoogleadsRoasReportOutput as lv, TrackingGoogleadsSyncNowInput as lw, TrackingGoogleadsSyncNowOutput as lx, TrackingGoogleadsTrackingHealthInput as ly, TrackingGoogleadsTrackingHealthOutput as lz, BrainClickupListsListInput as m, UsersUsersSetPrimaryIdentifierOutput as m$, TrackingReportsEventVolumeInput as m0, TrackingReportsEventVolumeOutput as m1, TrackingReportsRevenueBySourceInput as m2, TrackingReportsRevenueBySourceOutput as m3, TrackingReportsSourcePeopleInput as m4, TrackingReportsSourcePeopleOutput as m5, TrackingSnippetsGetInput as m6, TrackingSnippetsGetOutput as m7, UsersApikeysCreateInput as m8, UsersApikeysCreateOutput as m9, UsersSessionsImpersonateInput as mA, UsersSessionsImpersonateOutput as mB, UsersSessionsListInput as mC, UsersSessionsListOutput as mD, UsersSessionsRevokeInput as mE, UsersSessionsRevokeOutput as mF, UsersStatsGetInput as mG, UsersStatsGetOutput as mH, UsersUsersBanInput as mI, UsersUsersBanOutput as mJ, UsersUsersCreateInput as mK, UsersUsersCreateOutput as mL, UsersUsersDeleteInput as mM, UsersUsersDeleteOutput as mN, UsersUsersEraseInput as mO, UsersUsersEraseOutput as mP, UsersUsersExportInput as mQ, UsersUsersExportOutput as mR, UsersUsersGetInput as mS, UsersUsersGetOutput as mT, UsersUsersImportInput as mU, UsersUsersImportOutput as mV, UsersUsersInviteInput as mW, UsersUsersInviteOutput as mX, UsersUsersListInput as mY, UsersUsersListOutput as mZ, UsersUsersSetPrimaryIdentifierInput as m_, UsersApikeysListInput as ma, UsersApikeysListOutput as mb, UsersApikeysRevokeInput as mc, UsersApikeysRevokeOutput as md, UsersAuditListInput as me, UsersAuditListOutput as mf, UsersConfigGetInput as mg, UsersConfigGetOutput as mh, UsersConfigUpsertInput as mi, UsersConfigUpsertOutput as mj, UsersFactorsListInput as mk, UsersFactorsListOutput as ml, UsersFactorsResetInput as mm, UsersFactorsResetOutput as mn, UsersKeysListInput as mo, UsersKeysListOutput as mp, UsersKeysRevokeInput as mq, UsersKeysRevokeOutput as mr, UsersKeysRotateInput as ms, UsersKeysRotateOutput as mt, UsersOpsRetentionGetInput as mu, UsersOpsRetentionGetOutput as mv, UsersOpsSloGetInput as mw, UsersOpsSloGetOutput as mx, UsersSessionsGetInput as my, UsersSessionsGetOutput as mz, BrainClickupListsListOutput as n, UsersUsersUnbanInput as n0, UsersUsersUnbanOutput as n1, UsersUsersUpdateInput as n2, UsersUsersUpdateOutput as n3, UsersWaitlistEraseInput as n4, UsersWaitlistEraseOutput as n5, UsersWaitlistFunnelInput as n6, UsersWaitlistFunnelOutput as n7, UsersWaitlistImportInput as n8, UsersWaitlistImportOutput as n9, WaitlistSignupsEraseInput as nA, WaitlistSignupsEraseOutput as nB, WaitlistSignupsFunnelInput as nC, WaitlistSignupsFunnelOutput as nD, WaitlistSignupsListInput as nE, WaitlistSignupsListOutput as nF, UsersWaitlistInviteInput as na, UsersWaitlistInviteOutput as nb, UsersWaitlistListInput as nc, UsersWaitlistListOutput as nd, UsersWebhooksCreateInput as ne, UsersWebhooksCreateOutput as nf, UsersWebhooksDeleteInput as ng, UsersWebhooksDeleteOutput as nh, UsersWebhooksDeliveriesListInput as ni, UsersWebhooksDeliveriesListOutput as nj, UsersWebhooksGetInput as nk, UsersWebhooksGetOutput as nl, UsersWebhooksListInput as nm, UsersWebhooksListOutput as nn, UsersWebhooksRotateSecretInput as no, UsersWebhooksRotateSecretOutput as np, UsersWebhooksUpdateInput as nq, UsersWebhooksUpdateOutput as nr, WaitlistConfigGetInput as ns, WaitlistConfigGetOutput as nt, WaitlistConfigUpsertInput as nu, WaitlistConfigUpsertOutput as nv, WaitlistEmbedGetInput as nw, WaitlistEmbedGetOutput as nx, WaitlistInvitesSendInput as ny, WaitlistInvitesSendOutput as nz, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|
|
21947
|
+
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSecurityMfaEnableOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductRevokeInvitationInput as hA, OrganizationProductRevokeInvitationOutput as hB, OrganizationProductSelectInput as hC, OrganizationProductSelectOutput as hD, OrganizationProductUpdateInput as hE, OrganizationProductUpdateOutput as hF, OrganizationPublicKeysCreateInput as hG, OrganizationPublicKeysCreateOutput as hH, OrganizationPublicKeysListInput as hI, OrganizationPublicKeysListOutput as hJ, OrganizationPublicKeysRevokeInput as hK, OrganizationPublicKeysRevokeOutput as hL, OrganizationPublicKeysUpdateScopeInput as hM, OrganizationPublicKeysUpdateScopeOutput as hN, OrganizationPublicRoutesListInput as hO, OrganizationPublicRoutesListOutput as hP, OrganizationRolesCreateInput as hQ, OrganizationRolesCreateOutput as hR, OrganizationRolesDeleteInput as hS, OrganizationRolesDeleteOutput as hT, OrganizationRolesGetInput as hU, OrganizationRolesGetOutput as hV, OrganizationRolesListInput as hW, OrganizationRolesListOutput as hX, OrganizationRolesUpdateInput as hY, OrganizationRolesUpdateOutput as hZ, OrganizationSecurityMfaEnableInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductAcceptInvitationInput as hm, OrganizationProductAcceptInvitationOutput as hn, OrganizationProductCreateInput as ho, OrganizationProductCreateOutput as hp, OrganizationProductInviteInput as hq, OrganizationProductInviteOutput as hr, OrganizationProductListInvitationsInput as hs, OrganizationProductListInvitationsOutput as ht, OrganizationProductListMembersInput as hu, OrganizationProductListMembersOutput as hv, OrganizationProductListInput as hw, OrganizationProductListOutput as hx, OrganizationProductListRolesInput as hy, OrganizationProductListRolesOutput as hz, BrainClickupChannelsListInput as i, SupportAgentGetOutput as i$, OrganizationSelectInput as i0, OrganizationSelectOutput as i1, RealtimeArchiveExportInput as i2, RealtimeArchiveExportOutput as i3, RealtimeArchiveExportStatusInput as i4, RealtimeArchiveExportStatusOutput as i5, RealtimeArchiveGetInput as i6, RealtimeArchiveGetOutput as i7, RealtimeGrantCreateInput as i8, RealtimeGrantCreateOutput as i9, RealtimePresenceStatsInput as iA, RealtimePresenceStatsOutput as iB, RealtimePresenceUpdateInput as iC, RealtimePresenceUpdateOutput as iD, RealtimePublicAccessStatusInput as iE, RealtimePublicAccessStatusOutput as iF, RealtimeStatusGetInput as iG, RealtimeStatusGetOutput as iH, RealtimeTokensCreateInput as iI, RealtimeTokensCreateOutput as iJ, RealtimeWebhookCreateInput as iK, RealtimeWebhookCreateOutput as iL, RealtimeWebhookDeleteInput as iM, RealtimeWebhookDeleteOutput as iN, RealtimeWebhookDeliveriesListInput as iO, RealtimeWebhookDeliveriesListOutput as iP, RealtimeWebhookGetInput as iQ, RealtimeWebhookGetOutput as iR, RealtimeWebhookListInput as iS, RealtimeWebhookListOutput as iT, RealtimeWebhookSecretRotateInput as iU, RealtimeWebhookSecretRotateOutput as iV, RealtimeWebhookUpdateInput as iW, RealtimeWebhookUpdateOutput as iX, SupportAgentCreateInput as iY, SupportAgentCreateOutput as iZ, SupportAgentGetInput as i_, RealtimeGrantListInput as ia, RealtimeGrantListOutput as ib, RealtimeGrantRevokeInput as ic, RealtimeGrantRevokeOutput as id, RealtimeHistoryGetInput as ie, RealtimeHistoryGetOutput as ig, RealtimeMessagesPublishInput as ih, RealtimeMessagesPublishOutput as ii, RealtimeNamespaceCreateInput as ij, RealtimeNamespaceCreateOutput as ik, RealtimeNamespaceDeleteInput as il, RealtimeNamespaceDeleteOutput as im, RealtimeNamespaceGetInput as io, RealtimeNamespaceGetOutput as ip, RealtimeNamespaceListInput as iq, RealtimeNamespaceListOutput as ir, RealtimeNamespaceUpdateInput as is, RealtimeNamespaceUpdateOutput as it, RealtimePresenceEnterInput as iu, RealtimePresenceEnterOutput as iv, RealtimePresenceGetInput as iw, RealtimePresenceGetOutput as ix, RealtimePresenceLeaveInput as iy, RealtimePresenceLeaveOutput as iz, BrainClickupChannelsListOutput as j, SupportWebhookDeliveriesListOutput as j$, SupportAgentListInput as j0, SupportAgentListOutput as j1, SupportAgentUpdateInput as j2, SupportAgentUpdateOutput as j3, SupportAttachmentCreateInput as j4, SupportAttachmentCreateOutput as j5, SupportAttachmentFinalizeInput as j6, SupportAttachmentFinalizeOutput as j7, SupportLabelCreateInput as j8, SupportLabelCreateOutput as j9, SupportSurveyListInput as jA, SupportSurveyListOutput as jB, SupportSurveyPublishInput as jC, SupportSurveyPublishOutput as jD, SupportSurveyStatsInput as jE, SupportSurveyStatsOutput as jF, SupportSurveyUnpublishInput as jG, SupportSurveyUnpublishOutput as jH, SupportSurveyUpdateInput as jI, SupportSurveyUpdateOutput as jJ, SupportThreadAssignInput as jK, SupportThreadAssignOutput as jL, SupportThreadCreateInput as jM, SupportThreadCreateOutput as jN, SupportThreadGetInput as jO, SupportThreadGetOutput as jP, SupportThreadListInput as jQ, SupportThreadListOutput as jR, SupportThreadStatusSetInput as jS, SupportThreadStatusSetOutput as jT, SupportThreadUpdateInput as jU, SupportThreadUpdateOutput as jV, SupportWebhookCreateInput as jW, SupportWebhookCreateOutput as jX, SupportWebhookDeleteInput as jY, SupportWebhookDeleteOutput as jZ, SupportWebhookDeliveriesListInput as j_, SupportLabelListInput as ja, SupportLabelListOutput as jb, SupportMessageCreateInput as jc, SupportMessageCreateOutput as jd, SupportMessageListInput as je, SupportMessageListOutput as jf, SupportResponseEscalateInput as jg, SupportResponseEscalateOutput as jh, SupportResponseGetInput as ji, SupportResponseGetOutput as jj, SupportResponseListInput as jk, SupportResponseListOutput as jl, SupportStatusArchiveInput as jm, SupportStatusArchiveOutput as jn, SupportStatusCreateInput as jo, SupportStatusCreateOutput as jp, SupportStatusListInput as jq, SupportStatusListOutput as jr, SupportStatusUpdateInput as js, SupportStatusUpdateOutput as jt, SupportSurveyArchiveInput as ju, SupportSurveyArchiveOutput as jv, SupportSurveyCreateInput as jw, SupportSurveyCreateOutput as jx, SupportSurveyGetInput as jy, SupportSurveyGetOutput as jz, BrainClickupConnectionsListInput as k, TrackingLiveEventsListOutput as k$, SupportWebhookGetInput as k0, SupportWebhookGetOutput as k1, SupportWebhookListInput as k2, SupportWebhookListOutput as k3, SupportWebhookRedeliverInput as k4, SupportWebhookRedeliverOutput as k5, SupportWebhookRotateSecretInput as k6, SupportWebhookRotateSecretOutput as k7, SupportWebhookUpdateInput as k8, SupportWebhookUpdateOutput as k9, TrackingGoogleadsFeedbackStatusInput as kA, TrackingGoogleadsFeedbackStatusOutput as kB, TrackingGoogleadsFeedbackUploadsInput as kC, TrackingGoogleadsFeedbackUploadsOutput as kD, TrackingGoogleadsRoasReportInput as kE, TrackingGoogleadsRoasReportOutput as kF, TrackingGoogleadsSyncNowInput as kG, TrackingGoogleadsSyncNowOutput as kH, TrackingGoogleadsTrackingHealthInput as kI, TrackingGoogleadsTrackingHealthOutput as kJ, TrackingGoogleadsUsVsPlatformInput as kK, TrackingGoogleadsUsVsPlatformOutput as kL, TrackingIdentityHealthInput as kM, TrackingIdentityHealthOutput as kN, TrackingInstallDomainsCreateInput as kO, TrackingInstallDomainsCreateOutput as kP, TrackingInstallDomainsDeleteInput as kQ, TrackingInstallDomainsDeleteOutput as kR, TrackingInstallDomainsListInput as kS, TrackingInstallDomainsListOutput as kT, TrackingLinkDomainsCreateInput as kU, TrackingLinkDomainsCreateOutput as kV, TrackingLinkDomainsDeleteInput as kW, TrackingLinkDomainsDeleteOutput as kX, TrackingLinkDomainsListInput as kY, TrackingLinkDomainsListOutput as kZ, TrackingLiveEventsListInput as k_, TrackingDomainsCreateInput as ka, TrackingDomainsCreateOutput as kb, TrackingDomainsDeleteInput as kc, TrackingDomainsDeleteOutput as kd, TrackingDomainsGetInput as ke, TrackingDomainsGetOutput as kf, TrackingDomainsListInput as kg, TrackingDomainsListOutput as kh, TrackingDomainsVerifyInput as ki, TrackingDomainsVerifyOutput as kj, TrackingEventNamesArchiveInput as kk, TrackingEventNamesArchiveOutput as kl, TrackingEventNamesListInput as km, TrackingEventNamesListOutput as kn, TrackingEventNamesUnarchiveInput as ko, TrackingEventNamesUnarchiveOutput as kp, TrackingGoogleadsConnectionStatusInput as kq, TrackingGoogleadsConnectionStatusOutput as kr, TrackingGoogleadsConversionActionsInput as ks, TrackingGoogleadsConversionActionsOutput as kt, TrackingGoogleadsFeedbackConfigGetInput as ku, TrackingGoogleadsFeedbackConfigGetOutput as kv, TrackingGoogleadsFeedbackConfigSetInput as kw, TrackingGoogleadsFeedbackConfigSetOutput as kx, TrackingGoogleadsFeedbackRunInput as ky, TrackingGoogleadsFeedbackRunOutput as kz, BrainClickupConnectionsListOutput as l, UsersUsersExportOutput as l$, TrackingProfilesDeleteInput as l0, TrackingProfilesDeleteOutput as l1, TrackingProfilesExportInput as l2, TrackingProfilesExportOutput as l3, TrackingProfilesGetInput as l4, TrackingProfilesGetOutput as l5, TrackingProfilesListInput as l6, TrackingProfilesListOutput as l7, TrackingReportsAttributedJourneyInput as l8, TrackingReportsAttributedJourneyOutput as l9, UsersKeysRevokeInput as lA, UsersKeysRevokeOutput as lB, UsersKeysRotateInput as lC, UsersKeysRotateOutput as lD, UsersOpsRetentionGetInput as lE, UsersOpsRetentionGetOutput as lF, UsersOpsSloGetInput as lG, UsersOpsSloGetOutput as lH, UsersSessionsGetInput as lI, UsersSessionsGetOutput as lJ, UsersSessionsImpersonateInput as lK, UsersSessionsImpersonateOutput as lL, UsersSessionsListInput as lM, UsersSessionsListOutput as lN, UsersSessionsRevokeInput as lO, UsersSessionsRevokeOutput as lP, UsersStatsGetInput as lQ, UsersStatsGetOutput as lR, UsersUsersBanInput as lS, UsersUsersBanOutput as lT, UsersUsersCreateInput as lU, UsersUsersCreateOutput as lV, UsersUsersDeleteInput as lW, UsersUsersDeleteOutput as lX, UsersUsersEraseInput as lY, UsersUsersEraseOutput as lZ, UsersUsersExportInput as l_, TrackingReportsEventVolumeInput as la, TrackingReportsEventVolumeOutput as lb, TrackingReportsRevenueBySourceInput as lc, TrackingReportsRevenueBySourceOutput as ld, TrackingReportsSourcePeopleInput as le, TrackingReportsSourcePeopleOutput as lf, TrackingSnippetsGetInput as lg, TrackingSnippetsGetOutput as lh, UsersApikeysCreateInput as li, UsersApikeysCreateOutput as lj, UsersApikeysListInput as lk, UsersApikeysListOutput as ll, UsersApikeysRevokeInput as lm, UsersApikeysRevokeOutput as ln, UsersAuditListInput as lo, UsersAuditListOutput as lp, UsersConfigGetInput as lq, UsersConfigGetOutput as lr, UsersConfigUpsertInput as ls, UsersConfigUpsertOutput as lt, UsersFactorsListInput as lu, UsersFactorsListOutput as lv, UsersFactorsResetInput as lw, UsersFactorsResetOutput as lx, UsersKeysListInput as ly, UsersKeysListOutput as lz, BrainClickupListsListInput as m, UsersUsersGetInput as m0, UsersUsersGetOutput as m1, UsersUsersImportInput as m2, UsersUsersImportOutput as m3, UsersUsersInviteInput as m4, UsersUsersInviteOutput as m5, UsersUsersListInput as m6, UsersUsersListOutput as m7, UsersUsersSetPrimaryIdentifierInput as m8, UsersUsersSetPrimaryIdentifierOutput as m9, UsersWebhooksUpdateInput as mA, UsersWebhooksUpdateOutput as mB, WaitlistConfigGetInput as mC, WaitlistConfigGetOutput as mD, WaitlistConfigUpsertInput as mE, WaitlistConfigUpsertOutput as mF, WaitlistEmbedGetInput as mG, WaitlistEmbedGetOutput as mH, WaitlistInvitesSendInput as mI, WaitlistInvitesSendOutput as mJ, WaitlistSignupsEraseInput as mK, WaitlistSignupsEraseOutput as mL, WaitlistSignupsFunnelInput as mM, WaitlistSignupsFunnelOutput as mN, WaitlistSignupsListInput as mO, WaitlistSignupsListOutput as mP, UsersUsersUnbanInput as ma, UsersUsersUnbanOutput as mb, UsersUsersUpdateInput as mc, UsersUsersUpdateOutput as md, UsersWaitlistEraseInput as me, UsersWaitlistEraseOutput as mf, UsersWaitlistFunnelInput as mg, UsersWaitlistFunnelOutput as mh, UsersWaitlistImportInput as mi, UsersWaitlistImportOutput as mj, UsersWaitlistInviteInput as mk, UsersWaitlistInviteOutput as ml, UsersWaitlistListInput as mm, UsersWaitlistListOutput as mn, UsersWebhooksCreateInput as mo, UsersWebhooksCreateOutput as mp, UsersWebhooksDeleteInput as mq, UsersWebhooksDeleteOutput as mr, UsersWebhooksDeliveriesListInput as ms, UsersWebhooksDeliveriesListOutput as mt, UsersWebhooksGetInput as mu, UsersWebhooksGetOutput as mv, UsersWebhooksListInput as mw, UsersWebhooksListOutput as mx, UsersWebhooksRotateSecretInput as my, UsersWebhooksRotateSecretOutput as mz, BrainClickupListsListOutput as n, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|