@lessly/sdk-app 37.0.0 → 39.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 +0 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -6
- package/dist/brain/index.d.ts +2 -6
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-C7SVQnZq.d.cts → client.gen-CDy1zew2.d.cts} +2048 -206
- package/dist/{client.gen-C7SVQnZq.d.ts → client.gen-CDy1zew2.d.ts} +2048 -206
- 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 +793 -174
- 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 +793 -174
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/observe/index.cjs +156 -0
- package/dist/observe/index.cjs.map +1 -0
- package/dist/observe/index.d.cts +124 -0
- package/dist/observe/index.d.ts +124 -0
- package/dist/observe/index.js +125 -0
- package/dist/observe/index.js.map +1 -0
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- 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 +12 -2
- package/src/gen/bindings.gen.ts +793 -174
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +164 -5
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/observe/index.ts +3 -0
- package/src/gen/observe/queryOptions.gen.ts +200 -0
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/types.gen.ts +2048 -191
|
@@ -935,96 +935,6 @@ type BrainRestoreStatusOutput = ({
|
|
|
935
935
|
snapshotId: string;
|
|
936
936
|
preRestoreSnapshotId: (string | null);
|
|
937
937
|
} | null);
|
|
938
|
-
interface BrainUsageReportInput {
|
|
939
|
-
/**
|
|
940
|
-
* How many UTC days of this product's ledger to return, ending today (default 30, max 90)
|
|
941
|
-
*/
|
|
942
|
-
days?: number;
|
|
943
|
-
}
|
|
944
|
-
interface BrainUsageReportOutput {
|
|
945
|
-
note: string;
|
|
946
|
-
/**
|
|
947
|
-
* Brain's own ledger, for THIS product only
|
|
948
|
-
*/
|
|
949
|
-
product: {
|
|
950
|
-
/**
|
|
951
|
-
* Inclusive UTC end of the window (today), YYYY-MM-DD
|
|
952
|
-
*/
|
|
953
|
-
to: string;
|
|
954
|
-
/**
|
|
955
|
-
* The window actually used, after clamping
|
|
956
|
-
*/
|
|
957
|
-
days: number;
|
|
958
|
-
/**
|
|
959
|
-
* Inclusive UTC start of the window, YYYY-MM-DD
|
|
960
|
-
*/
|
|
961
|
-
from: string;
|
|
962
|
-
rows: {
|
|
963
|
-
/**
|
|
964
|
-
* 'sync' | 'batch'; '' when the push carried none
|
|
965
|
-
*/
|
|
966
|
-
mode: string;
|
|
967
|
-
/**
|
|
968
|
-
* Manifest meter slug, e.g. llm-tokens
|
|
969
|
-
*/
|
|
970
|
-
meter: string;
|
|
971
|
-
/**
|
|
972
|
-
* Model dimension; '' when the push carried none
|
|
973
|
-
*/
|
|
974
|
-
model: string;
|
|
975
|
-
/**
|
|
976
|
-
* How many record() calls landed in this slice
|
|
977
|
-
*/
|
|
978
|
-
events: number;
|
|
979
|
-
/**
|
|
980
|
-
* Tokens we metered for this slice, delivered or not
|
|
981
|
-
*/
|
|
982
|
-
tokens: number;
|
|
983
|
-
/**
|
|
984
|
-
* Purpose dimension; '' when the push carried none
|
|
985
|
-
*/
|
|
986
|
-
purpose: string;
|
|
987
|
-
/**
|
|
988
|
-
* UTC calendar day, YYYY-MM-DD
|
|
989
|
-
*/
|
|
990
|
-
usage_date: string;
|
|
991
|
-
/**
|
|
992
|
-
* Of those events, how many billing did not accept
|
|
993
|
-
*/
|
|
994
|
-
delivery_failed: number;
|
|
995
|
-
}[];
|
|
996
|
-
/**
|
|
997
|
-
* The rows rolled up per meter across the whole window
|
|
998
|
-
*/
|
|
999
|
-
totals: {
|
|
1000
|
-
meter: string;
|
|
1001
|
-
events: number;
|
|
1002
|
-
tokens: number;
|
|
1003
|
-
delivery_failed: number;
|
|
1004
|
-
}[];
|
|
1005
|
-
product_id: string;
|
|
1006
|
-
};
|
|
1007
|
-
/**
|
|
1008
|
-
* The platform billing aggregate for the whole ORG; null if it could not be read
|
|
1009
|
-
*/
|
|
1010
|
-
platform: ({
|
|
1011
|
-
plan: string;
|
|
1012
|
-
scope: "org";
|
|
1013
|
-
meters: {
|
|
1014
|
-
unit?: string;
|
|
1015
|
-
used?: number;
|
|
1016
|
-
limit?: (number | null);
|
|
1017
|
-
remaining?: (number | null);
|
|
1018
|
-
unlimited?: boolean;
|
|
1019
|
-
meter_slug: string;
|
|
1020
|
-
}[];
|
|
1021
|
-
org_id: string;
|
|
1022
|
-
} | null);
|
|
1023
|
-
/**
|
|
1024
|
-
* Why the platform aggregate is null; null when it was read successfully
|
|
1025
|
-
*/
|
|
1026
|
-
platform_error: (string | null);
|
|
1027
|
-
}
|
|
1028
938
|
interface ConsentConfigCookieDomainUpsertInput {
|
|
1029
939
|
cookieDomain: ("" | null | string);
|
|
1030
940
|
}
|
|
@@ -1598,6 +1508,7 @@ interface DeploymentCanvasGetOutput {
|
|
|
1598
1508
|
};
|
|
1599
1509
|
markdown?: boolean;
|
|
1600
1510
|
});
|
|
1511
|
+
tracing?: string;
|
|
1601
1512
|
replicas: number;
|
|
1602
1513
|
createdAt: string;
|
|
1603
1514
|
dependsOn: string[];
|
|
@@ -2487,7 +2398,7 @@ interface DeploymentEnvironmentUpdateOutput {
|
|
|
2487
2398
|
baseEnvironmentId: (string | null);
|
|
2488
2399
|
}
|
|
2489
2400
|
interface DeploymentEventsListByEnvironmentInput {
|
|
2490
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2401
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
|
|
2491
2402
|
limit?: number;
|
|
2492
2403
|
since?: string;
|
|
2493
2404
|
until?: string;
|
|
@@ -2495,7 +2406,7 @@ interface DeploymentEventsListByEnvironmentInput {
|
|
|
2495
2406
|
}
|
|
2496
2407
|
type DeploymentEventsListByEnvironmentOutput = {
|
|
2497
2408
|
id: string;
|
|
2498
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2409
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
|
|
2499
2410
|
payload: {
|
|
2500
2411
|
[k: string]: unknown;
|
|
2501
2412
|
};
|
|
@@ -2507,7 +2418,7 @@ type DeploymentEventsListByEnvironmentOutput = {
|
|
|
2507
2418
|
environmentId: (string | null);
|
|
2508
2419
|
}[];
|
|
2509
2420
|
interface DeploymentEventsListByServiceInput {
|
|
2510
|
-
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2421
|
+
type?: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
|
|
2511
2422
|
limit?: number;
|
|
2512
2423
|
since?: string;
|
|
2513
2424
|
until?: string;
|
|
@@ -2516,7 +2427,7 @@ interface DeploymentEventsListByServiceInput {
|
|
|
2516
2427
|
}
|
|
2517
2428
|
type DeploymentEventsListByServiceOutput = {
|
|
2518
2429
|
id: string;
|
|
2519
|
-
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored");
|
|
2430
|
+
type: ("deployment.queued" | "deployment.build.started" | "deployment.build.succeeded" | "deployment.build.failed" | "deployment.deploying" | "deployment.variable.ignored" | "deployment.healthcheck.passed" | "deployment.healthcheck.failed" | "deployment.healthy" | "deployment.failed" | "deployment.replaced" | "deployment.sourcemaps.uploaded" | "deployment.sourcemaps.upload-failed" | "deployment.requeue-failed" | "deployment.release.started" | "deployment.release.log" | "deployment.release.succeeded" | "deployment.release.failed" | "replica.restarted" | "service.scaled" | "service.restarted" | "service.restart-failed" | "domain.verified" | "domain.tls.issued" | "domain.tls.failed" | "domain.www-tls.issued" | "domain.www-tls.failed" | "domain.routing.active" | "domain.routing.failed" | "domain.removed" | "domain.governance.mirror-failed" | "service.slept" | "service.woke" | "service.wake_failed" | "service.sleep-enabled" | "service.sleep-disabled" | "service.sleep-enable-failed" | "cloud-sql.instance.stopped" | "cloud-sql.instance.started" | "cloud-sql.instance.stop-failed" | "cloud-sql.instance.start-failed" | "suspension.workload-stopped" | "suspension.workload-restored" | "managed-service.restarted");
|
|
2520
2431
|
payload: {
|
|
2521
2432
|
[k: string]: unknown;
|
|
2522
2433
|
};
|
|
@@ -2967,6 +2878,10 @@ interface DeploymentServiceCreateInput {
|
|
|
2967
2878
|
};
|
|
2968
2879
|
markdown?: boolean;
|
|
2969
2880
|
});
|
|
2881
|
+
/**
|
|
2882
|
+
* OTel SDK to inject into this service's pods: 'off' (none), 'node' or 'python'. Read when a deploy builds the workload — takes effect on the next deploy, running pods are untouched.
|
|
2883
|
+
*/
|
|
2884
|
+
tracing?: ("off" | "node" | "python");
|
|
2970
2885
|
replicas?: number;
|
|
2971
2886
|
resources?: {
|
|
2972
2887
|
limits?: {
|
|
@@ -3021,6 +2936,7 @@ interface DeploymentServiceCreateOutput {
|
|
|
3021
2936
|
};
|
|
3022
2937
|
markdown?: boolean;
|
|
3023
2938
|
});
|
|
2939
|
+
tracing?: string;
|
|
3024
2940
|
replicas: number;
|
|
3025
2941
|
createdAt: string;
|
|
3026
2942
|
dependsOn: string[];
|
|
@@ -3120,6 +3036,7 @@ interface DeploymentServiceGetOutput {
|
|
|
3120
3036
|
};
|
|
3121
3037
|
markdown?: boolean;
|
|
3122
3038
|
});
|
|
3039
|
+
tracing?: string;
|
|
3123
3040
|
replicas: number;
|
|
3124
3041
|
createdAt: string;
|
|
3125
3042
|
dependsOn: string[];
|
|
@@ -3190,6 +3107,7 @@ type DeploymentServiceListOutput = {
|
|
|
3190
3107
|
};
|
|
3191
3108
|
markdown?: boolean;
|
|
3192
3109
|
});
|
|
3110
|
+
tracing?: string;
|
|
3193
3111
|
replicas: number;
|
|
3194
3112
|
createdAt: string;
|
|
3195
3113
|
dependsOn: string[];
|
|
@@ -3328,6 +3246,7 @@ interface DeploymentServiceScaleOutput {
|
|
|
3328
3246
|
};
|
|
3329
3247
|
markdown?: boolean;
|
|
3330
3248
|
});
|
|
3249
|
+
tracing?: string;
|
|
3331
3250
|
replicas: number;
|
|
3332
3251
|
createdAt: string;
|
|
3333
3252
|
dependsOn: string[];
|
|
@@ -3394,6 +3313,10 @@ interface DeploymentServiceUpdateInput {
|
|
|
3394
3313
|
};
|
|
3395
3314
|
markdown?: boolean;
|
|
3396
3315
|
});
|
|
3316
|
+
/**
|
|
3317
|
+
* OTel SDK to inject into this service's pods: 'off' (none), 'node' or 'python'. Read when a deploy builds the workload — takes effect on the next deploy, running pods are untouched.
|
|
3318
|
+
*/
|
|
3319
|
+
tracing?: ("off" | "node" | "python");
|
|
3397
3320
|
replicas?: number;
|
|
3398
3321
|
resources?: {
|
|
3399
3322
|
limits?: {
|
|
@@ -3450,6 +3373,7 @@ interface DeploymentServiceUpdateOutput {
|
|
|
3450
3373
|
};
|
|
3451
3374
|
markdown?: boolean;
|
|
3452
3375
|
});
|
|
3376
|
+
tracing?: string;
|
|
3453
3377
|
replicas: number;
|
|
3454
3378
|
createdAt: string;
|
|
3455
3379
|
dependsOn: string[];
|
|
@@ -12426,179 +12350,1831 @@ interface MailTemplateUpdateInput {
|
|
|
12426
12350
|
},
|
|
12427
12351
|
{
|
|
12428
12352
|
/**
|
|
12429
|
-
* Placeholder identifier used as {{ name }}
|
|
12353
|
+
* Placeholder identifier used as {{ name }}
|
|
12354
|
+
*/
|
|
12355
|
+
name: string;
|
|
12356
|
+
/**
|
|
12357
|
+
* Declared type (metadata; rendered as string in v1)
|
|
12358
|
+
*/
|
|
12359
|
+
type: ("string" | "number" | "boolean");
|
|
12360
|
+
/**
|
|
12361
|
+
* Value used when none is supplied
|
|
12362
|
+
*/
|
|
12363
|
+
fallback?: string;
|
|
12364
|
+
/**
|
|
12365
|
+
* If true, an absent value renders as empty string
|
|
12366
|
+
*/
|
|
12367
|
+
optional?: boolean;
|
|
12368
|
+
}
|
|
12369
|
+
];
|
|
12370
|
+
}
|
|
12371
|
+
interface MailTemplateUpdateOutput {
|
|
12372
|
+
id: string;
|
|
12373
|
+
html: string;
|
|
12374
|
+
name: string;
|
|
12375
|
+
text: (string | null);
|
|
12376
|
+
status: string;
|
|
12377
|
+
subject: string;
|
|
12378
|
+
createdAt: string;
|
|
12379
|
+
updatedAt: string;
|
|
12380
|
+
variables: {
|
|
12381
|
+
name: string;
|
|
12382
|
+
type: string;
|
|
12383
|
+
fallback?: string;
|
|
12384
|
+
optional: boolean;
|
|
12385
|
+
}[];
|
|
12386
|
+
}
|
|
12387
|
+
interface MailUsageGetInput {
|
|
12388
|
+
}
|
|
12389
|
+
interface MailUsageGetOutput {
|
|
12390
|
+
emails: {
|
|
12391
|
+
day: MailUsageGetOutputDay;
|
|
12392
|
+
month: MailUsageGetOutputDay;
|
|
12393
|
+
blocked: boolean;
|
|
12394
|
+
hard_cap: number;
|
|
12395
|
+
};
|
|
12396
|
+
period: {
|
|
12397
|
+
day: string;
|
|
12398
|
+
month: string;
|
|
12399
|
+
};
|
|
12400
|
+
contacts: {
|
|
12401
|
+
count: number;
|
|
12402
|
+
};
|
|
12403
|
+
}
|
|
12404
|
+
interface MailUsageGetOutputDay {
|
|
12405
|
+
used: number;
|
|
12406
|
+
limit: number;
|
|
12407
|
+
remaining: number;
|
|
12408
|
+
}
|
|
12409
|
+
interface MailWebhookCreateInput {
|
|
12410
|
+
/**
|
|
12411
|
+
* HTTPS URL that signed events are POSTed to
|
|
12412
|
+
*/
|
|
12413
|
+
url: string;
|
|
12414
|
+
/**
|
|
12415
|
+
* Optional human label
|
|
12416
|
+
*/
|
|
12417
|
+
description?: string;
|
|
12418
|
+
/**
|
|
12419
|
+
* Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
|
|
12420
|
+
*
|
|
12421
|
+
* @minItems 1
|
|
12422
|
+
*/
|
|
12423
|
+
enabled_events: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
|
|
12424
|
+
}
|
|
12425
|
+
interface MailWebhookCreateOutput {
|
|
12426
|
+
id: string;
|
|
12427
|
+
url: string;
|
|
12428
|
+
secret: string;
|
|
12429
|
+
enabled: boolean;
|
|
12430
|
+
created_at: string;
|
|
12431
|
+
updated_at: string;
|
|
12432
|
+
description: (string | null);
|
|
12433
|
+
enabled_events: string[];
|
|
12434
|
+
}
|
|
12435
|
+
interface MailWebhookDeleteInput {
|
|
12436
|
+
/**
|
|
12437
|
+
* Webhook endpoint id
|
|
12438
|
+
*/
|
|
12439
|
+
id: string;
|
|
12440
|
+
}
|
|
12441
|
+
interface MailWebhookDeleteOutput {
|
|
12442
|
+
id: string;
|
|
12443
|
+
deleted: boolean;
|
|
12444
|
+
}
|
|
12445
|
+
interface MailWebhookDeliveriesListInput {
|
|
12446
|
+
/**
|
|
12447
|
+
* Webhook endpoint id
|
|
12448
|
+
*/
|
|
12449
|
+
id: string;
|
|
12450
|
+
/**
|
|
12451
|
+
* Max items (1-100, default 50)
|
|
12452
|
+
*/
|
|
12453
|
+
limit?: number;
|
|
12454
|
+
}
|
|
12455
|
+
type MailWebhookDeliveriesListOutput = {
|
|
12456
|
+
id: string;
|
|
12457
|
+
status: string;
|
|
12458
|
+
attempts: number;
|
|
12459
|
+
event_id: string;
|
|
12460
|
+
created_at: string;
|
|
12461
|
+
event_type: string;
|
|
12462
|
+
last_error: (string | null);
|
|
12463
|
+
updated_at: string;
|
|
12464
|
+
endpoint_id: string;
|
|
12465
|
+
last_attempt_at: (string | null);
|
|
12466
|
+
response_status: (number | null);
|
|
12467
|
+
}[];
|
|
12468
|
+
interface MailWebhookGetInput {
|
|
12469
|
+
/**
|
|
12470
|
+
* Webhook endpoint id
|
|
12471
|
+
*/
|
|
12472
|
+
id: string;
|
|
12473
|
+
}
|
|
12474
|
+
interface MailWebhookGetOutput {
|
|
12475
|
+
id: string;
|
|
12476
|
+
url: string;
|
|
12477
|
+
enabled: boolean;
|
|
12478
|
+
created_at: string;
|
|
12479
|
+
updated_at: string;
|
|
12480
|
+
description: (string | null);
|
|
12481
|
+
enabled_events: string[];
|
|
12482
|
+
}
|
|
12483
|
+
interface MailWebhookListInput {
|
|
12484
|
+
}
|
|
12485
|
+
type MailWebhookListOutput = {
|
|
12486
|
+
id: string;
|
|
12487
|
+
url: string;
|
|
12488
|
+
enabled: boolean;
|
|
12489
|
+
created_at: string;
|
|
12490
|
+
updated_at: string;
|
|
12491
|
+
description: (string | null);
|
|
12492
|
+
enabled_events: string[];
|
|
12493
|
+
}[];
|
|
12494
|
+
interface MailWebhookUpdateInput {
|
|
12495
|
+
/**
|
|
12496
|
+
* Webhook endpoint id
|
|
12497
|
+
*/
|
|
12498
|
+
id: string;
|
|
12499
|
+
/**
|
|
12500
|
+
* HTTPS URL that signed events are POSTed to
|
|
12501
|
+
*/
|
|
12502
|
+
url?: string;
|
|
12503
|
+
/**
|
|
12504
|
+
* Enable (true) or disable (false) delivery
|
|
12505
|
+
*/
|
|
12506
|
+
enabled?: boolean;
|
|
12507
|
+
/**
|
|
12508
|
+
* Optional human label
|
|
12509
|
+
*/
|
|
12510
|
+
description?: (string | null);
|
|
12511
|
+
/**
|
|
12512
|
+
* Event types to deliver. One or more of: email.delivered, email.bounced, email.complained, email.suppressed, email.opened, email.clicked
|
|
12513
|
+
*
|
|
12514
|
+
* @minItems 1
|
|
12515
|
+
*/
|
|
12516
|
+
enabled_events?: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
|
|
12517
|
+
}
|
|
12518
|
+
interface MailWebhookUpdateOutput {
|
|
12519
|
+
id: string;
|
|
12520
|
+
url: string;
|
|
12521
|
+
enabled: boolean;
|
|
12522
|
+
created_at: string;
|
|
12523
|
+
updated_at: string;
|
|
12524
|
+
description: (string | null);
|
|
12525
|
+
enabled_events: string[];
|
|
12526
|
+
}
|
|
12527
|
+
interface ObserveAlertsCreateInput {
|
|
12528
|
+
/**
|
|
12529
|
+
* error_rate counts error events in the window; log_match counts log lines matching q
|
|
12530
|
+
*/
|
|
12531
|
+
kind: ("error_rate" | "log_match");
|
|
12532
|
+
/**
|
|
12533
|
+
* What to call the rule, up to 200 characters
|
|
12534
|
+
*/
|
|
12535
|
+
name: string;
|
|
12536
|
+
/**
|
|
12537
|
+
* false registers the rule without evaluating it
|
|
12538
|
+
*/
|
|
12539
|
+
enabled?: boolean;
|
|
12540
|
+
/**
|
|
12541
|
+
* The kind’s parameters
|
|
12542
|
+
*/
|
|
12543
|
+
condition: {
|
|
12544
|
+
/**
|
|
12545
|
+
* log_match only: the same Lucene expression observe_logs_search takes, e.g. level:error AND service:api
|
|
12546
|
+
*/
|
|
12547
|
+
q?: string;
|
|
12548
|
+
/**
|
|
12549
|
+
* How far back each evaluation looks
|
|
12550
|
+
*/
|
|
12551
|
+
window: ("5m" | "15m" | "1h");
|
|
12552
|
+
/**
|
|
12553
|
+
* How many matches in the window count as a problem. At least 1
|
|
12554
|
+
*/
|
|
12555
|
+
threshold: number;
|
|
12556
|
+
};
|
|
12557
|
+
/**
|
|
12558
|
+
* How long after firing the rule stays quiet. Default 60, up to a week
|
|
12559
|
+
*/
|
|
12560
|
+
throttleMinutes?: number;
|
|
12561
|
+
}
|
|
12562
|
+
interface ObserveAlertsCreateOutput {
|
|
12563
|
+
/**
|
|
12564
|
+
* Identifier of the rule
|
|
12565
|
+
*/
|
|
12566
|
+
id: string;
|
|
12567
|
+
/**
|
|
12568
|
+
* What the rule measures
|
|
12569
|
+
*/
|
|
12570
|
+
kind: ("error_rate" | "log_match");
|
|
12571
|
+
/**
|
|
12572
|
+
* Human name the rule was registered under
|
|
12573
|
+
*/
|
|
12574
|
+
name: string;
|
|
12575
|
+
/**
|
|
12576
|
+
* firing means the condition is met right now
|
|
12577
|
+
*/
|
|
12578
|
+
state: ("ok" | "firing");
|
|
12579
|
+
/**
|
|
12580
|
+
* Whether the evaluator measures it every minute
|
|
12581
|
+
*/
|
|
12582
|
+
enabled: boolean;
|
|
12583
|
+
/**
|
|
12584
|
+
* The kind’s parameters: threshold and window, plus q for log_match
|
|
12585
|
+
*/
|
|
12586
|
+
condition: {
|
|
12587
|
+
[k: string]: unknown;
|
|
12588
|
+
};
|
|
12589
|
+
/**
|
|
12590
|
+
* ISO 8601 creation timestamp
|
|
12591
|
+
*/
|
|
12592
|
+
createdAt: string;
|
|
12593
|
+
/**
|
|
12594
|
+
* ISO 8601 timestamp of the last change
|
|
12595
|
+
*/
|
|
12596
|
+
updatedAt: string;
|
|
12597
|
+
/**
|
|
12598
|
+
* ISO 8601 time it last fired, or null
|
|
12599
|
+
*/
|
|
12600
|
+
lastFiredAt: (string | null);
|
|
12601
|
+
/**
|
|
12602
|
+
* How long after firing the rule stays quiet
|
|
12603
|
+
*/
|
|
12604
|
+
throttleMinutes: number;
|
|
12605
|
+
}
|
|
12606
|
+
interface ObserveAlertsDeleteInput {
|
|
12607
|
+
/**
|
|
12608
|
+
* Identifier of the rule
|
|
12609
|
+
*/
|
|
12610
|
+
id: string;
|
|
12611
|
+
}
|
|
12612
|
+
interface ObserveAlertsDeleteOutput {
|
|
12613
|
+
/**
|
|
12614
|
+
* Identifier of the removed rule
|
|
12615
|
+
*/
|
|
12616
|
+
id: string;
|
|
12617
|
+
/**
|
|
12618
|
+
* Always true; the call fails otherwise
|
|
12619
|
+
*/
|
|
12620
|
+
deleted: true;
|
|
12621
|
+
}
|
|
12622
|
+
interface ObserveAlertsEventsListInput {
|
|
12623
|
+
/**
|
|
12624
|
+
* Page size, 1..200
|
|
12625
|
+
*/
|
|
12626
|
+
limit?: number;
|
|
12627
|
+
/**
|
|
12628
|
+
* Number of firings to skip
|
|
12629
|
+
*/
|
|
12630
|
+
offset?: number;
|
|
12631
|
+
/**
|
|
12632
|
+
* Only firings of this rule
|
|
12633
|
+
*/
|
|
12634
|
+
ruleId?: string;
|
|
12635
|
+
}
|
|
12636
|
+
type ObserveAlertsEventsListOutput = {
|
|
12637
|
+
/**
|
|
12638
|
+
* Identifier of the firing
|
|
12639
|
+
*/
|
|
12640
|
+
id: string;
|
|
12641
|
+
/**
|
|
12642
|
+
* Rule that fired
|
|
12643
|
+
*/
|
|
12644
|
+
ruleId: string;
|
|
12645
|
+
/**
|
|
12646
|
+
* ISO 8601 time the condition was first met
|
|
12647
|
+
*/
|
|
12648
|
+
firedAt: string;
|
|
12649
|
+
/**
|
|
12650
|
+
* What the measure was when it fired
|
|
12651
|
+
*/
|
|
12652
|
+
measured: number;
|
|
12653
|
+
/**
|
|
12654
|
+
* The condition as it stood then, not as the rule reads today
|
|
12655
|
+
*/
|
|
12656
|
+
condition: {
|
|
12657
|
+
[k: string]: unknown;
|
|
12658
|
+
};
|
|
12659
|
+
/**
|
|
12660
|
+
* ISO 8601 time it cleared, or null while it is still firing
|
|
12661
|
+
*/
|
|
12662
|
+
resolvedAt: (string | null);
|
|
12663
|
+
}[];
|
|
12664
|
+
interface ObserveAlertsGetInput {
|
|
12665
|
+
/**
|
|
12666
|
+
* Identifier of the rule
|
|
12667
|
+
*/
|
|
12668
|
+
id: string;
|
|
12669
|
+
}
|
|
12670
|
+
interface ObserveAlertsGetOutput {
|
|
12671
|
+
/**
|
|
12672
|
+
* Identifier of the rule
|
|
12673
|
+
*/
|
|
12674
|
+
id: string;
|
|
12675
|
+
/**
|
|
12676
|
+
* What the rule measures
|
|
12677
|
+
*/
|
|
12678
|
+
kind: ("error_rate" | "log_match");
|
|
12679
|
+
/**
|
|
12680
|
+
* Human name the rule was registered under
|
|
12681
|
+
*/
|
|
12682
|
+
name: string;
|
|
12683
|
+
/**
|
|
12684
|
+
* firing means the condition is met right now
|
|
12685
|
+
*/
|
|
12686
|
+
state: ("ok" | "firing");
|
|
12687
|
+
/**
|
|
12688
|
+
* Whether the evaluator measures it every minute
|
|
12689
|
+
*/
|
|
12690
|
+
enabled: boolean;
|
|
12691
|
+
/**
|
|
12692
|
+
* The kind’s parameters: threshold and window, plus q for log_match
|
|
12693
|
+
*/
|
|
12694
|
+
condition: {
|
|
12695
|
+
[k: string]: unknown;
|
|
12696
|
+
};
|
|
12697
|
+
/**
|
|
12698
|
+
* ISO 8601 creation timestamp
|
|
12699
|
+
*/
|
|
12700
|
+
createdAt: string;
|
|
12701
|
+
/**
|
|
12702
|
+
* ISO 8601 timestamp of the last change
|
|
12703
|
+
*/
|
|
12704
|
+
updatedAt: string;
|
|
12705
|
+
/**
|
|
12706
|
+
* ISO 8601 time it last fired, or null
|
|
12707
|
+
*/
|
|
12708
|
+
lastFiredAt: (string | null);
|
|
12709
|
+
/**
|
|
12710
|
+
* How long after firing the rule stays quiet
|
|
12711
|
+
*/
|
|
12712
|
+
throttleMinutes: number;
|
|
12713
|
+
}
|
|
12714
|
+
interface ObserveAlertsListInput {
|
|
12715
|
+
}
|
|
12716
|
+
type ObserveAlertsListOutput = {
|
|
12717
|
+
/**
|
|
12718
|
+
* Identifier of the rule
|
|
12719
|
+
*/
|
|
12720
|
+
id: string;
|
|
12721
|
+
/**
|
|
12722
|
+
* What the rule measures
|
|
12723
|
+
*/
|
|
12724
|
+
kind: ("error_rate" | "log_match");
|
|
12725
|
+
/**
|
|
12726
|
+
* Human name the rule was registered under
|
|
12727
|
+
*/
|
|
12728
|
+
name: string;
|
|
12729
|
+
/**
|
|
12730
|
+
* firing means the condition is met right now
|
|
12731
|
+
*/
|
|
12732
|
+
state: ("ok" | "firing");
|
|
12733
|
+
/**
|
|
12734
|
+
* Whether the evaluator measures it every minute
|
|
12735
|
+
*/
|
|
12736
|
+
enabled: boolean;
|
|
12737
|
+
/**
|
|
12738
|
+
* The kind’s parameters: threshold and window, plus q for log_match
|
|
12739
|
+
*/
|
|
12740
|
+
condition: {
|
|
12741
|
+
[k: string]: unknown;
|
|
12742
|
+
};
|
|
12743
|
+
/**
|
|
12744
|
+
* ISO 8601 creation timestamp
|
|
12745
|
+
*/
|
|
12746
|
+
createdAt: string;
|
|
12747
|
+
/**
|
|
12748
|
+
* ISO 8601 timestamp of the last change
|
|
12749
|
+
*/
|
|
12750
|
+
updatedAt: string;
|
|
12751
|
+
/**
|
|
12752
|
+
* ISO 8601 time it last fired, or null
|
|
12753
|
+
*/
|
|
12754
|
+
lastFiredAt: (string | null);
|
|
12755
|
+
/**
|
|
12756
|
+
* How long after firing the rule stays quiet
|
|
12757
|
+
*/
|
|
12758
|
+
throttleMinutes: number;
|
|
12759
|
+
}[];
|
|
12760
|
+
interface ObserveAlertsUpdateInput {
|
|
12761
|
+
/**
|
|
12762
|
+
* Identifier of the rule to change
|
|
12763
|
+
*/
|
|
12764
|
+
id: string;
|
|
12765
|
+
/**
|
|
12766
|
+
* New name for the rule
|
|
12767
|
+
*/
|
|
12768
|
+
name?: string;
|
|
12769
|
+
/**
|
|
12770
|
+
* false stops evaluation and keeps the rule
|
|
12771
|
+
*/
|
|
12772
|
+
enabled?: boolean;
|
|
12773
|
+
/**
|
|
12774
|
+
* The kind’s parameters
|
|
12775
|
+
*/
|
|
12776
|
+
condition?: {
|
|
12777
|
+
/**
|
|
12778
|
+
* log_match only: the same Lucene expression observe_logs_search takes, e.g. level:error AND service:api
|
|
12779
|
+
*/
|
|
12780
|
+
q?: string;
|
|
12781
|
+
/**
|
|
12782
|
+
* How far back each evaluation looks
|
|
12783
|
+
*/
|
|
12784
|
+
window: ("5m" | "15m" | "1h");
|
|
12785
|
+
/**
|
|
12786
|
+
* How many matches in the window count as a problem. At least 1
|
|
12787
|
+
*/
|
|
12788
|
+
threshold: number;
|
|
12789
|
+
};
|
|
12790
|
+
/**
|
|
12791
|
+
* New quiet period after a firing, in minutes
|
|
12792
|
+
*/
|
|
12793
|
+
throttleMinutes?: number;
|
|
12794
|
+
}
|
|
12795
|
+
interface ObserveAlertsUpdateOutput {
|
|
12796
|
+
/**
|
|
12797
|
+
* Identifier of the rule
|
|
12798
|
+
*/
|
|
12799
|
+
id: string;
|
|
12800
|
+
/**
|
|
12801
|
+
* What the rule measures
|
|
12802
|
+
*/
|
|
12803
|
+
kind: ("error_rate" | "log_match");
|
|
12804
|
+
/**
|
|
12805
|
+
* Human name the rule was registered under
|
|
12806
|
+
*/
|
|
12807
|
+
name: string;
|
|
12808
|
+
/**
|
|
12809
|
+
* firing means the condition is met right now
|
|
12810
|
+
*/
|
|
12811
|
+
state: ("ok" | "firing");
|
|
12812
|
+
/**
|
|
12813
|
+
* Whether the evaluator measures it every minute
|
|
12814
|
+
*/
|
|
12815
|
+
enabled: boolean;
|
|
12816
|
+
/**
|
|
12817
|
+
* The kind’s parameters: threshold and window, plus q for log_match
|
|
12818
|
+
*/
|
|
12819
|
+
condition: {
|
|
12820
|
+
[k: string]: unknown;
|
|
12821
|
+
};
|
|
12822
|
+
/**
|
|
12823
|
+
* ISO 8601 creation timestamp
|
|
12824
|
+
*/
|
|
12825
|
+
createdAt: string;
|
|
12826
|
+
/**
|
|
12827
|
+
* ISO 8601 timestamp of the last change
|
|
12828
|
+
*/
|
|
12829
|
+
updatedAt: string;
|
|
12830
|
+
/**
|
|
12831
|
+
* ISO 8601 time it last fired, or null
|
|
12832
|
+
*/
|
|
12833
|
+
lastFiredAt: (string | null);
|
|
12834
|
+
/**
|
|
12835
|
+
* How long after firing the rule stays quiet
|
|
12836
|
+
*/
|
|
12837
|
+
throttleMinutes: number;
|
|
12838
|
+
}
|
|
12839
|
+
interface ObserveArtifactsDeleteInput {
|
|
12840
|
+
/**
|
|
12841
|
+
* Identifier of the artifact to delete. An artifact of another product is reported as not found
|
|
12842
|
+
*/
|
|
12843
|
+
id: string;
|
|
12844
|
+
}
|
|
12845
|
+
interface ObserveArtifactsDeleteOutput {
|
|
12846
|
+
/**
|
|
12847
|
+
* Identifier of the stored artifact
|
|
12848
|
+
*/
|
|
12849
|
+
id: string;
|
|
12850
|
+
/**
|
|
12851
|
+
* Whether this is the minified source or its map
|
|
12852
|
+
*/
|
|
12853
|
+
kind: ("source" | "sourcemap");
|
|
12854
|
+
/**
|
|
12855
|
+
* Debug ID the build stamped into the file and its source map
|
|
12856
|
+
*/
|
|
12857
|
+
debugId: string;
|
|
12858
|
+
/**
|
|
12859
|
+
* Size of the stored artifact in bytes
|
|
12860
|
+
*/
|
|
12861
|
+
byteSize: number;
|
|
12862
|
+
/**
|
|
12863
|
+
* Name the file was uploaded under, e.g. "app.min.js.map"
|
|
12864
|
+
*/
|
|
12865
|
+
fileName: string;
|
|
12866
|
+
/**
|
|
12867
|
+
* ISO 8601 timestamp of the upload
|
|
12868
|
+
*/
|
|
12869
|
+
uploadedAt: string;
|
|
12870
|
+
}
|
|
12871
|
+
interface ObserveArtifactsListInput {
|
|
12872
|
+
/**
|
|
12873
|
+
* Maximum number of artifacts to return, 1..200 (default 50)
|
|
12874
|
+
*/
|
|
12875
|
+
limit?: number;
|
|
12876
|
+
/**
|
|
12877
|
+
* Only return artifacts carrying this debug ID; omit to list all of them
|
|
12878
|
+
*/
|
|
12879
|
+
debugId?: string;
|
|
12880
|
+
}
|
|
12881
|
+
type ObserveArtifactsListOutput = {
|
|
12882
|
+
/**
|
|
12883
|
+
* Identifier of the stored artifact
|
|
12884
|
+
*/
|
|
12885
|
+
id: string;
|
|
12886
|
+
/**
|
|
12887
|
+
* Whether this is the minified source or its map
|
|
12888
|
+
*/
|
|
12889
|
+
kind: ("source" | "sourcemap");
|
|
12890
|
+
/**
|
|
12891
|
+
* Debug ID the build stamped into the file and its source map
|
|
12892
|
+
*/
|
|
12893
|
+
debugId: string;
|
|
12894
|
+
/**
|
|
12895
|
+
* Size of the stored artifact in bytes
|
|
12896
|
+
*/
|
|
12897
|
+
byteSize: number;
|
|
12898
|
+
/**
|
|
12899
|
+
* Name the file was uploaded under, e.g. "app.min.js.map"
|
|
12900
|
+
*/
|
|
12901
|
+
fileName: string;
|
|
12902
|
+
/**
|
|
12903
|
+
* ISO 8601 timestamp of the upload
|
|
12904
|
+
*/
|
|
12905
|
+
uploadedAt: string;
|
|
12906
|
+
}[];
|
|
12907
|
+
interface ObserveArtifactsResolveInput {
|
|
12908
|
+
/**
|
|
12909
|
+
* Issue whose latest event should have its stack resolved. An issue of another product is reported as not found
|
|
12910
|
+
*/
|
|
12911
|
+
issueId: string;
|
|
12912
|
+
}
|
|
12913
|
+
interface ObserveArtifactsResolveOutput {
|
|
12914
|
+
/**
|
|
12915
|
+
* The stack, resolved where a source map matched
|
|
12916
|
+
*/
|
|
12917
|
+
frames: {
|
|
12918
|
+
/**
|
|
12919
|
+
* Column number, original when the frame resolved
|
|
12920
|
+
*/
|
|
12921
|
+
colno?: number;
|
|
12922
|
+
/**
|
|
12923
|
+
* Whether the frame belongs to the application rather than a dependency
|
|
12924
|
+
*/
|
|
12925
|
+
inApp?: boolean;
|
|
12926
|
+
/**
|
|
12927
|
+
* Line number, original when the frame resolved
|
|
12928
|
+
*/
|
|
12929
|
+
lineno?: number;
|
|
12930
|
+
/**
|
|
12931
|
+
* Original file when the frame resolved, else the minified one
|
|
12932
|
+
*/
|
|
12933
|
+
filename?: string;
|
|
12934
|
+
/**
|
|
12935
|
+
* Function name, original where the source map names one
|
|
12936
|
+
*/
|
|
12937
|
+
function?: string;
|
|
12938
|
+
/**
|
|
12939
|
+
* False means no source map matched and the frame is exactly as it was recorded
|
|
12940
|
+
*/
|
|
12941
|
+
resolved: boolean;
|
|
12942
|
+
}[];
|
|
12943
|
+
/**
|
|
12944
|
+
* Identifier of the event the stack was taken from
|
|
12945
|
+
*/
|
|
12946
|
+
eventId: string;
|
|
12947
|
+
/**
|
|
12948
|
+
* The issue whose stack this is
|
|
12949
|
+
*/
|
|
12950
|
+
issueId: string;
|
|
12951
|
+
}
|
|
12952
|
+
interface ObserveIssuesArchiveInput {
|
|
12953
|
+
/**
|
|
12954
|
+
* Identifier of the issue
|
|
12955
|
+
*/
|
|
12956
|
+
id: string;
|
|
12957
|
+
}
|
|
12958
|
+
interface ObserveIssuesArchiveOutput {
|
|
12959
|
+
/**
|
|
12960
|
+
* Identifier of the issue
|
|
12961
|
+
*/
|
|
12962
|
+
id: string;
|
|
12963
|
+
/**
|
|
12964
|
+
* Display title, set when the issue opened and never rewritten
|
|
12965
|
+
*/
|
|
12966
|
+
title: string;
|
|
12967
|
+
/**
|
|
12968
|
+
* unresolved, resolved or archived
|
|
12969
|
+
*/
|
|
12970
|
+
status: string;
|
|
12971
|
+
/**
|
|
12972
|
+
* Where the error appears to come from, or null
|
|
12973
|
+
*/
|
|
12974
|
+
culprit: (string | null);
|
|
12975
|
+
/**
|
|
12976
|
+
* Who owns the issue, or null if unassigned
|
|
12977
|
+
*/
|
|
12978
|
+
assignee: (string | null);
|
|
12979
|
+
/**
|
|
12980
|
+
* ISO 8601 timestamp of the most recent event
|
|
12981
|
+
*/
|
|
12982
|
+
lastSeen: string;
|
|
12983
|
+
/**
|
|
12984
|
+
* ISO 8601 timestamp of the first event
|
|
12985
|
+
*/
|
|
12986
|
+
firstSeen: string;
|
|
12987
|
+
/**
|
|
12988
|
+
* ISO 8601 archive timestamp, or null
|
|
12989
|
+
*/
|
|
12990
|
+
archivedAt: (string | null);
|
|
12991
|
+
/**
|
|
12992
|
+
* How many events have landed on this issue
|
|
12993
|
+
*/
|
|
12994
|
+
eventCount: number;
|
|
12995
|
+
/**
|
|
12996
|
+
* ISO 8601 resolution timestamp, or null
|
|
12997
|
+
*/
|
|
12998
|
+
resolvedAt: (string | null);
|
|
12999
|
+
/**
|
|
13000
|
+
* Environment the issue was first seen in, or null
|
|
13001
|
+
*/
|
|
13002
|
+
environment: (string | null);
|
|
13003
|
+
/**
|
|
13004
|
+
* Stable grouping hash the issue is keyed on
|
|
13005
|
+
*/
|
|
13006
|
+
fingerprint: string;
|
|
13007
|
+
/**
|
|
13008
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13009
|
+
*/
|
|
13010
|
+
regressedAt: (string | null);
|
|
13011
|
+
/**
|
|
13012
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13013
|
+
*/
|
|
13014
|
+
groupingRule: string;
|
|
13015
|
+
/**
|
|
13016
|
+
* Exception class of the first event, or null
|
|
13017
|
+
*/
|
|
13018
|
+
exceptionType: (string | null);
|
|
13019
|
+
/**
|
|
13020
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13021
|
+
*/
|
|
13022
|
+
groupingVersion: string;
|
|
13023
|
+
}
|
|
13024
|
+
interface ObserveIssuesAssignInput {
|
|
13025
|
+
/**
|
|
13026
|
+
* Identifier of the issue
|
|
13027
|
+
*/
|
|
13028
|
+
id: string;
|
|
13029
|
+
/**
|
|
13030
|
+
* Who should own the issue; null clears the assignment
|
|
13031
|
+
*/
|
|
13032
|
+
assignee: (string | null);
|
|
13033
|
+
}
|
|
13034
|
+
interface ObserveIssuesAssignOutput {
|
|
13035
|
+
/**
|
|
13036
|
+
* Identifier of the issue
|
|
13037
|
+
*/
|
|
13038
|
+
id: string;
|
|
13039
|
+
/**
|
|
13040
|
+
* Display title, set when the issue opened and never rewritten
|
|
13041
|
+
*/
|
|
13042
|
+
title: string;
|
|
13043
|
+
/**
|
|
13044
|
+
* unresolved, resolved or archived
|
|
13045
|
+
*/
|
|
13046
|
+
status: string;
|
|
13047
|
+
/**
|
|
13048
|
+
* Where the error appears to come from, or null
|
|
13049
|
+
*/
|
|
13050
|
+
culprit: (string | null);
|
|
13051
|
+
/**
|
|
13052
|
+
* Who owns the issue, or null if unassigned
|
|
13053
|
+
*/
|
|
13054
|
+
assignee: (string | null);
|
|
13055
|
+
/**
|
|
13056
|
+
* ISO 8601 timestamp of the most recent event
|
|
13057
|
+
*/
|
|
13058
|
+
lastSeen: string;
|
|
13059
|
+
/**
|
|
13060
|
+
* ISO 8601 timestamp of the first event
|
|
13061
|
+
*/
|
|
13062
|
+
firstSeen: string;
|
|
13063
|
+
/**
|
|
13064
|
+
* ISO 8601 archive timestamp, or null
|
|
13065
|
+
*/
|
|
13066
|
+
archivedAt: (string | null);
|
|
13067
|
+
/**
|
|
13068
|
+
* How many events have landed on this issue
|
|
13069
|
+
*/
|
|
13070
|
+
eventCount: number;
|
|
13071
|
+
/**
|
|
13072
|
+
* ISO 8601 resolution timestamp, or null
|
|
13073
|
+
*/
|
|
13074
|
+
resolvedAt: (string | null);
|
|
13075
|
+
/**
|
|
13076
|
+
* Environment the issue was first seen in, or null
|
|
13077
|
+
*/
|
|
13078
|
+
environment: (string | null);
|
|
13079
|
+
/**
|
|
13080
|
+
* Stable grouping hash the issue is keyed on
|
|
13081
|
+
*/
|
|
13082
|
+
fingerprint: string;
|
|
13083
|
+
/**
|
|
13084
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13085
|
+
*/
|
|
13086
|
+
regressedAt: (string | null);
|
|
13087
|
+
/**
|
|
13088
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13089
|
+
*/
|
|
13090
|
+
groupingRule: string;
|
|
13091
|
+
/**
|
|
13092
|
+
* Exception class of the first event, or null
|
|
13093
|
+
*/
|
|
13094
|
+
exceptionType: (string | null);
|
|
13095
|
+
/**
|
|
13096
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13097
|
+
*/
|
|
13098
|
+
groupingVersion: string;
|
|
13099
|
+
}
|
|
13100
|
+
interface ObserveIssuesGetInput {
|
|
13101
|
+
/**
|
|
13102
|
+
* Identifier of the issue
|
|
13103
|
+
*/
|
|
13104
|
+
id: string;
|
|
13105
|
+
}
|
|
13106
|
+
interface ObserveIssuesGetOutput {
|
|
13107
|
+
/**
|
|
13108
|
+
* Identifier of the issue
|
|
13109
|
+
*/
|
|
13110
|
+
id: string;
|
|
13111
|
+
/**
|
|
13112
|
+
* Stack of the most recent event, or null when the issue has no events yet or the stack could not be read
|
|
13113
|
+
*/
|
|
13114
|
+
stack: ({
|
|
13115
|
+
/**
|
|
13116
|
+
* The stack, resolved where a stored source map matched the frame
|
|
13117
|
+
*/
|
|
13118
|
+
frames: {
|
|
13119
|
+
/**
|
|
13120
|
+
* Column number, original when the frame resolved
|
|
13121
|
+
*/
|
|
13122
|
+
colno?: number;
|
|
13123
|
+
/**
|
|
13124
|
+
* Whether the frame belongs to the application rather than a dependency
|
|
13125
|
+
*/
|
|
13126
|
+
inApp?: boolean;
|
|
13127
|
+
/**
|
|
13128
|
+
* Line number, original when the frame resolved
|
|
13129
|
+
*/
|
|
13130
|
+
lineno?: number;
|
|
13131
|
+
/**
|
|
13132
|
+
* Original file when the frame resolved, else the minified one
|
|
13133
|
+
*/
|
|
13134
|
+
filename?: string;
|
|
13135
|
+
/**
|
|
13136
|
+
* Function name, original where the source map names one
|
|
13137
|
+
*/
|
|
13138
|
+
function?: string;
|
|
13139
|
+
/**
|
|
13140
|
+
* False means no source map matched and the frame is exactly as it was recorded
|
|
13141
|
+
*/
|
|
13142
|
+
resolved: boolean;
|
|
13143
|
+
}[];
|
|
13144
|
+
/**
|
|
13145
|
+
* Identifier of the event the stack was taken from
|
|
13146
|
+
*/
|
|
13147
|
+
eventId: string;
|
|
13148
|
+
/**
|
|
13149
|
+
* The stacktrace exactly as the emitter reported it, for events that carry one opaque string instead of frames (OTel span exceptions). Null for Sentry-source events, whose stack is in `frames`.
|
|
13150
|
+
*/
|
|
13151
|
+
rawStacktrace: (string | null);
|
|
13152
|
+
} | null);
|
|
13153
|
+
/**
|
|
13154
|
+
* Display title, set when the issue opened and never rewritten
|
|
13155
|
+
*/
|
|
13156
|
+
title: string;
|
|
13157
|
+
/**
|
|
13158
|
+
* unresolved, resolved or archived
|
|
13159
|
+
*/
|
|
13160
|
+
status: string;
|
|
13161
|
+
/**
|
|
13162
|
+
* Where the error appears to come from, or null
|
|
13163
|
+
*/
|
|
13164
|
+
culprit: (string | null);
|
|
13165
|
+
/**
|
|
13166
|
+
* Who owns the issue, or null if unassigned
|
|
13167
|
+
*/
|
|
13168
|
+
assignee: (string | null);
|
|
13169
|
+
/**
|
|
13170
|
+
* ISO 8601 timestamp of the most recent event
|
|
13171
|
+
*/
|
|
13172
|
+
lastSeen: string;
|
|
13173
|
+
/**
|
|
13174
|
+
* ISO 8601 timestamp of the first event
|
|
13175
|
+
*/
|
|
13176
|
+
firstSeen: string;
|
|
13177
|
+
/**
|
|
13178
|
+
* ISO 8601 archive timestamp, or null
|
|
13179
|
+
*/
|
|
13180
|
+
archivedAt: (string | null);
|
|
13181
|
+
/**
|
|
13182
|
+
* How many events have landed on this issue
|
|
13183
|
+
*/
|
|
13184
|
+
eventCount: number;
|
|
13185
|
+
/**
|
|
13186
|
+
* ISO 8601 resolution timestamp, or null
|
|
13187
|
+
*/
|
|
13188
|
+
resolvedAt: (string | null);
|
|
13189
|
+
/**
|
|
13190
|
+
* Environment the issue was first seen in, or null
|
|
13191
|
+
*/
|
|
13192
|
+
environment: (string | null);
|
|
13193
|
+
/**
|
|
13194
|
+
* Stable grouping hash the issue is keyed on
|
|
13195
|
+
*/
|
|
13196
|
+
fingerprint: string;
|
|
13197
|
+
/**
|
|
13198
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13199
|
+
*/
|
|
13200
|
+
regressedAt: (string | null);
|
|
13201
|
+
/**
|
|
13202
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13203
|
+
*/
|
|
13204
|
+
groupingRule: string;
|
|
13205
|
+
/**
|
|
13206
|
+
* Exception class of the first event, or null
|
|
13207
|
+
*/
|
|
13208
|
+
exceptionType: (string | null);
|
|
13209
|
+
/**
|
|
13210
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13211
|
+
*/
|
|
13212
|
+
groupingVersion: string;
|
|
13213
|
+
}
|
|
13214
|
+
interface ObserveIssuesListInput {
|
|
13215
|
+
/**
|
|
13216
|
+
* How many issues to return, most recently seen first. 1-200, default 50
|
|
13217
|
+
*/
|
|
13218
|
+
limit?: number;
|
|
13219
|
+
/**
|
|
13220
|
+
* Only return issues in this state; omit to list every state
|
|
13221
|
+
*/
|
|
13222
|
+
status?: ("unresolved" | "resolved" | "archived");
|
|
13223
|
+
/**
|
|
13224
|
+
* Only return issues owned by this assignee
|
|
13225
|
+
*/
|
|
13226
|
+
assignee?: string;
|
|
13227
|
+
}
|
|
13228
|
+
type ObserveIssuesListOutput = {
|
|
13229
|
+
/**
|
|
13230
|
+
* Identifier of the issue
|
|
13231
|
+
*/
|
|
13232
|
+
id: string;
|
|
13233
|
+
/**
|
|
13234
|
+
* Display title, set when the issue opened and never rewritten
|
|
13235
|
+
*/
|
|
13236
|
+
title: string;
|
|
13237
|
+
/**
|
|
13238
|
+
* unresolved, resolved or archived
|
|
13239
|
+
*/
|
|
13240
|
+
status: string;
|
|
13241
|
+
/**
|
|
13242
|
+
* Where the error appears to come from, or null
|
|
13243
|
+
*/
|
|
13244
|
+
culprit: (string | null);
|
|
13245
|
+
/**
|
|
13246
|
+
* Who owns the issue, or null if unassigned
|
|
13247
|
+
*/
|
|
13248
|
+
assignee: (string | null);
|
|
13249
|
+
/**
|
|
13250
|
+
* ISO 8601 timestamp of the most recent event
|
|
13251
|
+
*/
|
|
13252
|
+
lastSeen: string;
|
|
13253
|
+
/**
|
|
13254
|
+
* ISO 8601 timestamp of the first event
|
|
13255
|
+
*/
|
|
13256
|
+
firstSeen: string;
|
|
13257
|
+
/**
|
|
13258
|
+
* ISO 8601 archive timestamp, or null
|
|
13259
|
+
*/
|
|
13260
|
+
archivedAt: (string | null);
|
|
13261
|
+
/**
|
|
13262
|
+
* How many events have landed on this issue
|
|
13263
|
+
*/
|
|
13264
|
+
eventCount: number;
|
|
13265
|
+
/**
|
|
13266
|
+
* ISO 8601 resolution timestamp, or null
|
|
13267
|
+
*/
|
|
13268
|
+
resolvedAt: (string | null);
|
|
13269
|
+
/**
|
|
13270
|
+
* Environment the issue was first seen in, or null
|
|
13271
|
+
*/
|
|
13272
|
+
environment: (string | null);
|
|
13273
|
+
/**
|
|
13274
|
+
* Stable grouping hash the issue is keyed on
|
|
13275
|
+
*/
|
|
13276
|
+
fingerprint: string;
|
|
13277
|
+
/**
|
|
13278
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13279
|
+
*/
|
|
13280
|
+
regressedAt: (string | null);
|
|
13281
|
+
/**
|
|
13282
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13283
|
+
*/
|
|
13284
|
+
groupingRule: string;
|
|
13285
|
+
/**
|
|
13286
|
+
* Exception class of the first event, or null
|
|
13287
|
+
*/
|
|
13288
|
+
exceptionType: (string | null);
|
|
13289
|
+
/**
|
|
13290
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13291
|
+
*/
|
|
13292
|
+
groupingVersion: string;
|
|
13293
|
+
}[];
|
|
13294
|
+
interface ObserveIssuesResolveInput {
|
|
13295
|
+
/**
|
|
13296
|
+
* Identifier of the issue
|
|
13297
|
+
*/
|
|
13298
|
+
id: string;
|
|
13299
|
+
}
|
|
13300
|
+
interface ObserveIssuesResolveOutput {
|
|
13301
|
+
/**
|
|
13302
|
+
* Identifier of the issue
|
|
13303
|
+
*/
|
|
13304
|
+
id: string;
|
|
13305
|
+
/**
|
|
13306
|
+
* Display title, set when the issue opened and never rewritten
|
|
13307
|
+
*/
|
|
13308
|
+
title: string;
|
|
13309
|
+
/**
|
|
13310
|
+
* unresolved, resolved or archived
|
|
13311
|
+
*/
|
|
13312
|
+
status: string;
|
|
13313
|
+
/**
|
|
13314
|
+
* Where the error appears to come from, or null
|
|
13315
|
+
*/
|
|
13316
|
+
culprit: (string | null);
|
|
13317
|
+
/**
|
|
13318
|
+
* Who owns the issue, or null if unassigned
|
|
13319
|
+
*/
|
|
13320
|
+
assignee: (string | null);
|
|
13321
|
+
/**
|
|
13322
|
+
* ISO 8601 timestamp of the most recent event
|
|
13323
|
+
*/
|
|
13324
|
+
lastSeen: string;
|
|
13325
|
+
/**
|
|
13326
|
+
* ISO 8601 timestamp of the first event
|
|
13327
|
+
*/
|
|
13328
|
+
firstSeen: string;
|
|
13329
|
+
/**
|
|
13330
|
+
* ISO 8601 archive timestamp, or null
|
|
13331
|
+
*/
|
|
13332
|
+
archivedAt: (string | null);
|
|
13333
|
+
/**
|
|
13334
|
+
* How many events have landed on this issue
|
|
13335
|
+
*/
|
|
13336
|
+
eventCount: number;
|
|
13337
|
+
/**
|
|
13338
|
+
* ISO 8601 resolution timestamp, or null
|
|
13339
|
+
*/
|
|
13340
|
+
resolvedAt: (string | null);
|
|
13341
|
+
/**
|
|
13342
|
+
* Environment the issue was first seen in, or null
|
|
13343
|
+
*/
|
|
13344
|
+
environment: (string | null);
|
|
13345
|
+
/**
|
|
13346
|
+
* Stable grouping hash the issue is keyed on
|
|
13347
|
+
*/
|
|
13348
|
+
fingerprint: string;
|
|
13349
|
+
/**
|
|
13350
|
+
* ISO 8601 timestamp of the last regression, or null if it never regressed
|
|
13351
|
+
*/
|
|
13352
|
+
regressedAt: (string | null);
|
|
13353
|
+
/**
|
|
13354
|
+
* Which rule of the ladder matched: explicit, stack, exception or message
|
|
13355
|
+
*/
|
|
13356
|
+
groupingRule: string;
|
|
13357
|
+
/**
|
|
13358
|
+
* Exception class of the first event, or null
|
|
13359
|
+
*/
|
|
13360
|
+
exceptionType: (string | null);
|
|
13361
|
+
/**
|
|
13362
|
+
* Grouping config version that produced the fingerprint; part of the issue identity
|
|
13363
|
+
*/
|
|
13364
|
+
groupingVersion: string;
|
|
13365
|
+
}
|
|
13366
|
+
interface ObserveKeysCreateInput {
|
|
13367
|
+
/**
|
|
13368
|
+
* ingest (default) issues a Bearer OTLP token; dsn issues a public Sentry key returned as a full DSN
|
|
13369
|
+
*/
|
|
13370
|
+
kind?: ("ingest" | "dsn");
|
|
13371
|
+
/**
|
|
13372
|
+
* Optional human label for the key, e.g. "ci" or "backend pods"
|
|
13373
|
+
*/
|
|
13374
|
+
name?: string;
|
|
13375
|
+
/**
|
|
13376
|
+
* Environment this key sends telemetry for, e.g. "staging" or "production"
|
|
13377
|
+
*/
|
|
13378
|
+
environment: string;
|
|
13379
|
+
}
|
|
13380
|
+
interface ObserveKeysCreateOutput {
|
|
13381
|
+
/**
|
|
13382
|
+
* Identifier of the ingest key
|
|
13383
|
+
*/
|
|
13384
|
+
id: string;
|
|
13385
|
+
/**
|
|
13386
|
+
* The full DSN, for kind "dsn" — shown only here, store it now
|
|
13387
|
+
*/
|
|
13388
|
+
dsn?: string;
|
|
13389
|
+
/**
|
|
13390
|
+
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13391
|
+
*/
|
|
13392
|
+
kind: ("ingest" | "dsn");
|
|
13393
|
+
/**
|
|
13394
|
+
* Human label given at creation, or null
|
|
13395
|
+
*/
|
|
13396
|
+
name: (string | null);
|
|
13397
|
+
/**
|
|
13398
|
+
* The full ingest token, for kind "ingest" — shown only here, store it now
|
|
13399
|
+
*/
|
|
13400
|
+
token?: string;
|
|
13401
|
+
/**
|
|
13402
|
+
* First characters of the token, shown for recognition
|
|
13403
|
+
*/
|
|
13404
|
+
prefix: string;
|
|
13405
|
+
/**
|
|
13406
|
+
* ISO 8601 creation timestamp
|
|
13407
|
+
*/
|
|
13408
|
+
createdAt: string;
|
|
13409
|
+
/**
|
|
13410
|
+
* ISO 8601 revocation timestamp, or null if active
|
|
13411
|
+
*/
|
|
13412
|
+
revokedAt: (string | null);
|
|
13413
|
+
/**
|
|
13414
|
+
* Environment the key writes telemetry for
|
|
13415
|
+
*/
|
|
13416
|
+
environment: string;
|
|
13417
|
+
}
|
|
13418
|
+
interface ObserveKeysListInput {
|
|
13419
|
+
/**
|
|
13420
|
+
* Only return keys of this environment; omit to list all of them
|
|
13421
|
+
*/
|
|
13422
|
+
environment?: string;
|
|
13423
|
+
}
|
|
13424
|
+
type ObserveKeysListOutput = {
|
|
13425
|
+
/**
|
|
13426
|
+
* Identifier of the ingest key
|
|
13427
|
+
*/
|
|
13428
|
+
id: string;
|
|
13429
|
+
/**
|
|
13430
|
+
* ingest = Bearer OTLP key; dsn = public Sentry key that ships in client code
|
|
13431
|
+
*/
|
|
13432
|
+
kind: ("ingest" | "dsn");
|
|
13433
|
+
/**
|
|
13434
|
+
* Human label given at creation, or null
|
|
13435
|
+
*/
|
|
13436
|
+
name: (string | null);
|
|
13437
|
+
/**
|
|
13438
|
+
* First characters of the token, shown for recognition
|
|
13439
|
+
*/
|
|
13440
|
+
prefix: string;
|
|
13441
|
+
/**
|
|
13442
|
+
* ISO 8601 creation timestamp
|
|
13443
|
+
*/
|
|
13444
|
+
createdAt: string;
|
|
13445
|
+
/**
|
|
13446
|
+
* ISO 8601 revocation timestamp, or null if active
|
|
13447
|
+
*/
|
|
13448
|
+
revokedAt: (string | null);
|
|
13449
|
+
/**
|
|
13450
|
+
* Environment the key writes telemetry for
|
|
13451
|
+
*/
|
|
13452
|
+
environment: string;
|
|
13453
|
+
}[];
|
|
13454
|
+
interface ObserveKeysRevokeInput {
|
|
13455
|
+
/**
|
|
13456
|
+
* Identifier of the ingest key to revoke
|
|
13457
|
+
*/
|
|
13458
|
+
id: string;
|
|
13459
|
+
}
|
|
13460
|
+
interface ObserveKeysRevokeOutput {
|
|
13461
|
+
/**
|
|
13462
|
+
* Identifier of the revoked key
|
|
13463
|
+
*/
|
|
13464
|
+
id: string;
|
|
13465
|
+
/**
|
|
13466
|
+
* ISO 8601 timestamp of the revocation
|
|
13467
|
+
*/
|
|
13468
|
+
revokedAt: string;
|
|
13469
|
+
}
|
|
13470
|
+
interface ObserveLogsFacetsInput {
|
|
13471
|
+
/**
|
|
13472
|
+
* How far back to count, e.g. "1h", "24h", "7d". Up to 30d, default "24h"
|
|
13473
|
+
*/
|
|
13474
|
+
window?: string;
|
|
13475
|
+
}
|
|
13476
|
+
interface ObserveLogsFacetsOutput {
|
|
13477
|
+
/**
|
|
13478
|
+
* Newest timestamp counted, ISO 8601
|
|
13479
|
+
*/
|
|
13480
|
+
to: string;
|
|
13481
|
+
/**
|
|
13482
|
+
* Oldest timestamp counted, ISO 8601
|
|
13483
|
+
*/
|
|
13484
|
+
from: string;
|
|
13485
|
+
/**
|
|
13486
|
+
* The window that was counted, e.g. "24h"
|
|
13487
|
+
*/
|
|
13488
|
+
window: string;
|
|
13489
|
+
/**
|
|
13490
|
+
* Services, most frequent first
|
|
13491
|
+
*/
|
|
13492
|
+
services: ObserveLogsFacetsOutputItems[];
|
|
13493
|
+
/**
|
|
13494
|
+
* Severities, most frequent first
|
|
13495
|
+
*/
|
|
13496
|
+
severities: ObserveLogsFacetsOutputItems[];
|
|
13497
|
+
/**
|
|
13498
|
+
* Environments, most frequent first
|
|
13499
|
+
*/
|
|
13500
|
+
environments: ObserveLogsFacetsOutputItems[];
|
|
13501
|
+
}
|
|
13502
|
+
interface ObserveLogsFacetsOutputItems {
|
|
13503
|
+
/**
|
|
13504
|
+
* How many lines carried it inside the window
|
|
13505
|
+
*/
|
|
13506
|
+
count: number;
|
|
13507
|
+
/**
|
|
13508
|
+
* The value as the emitter wrote it
|
|
13509
|
+
*/
|
|
13510
|
+
value: string;
|
|
13511
|
+
}
|
|
13512
|
+
interface ObserveLogsSearchInput {
|
|
13513
|
+
/**
|
|
13514
|
+
* Lucene-style expression, ANDed with the structured filters. `key:value` (service, environment, severity, trace_id, span_id, body; any other key matches an attribute), "quoted phrases", AND / OR / NOT in uppercase, parentheses. A bare word matches a whole word in the message body. Example: service:api AND NOT severity:INFO AND "connection refused"
|
|
13515
|
+
*/
|
|
13516
|
+
q?: string;
|
|
13517
|
+
/**
|
|
13518
|
+
* Newest timestamp to include, ISO 8601
|
|
13519
|
+
*/
|
|
13520
|
+
to?: string;
|
|
13521
|
+
/**
|
|
13522
|
+
* Oldest timestamp to include, ISO 8601
|
|
13523
|
+
*/
|
|
13524
|
+
from?: string;
|
|
13525
|
+
/**
|
|
13526
|
+
* How many lines to return, 1-1000, default 100
|
|
13527
|
+
*/
|
|
13528
|
+
limit?: number;
|
|
13529
|
+
/**
|
|
13530
|
+
* The nextCursor of the previous page; omit for the first page
|
|
13531
|
+
*/
|
|
13532
|
+
cursor?: string;
|
|
13533
|
+
/**
|
|
13534
|
+
* Match the message body. A single word matches whole words and is indexed; anything longer is a case-insensitive substring match
|
|
13535
|
+
*/
|
|
13536
|
+
search?: string;
|
|
13537
|
+
/**
|
|
13538
|
+
* Only lines of this service, e.g. "api"
|
|
13539
|
+
*/
|
|
13540
|
+
service?: string;
|
|
13541
|
+
/**
|
|
13542
|
+
* Only lines of this trace
|
|
13543
|
+
*/
|
|
13544
|
+
traceId?: string;
|
|
13545
|
+
/**
|
|
13546
|
+
* Only lines whose severity is one of these, e.g. ["ERROR", "FATAL"]
|
|
13547
|
+
*
|
|
13548
|
+
* @minItems 1
|
|
13549
|
+
*/
|
|
13550
|
+
severityIn?: [string, ...(string)[]];
|
|
13551
|
+
/**
|
|
13552
|
+
* Only lines of this environment, e.g. "production"
|
|
13553
|
+
*/
|
|
13554
|
+
environment?: string;
|
|
13555
|
+
}
|
|
13556
|
+
interface ObserveLogsSearchOutput {
|
|
13557
|
+
/**
|
|
13558
|
+
* The matching log lines, newest first
|
|
13559
|
+
*/
|
|
13560
|
+
rows: {
|
|
13561
|
+
/**
|
|
13562
|
+
* The log message itself
|
|
13563
|
+
*/
|
|
13564
|
+
body: string;
|
|
13565
|
+
/**
|
|
13566
|
+
* Span this line belongs to, empty when untraced
|
|
13567
|
+
*/
|
|
13568
|
+
spanId: string;
|
|
13569
|
+
/**
|
|
13570
|
+
* Service that wrote the line
|
|
13571
|
+
*/
|
|
13572
|
+
service: string;
|
|
13573
|
+
/**
|
|
13574
|
+
* Trace this line belongs to, empty when untraced
|
|
13575
|
+
*/
|
|
13576
|
+
traceId: string;
|
|
13577
|
+
/**
|
|
13578
|
+
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13579
|
+
*/
|
|
13580
|
+
timestamp: string;
|
|
13581
|
+
/**
|
|
13582
|
+
* Attributes the emitter attached
|
|
13583
|
+
*/
|
|
13584
|
+
attributes: {
|
|
13585
|
+
[k: string]: string;
|
|
13586
|
+
};
|
|
13587
|
+
/**
|
|
13588
|
+
* Environment the line was written in
|
|
13589
|
+
*/
|
|
13590
|
+
environment: string;
|
|
13591
|
+
/**
|
|
13592
|
+
* Severity as the emitter named it, e.g. "ERROR"
|
|
13593
|
+
*/
|
|
13594
|
+
severityText: string;
|
|
13595
|
+
/**
|
|
13596
|
+
* OpenTelemetry severity number, 1-24
|
|
13597
|
+
*/
|
|
13598
|
+
severityNumber: number;
|
|
13599
|
+
}[];
|
|
13600
|
+
/**
|
|
13601
|
+
* Pass back as cursor for the next page; null when the last page was reached
|
|
13602
|
+
*/
|
|
13603
|
+
nextCursor: (string | null);
|
|
13604
|
+
}
|
|
13605
|
+
interface ObserveLogsTailInput {
|
|
13606
|
+
/**
|
|
13607
|
+
* The nextCursor of the previous poll; omit to start at the newest lines
|
|
13608
|
+
*/
|
|
13609
|
+
cursor?: string;
|
|
13610
|
+
/**
|
|
13611
|
+
* Only lines of this service
|
|
13612
|
+
*/
|
|
13613
|
+
service?: string;
|
|
13614
|
+
/**
|
|
13615
|
+
* Only lines whose severity is one of these
|
|
13616
|
+
*
|
|
13617
|
+
* @minItems 1
|
|
13618
|
+
*/
|
|
13619
|
+
severityIn?: [string, ...(string)[]];
|
|
13620
|
+
/**
|
|
13621
|
+
* Only lines of this environment
|
|
13622
|
+
*/
|
|
13623
|
+
environment?: string;
|
|
13624
|
+
}
|
|
13625
|
+
interface ObserveLogsTailOutput {
|
|
13626
|
+
/**
|
|
13627
|
+
* The new log lines, oldest first
|
|
13628
|
+
*/
|
|
13629
|
+
rows: {
|
|
13630
|
+
/**
|
|
13631
|
+
* The log message itself
|
|
13632
|
+
*/
|
|
13633
|
+
body: string;
|
|
13634
|
+
/**
|
|
13635
|
+
* Span this line belongs to, empty when untraced
|
|
13636
|
+
*/
|
|
13637
|
+
spanId: string;
|
|
13638
|
+
/**
|
|
13639
|
+
* Service that wrote the line
|
|
13640
|
+
*/
|
|
13641
|
+
service: string;
|
|
13642
|
+
/**
|
|
13643
|
+
* Trace this line belongs to, empty when untraced
|
|
13644
|
+
*/
|
|
13645
|
+
traceId: string;
|
|
13646
|
+
/**
|
|
13647
|
+
* ISO 8601 timestamp of the log line, millisecond precision
|
|
13648
|
+
*/
|
|
13649
|
+
timestamp: string;
|
|
13650
|
+
/**
|
|
13651
|
+
* Attributes the emitter attached
|
|
13652
|
+
*/
|
|
13653
|
+
attributes: {
|
|
13654
|
+
[k: string]: string;
|
|
13655
|
+
};
|
|
13656
|
+
/**
|
|
13657
|
+
* Environment the line was written in
|
|
13658
|
+
*/
|
|
13659
|
+
environment: string;
|
|
13660
|
+
/**
|
|
13661
|
+
* Severity as the emitter named it, e.g. "ERROR"
|
|
13662
|
+
*/
|
|
13663
|
+
severityText: string;
|
|
13664
|
+
/**
|
|
13665
|
+
* OpenTelemetry severity number, 1-24
|
|
13666
|
+
*/
|
|
13667
|
+
severityNumber: number;
|
|
13668
|
+
}[];
|
|
13669
|
+
/**
|
|
13670
|
+
* Pass back as cursor on the next poll; null only while the product has no logs
|
|
13671
|
+
*/
|
|
13672
|
+
nextCursor: (string | null);
|
|
13673
|
+
}
|
|
13674
|
+
interface ObserveTracesGetInput {
|
|
13675
|
+
/**
|
|
13676
|
+
* The trace to render, by its 32-character hex id
|
|
13677
|
+
*/
|
|
13678
|
+
traceId: string;
|
|
13679
|
+
}
|
|
13680
|
+
interface ObserveTracesGetOutput {
|
|
13681
|
+
/**
|
|
13682
|
+
* Every span of the trace, oldest first; empty when the product has no such trace
|
|
13683
|
+
*/
|
|
13684
|
+
spans: {
|
|
13685
|
+
/**
|
|
13686
|
+
* OTLP span kind: UNSPECIFIED, INTERNAL, SERVER, CLIENT, PRODUCER or CONSUMER
|
|
13687
|
+
*/
|
|
13688
|
+
kind: string;
|
|
13689
|
+
/**
|
|
13690
|
+
* Span name, e.g. "GET /users"
|
|
13691
|
+
*/
|
|
13692
|
+
name: string;
|
|
13693
|
+
/**
|
|
13694
|
+
* How many ancestors the span has inside this trace; the root is 0
|
|
13695
|
+
*/
|
|
13696
|
+
depth: number;
|
|
13697
|
+
/**
|
|
13698
|
+
* Events recorded on the span, in the order they were sent
|
|
13699
|
+
*/
|
|
13700
|
+
events: {
|
|
13701
|
+
/**
|
|
13702
|
+
* Event name as the emitter wrote it, e.g. "exception"
|
|
12430
13703
|
*/
|
|
12431
13704
|
name: string;
|
|
12432
13705
|
/**
|
|
12433
|
-
*
|
|
12434
|
-
*/
|
|
12435
|
-
type: ("string" | "number" | "boolean");
|
|
12436
|
-
/**
|
|
12437
|
-
* Value used when none is supplied
|
|
13706
|
+
* When the event was recorded, ISO 8601
|
|
12438
13707
|
*/
|
|
12439
|
-
|
|
13708
|
+
timestamp: string;
|
|
12440
13709
|
/**
|
|
12441
|
-
*
|
|
13710
|
+
* The event's own attributes, raw
|
|
12442
13711
|
*/
|
|
12443
|
-
|
|
12444
|
-
|
|
12445
|
-
|
|
12446
|
-
}
|
|
12447
|
-
|
|
12448
|
-
|
|
12449
|
-
|
|
12450
|
-
|
|
12451
|
-
|
|
12452
|
-
|
|
12453
|
-
|
|
12454
|
-
|
|
12455
|
-
|
|
12456
|
-
|
|
12457
|
-
|
|
12458
|
-
|
|
12459
|
-
|
|
12460
|
-
|
|
13712
|
+
attributes: {
|
|
13713
|
+
[k: string]: unknown;
|
|
13714
|
+
};
|
|
13715
|
+
}[];
|
|
13716
|
+
/**
|
|
13717
|
+
* The span id, 16 hex characters
|
|
13718
|
+
*/
|
|
13719
|
+
spanId: string;
|
|
13720
|
+
/**
|
|
13721
|
+
* OTLP span status: UNSET, OK or ERROR
|
|
13722
|
+
*/
|
|
13723
|
+
status: string;
|
|
13724
|
+
/**
|
|
13725
|
+
* When the span ended, ISO 8601, nanosecond precision
|
|
13726
|
+
*/
|
|
13727
|
+
endTime: string;
|
|
13728
|
+
/**
|
|
13729
|
+
* Service that recorded the span
|
|
13730
|
+
*/
|
|
13731
|
+
service: string;
|
|
13732
|
+
/**
|
|
13733
|
+
* When the span started, ISO 8601, nanosecond precision
|
|
13734
|
+
*/
|
|
13735
|
+
startTime: string;
|
|
13736
|
+
/**
|
|
13737
|
+
* Attributes the emitter attached
|
|
13738
|
+
*/
|
|
13739
|
+
attributes: {
|
|
13740
|
+
[k: string]: string;
|
|
13741
|
+
};
|
|
13742
|
+
/**
|
|
13743
|
+
* How long the span took, in milliseconds
|
|
13744
|
+
*/
|
|
13745
|
+
durationMs: number;
|
|
13746
|
+
/**
|
|
13747
|
+
* Environment the span was recorded in
|
|
13748
|
+
*/
|
|
13749
|
+
environment: string;
|
|
13750
|
+
/**
|
|
13751
|
+
* Parent span id; empty for the root or when the parent is not in this trace
|
|
13752
|
+
*/
|
|
13753
|
+
parentSpanId: string;
|
|
13754
|
+
/**
|
|
13755
|
+
* Status message the emitter attached, empty when none
|
|
13756
|
+
*/
|
|
13757
|
+
statusMessage: string;
|
|
13758
|
+
/**
|
|
13759
|
+
* Attributes of the emitting resource
|
|
13760
|
+
*/
|
|
13761
|
+
resourceAttributes: {
|
|
13762
|
+
[k: string]: string;
|
|
13763
|
+
};
|
|
12461
13764
|
}[];
|
|
13765
|
+
/**
|
|
13766
|
+
* The trace that was read
|
|
13767
|
+
*/
|
|
13768
|
+
traceId: string;
|
|
12462
13769
|
}
|
|
12463
|
-
interface
|
|
12464
|
-
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
12468
|
-
|
|
12469
|
-
|
|
12470
|
-
|
|
12471
|
-
|
|
12472
|
-
|
|
12473
|
-
|
|
12474
|
-
|
|
12475
|
-
|
|
12476
|
-
|
|
12477
|
-
|
|
12478
|
-
|
|
13770
|
+
interface ObserveTracesSearchInput {
|
|
13771
|
+
/**
|
|
13772
|
+
* Newest span start to include, ISO 8601
|
|
13773
|
+
*/
|
|
13774
|
+
to?: string;
|
|
13775
|
+
/**
|
|
13776
|
+
* Oldest span start to include, ISO 8601
|
|
13777
|
+
*/
|
|
13778
|
+
from?: string;
|
|
13779
|
+
/**
|
|
13780
|
+
* Only traces one of whose spans carries this exact span name, e.g. "GET /users"
|
|
13781
|
+
*/
|
|
13782
|
+
name?: string;
|
|
13783
|
+
/**
|
|
13784
|
+
* How many traces to return, 1-1000, default 100
|
|
13785
|
+
*/
|
|
13786
|
+
limit?: number;
|
|
13787
|
+
/**
|
|
13788
|
+
* The nextCursor of the previous page; omit for the first page
|
|
13789
|
+
*/
|
|
13790
|
+
cursor?: string;
|
|
13791
|
+
/**
|
|
13792
|
+
* Only traces in this state: "error" when any span failed, "ok" when none did and at least one reported OK, "unset" when no span reported a status
|
|
13793
|
+
*/
|
|
13794
|
+
status?: ("ok" | "error" | "unset");
|
|
13795
|
+
/**
|
|
13796
|
+
* Only traces one of whose spans belongs to this service, e.g. "api"
|
|
13797
|
+
*/
|
|
13798
|
+
service?: string;
|
|
13799
|
+
/**
|
|
13800
|
+
* Only this trace, by its 32-character hex id
|
|
13801
|
+
*/
|
|
13802
|
+
traceId?: string;
|
|
13803
|
+
/**
|
|
13804
|
+
* Only traces of this environment, e.g. "production"
|
|
13805
|
+
*/
|
|
13806
|
+
environment?: string;
|
|
13807
|
+
/**
|
|
13808
|
+
* Only traces that took at most this many milliseconds end to end
|
|
13809
|
+
*/
|
|
13810
|
+
maxDurationMs?: number;
|
|
13811
|
+
/**
|
|
13812
|
+
* Only traces that took at least this many milliseconds end to end
|
|
13813
|
+
*/
|
|
13814
|
+
minDurationMs?: number;
|
|
12479
13815
|
}
|
|
12480
|
-
interface
|
|
12481
|
-
|
|
12482
|
-
|
|
12483
|
-
|
|
13816
|
+
interface ObserveTracesSearchOutput {
|
|
13817
|
+
/**
|
|
13818
|
+
* The matching traces, newest first
|
|
13819
|
+
*/
|
|
13820
|
+
traces: {
|
|
13821
|
+
/**
|
|
13822
|
+
* The trace id, 32 hex characters
|
|
13823
|
+
*/
|
|
13824
|
+
traceId: string;
|
|
13825
|
+
/**
|
|
13826
|
+
* True when at least one span failed
|
|
13827
|
+
*/
|
|
13828
|
+
hasError: boolean;
|
|
13829
|
+
/**
|
|
13830
|
+
* Name of the root span — the one with no parent, or the earliest span
|
|
13831
|
+
*/
|
|
13832
|
+
rootName: string;
|
|
13833
|
+
/**
|
|
13834
|
+
* How many spans the trace has
|
|
13835
|
+
*/
|
|
13836
|
+
spanCount: number;
|
|
13837
|
+
/**
|
|
13838
|
+
* When the earliest span started, ISO 8601
|
|
13839
|
+
*/
|
|
13840
|
+
startTime: string;
|
|
13841
|
+
/**
|
|
13842
|
+
* Earliest start to latest end, in milliseconds
|
|
13843
|
+
*/
|
|
13844
|
+
durationMs: number;
|
|
13845
|
+
/**
|
|
13846
|
+
* How many of them reported an ERROR status
|
|
13847
|
+
*/
|
|
13848
|
+
errorCount: number;
|
|
13849
|
+
/**
|
|
13850
|
+
* Environment the root span was recorded in
|
|
13851
|
+
*/
|
|
13852
|
+
environment: string;
|
|
13853
|
+
/**
|
|
13854
|
+
* Service the root span belongs to
|
|
13855
|
+
*/
|
|
13856
|
+
rootService: string;
|
|
13857
|
+
}[];
|
|
13858
|
+
/**
|
|
13859
|
+
* Pass back as cursor for the next page; null when the last page was reached
|
|
13860
|
+
*/
|
|
13861
|
+
nextCursor: (string | null);
|
|
12484
13862
|
}
|
|
12485
|
-
interface
|
|
13863
|
+
interface ObserveWebhooksCreateInput {
|
|
12486
13864
|
/**
|
|
12487
|
-
* HTTPS
|
|
13865
|
+
* HTTPS endpoint the event is POSTed to. Plain http:// is rejected
|
|
12488
13866
|
*/
|
|
12489
13867
|
url: string;
|
|
12490
13868
|
/**
|
|
12491
|
-
*
|
|
13869
|
+
* Free-form note about what this endpoint is for, up to 1000 characters
|
|
12492
13870
|
*/
|
|
12493
13871
|
description?: string;
|
|
13872
|
+
}
|
|
13873
|
+
interface ObserveWebhooksCreateOutput {
|
|
12494
13874
|
/**
|
|
12495
|
-
*
|
|
12496
|
-
*
|
|
12497
|
-
* @minItems 1
|
|
13875
|
+
* Identifier of the endpoint
|
|
12498
13876
|
*/
|
|
12499
|
-
enabled_events: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
|
|
12500
|
-
}
|
|
12501
|
-
interface MailWebhookCreateOutput {
|
|
12502
13877
|
id: string;
|
|
13878
|
+
/**
|
|
13879
|
+
* HTTPS endpoint events are POSTed to
|
|
13880
|
+
*/
|
|
12503
13881
|
url: string;
|
|
13882
|
+
/**
|
|
13883
|
+
* Whether deliveries are being attempted for it
|
|
13884
|
+
*/
|
|
13885
|
+
active: boolean;
|
|
13886
|
+
/**
|
|
13887
|
+
* The signing secret — shown only here, store it now; it cannot be read back
|
|
13888
|
+
*/
|
|
12504
13889
|
secret: string;
|
|
12505
|
-
|
|
12506
|
-
|
|
12507
|
-
|
|
13890
|
+
/**
|
|
13891
|
+
* ISO 8601 registration timestamp
|
|
13892
|
+
*/
|
|
13893
|
+
createdAt: string;
|
|
13894
|
+
/**
|
|
13895
|
+
* ISO 8601 timestamp of the last change
|
|
13896
|
+
*/
|
|
13897
|
+
updatedAt: string;
|
|
13898
|
+
/**
|
|
13899
|
+
* Free-form note given at registration, or null
|
|
13900
|
+
*/
|
|
12508
13901
|
description: (string | null);
|
|
12509
|
-
enabled_events: string[];
|
|
12510
13902
|
}
|
|
12511
|
-
interface
|
|
13903
|
+
interface ObserveWebhooksDeleteInput {
|
|
12512
13904
|
/**
|
|
12513
|
-
*
|
|
13905
|
+
* Identifier of the endpoint
|
|
12514
13906
|
*/
|
|
12515
13907
|
id: string;
|
|
12516
13908
|
}
|
|
12517
|
-
interface
|
|
12518
|
-
id: string;
|
|
12519
|
-
deleted: boolean;
|
|
12520
|
-
}
|
|
12521
|
-
interface MailWebhookDeliveriesListInput {
|
|
13909
|
+
interface ObserveWebhooksDeleteOutput {
|
|
12522
13910
|
/**
|
|
12523
|
-
*
|
|
13911
|
+
* Identifier of the removed endpoint
|
|
12524
13912
|
*/
|
|
12525
13913
|
id: string;
|
|
12526
13914
|
/**
|
|
12527
|
-
*
|
|
13915
|
+
* Always true; the call fails otherwise
|
|
13916
|
+
*/
|
|
13917
|
+
deleted: true;
|
|
13918
|
+
}
|
|
13919
|
+
interface ObserveWebhooksDeliveriesListInput {
|
|
13920
|
+
/**
|
|
13921
|
+
* Page size, 1..200
|
|
12528
13922
|
*/
|
|
12529
13923
|
limit?: number;
|
|
13924
|
+
/**
|
|
13925
|
+
* Number of deliveries to skip
|
|
13926
|
+
*/
|
|
13927
|
+
offset?: number;
|
|
13928
|
+
/**
|
|
13929
|
+
* Only deliveries in this state
|
|
13930
|
+
*/
|
|
13931
|
+
status?: ("pending" | "success" | "failed");
|
|
13932
|
+
/**
|
|
13933
|
+
* Only deliveries for this endpoint
|
|
13934
|
+
*/
|
|
13935
|
+
webhookId?: string;
|
|
12530
13936
|
}
|
|
12531
|
-
type
|
|
13937
|
+
type ObserveWebhooksDeliveriesListOutput = {
|
|
13938
|
+
/**
|
|
13939
|
+
* Identifier of the delivery, also sent as the envelope id
|
|
13940
|
+
*/
|
|
12532
13941
|
id: string;
|
|
12533
|
-
|
|
12534
|
-
|
|
12535
|
-
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12539
|
-
|
|
12540
|
-
|
|
12541
|
-
|
|
12542
|
-
|
|
13942
|
+
/**
|
|
13943
|
+
* pending means attempts remain; failed means the retry ladder is spent
|
|
13944
|
+
*/
|
|
13945
|
+
status: ("pending" | "success" | "failed");
|
|
13946
|
+
/**
|
|
13947
|
+
* The event data that was sent, before snake_case conversion
|
|
13948
|
+
*/
|
|
13949
|
+
payload?: {
|
|
13950
|
+
[k: string]: unknown;
|
|
13951
|
+
};
|
|
13952
|
+
/**
|
|
13953
|
+
* ISO 8601 time the delivery was opened
|
|
13954
|
+
*/
|
|
13955
|
+
createdAt: string;
|
|
13956
|
+
/**
|
|
13957
|
+
* Event that was delivered, e.g. "observe/issue.created"
|
|
13958
|
+
*/
|
|
13959
|
+
eventName: string;
|
|
13960
|
+
/**
|
|
13961
|
+
* Why the last attempt failed, or null
|
|
13962
|
+
*/
|
|
13963
|
+
lastError: (string | null);
|
|
13964
|
+
/**
|
|
13965
|
+
* Endpoint the delivery is for
|
|
13966
|
+
*/
|
|
13967
|
+
webhookId: string;
|
|
13968
|
+
/**
|
|
13969
|
+
* ISO 8601 time it succeeded, or null
|
|
13970
|
+
*/
|
|
13971
|
+
deliveredAt: (string | null);
|
|
13972
|
+
/**
|
|
13973
|
+
* How many attempts have been made so far
|
|
13974
|
+
*/
|
|
13975
|
+
attemptCount: number;
|
|
13976
|
+
/**
|
|
13977
|
+
* Identity of the source event, repeated on every attempt and on a redelivery
|
|
13978
|
+
*/
|
|
13979
|
+
idempotencyKey: string;
|
|
13980
|
+
/**
|
|
13981
|
+
* HTTP status of the last attempt, or null
|
|
13982
|
+
*/
|
|
13983
|
+
lastStatusCode: (number | null);
|
|
12543
13984
|
}[];
|
|
12544
|
-
interface
|
|
13985
|
+
interface ObserveWebhooksGetInput {
|
|
12545
13986
|
/**
|
|
12546
|
-
*
|
|
13987
|
+
* Identifier of the endpoint
|
|
12547
13988
|
*/
|
|
12548
13989
|
id: string;
|
|
12549
13990
|
}
|
|
12550
|
-
interface
|
|
13991
|
+
interface ObserveWebhooksGetOutput {
|
|
13992
|
+
/**
|
|
13993
|
+
* Identifier of the endpoint
|
|
13994
|
+
*/
|
|
12551
13995
|
id: string;
|
|
13996
|
+
/**
|
|
13997
|
+
* HTTPS endpoint events are POSTed to
|
|
13998
|
+
*/
|
|
12552
13999
|
url: string;
|
|
12553
|
-
|
|
12554
|
-
|
|
12555
|
-
|
|
14000
|
+
/**
|
|
14001
|
+
* Whether deliveries are being attempted for it
|
|
14002
|
+
*/
|
|
14003
|
+
active: boolean;
|
|
14004
|
+
/**
|
|
14005
|
+
* ISO 8601 registration timestamp
|
|
14006
|
+
*/
|
|
14007
|
+
createdAt: string;
|
|
14008
|
+
/**
|
|
14009
|
+
* ISO 8601 timestamp of the last change
|
|
14010
|
+
*/
|
|
14011
|
+
updatedAt: string;
|
|
14012
|
+
/**
|
|
14013
|
+
* Free-form note given at registration, or null
|
|
14014
|
+
*/
|
|
12556
14015
|
description: (string | null);
|
|
12557
|
-
enabled_events: string[];
|
|
12558
14016
|
}
|
|
12559
|
-
interface
|
|
14017
|
+
interface ObserveWebhooksListInput {
|
|
12560
14018
|
}
|
|
12561
|
-
type
|
|
14019
|
+
type ObserveWebhooksListOutput = {
|
|
14020
|
+
/**
|
|
14021
|
+
* Identifier of the endpoint
|
|
14022
|
+
*/
|
|
12562
14023
|
id: string;
|
|
14024
|
+
/**
|
|
14025
|
+
* HTTPS endpoint events are POSTed to
|
|
14026
|
+
*/
|
|
12563
14027
|
url: string;
|
|
12564
|
-
|
|
12565
|
-
|
|
12566
|
-
|
|
14028
|
+
/**
|
|
14029
|
+
* Whether deliveries are being attempted for it
|
|
14030
|
+
*/
|
|
14031
|
+
active: boolean;
|
|
14032
|
+
/**
|
|
14033
|
+
* ISO 8601 registration timestamp
|
|
14034
|
+
*/
|
|
14035
|
+
createdAt: string;
|
|
14036
|
+
/**
|
|
14037
|
+
* ISO 8601 timestamp of the last change
|
|
14038
|
+
*/
|
|
14039
|
+
updatedAt: string;
|
|
14040
|
+
/**
|
|
14041
|
+
* Free-form note given at registration, or null
|
|
14042
|
+
*/
|
|
12567
14043
|
description: (string | null);
|
|
12568
|
-
enabled_events: string[];
|
|
12569
14044
|
}[];
|
|
12570
|
-
interface
|
|
14045
|
+
interface ObserveWebhooksRedeliverInput {
|
|
12571
14046
|
/**
|
|
12572
|
-
*
|
|
14047
|
+
* Identifier of the delivery to send again
|
|
12573
14048
|
*/
|
|
12574
14049
|
id: string;
|
|
14050
|
+
}
|
|
14051
|
+
interface ObserveWebhooksRedeliverOutput {
|
|
12575
14052
|
/**
|
|
12576
|
-
*
|
|
14053
|
+
* Identifier of the delivery, also sent as the envelope id
|
|
14054
|
+
*/
|
|
14055
|
+
id: string;
|
|
14056
|
+
/**
|
|
14057
|
+
* pending means attempts remain; failed means the retry ladder is spent
|
|
14058
|
+
*/
|
|
14059
|
+
status: ("pending" | "success" | "failed");
|
|
14060
|
+
/**
|
|
14061
|
+
* The event data that was sent, before snake_case conversion
|
|
14062
|
+
*/
|
|
14063
|
+
payload?: {
|
|
14064
|
+
[k: string]: unknown;
|
|
14065
|
+
};
|
|
14066
|
+
/**
|
|
14067
|
+
* ISO 8601 time the delivery was opened
|
|
14068
|
+
*/
|
|
14069
|
+
createdAt: string;
|
|
14070
|
+
/**
|
|
14071
|
+
* Event that was delivered, e.g. "observe/issue.created"
|
|
14072
|
+
*/
|
|
14073
|
+
eventName: string;
|
|
14074
|
+
/**
|
|
14075
|
+
* Why the last attempt failed, or null
|
|
14076
|
+
*/
|
|
14077
|
+
lastError: (string | null);
|
|
14078
|
+
/**
|
|
14079
|
+
* Endpoint the delivery is for
|
|
14080
|
+
*/
|
|
14081
|
+
webhookId: string;
|
|
14082
|
+
/**
|
|
14083
|
+
* ISO 8601 time it succeeded, or null
|
|
14084
|
+
*/
|
|
14085
|
+
deliveredAt: (string | null);
|
|
14086
|
+
/**
|
|
14087
|
+
* How many attempts have been made so far
|
|
14088
|
+
*/
|
|
14089
|
+
attemptCount: number;
|
|
14090
|
+
/**
|
|
14091
|
+
* Identity of the source event, repeated on every attempt and on a redelivery
|
|
14092
|
+
*/
|
|
14093
|
+
idempotencyKey: string;
|
|
14094
|
+
/**
|
|
14095
|
+
* HTTP status of the last attempt, or null
|
|
14096
|
+
*/
|
|
14097
|
+
lastStatusCode: (number | null);
|
|
14098
|
+
}
|
|
14099
|
+
interface ObserveWebhooksRotateSecretInput {
|
|
14100
|
+
/**
|
|
14101
|
+
* Identifier of the endpoint
|
|
14102
|
+
*/
|
|
14103
|
+
id: string;
|
|
14104
|
+
}
|
|
14105
|
+
interface ObserveWebhooksRotateSecretOutput {
|
|
14106
|
+
/**
|
|
14107
|
+
* Identifier of the endpoint
|
|
14108
|
+
*/
|
|
14109
|
+
id: string;
|
|
14110
|
+
/**
|
|
14111
|
+
* HTTPS endpoint events are POSTed to
|
|
14112
|
+
*/
|
|
14113
|
+
url: string;
|
|
14114
|
+
/**
|
|
14115
|
+
* Whether deliveries are being attempted for it
|
|
14116
|
+
*/
|
|
14117
|
+
active: boolean;
|
|
14118
|
+
/**
|
|
14119
|
+
* The signing secret — shown only here, store it now; it cannot be read back
|
|
14120
|
+
*/
|
|
14121
|
+
secret: string;
|
|
14122
|
+
/**
|
|
14123
|
+
* ISO 8601 registration timestamp
|
|
14124
|
+
*/
|
|
14125
|
+
createdAt: string;
|
|
14126
|
+
/**
|
|
14127
|
+
* ISO 8601 timestamp of the last change
|
|
14128
|
+
*/
|
|
14129
|
+
updatedAt: string;
|
|
14130
|
+
/**
|
|
14131
|
+
* Free-form note given at registration, or null
|
|
14132
|
+
*/
|
|
14133
|
+
description: (string | null);
|
|
14134
|
+
}
|
|
14135
|
+
interface ObserveWebhooksUpdateInput {
|
|
14136
|
+
/**
|
|
14137
|
+
* Identifier of the endpoint to change
|
|
14138
|
+
*/
|
|
14139
|
+
id: string;
|
|
14140
|
+
/**
|
|
14141
|
+
* New HTTPS endpoint. Plain http:// is rejected
|
|
12577
14142
|
*/
|
|
12578
14143
|
url?: string;
|
|
12579
14144
|
/**
|
|
12580
|
-
*
|
|
14145
|
+
* false keeps the registration and stops delivery; true resumes it
|
|
12581
14146
|
*/
|
|
12582
|
-
|
|
14147
|
+
active?: boolean;
|
|
12583
14148
|
/**
|
|
12584
|
-
*
|
|
14149
|
+
* New note, or null to clear it
|
|
12585
14150
|
*/
|
|
12586
14151
|
description?: (string | null);
|
|
14152
|
+
}
|
|
14153
|
+
interface ObserveWebhooksUpdateOutput {
|
|
12587
14154
|
/**
|
|
12588
|
-
*
|
|
12589
|
-
*
|
|
12590
|
-
* @minItems 1
|
|
14155
|
+
* Identifier of the endpoint
|
|
12591
14156
|
*/
|
|
12592
|
-
enabled_events?: [("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"), ...(("email.delivered" | "email.bounced" | "email.complained" | "email.suppressed" | "email.opened" | "email.clicked"))[]];
|
|
12593
|
-
}
|
|
12594
|
-
interface MailWebhookUpdateOutput {
|
|
12595
14157
|
id: string;
|
|
14158
|
+
/**
|
|
14159
|
+
* HTTPS endpoint events are POSTed to
|
|
14160
|
+
*/
|
|
12596
14161
|
url: string;
|
|
12597
|
-
|
|
12598
|
-
|
|
12599
|
-
|
|
14162
|
+
/**
|
|
14163
|
+
* Whether deliveries are being attempted for it
|
|
14164
|
+
*/
|
|
14165
|
+
active: boolean;
|
|
14166
|
+
/**
|
|
14167
|
+
* ISO 8601 registration timestamp
|
|
14168
|
+
*/
|
|
14169
|
+
createdAt: string;
|
|
14170
|
+
/**
|
|
14171
|
+
* ISO 8601 timestamp of the last change
|
|
14172
|
+
*/
|
|
14173
|
+
updatedAt: string;
|
|
14174
|
+
/**
|
|
14175
|
+
* Free-form note given at registration, or null
|
|
14176
|
+
*/
|
|
12600
14177
|
description: (string | null);
|
|
12601
|
-
enabled_events: string[];
|
|
12602
14178
|
}
|
|
12603
14179
|
interface OrganizationAuthMeInput {
|
|
12604
14180
|
}
|
|
@@ -13212,6 +14788,7 @@ interface OrganizationProductListAccessOutput {
|
|
|
13212
14788
|
orgRoles: {
|
|
13213
14789
|
id: string;
|
|
13214
14790
|
name: string;
|
|
14791
|
+
description: (string | null);
|
|
13215
14792
|
}[];
|
|
13216
14793
|
canManage: boolean;
|
|
13217
14794
|
inherited: {
|
|
@@ -13562,6 +15139,194 @@ interface OrganizationSupportThreadsListOutput {
|
|
|
13562
15139
|
lastMessagePreview: (string | null);
|
|
13563
15140
|
}[];
|
|
13564
15141
|
}
|
|
15142
|
+
interface PlaygroundAnalyticsOverviewInput {
|
|
15143
|
+
/**
|
|
15144
|
+
* Max records per entity in recent[]; omit for the endpoint default
|
|
15145
|
+
*/
|
|
15146
|
+
limit?: number;
|
|
15147
|
+
}
|
|
15148
|
+
interface PlaygroundAnalyticsOverviewOutput {
|
|
15149
|
+
ok: boolean;
|
|
15150
|
+
minted: boolean;
|
|
15151
|
+
overview?: unknown;
|
|
15152
|
+
http_status: number;
|
|
15153
|
+
}
|
|
15154
|
+
interface PlaygroundBillingEntitlementsInput {
|
|
15155
|
+
}
|
|
15156
|
+
interface PlaygroundBillingEntitlementsOutput {
|
|
15157
|
+
ok: boolean;
|
|
15158
|
+
minted: boolean;
|
|
15159
|
+
http_status: number;
|
|
15160
|
+
entitlements?: unknown;
|
|
15161
|
+
}
|
|
15162
|
+
interface PlaygroundBillingRecordUsageInput {
|
|
15163
|
+
/**
|
|
15164
|
+
* Quantity of events to record against playground-events (SUM); defaults to 1
|
|
15165
|
+
*/
|
|
15166
|
+
value?: number;
|
|
15167
|
+
}
|
|
15168
|
+
interface PlaygroundBillingRecordUsageOutput {
|
|
15169
|
+
minted: boolean;
|
|
15170
|
+
accepted: (number | null);
|
|
15171
|
+
recorded: boolean;
|
|
15172
|
+
duplicates: (number | null);
|
|
15173
|
+
http_status: number;
|
|
15174
|
+
}
|
|
15175
|
+
interface PlaygroundClickupCreateTaskInput {
|
|
15176
|
+
/**
|
|
15177
|
+
* Task title; defaults to a fixture label
|
|
15178
|
+
*/
|
|
15179
|
+
name?: string;
|
|
15180
|
+
/**
|
|
15181
|
+
* ClickUp list id; falls back to CLICKUP_TEST_LIST_ID
|
|
15182
|
+
*/
|
|
15183
|
+
listId?: string;
|
|
15184
|
+
}
|
|
15185
|
+
interface PlaygroundClickupCreateTaskOutput {
|
|
15186
|
+
minted: boolean;
|
|
15187
|
+
task_id: (string | null);
|
|
15188
|
+
list_status: number;
|
|
15189
|
+
vend_status: number;
|
|
15190
|
+
clickup_status: number;
|
|
15191
|
+
installation_count: number;
|
|
15192
|
+
}
|
|
15193
|
+
interface PlaygroundClickupGetLastWebhookInput {
|
|
15194
|
+
}
|
|
15195
|
+
type PlaygroundClickupGetLastWebhookOutput = ({
|
|
15196
|
+
payload: string;
|
|
15197
|
+
event_id: string;
|
|
15198
|
+
provider: string;
|
|
15199
|
+
verified: boolean;
|
|
15200
|
+
product_id: string;
|
|
15201
|
+
occurred_at: string;
|
|
15202
|
+
connector_id: string;
|
|
15203
|
+
clickup_event: (string | null);
|
|
15204
|
+
receipt_count: number;
|
|
15205
|
+
} | {
|
|
15206
|
+
found: false;
|
|
15207
|
+
});
|
|
15208
|
+
interface PlaygroundClickupGetOverviewInput {
|
|
15209
|
+
}
|
|
15210
|
+
interface PlaygroundClickupGetOverviewOutput {
|
|
15211
|
+
team: ({
|
|
15212
|
+
teamId: string;
|
|
15213
|
+
teamName: string;
|
|
15214
|
+
} | null);
|
|
15215
|
+
lists: PlaygroundClickupGetOverviewOutputItems[];
|
|
15216
|
+
tasks: {
|
|
15217
|
+
id: string;
|
|
15218
|
+
name: string;
|
|
15219
|
+
status: (string | null);
|
|
15220
|
+
}[];
|
|
15221
|
+
minted: boolean;
|
|
15222
|
+
spaces: PlaygroundClickupGetOverviewOutputItems[];
|
|
15223
|
+
list_status: number;
|
|
15224
|
+
vend_status: number;
|
|
15225
|
+
lists_status: number;
|
|
15226
|
+
tasks_status: number;
|
|
15227
|
+
spaces_status: number;
|
|
15228
|
+
folders_status: number;
|
|
15229
|
+
installation_count: number;
|
|
15230
|
+
}
|
|
15231
|
+
interface PlaygroundClickupGetOverviewOutputItems {
|
|
15232
|
+
id: string;
|
|
15233
|
+
name: string;
|
|
15234
|
+
}
|
|
15235
|
+
interface PlaygroundGdriveGetLastChangeInput {
|
|
15236
|
+
}
|
|
15237
|
+
type PlaygroundGdriveGetLastChangeOutput = ({
|
|
15238
|
+
file_id: string;
|
|
15239
|
+
removed: boolean;
|
|
15240
|
+
file_name: (string | null);
|
|
15241
|
+
mime_type: (string | null);
|
|
15242
|
+
product_id: string;
|
|
15243
|
+
occurred_at: string;
|
|
15244
|
+
connector_id: string;
|
|
15245
|
+
resource_state: string;
|
|
15246
|
+
} | {
|
|
15247
|
+
found: false;
|
|
15248
|
+
});
|
|
15249
|
+
interface PlaygroundGdriveReadFileInput {
|
|
15250
|
+
/**
|
|
15251
|
+
* Drive file id; falls back to GDRIVE_TEST_FILE_ID, then the first picked file
|
|
15252
|
+
*/
|
|
15253
|
+
fileId?: string;
|
|
15254
|
+
}
|
|
15255
|
+
interface PlaygroundGdriveReadFileOutput {
|
|
15256
|
+
minted: boolean;
|
|
15257
|
+
file_id: (string | null);
|
|
15258
|
+
file_name: (string | null);
|
|
15259
|
+
mime_type: (string | null);
|
|
15260
|
+
file_count: number;
|
|
15261
|
+
get_status: number;
|
|
15262
|
+
list_status: number;
|
|
15263
|
+
vend_status: number;
|
|
15264
|
+
content_bytes: (number | null);
|
|
15265
|
+
}
|
|
15266
|
+
interface PlaygroundGoogleadsReadCustomerInput {
|
|
15267
|
+
}
|
|
15268
|
+
interface PlaygroundGoogleadsReadCustomerOutput {
|
|
15269
|
+
minted: boolean;
|
|
15270
|
+
vended: boolean;
|
|
15271
|
+
customer_id: (string | null);
|
|
15272
|
+
vend_status: number;
|
|
15273
|
+
result_count: number;
|
|
15274
|
+
search_status: number;
|
|
15275
|
+
login_customer_id: (string | null);
|
|
15276
|
+
}
|
|
15277
|
+
interface PlaygroundLifecycleGetStateInput {
|
|
15278
|
+
}
|
|
15279
|
+
interface PlaygroundLifecycleGetStateOutput {
|
|
15280
|
+
blocked: boolean;
|
|
15281
|
+
archived: boolean;
|
|
15282
|
+
productId: string;
|
|
15283
|
+
lastBlockTransition: ({
|
|
15284
|
+
eventId: string;
|
|
15285
|
+
eventName: string;
|
|
15286
|
+
productId: string;
|
|
15287
|
+
occurredAt: string;
|
|
15288
|
+
recordedAt: string;
|
|
15289
|
+
receiptCount: number;
|
|
15290
|
+
organizationId: string;
|
|
15291
|
+
cascadedFromOrg: boolean;
|
|
15292
|
+
} | null);
|
|
15293
|
+
lastArchiveTransition: ({
|
|
15294
|
+
eventId: string;
|
|
15295
|
+
eventName: string;
|
|
15296
|
+
productId: string;
|
|
15297
|
+
occurredAt: string;
|
|
15298
|
+
recordedAt: string;
|
|
15299
|
+
receiptCount: number;
|
|
15300
|
+
organizationId: string;
|
|
15301
|
+
cascadedFromOrg: boolean;
|
|
15302
|
+
} | null);
|
|
15303
|
+
}
|
|
15304
|
+
interface PlaygroundLifecycleListEventsInput {
|
|
15305
|
+
}
|
|
15306
|
+
type PlaygroundLifecycleListEventsOutput = {
|
|
15307
|
+
eventId: string;
|
|
15308
|
+
eventName: string;
|
|
15309
|
+
productId: string;
|
|
15310
|
+
occurredAt: string;
|
|
15311
|
+
recordedAt: string;
|
|
15312
|
+
receiptCount: number;
|
|
15313
|
+
organizationId: string;
|
|
15314
|
+
cascadedFromOrg: boolean;
|
|
15315
|
+
}[];
|
|
15316
|
+
interface PlaygroundWebhookGetLastInput {
|
|
15317
|
+
}
|
|
15318
|
+
type PlaygroundWebhookGetLastOutput = ({
|
|
15319
|
+
payload?: unknown;
|
|
15320
|
+
event_id: string;
|
|
15321
|
+
provider: string;
|
|
15322
|
+
verified: boolean;
|
|
15323
|
+
product_id: string;
|
|
15324
|
+
occurred_at: string;
|
|
15325
|
+
connector_id: string;
|
|
15326
|
+
delivery_count: number;
|
|
15327
|
+
} | {
|
|
15328
|
+
found: false;
|
|
15329
|
+
});
|
|
13565
15330
|
interface RealtimeArchiveExportInput {
|
|
13566
15331
|
/**
|
|
13567
15332
|
* Only entries with ts <= to_ts (epoch ms)
|
|
@@ -39508,9 +41273,6 @@ interface GeneratedClient {
|
|
|
39508
41273
|
restore: {
|
|
39509
41274
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
39510
41275
|
};
|
|
39511
|
-
usage: {
|
|
39512
|
-
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
39513
|
-
};
|
|
39514
41276
|
};
|
|
39515
41277
|
consent: {
|
|
39516
41278
|
'config-cookie-domain': {
|
|
@@ -39821,6 +41583,58 @@ interface GeneratedClient {
|
|
|
39821
41583
|
list(input: MailWebhookDeliveriesListInput): Promise<MailWebhookDeliveriesListOutput>;
|
|
39822
41584
|
};
|
|
39823
41585
|
};
|
|
41586
|
+
observe: {
|
|
41587
|
+
alerts: {
|
|
41588
|
+
create(input: ObserveAlertsCreateInput): Promise<ObserveAlertsCreateOutput>;
|
|
41589
|
+
delete(input: ObserveAlertsDeleteInput): Promise<ObserveAlertsDeleteOutput>;
|
|
41590
|
+
get(input: ObserveAlertsGetInput): Promise<ObserveAlertsGetOutput>;
|
|
41591
|
+
list(input: ObserveAlertsListInput): Promise<ObserveAlertsListOutput>;
|
|
41592
|
+
update(input: ObserveAlertsUpdateInput): Promise<ObserveAlertsUpdateOutput>;
|
|
41593
|
+
};
|
|
41594
|
+
'alerts-events': {
|
|
41595
|
+
list(input: ObserveAlertsEventsListInput): Promise<ObserveAlertsEventsListOutput>;
|
|
41596
|
+
};
|
|
41597
|
+
artifacts: {
|
|
41598
|
+
delete(input: ObserveArtifactsDeleteInput): Promise<ObserveArtifactsDeleteOutput>;
|
|
41599
|
+
list(input: ObserveArtifactsListInput): Promise<ObserveArtifactsListOutput>;
|
|
41600
|
+
resolve(input: ObserveArtifactsResolveInput): Promise<ObserveArtifactsResolveOutput>;
|
|
41601
|
+
};
|
|
41602
|
+
issues: {
|
|
41603
|
+
archive(input: ObserveIssuesArchiveInput): Promise<ObserveIssuesArchiveOutput>;
|
|
41604
|
+
assign(input: ObserveIssuesAssignInput): Promise<ObserveIssuesAssignOutput>;
|
|
41605
|
+
get(input: ObserveIssuesGetInput): Promise<ObserveIssuesGetOutput>;
|
|
41606
|
+
list(input: ObserveIssuesListInput): Promise<ObserveIssuesListOutput>;
|
|
41607
|
+
resolve(input: ObserveIssuesResolveInput): Promise<ObserveIssuesResolveOutput>;
|
|
41608
|
+
};
|
|
41609
|
+
keys: {
|
|
41610
|
+
create(input: ObserveKeysCreateInput): Promise<ObserveKeysCreateOutput>;
|
|
41611
|
+
list(input: ObserveKeysListInput): Promise<ObserveKeysListOutput>;
|
|
41612
|
+
revoke(input: ObserveKeysRevokeInput): Promise<ObserveKeysRevokeOutput>;
|
|
41613
|
+
};
|
|
41614
|
+
logs: {
|
|
41615
|
+
facets(input: ObserveLogsFacetsInput): Promise<ObserveLogsFacetsOutput>;
|
|
41616
|
+
search(input: ObserveLogsSearchInput): Promise<ObserveLogsSearchOutput>;
|
|
41617
|
+
tail(input: ObserveLogsTailInput): Promise<ObserveLogsTailOutput>;
|
|
41618
|
+
};
|
|
41619
|
+
traces: {
|
|
41620
|
+
get(input: ObserveTracesGetInput): Promise<ObserveTracesGetOutput>;
|
|
41621
|
+
search(input: ObserveTracesSearchInput): Promise<ObserveTracesSearchOutput>;
|
|
41622
|
+
};
|
|
41623
|
+
webhooks: {
|
|
41624
|
+
create(input: ObserveWebhooksCreateInput): Promise<ObserveWebhooksCreateOutput>;
|
|
41625
|
+
delete(input: ObserveWebhooksDeleteInput): Promise<ObserveWebhooksDeleteOutput>;
|
|
41626
|
+
get(input: ObserveWebhooksGetInput): Promise<ObserveWebhooksGetOutput>;
|
|
41627
|
+
list(input: ObserveWebhooksListInput): Promise<ObserveWebhooksListOutput>;
|
|
41628
|
+
redeliver(input: ObserveWebhooksRedeliverInput): Promise<ObserveWebhooksRedeliverOutput>;
|
|
41629
|
+
update(input: ObserveWebhooksUpdateInput): Promise<ObserveWebhooksUpdateOutput>;
|
|
41630
|
+
};
|
|
41631
|
+
'webhooks-deliveries': {
|
|
41632
|
+
list(input: ObserveWebhooksDeliveriesListInput): Promise<ObserveWebhooksDeliveriesListOutput>;
|
|
41633
|
+
};
|
|
41634
|
+
'webhooks-rotate': {
|
|
41635
|
+
secret(input: ObserveWebhooksRotateSecretInput): Promise<ObserveWebhooksRotateSecretOutput>;
|
|
41636
|
+
};
|
|
41637
|
+
};
|
|
39824
41638
|
organization: {
|
|
39825
41639
|
create(input: OrganizationCreateInput): Promise<OrganizationCreateOutput>;
|
|
39826
41640
|
list(input: OrganizationListInput): Promise<OrganizationListOutput>;
|
|
@@ -39940,6 +41754,34 @@ interface GeneratedClient {
|
|
|
39940
41754
|
list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
|
|
39941
41755
|
};
|
|
39942
41756
|
};
|
|
41757
|
+
playground: {
|
|
41758
|
+
analytics: {
|
|
41759
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
41760
|
+
};
|
|
41761
|
+
billing: {
|
|
41762
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
41763
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
41764
|
+
};
|
|
41765
|
+
clickup: {
|
|
41766
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
41767
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
41768
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
41769
|
+
};
|
|
41770
|
+
gdrive: {
|
|
41771
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
41772
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
41773
|
+
};
|
|
41774
|
+
googleads: {
|
|
41775
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
41776
|
+
};
|
|
41777
|
+
lifecycle: {
|
|
41778
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
41779
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
41780
|
+
};
|
|
41781
|
+
webhook: {
|
|
41782
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
41783
|
+
};
|
|
41784
|
+
};
|
|
39943
41785
|
realtime: {
|
|
39944
41786
|
archive: {
|
|
39945
41787
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
@@ -40239,4 +42081,4 @@ interface GeneratedClient {
|
|
|
40239
42081
|
};
|
|
40240
42082
|
}
|
|
40241
42083
|
|
|
40242
|
-
export type { BrainGdriveConnectionsListInput as $, AnalyticsQueryRunInput as A, BrainBackupCreateInput as B, BrainConnectorReposListInput as C, BrainConnectorReposListOutput as D, BrainDaemonBatchStatusInput as E, BrainDaemonBatchStatusOutput as F, GeneratedClient as G, BrainDaemonCreateInput as H, BrainDaemonCreateOutput as I, BrainDaemonGetInput as J, BrainDaemonGetOutput as K, BrainDaemonReingestInput as L, BrainDaemonReingestOutput as M, BrainDaemonRemoveInput as N, BrainDaemonRemoveOutput as O, BrainDaemonRunItemsInput as P, BrainDaemonRunItemsOutput as Q, BrainDaemonRunInput as R, BrainDaemonRunOutput as S, BrainDaemonRunsInput as T, BrainDaemonRunsOutput as U, BrainDaemonStatusInput as V, BrainDaemonStatusOutput as W, BrainDaemonUpdateInput as X, BrainDaemonUpdateOutput as Y, BrainDaemonsListInput as Z, BrainDaemonsListOutput as _, AnalyticsQueryRunOutput as a, DeploymentAlertDeleteInput as a$, BrainGdriveConnectionsListOutput as a0, BrainKnowledgeEntityMemoriesInput as a1, BrainKnowledgeEntityMemoriesOutput as a2, BrainKnowledgeGraphInput as a3, BrainKnowledgeGraphOutput as a4, BrainKnowledgeNeighborhoodInput as a5, BrainKnowledgeNeighborhoodOutput as a6, BrainKnowledgeRelationsInput as a7, BrainKnowledgeRelationsOutput as a8, BrainKnowledgeSearchInput as a9, ConsentConfigFloatingIconUpsertOutput as aA, ConsentConfigThemeUpsertInput as aB, ConsentConfigThemeUpsertOutput as aC, ConsentDashboardConfigGetInput as aD, ConsentDashboardConfigGetOutput as aE, ConsentDashboardDecisionsListInput as aF, ConsentDashboardDecisionsListOutput as aG, ConsentDashboardEmbedSnippetGetInput as aH, ConsentDashboardEmbedSnippetGetOutput as aI, ConsentDashboardStatsGetInput as aJ, ConsentDashboardStatsGetOutput as aK, ConsentEmbedGetInput as aL, ConsentEmbedGetOutput as aM, ConsentProvidersCreateInput as aN, ConsentProvidersCreateOutput as aO, ConsentProvidersDeleteInput as aP, ConsentProvidersDeleteOutput as aQ, ConsentProvidersListInput as aR, ConsentProvidersListOutput as aS, ConsentProvidersUpdateInput as aT, ConsentProvidersUpdateOutput as aU, ConsentRecordsExportInput as aV, ConsentRecordsExportOutput as aW, ConsentStatsGetInput as aX, ConsentStatsGetOutput as aY, DeploymentAlertCreateInput as aZ, DeploymentAlertCreateOutput as a_, BrainKnowledgeSearchOutput as aa, BrainMemoryAddInput as ab, BrainMemoryAddOutput as ac, BrainMemoryDeleteInput as ad, BrainMemoryDeleteOutput as ae, BrainMemoryGetInput as af, BrainMemoryGetOutput as ag, BrainMemoryListInput as ah, BrainMemoryListOutput as ai, BrainMemorySearchInput as aj, BrainMemorySearchOutput as ak, BrainMemoryStatsInput as al, BrainMemoryStatsOutput as am, BrainMemoryUpdateInput as an, BrainMemoryUpdateOutput as ao, BrainProductSharedMemoryResetInput as ap, BrainProductSharedMemoryResetOutput as aq, BrainRestoreStatusInput as ar, BrainRestoreStatusOutput as as, BrainUsageReportInput as at, BrainUsageReportOutput as au, ConsentConfigCookieDomainUpsertInput as av, ConsentConfigCookieDomainUpsertOutput as aw, ConsentConfigCustomizationUpsertInput as ax, ConsentConfigCustomizationUpsertOutput as ay, ConsentConfigFloatingIconUpsertInput as az, BrainBackupCreateOutput as b, DeploymentDomainGetInput as b$, DeploymentAlertDeleteOutput as b0, DeploymentAlertEventsListInput as b1, DeploymentAlertEventsListOutput as b2, DeploymentAlertListInput as b3, DeploymentAlertListOutput as b4, DeploymentAlertUpdateInput as b5, DeploymentAlertUpdateOutput as b6, DeploymentAnalyticsQueryInput as b7, DeploymentAnalyticsQueryOutput as b8, DeploymentAuditListInput as b9, DeploymentCloudSqlInstanceBackupListOutput as bA, DeploymentCloudSqlInstanceBackupInput as bB, DeploymentCloudSqlInstanceBackupOutput as bC, DeploymentCloudSqlInstanceCreateInput as bD, DeploymentCloudSqlInstanceCreateOutput as bE, DeploymentCloudSqlInstanceDeleteInput as bF, DeploymentCloudSqlInstanceDeleteOutput as bG, DeploymentCloudSqlInstanceGetInput as bH, DeploymentCloudSqlInstanceGetOutput as bI, DeploymentCloudSqlInstanceListInput as bJ, DeploymentCloudSqlInstanceListOutput as bK, DeploymentCloudSqlInstanceResizeInput as bL, DeploymentCloudSqlInstanceResizeOutput as bM, DeploymentCloudSqlInstanceRestoreInput as bN, DeploymentCloudSqlInstanceRestoreOutput as bO, DeploymentCloudSqlLogsInput as bP, DeploymentCloudSqlLogsOutput as bQ, DeploymentDeploymentCancelInput as bR, DeploymentDeploymentCancelOutput as bS, DeploymentDeploymentGetInput as bT, DeploymentDeploymentGetOutput as bU, DeploymentDeploymentListInput as bV, DeploymentDeploymentListOutput as bW, DeploymentDomainAddInput as bX, DeploymentDomainAddOutput as bY, DeploymentDomainAllowedListInput as bZ, DeploymentDomainAllowedListOutput as b_, DeploymentAuditListOutput as ba, DeploymentBuildGetInput as bb, DeploymentBuildGetOutput as bc, DeploymentBuildListInput as bd, DeploymentBuildListOutput as be, DeploymentBuildLogsInput as bf, DeploymentBuildLogsOutput as bg, DeploymentCanvasGetInput as bh, DeploymentCanvasGetOutput as bi, DeploymentCanvasMoveNodeInput as bj, DeploymentCanvasMoveNodeOutput as bk, DeploymentCloudSqlBackfillLogFlagsInput as bl, DeploymentCloudSqlBackfillLogFlagsOutput as bm, DeploymentCloudSqlDatabaseAttachInput as bn, DeploymentCloudSqlDatabaseAttachOutput as bo, DeploymentCloudSqlDatabaseCreateInput as bp, DeploymentCloudSqlDatabaseCreateOutput as bq, DeploymentCloudSqlDatabaseDeleteInput as br, DeploymentCloudSqlDatabaseDeleteOutput as bs, DeploymentCloudSqlDatabaseDetachInput as bt, DeploymentCloudSqlDatabaseDetachOutput as bu, DeploymentCloudSqlDatabaseGetInput as bv, DeploymentCloudSqlDatabaseGetOutput as bw, DeploymentCloudSqlDatabaseListInput as bx, DeploymentCloudSqlDatabaseListOutput as by, DeploymentCloudSqlInstanceBackupListInput as bz, BrainBackupRestoreInput as c, DeploymentManagedServiceTypesInput as c$, DeploymentDomainGetOutput as c0, DeploymentDomainListByServiceInput as c1, DeploymentDomainListByServiceOutput as c2, DeploymentDomainListInput as c3, DeploymentDomainListOutput as c4, DeploymentDomainRedirectWwwInput as c5, DeploymentDomainRedirectWwwOutput as c6, DeploymentDomainRemoveInput as c7, DeploymentDomainRemoveOutput as c8, DeploymentDomainRoutesAddInput as c9, DeploymentEventsListByServiceOutput as cA, DeploymentManagedServiceBackupListInput as cB, DeploymentManagedServiceBackupListOutput as cC, DeploymentManagedServiceBackupInput as cD, DeploymentManagedServiceBackupOutput as cE, DeploymentManagedServiceConnectInfoInput as cF, DeploymentManagedServiceConnectInfoOutput as cG, DeploymentManagedServiceDeleteInput as cH, DeploymentManagedServiceDeleteOutput as cI, DeploymentManagedServiceGetInput as cJ, DeploymentManagedServiceGetOutput as cK, DeploymentManagedServiceListInput as cL, DeploymentManagedServiceListOutput as cM, DeploymentManagedServiceLogsInput as cN, DeploymentManagedServiceLogsOutput as cO, DeploymentManagedServiceProvisionInput as cP, DeploymentManagedServiceProvisionOutput as cQ, DeploymentManagedServiceReconcileInput as cR, DeploymentManagedServiceReconcileOutput as cS, DeploymentManagedServiceResizeInput as cT, DeploymentManagedServiceResizeOutput as cU, DeploymentManagedServiceRestoreInput as cV, DeploymentManagedServiceRestoreOutput as cW, DeploymentManagedServiceStartInput as cX, DeploymentManagedServiceStartOutput as cY, DeploymentManagedServiceStopInput as cZ, DeploymentManagedServiceStopOutput as c_, DeploymentDomainRoutesAddOutput as ca, DeploymentDomainRoutesListInput as cb, DeploymentDomainRoutesListOutput as cc, DeploymentDomainRoutesRemoveInput as cd, DeploymentDomainRoutesRemoveOutput as ce, DeploymentDomainRoutesUpdateInput as cf, DeploymentDomainRoutesUpdateOutput as cg, DeploymentDomainVerifyInput as ch, DeploymentDomainVerifyOutput as ci, DeploymentEnvironmentCreateInput as cj, DeploymentEnvironmentCreateOutput as ck, DeploymentEnvironmentDeleteInput as cl, DeploymentEnvironmentDeleteOutput as cm, DeploymentEnvironmentForkInput as cn, DeploymentEnvironmentForkOutput as co, DeploymentEnvironmentGetInput as cp, DeploymentEnvironmentGetOutput as cq, DeploymentEnvironmentListInput as cr, DeploymentEnvironmentListOutput as cs, DeploymentEnvironmentReconcileInput as ct, DeploymentEnvironmentReconcileOutput as cu, DeploymentEnvironmentUpdateInput as cv, DeploymentEnvironmentUpdateOutput as cw, DeploymentEventsListByEnvironmentInput as cx, DeploymentEventsListByEnvironmentOutput as cy, DeploymentEventsListByServiceInput as cz, BrainBackupRestoreOutput as d, DeploymentVariableUnsetOutput as d$, DeploymentManagedServiceTypesOutput as d0, DeploymentMetricsGetInput as d1, DeploymentMetricsGetOutput as d2, DeploymentPreviewEnvironmentCreateInput as d3, DeploymentPreviewEnvironmentCreateOutput as d4, DeploymentPreviewEnvironmentDeleteInput as d5, DeploymentPreviewEnvironmentDeleteOutput as d6, DeploymentPreviewEnvironmentListInput as d7, DeploymentPreviewEnvironmentListOutput as d8, DeploymentPreviewPolicyGetInput as d9, DeploymentServiceWakeInput as dA, DeploymentServiceWakeOutput as dB, DeploymentSshCommandInput as dC, DeploymentSshCommandOutput as dD, DeploymentSshKeyDeleteInput as dE, DeploymentSshKeyDeleteOutput as dF, DeploymentSshKeyListInput as dG, DeploymentSshKeyListOutput as dH, DeploymentSshKeyRegisterInput as dI, DeploymentSshKeyRegisterOutput as dJ, DeploymentSuspensionGetInput as dK, DeploymentSuspensionGetOutput as dL, DeploymentVariableListEnvInput as dM, DeploymentVariableListEnvOutput as dN, DeploymentVariableListProductInput as dO, DeploymentVariableListProductOutput as dP, DeploymentVariableListInput as dQ, DeploymentVariableListOutput as dR, DeploymentVariableSetEnvInput as dS, DeploymentVariableSetEnvOutput as dT, DeploymentVariableSetInput as dU, DeploymentVariableSetOutput as dV, DeploymentVariableSetProductInput as dW, DeploymentVariableSetProductOutput as dX, DeploymentVariableUnsetEnvInput as dY, DeploymentVariableUnsetEnvOutput as dZ, DeploymentVariableUnsetInput as d_, DeploymentPreviewPolicyGetOutput as da, DeploymentPreviewPolicySetInput as db, DeploymentPreviewPolicySetOutput as dc, DeploymentServiceCreateInput as dd, DeploymentServiceCreateOutput as de, DeploymentServiceDeleteInput as df, DeploymentServiceDeleteOutput as dg, DeploymentServiceExecInput as dh, DeploymentServiceExecOutput as di, DeploymentServiceGetInput as dj, DeploymentServiceGetOutput as dk, DeploymentServiceListInput as dl, DeploymentServiceListOutput as dm, DeploymentServiceLogsInput as dn, DeploymentServiceLogsOutput as dp, DeploymentServiceRedeployInput as dq, DeploymentServiceRedeployOutput as dr, DeploymentServiceRestartInput as ds, DeploymentServiceRestartOutput as dt, DeploymentServiceRollbackInput as du, DeploymentServiceRollbackOutput as dv, DeploymentServiceScaleInput as dw, DeploymentServiceScaleOutput as dx, DeploymentServiceUpdateInput as dy, DeploymentServiceUpdateOutput as dz, BrainBackupStatusInput as e, MailDomainAllowedListOutput as e$, DeploymentVariableUnsetProductInput as e0, DeploymentVariableUnsetProductOutput as e1, DeploymentVcsBranchListInput as e2, DeploymentVcsBranchListOutput as e3, DeploymentVcsConnectionListInput as e4, DeploymentVcsConnectionListOutput as e5, DeploymentVcsRepoListInput as e6, DeploymentVcsRepoListOutput as e7, DeploymentVolumeCreateInput as e8, DeploymentVolumeCreateOutput as e9, MailBroadcastCancelInput as eA, MailBroadcastCancelOutput as eB, MailBroadcastCreateInput as eC, MailBroadcastCreateOutput as eD, MailBroadcastDeleteInput as eE, MailBroadcastDeleteOutput as eF, MailBroadcastGetInput as eG, MailBroadcastGetOutput as eH, MailBroadcastListInput as eI, MailBroadcastListOutput as eJ, MailBroadcastQueueInput as eK, MailBroadcastQueueOutput as eL, MailBroadcastStatsInput as eM, MailBroadcastStatsOutput as eN, MailBroadcastUpdateInput as eO, MailBroadcastUpdateOutput as eP, MailContactCreateInput as eQ, MailContactCreateOutput as eR, MailContactDeleteInput as eS, MailContactDeleteOutput as eT, MailContactGetInput as eU, MailContactGetOutput as eV, MailContactListInput as eW, MailContactListOutput as eX, MailContactUpdateInput as eY, MailContactUpdateOutput as eZ, MailDomainAllowedListInput as e_, DeploymentVolumeDeleteInput as ea, DeploymentVolumeDeleteOutput as eb, DeploymentVolumeDetachInput as ec, DeploymentVolumeDetachOutput as ed, DeploymentVolumeGetInput as ee, DeploymentVolumeGetOutput as ef, DeploymentVolumeListInput as eg, DeploymentVolumeListOutput as eh, DeploymentVolumeResizeInput as ei, DeploymentVolumeResizeOutput as ej, MailApikeyCreateInput as ek, MailApikeyCreateOutput as el, MailApikeyDeleteInput as em, MailApikeyDeleteOutput as en, MailApikeyListInput as eo, MailApikeyListOutput as ep, MailAudienceCreateInput as eq, MailAudienceCreateOutput as er, MailAudienceDeleteInput as es, MailAudienceDeleteOutput as et, MailAudienceGetInput as eu, MailAudienceGetOutput as ev, MailAudienceListInput as ew, MailAudienceListOutput as ex, MailAudienceUpdateInput as ey, MailAudienceUpdateOutput as ez, BrainBackupStatusOutput as f, OrganizationBillingBudgetsSetOutput as f$, MailDomainCreateInput as f0, MailDomainCreateOutput as f1, MailDomainDeleteInput as f2, MailDomainDeleteOutput as f3, MailDomainGetInput as f4, MailDomainGetOutput as f5, MailDomainListInput as f6, MailDomainListOutput as f7, MailDomainUpdateInput as f8, MailDomainUpdateOutput as f9, MailTemplateGetOutput as fA, MailTemplateListInput as fB, MailTemplateListOutput as fC, MailTemplatePublishInput as fD, MailTemplatePublishOutput as fE, MailTemplateUpdateInput as fF, MailTemplateUpdateOutput as fG, MailUsageGetInput as fH, MailUsageGetOutput as fI, MailWebhookCreateInput as fJ, MailWebhookCreateOutput as fK, MailWebhookDeleteInput as fL, MailWebhookDeleteOutput as fM, MailWebhookDeliveriesListInput as fN, MailWebhookDeliveriesListOutput as fO, MailWebhookGetInput as fP, MailWebhookGetOutput as fQ, MailWebhookListInput as fR, MailWebhookListOutput as fS, MailWebhookUpdateInput as fT, MailWebhookUpdateOutput as fU, MailEmailGetOutput as fV, OrganizationAuthMeInput as fW, OrganizationAuthMeOutput as fX, OrganizationBillingBudgetsGetInput as fY, OrganizationBillingBudgetsGetOutput as fZ, OrganizationBillingBudgetsSetInput as f_, MailDomainVerifyInput as fa, MailDomainVerifyOutput as fb, MailEmailCancelInput as fc, MailEmailCancelOutput as fd, MailEmailGetInput as fe, MailEmailSendBatchInput as ff, MailEmailSendBatchOutput as fg, MailEmailSendInput as fh, MailEmailSendOutput as fi, MailEmailUpdateInput as fj, MailEmailUpdateOutput as fk, MailReputationGetInput as fl, MailReputationGetOutput as fm, MailStatsGetInput as fn, MailStatsGetOutput as fo, MailSuppressionAddInput as fp, MailSuppressionAddOutput as fq, MailSuppressionListInput as fr, MailSuppressionListOutput as fs, MailSuppressionRemoveInput as ft, MailSuppressionRemoveOutput as fu, MailTemplateCreateInput as fv, MailTemplateCreateOutput as fw, MailTemplateDeleteInput as fx, MailTemplateDeleteOutput as fy, MailTemplateGetInput as fz, BrainBackupsListInput as g, OrganizationMemberAcceptInviteOutput as g$, OrganizationBillingCapsClearInput as g0, OrganizationBillingCapsClearOutput as g1, OrganizationBillingCapsSetInput as g2, OrganizationBillingCapsSetOutput as g3, OrganizationBindingsListInput as g4, OrganizationBindingsListOutput as g5, OrganizationClickupInstallInput as g6, OrganizationClickupInstallOutput as g7, OrganizationClickupListInstallationsInput as g8, OrganizationClickupListInstallationsOutput as g9, OrganizationCreateInput as gA, OrganizationCreateOutput as gB, OrganizationDomainsAddInput as gC, OrganizationDomainsAddOutput as gD, OrganizationDomainsGetInput as gE, OrganizationDomainsGetOutput as gF, OrganizationDomainsListInput as gG, OrganizationDomainsListOutput as gH, OrganizationDomainsRemoveInput as gI, OrganizationDomainsRemoveOutput as gJ, OrganizationDomainsSetModeInput as gK, OrganizationDomainsSetModeOutput as gL, OrganizationExtensionsListInstalledInput as gM, OrganizationExtensionsListInstalledOutput as gN, OrganizationFeedbackSubmitInput as gO, OrganizationFeedbackSubmitOutput as gP, OrganizationGdriveInstallInput as gQ, OrganizationGdriveInstallOutput as gR, OrganizationGithubInstallInput as gS, OrganizationGithubInstallOutput as gT, OrganizationGithubListInstallationsInput as gU, OrganizationGithubListInstallationsOutput as gV, OrganizationGoogleadsInstallInput as gW, OrganizationGoogleadsInstallOutput as gX, OrganizationListInput as gY, OrganizationListOutput as gZ, OrganizationMemberAcceptInviteInput as g_, OrganizationCloudflareInstallInput as ga, OrganizationCloudflareInstallOutput as gb, OrganizationConnectorsApproveRequestInput as gc, OrganizationConnectorsApproveRequestOutput as gd, OrganizationConnectorsAttachInput as ge, OrganizationConnectorsAttachOutput as gf, OrganizationConnectorsDeleteInput as gg, OrganizationConnectorsDeleteOutput as gh, OrganizationConnectorsDenyRequestInput as gi, OrganizationConnectorsDenyRequestOutput as gj, OrganizationConnectorsDetachInput as gk, OrganizationConnectorsDetachOutput as gl, OrganizationConnectorsListAttachmentsInput as gm, OrganizationConnectorsListAttachmentsOutput as gn, OrganizationConnectorsListAvailableInput as go, OrganizationConnectorsListAvailableOutput as gp, OrganizationConnectorsListOrgInput as gq, OrganizationConnectorsListOrgOutput as gr, OrganizationConnectorsListInput as gs, OrganizationConnectorsListOutput as gt, OrganizationConnectorsListRequestsInput as gu, OrganizationConnectorsListRequestsOutput as gv, OrganizationConnectorsRemoveInput as gw, OrganizationConnectorsRemoveOutput as gx, OrganizationConnectorsRequestInput as gy, OrganizationConnectorsRequestOutput as gz, BrainBackupsListOutput as h, OrganizationSelectOutput as h$, OrganizationMemberInviteInput as h0, OrganizationMemberInviteOutput as h1, OrganizationMemberListInvitationsInput as h2, OrganizationMemberListInvitationsOutput as h3, OrganizationMemberListProductAccessInput as h4, OrganizationMemberListProductAccessOutput as h5, OrganizationMemberListInput as h6, OrganizationMemberListOutput as h7, OrganizationMemberRemoveInput as h8, OrganizationMemberRemoveOutput as h9, OrganizationProductSetAccessInput as hA, OrganizationProductSetAccessOutput as hB, OrganizationProductUpdateInput as hC, OrganizationProductUpdateOutput as hD, OrganizationPublicKeysCreateInput as hE, OrganizationPublicKeysCreateOutput as hF, OrganizationPublicKeysListInput as hG, OrganizationPublicKeysListOutput as hH, OrganizationPublicKeysRevokeInput as hI, OrganizationPublicKeysRevokeOutput as hJ, OrganizationPublicKeysUpdateScopeInput as hK, OrganizationPublicKeysUpdateScopeOutput as hL, OrganizationPublicRoutesListInput as hM, OrganizationPublicRoutesListOutput as hN, OrganizationRolesCreateInput as hO, OrganizationRolesCreateOutput as hP, OrganizationRolesDeleteInput as hQ, OrganizationRolesDeleteOutput as hR, OrganizationRolesGetInput as hS, OrganizationRolesGetOutput as hT, OrganizationRolesListInput as hU, OrganizationRolesListOutput as hV, OrganizationRolesUpdateInput as hW, OrganizationRolesUpdateOutput as hX, OrganizationSecurityMfaEnableInput as hY, OrganizationSecurityMfaEnableOutput as hZ, OrganizationSelectInput as h_, OrganizationMemberRevokeInvitationInput as ha, OrganizationMemberRevokeInvitationOutput as hb, OrganizationMemberSetRoleInput as hc, OrganizationMemberSetRoleOutput as hd, OrganizationMemberShareProductInput as he, OrganizationMemberShareProductOutput as hf, OrganizationMemberUnshareProductInput as hg, OrganizationMemberUnshareProductOutput as hh, OrganizationMembersAssignRoleInput as hi, OrganizationMembersAssignRoleOutput as hj, OrganizationPermissionCatalogInput as hk, OrganizationPermissionCatalogOutput as hl, OrganizationProductCreateInput as hm, OrganizationProductCreateOutput as hn, OrganizationProductListAccessInput as ho, OrganizationProductListAccessOutput as hp, OrganizationProductListMembersInput as hq, OrganizationProductListMembersOutput as hr, OrganizationProductListInput as hs, OrganizationProductListOutput as ht, OrganizationProductListRolesInput as hu, OrganizationProductListRolesOutput as hv, OrganizationProductRevokeAccessInput as hw, OrganizationProductRevokeAccessOutput as hx, OrganizationProductSelectInput as hy, OrganizationProductSelectOutput as hz, BrainClickupChannelsListInput as i, RealtimeWebhookSecretRotateOutput as i$, OrganizationSupportThreadCreateInput as i0, OrganizationSupportThreadCreateOutput as i1, OrganizationSupportThreadGetInput as i2, OrganizationSupportThreadGetOutput as i3, OrganizationSupportThreadReplyInput as i4, OrganizationSupportThreadReplyOutput as i5, OrganizationSupportThreadsListInput as i6, OrganizationSupportThreadsListOutput as i7, RealtimeArchiveExportInput as i8, RealtimeArchiveExportOutput as i9, RealtimePresenceEnterInput as iA, RealtimePresenceEnterOutput as iB, RealtimePresenceGetInput as iC, RealtimePresenceGetOutput as iD, RealtimePresenceLeaveInput as iE, RealtimePresenceLeaveOutput as iF, RealtimePresenceStatsInput as iG, RealtimePresenceStatsOutput as iH, RealtimePresenceUpdateInput as iI, RealtimePresenceUpdateOutput as iJ, RealtimePublicAccessStatusInput as iK, RealtimePublicAccessStatusOutput as iL, RealtimeStatusGetInput as iM, RealtimeStatusGetOutput as iN, RealtimeTokensCreateInput as iO, RealtimeTokensCreateOutput as iP, RealtimeWebhookCreateInput as iQ, RealtimeWebhookCreateOutput as iR, RealtimeWebhookDeleteInput as iS, RealtimeWebhookDeleteOutput as iT, RealtimeWebhookDeliveriesListInput as iU, RealtimeWebhookDeliveriesListOutput as iV, RealtimeWebhookGetInput as iW, RealtimeWebhookGetOutput as iX, RealtimeWebhookListInput as iY, RealtimeWebhookListOutput as iZ, RealtimeWebhookSecretRotateInput as i_, RealtimeArchiveExportStatusInput as ia, RealtimeArchiveExportStatusOutput as ib, RealtimeArchiveGetInput as ic, RealtimeArchiveGetOutput as id, RealtimeGrantCreateInput as ie, RealtimeGrantCreateOutput as ig, RealtimeGrantListInput as ih, RealtimeGrantListOutput as ii, RealtimeGrantRevokeInput as ij, RealtimeGrantRevokeOutput as ik, RealtimeHistoryGetInput as il, RealtimeHistoryGetOutput as im, RealtimeMessagesPublishInput as io, RealtimeMessagesPublishOutput as ip, RealtimeNamespaceCreateInput as iq, RealtimeNamespaceCreateOutput as ir, RealtimeNamespaceDeleteInput as is, RealtimeNamespaceDeleteOutput as it, RealtimeNamespaceGetInput as iu, RealtimeNamespaceGetOutput as iv, RealtimeNamespaceListInput as iw, RealtimeNamespaceListOutput as ix, RealtimeNamespaceUpdateInput as iy, RealtimeNamespaceUpdateOutput as iz, BrainClickupChannelsListOutput as j, SupportThreadAssignOutput as j$, RealtimeWebhookUpdateInput as j0, RealtimeWebhookUpdateOutput as j1, SupportAgentCreateInput as j2, SupportAgentCreateOutput as j3, SupportAgentGetInput as j4, SupportAgentGetOutput as j5, SupportAgentListInput as j6, SupportAgentListOutput as j7, SupportAgentUpdateInput as j8, SupportAgentUpdateOutput as j9, SupportRuleUpdateInput as jA, SupportRuleUpdateOutput as jB, SupportStatusArchiveInput as jC, SupportStatusArchiveOutput as jD, SupportStatusCreateInput as jE, SupportStatusCreateOutput as jF, SupportStatusListInput as jG, SupportStatusListOutput as jH, SupportStatusUpdateInput as jI, SupportStatusUpdateOutput as jJ, SupportSurveyArchiveInput as jK, SupportSurveyArchiveOutput as jL, SupportSurveyCreateInput as jM, SupportSurveyCreateOutput as jN, SupportSurveyGetInput as jO, SupportSurveyGetOutput as jP, SupportSurveyListInput as jQ, SupportSurveyListOutput as jR, SupportSurveyPublishInput as jS, SupportSurveyPublishOutput as jT, SupportSurveyStatsInput as jU, SupportSurveyStatsOutput as jV, SupportSurveyUnpublishInput as jW, SupportSurveyUnpublishOutput as jX, SupportSurveyUpdateInput as jY, SupportSurveyUpdateOutput as jZ, SupportThreadAssignInput as j_, SupportAttachmentCreateInput as ja, SupportAttachmentCreateOutput as jb, SupportAttachmentFinalizeInput as jc, SupportAttachmentFinalizeOutput as jd, SupportLabelCreateInput as je, SupportLabelCreateOutput as jf, SupportLabelListInput as jg, SupportLabelListOutput as jh, SupportMessageCreateInput as ji, SupportMessageCreateOutput as jj, SupportMessageListInput as jk, SupportMessageListOutput as jl, SupportResponseEscalateInput as jm, SupportResponseEscalateOutput as jn, SupportResponseGetInput as jo, SupportResponseGetOutput as jp, SupportResponseListInput as jq, SupportResponseListOutput as jr, SupportRuleCreateInput as js, SupportRuleCreateOutput as jt, SupportRuleDeleteInput as ju, SupportRuleDeleteOutput as jv, SupportRuleGetInput as jw, SupportRuleGetOutput as jx, SupportRuleListInput as jy, SupportRuleListOutput as jz, BrainClickupConnectionsListInput as k, TrackingGoogleadsUsVsPlatformOutput as k$, SupportThreadCreateInput as k0, SupportThreadCreateOutput as k1, SupportThreadGetInput as k2, SupportThreadGetOutput as k3, SupportThreadListInput as k4, SupportThreadListOutput as k5, SupportThreadStatusSetInput as k6, SupportThreadStatusSetOutput as k7, SupportThreadUpdateInput as k8, SupportThreadUpdateOutput as k9, TrackingEventNamesArchiveInput as kA, TrackingEventNamesArchiveOutput as kB, TrackingEventNamesListInput as kC, TrackingEventNamesListOutput as kD, TrackingEventNamesUnarchiveInput as kE, TrackingEventNamesUnarchiveOutput as kF, TrackingGoogleadsConnectionStatusInput as kG, TrackingGoogleadsConnectionStatusOutput as kH, TrackingGoogleadsConversionActionsInput as kI, TrackingGoogleadsConversionActionsOutput as kJ, TrackingGoogleadsFeedbackConfigGetInput as kK, TrackingGoogleadsFeedbackConfigGetOutput as kL, TrackingGoogleadsFeedbackConfigSetInput as kM, TrackingGoogleadsFeedbackConfigSetOutput as kN, TrackingGoogleadsFeedbackRunInput as kO, TrackingGoogleadsFeedbackRunOutput as kP, TrackingGoogleadsFeedbackStatusInput as kQ, TrackingGoogleadsFeedbackStatusOutput as kR, TrackingGoogleadsFeedbackUploadsInput as kS, TrackingGoogleadsFeedbackUploadsOutput as kT, TrackingGoogleadsRoasReportInput as kU, TrackingGoogleadsRoasReportOutput as kV, TrackingGoogleadsSyncNowInput as kW, TrackingGoogleadsSyncNowOutput as kX, TrackingGoogleadsTrackingHealthInput as kY, TrackingGoogleadsTrackingHealthOutput as kZ, TrackingGoogleadsUsVsPlatformInput as k_, SupportWebhookCreateInput as ka, SupportWebhookCreateOutput as kb, SupportWebhookDeleteInput as kc, SupportWebhookDeleteOutput as kd, SupportWebhookDeliveriesListInput as ke, SupportWebhookDeliveriesListOutput as kf, SupportWebhookGetInput as kg, SupportWebhookGetOutput as kh, SupportWebhookListInput as ki, SupportWebhookListOutput as kj, SupportWebhookRedeliverInput as kk, SupportWebhookRedeliverOutput as kl, SupportWebhookRotateSecretInput as km, SupportWebhookRotateSecretOutput as kn, SupportWebhookUpdateInput as ko, SupportWebhookUpdateOutput as kp, TrackingDomainsCreateInput as kq, TrackingDomainsCreateOutput as kr, TrackingDomainsDeleteInput as ks, TrackingDomainsDeleteOutput as kt, TrackingDomainsGetInput as ku, TrackingDomainsGetOutput as kv, TrackingDomainsListInput as kw, TrackingDomainsListOutput as kx, TrackingDomainsVerifyInput as ky, TrackingDomainsVerifyOutput as kz, BrainClickupConnectionsListOutput as l, UsersSessionsImpersonateOutput as l$, TrackingIdentityHealthInput as l0, TrackingIdentityHealthOutput as l1, TrackingInstallDomainsCreateInput as l2, TrackingInstallDomainsCreateOutput as l3, TrackingInstallDomainsDeleteInput as l4, TrackingInstallDomainsDeleteOutput as l5, TrackingInstallDomainsListInput as l6, TrackingInstallDomainsListOutput as l7, TrackingLinkDomainsCreateInput as l8, TrackingLinkDomainsCreateOutput as l9, UsersApikeysListInput as lA, UsersApikeysListOutput as lB, UsersApikeysRevokeInput as lC, UsersApikeysRevokeOutput as lD, UsersAuditListInput as lE, UsersAuditListOutput as lF, UsersConfigGetInput as lG, UsersConfigGetOutput as lH, UsersConfigUpsertInput as lI, UsersConfigUpsertOutput as lJ, UsersFactorsListInput as lK, UsersFactorsListOutput as lL, UsersFactorsResetInput as lM, UsersFactorsResetOutput as lN, UsersKeysListInput as lO, UsersKeysListOutput as lP, UsersKeysRevokeInput as lQ, UsersKeysRevokeOutput as lR, UsersKeysRotateInput as lS, UsersKeysRotateOutput as lT, UsersOpsRetentionGetInput as lU, UsersOpsRetentionGetOutput as lV, UsersOpsSloGetInput as lW, UsersOpsSloGetOutput as lX, UsersSessionsGetInput as lY, UsersSessionsGetOutput as lZ, UsersSessionsImpersonateInput as l_, TrackingLinkDomainsDeleteInput as la, TrackingLinkDomainsDeleteOutput as lb, TrackingLinkDomainsListInput as lc, TrackingLinkDomainsListOutput as ld, TrackingLiveEventsListInput as le, TrackingLiveEventsListOutput as lf, TrackingProfilesDeleteInput as lg, TrackingProfilesDeleteOutput as lh, TrackingProfilesExportInput as li, TrackingProfilesExportOutput as lj, TrackingProfilesGetInput as lk, TrackingProfilesGetOutput as ll, TrackingProfilesListInput as lm, TrackingProfilesListOutput as ln, TrackingReportsAttributedJourneyInput as lo, TrackingReportsAttributedJourneyOutput as lp, TrackingReportsEventVolumeInput as lq, TrackingReportsEventVolumeOutput as lr, TrackingReportsRevenueBySourceInput as ls, TrackingReportsRevenueBySourceOutput as lt, TrackingReportsSourcePeopleInput as lu, TrackingReportsSourcePeopleOutput as lv, TrackingSnippetsGetInput as lw, TrackingSnippetsGetOutput as lx, UsersApikeysCreateInput as ly, UsersApikeysCreateOutput as lz, BrainClickupListsListInput as m, WaitlistSignupsEraseOutput as m$, UsersSessionsListInput as m0, UsersSessionsListOutput as m1, UsersSessionsRevokeInput as m2, UsersSessionsRevokeOutput as m3, UsersStatsGetInput as m4, UsersStatsGetOutput as m5, UsersUsersBanInput as m6, UsersUsersBanOutput as m7, UsersUsersCreateInput as m8, UsersUsersCreateOutput as m9, UsersWaitlistInviteInput as mA, UsersWaitlistInviteOutput as mB, UsersWaitlistListInput as mC, UsersWaitlistListOutput as mD, UsersWebhooksCreateInput as mE, UsersWebhooksCreateOutput as mF, UsersWebhooksDeleteInput as mG, UsersWebhooksDeleteOutput as mH, UsersWebhooksDeliveriesListInput as mI, UsersWebhooksDeliveriesListOutput as mJ, UsersWebhooksGetInput as mK, UsersWebhooksGetOutput as mL, UsersWebhooksListInput as mM, UsersWebhooksListOutput as mN, UsersWebhooksRotateSecretInput as mO, UsersWebhooksRotateSecretOutput as mP, UsersWebhooksUpdateInput as mQ, UsersWebhooksUpdateOutput as mR, WaitlistConfigGetInput as mS, WaitlistConfigGetOutput as mT, WaitlistConfigUpsertInput as mU, WaitlistConfigUpsertOutput as mV, WaitlistEmbedGetInput as mW, WaitlistEmbedGetOutput as mX, WaitlistInvitesSendInput as mY, WaitlistInvitesSendOutput as mZ, WaitlistSignupsEraseInput as m_, UsersUsersDeleteInput as ma, UsersUsersDeleteOutput as mb, UsersUsersEraseInput as mc, UsersUsersEraseOutput as md, UsersUsersExportInput as me, UsersUsersExportOutput as mf, UsersUsersGetInput as mg, UsersUsersGetOutput as mh, UsersUsersImportInput as mi, UsersUsersImportOutput as mj, UsersUsersInviteInput as mk, UsersUsersInviteOutput as ml, UsersUsersListInput as mm, UsersUsersListOutput as mn, UsersUsersSetPrimaryIdentifierInput as mo, UsersUsersSetPrimaryIdentifierOutput as mp, UsersUsersUnbanInput as mq, UsersUsersUnbanOutput as mr, UsersUsersUpdateInput as ms, UsersUsersUpdateOutput as mt, UsersWaitlistEraseInput as mu, UsersWaitlistEraseOutput as mv, UsersWaitlistFunnelInput as mw, UsersWaitlistFunnelOutput as mx, UsersWaitlistImportInput as my, UsersWaitlistImportOutput as mz, BrainClickupListsListOutput as n, WaitlistSignupsFunnelInput as n0, WaitlistSignupsFunnelOutput as n1, WaitlistSignupsListInput as n2, WaitlistSignupsListOutput as n3, BrainClickupSpacesListInput as o, BrainClickupSpacesListOutput as p, BrainCognitionDigestInput as q, BrainCognitionDigestOutput as r, BrainCognitionStatusInput as s, BrainCognitionStatusOutput as t, BrainCognitionSweepInput as u, BrainCognitionSweepOutput as v, BrainConnectorBranchesListInput as w, BrainConnectorBranchesListOutput as x, BrainConnectorConnectionsListInput as y, BrainConnectorConnectionsListOutput as z };
|
|
42084
|
+
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, ObserveAlertsGetOutput 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, ObserveAlertsCreateInput as fU, ObserveAlertsCreateOutput as fV, ObserveAlertsDeleteInput as fW, ObserveAlertsDeleteOutput as fX, ObserveAlertsEventsListInput as fY, ObserveAlertsEventsListOutput as fZ, ObserveAlertsGetInput 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, OrganizationBindingsListOutput as g$, ObserveAlertsListInput as g0, ObserveAlertsListOutput as g1, ObserveAlertsUpdateInput as g2, ObserveAlertsUpdateOutput as g3, ObserveArtifactsDeleteInput as g4, ObserveArtifactsDeleteOutput as g5, ObserveArtifactsListInput as g6, ObserveArtifactsListOutput as g7, ObserveArtifactsResolveInput as g8, ObserveArtifactsResolveOutput as g9, ObserveWebhooksCreateInput as gA, ObserveWebhooksCreateOutput as gB, ObserveWebhooksDeleteInput as gC, ObserveWebhooksDeleteOutput as gD, ObserveWebhooksDeliveriesListInput as gE, ObserveWebhooksDeliveriesListOutput as gF, ObserveWebhooksGetInput as gG, ObserveWebhooksGetOutput as gH, ObserveWebhooksListInput as gI, ObserveWebhooksListOutput as gJ, ObserveWebhooksRedeliverInput as gK, ObserveWebhooksRedeliverOutput as gL, ObserveWebhooksRotateSecretInput as gM, ObserveWebhooksRotateSecretOutput as gN, ObserveWebhooksUpdateInput as gO, ObserveWebhooksUpdateOutput as gP, OrganizationAuthMeInput as gQ, OrganizationAuthMeOutput as gR, OrganizationBillingBudgetsGetInput as gS, OrganizationBillingBudgetsGetOutput as gT, OrganizationBillingBudgetsSetInput as gU, OrganizationBillingBudgetsSetOutput as gV, OrganizationBillingCapsClearInput as gW, OrganizationBillingCapsClearOutput as gX, OrganizationBillingCapsSetInput as gY, OrganizationBillingCapsSetOutput as gZ, OrganizationBindingsListInput as g_, ObserveIssuesArchiveInput as ga, ObserveIssuesArchiveOutput as gb, ObserveIssuesAssignInput as gc, ObserveIssuesAssignOutput as gd, ObserveIssuesGetInput as ge, ObserveIssuesGetOutput as gf, ObserveIssuesListInput as gg, ObserveIssuesListOutput as gh, ObserveIssuesResolveInput as gi, ObserveIssuesResolveOutput as gj, ObserveKeysCreateInput as gk, ObserveKeysCreateOutput as gl, ObserveKeysListInput as gm, ObserveKeysListOutput as gn, ObserveKeysRevokeInput as go, ObserveKeysRevokeOutput as gp, ObserveLogsFacetsInput as gq, ObserveLogsFacetsOutput as gr, ObserveLogsSearchInput as gs, ObserveLogsSearchOutput as gt, ObserveLogsTailInput as gu, ObserveLogsTailOutput as gv, ObserveTracesGetInput as gw, ObserveTracesGetOutput as gx, ObserveTracesSearchInput as gy, ObserveTracesSearchOutput as gz, BrainBackupsListOutput as h, OrganizationMemberListProductAccessOutput as h$, OrganizationClickupInstallInput as h0, OrganizationClickupInstallOutput as h1, OrganizationClickupListInstallationsInput as h2, OrganizationClickupListInstallationsOutput as h3, OrganizationCloudflareInstallInput as h4, OrganizationCloudflareInstallOutput as h5, OrganizationConnectorsApproveRequestInput as h6, OrganizationConnectorsApproveRequestOutput as h7, OrganizationConnectorsAttachInput as h8, OrganizationConnectorsAttachOutput as h9, OrganizationDomainsListInput as hA, OrganizationDomainsListOutput as hB, OrganizationDomainsRemoveInput as hC, OrganizationDomainsRemoveOutput as hD, OrganizationDomainsSetModeInput as hE, OrganizationDomainsSetModeOutput as hF, OrganizationExtensionsListInstalledInput as hG, OrganizationExtensionsListInstalledOutput as hH, OrganizationFeedbackSubmitInput as hI, OrganizationFeedbackSubmitOutput as hJ, OrganizationGdriveInstallInput as hK, OrganizationGdriveInstallOutput as hL, OrganizationGithubInstallInput as hM, OrganizationGithubInstallOutput as hN, OrganizationGithubListInstallationsInput as hO, OrganizationGithubListInstallationsOutput as hP, OrganizationGoogleadsInstallInput as hQ, OrganizationGoogleadsInstallOutput as hR, OrganizationListInput as hS, OrganizationListOutput as hT, OrganizationMemberAcceptInviteInput as hU, OrganizationMemberAcceptInviteOutput as hV, OrganizationMemberInviteInput as hW, OrganizationMemberInviteOutput as hX, OrganizationMemberListInvitationsInput as hY, OrganizationMemberListInvitationsOutput as hZ, OrganizationMemberListProductAccessInput as h_, OrganizationConnectorsDeleteInput as ha, OrganizationConnectorsDeleteOutput as hb, OrganizationConnectorsDenyRequestInput as hc, OrganizationConnectorsDenyRequestOutput as hd, OrganizationConnectorsDetachInput as he, OrganizationConnectorsDetachOutput as hf, OrganizationConnectorsListAttachmentsInput as hg, OrganizationConnectorsListAttachmentsOutput as hh, OrganizationConnectorsListAvailableInput as hi, OrganizationConnectorsListAvailableOutput as hj, OrganizationConnectorsListOrgInput as hk, OrganizationConnectorsListOrgOutput as hl, OrganizationConnectorsListInput as hm, OrganizationConnectorsListOutput as hn, OrganizationConnectorsListRequestsInput as ho, OrganizationConnectorsListRequestsOutput as hp, OrganizationConnectorsRemoveInput as hq, OrganizationConnectorsRemoveOutput as hr, OrganizationConnectorsRequestInput as hs, OrganizationConnectorsRequestOutput as ht, OrganizationCreateInput as hu, OrganizationCreateOutput as hv, OrganizationDomainsAddInput as hw, OrganizationDomainsAddOutput as hx, OrganizationDomainsGetInput as hy, OrganizationDomainsGetOutput as hz, BrainClickupChannelsListInput as i, OrganizationSupportThreadGetOutput as i$, OrganizationMemberListInput as i0, OrganizationMemberListOutput as i1, OrganizationMemberRemoveInput as i2, OrganizationMemberRemoveOutput as i3, OrganizationMemberRevokeInvitationInput as i4, OrganizationMemberRevokeInvitationOutput as i5, OrganizationMemberSetRoleInput as i6, OrganizationMemberSetRoleOutput as i7, OrganizationMemberShareProductInput as i8, OrganizationMemberShareProductOutput as i9, OrganizationPublicKeysCreateInput as iA, OrganizationPublicKeysCreateOutput as iB, OrganizationPublicKeysListInput as iC, OrganizationPublicKeysListOutput as iD, OrganizationPublicKeysRevokeInput as iE, OrganizationPublicKeysRevokeOutput as iF, OrganizationPublicKeysUpdateScopeInput as iG, OrganizationPublicKeysUpdateScopeOutput as iH, OrganizationPublicRoutesListInput as iI, OrganizationPublicRoutesListOutput as iJ, OrganizationRolesCreateInput as iK, OrganizationRolesCreateOutput as iL, OrganizationRolesDeleteInput as iM, OrganizationRolesDeleteOutput as iN, OrganizationRolesGetInput as iO, OrganizationRolesGetOutput as iP, OrganizationRolesListInput as iQ, OrganizationRolesListOutput as iR, OrganizationRolesUpdateInput as iS, OrganizationRolesUpdateOutput as iT, OrganizationSecurityMfaEnableInput as iU, OrganizationSecurityMfaEnableOutput as iV, OrganizationSelectInput as iW, OrganizationSelectOutput as iX, OrganizationSupportThreadCreateInput as iY, OrganizationSupportThreadCreateOutput as iZ, OrganizationSupportThreadGetInput as i_, OrganizationMemberUnshareProductInput as ia, OrganizationMemberUnshareProductOutput as ib, OrganizationMembersAssignRoleInput as ic, OrganizationMembersAssignRoleOutput as id, OrganizationPermissionCatalogInput as ie, OrganizationPermissionCatalogOutput as ig, OrganizationProductCreateInput as ih, OrganizationProductCreateOutput as ii, OrganizationProductListAccessInput as ij, OrganizationProductListAccessOutput as ik, OrganizationProductListMembersInput as il, OrganizationProductListMembersOutput as im, OrganizationProductListInput as io, OrganizationProductListOutput as ip, OrganizationProductListRolesInput as iq, OrganizationProductListRolesOutput as ir, OrganizationProductRevokeAccessInput as is, OrganizationProductRevokeAccessOutput as it, OrganizationProductSelectInput as iu, OrganizationProductSelectOutput as iv, OrganizationProductSetAccessInput as iw, OrganizationProductSetAccessOutput as ix, OrganizationProductUpdateInput as iy, OrganizationProductUpdateOutput as iz, BrainClickupChannelsListOutput as j, RealtimePresenceUpdateOutput as j$, OrganizationSupportThreadReplyInput as j0, OrganizationSupportThreadReplyOutput as j1, OrganizationSupportThreadsListInput as j2, OrganizationSupportThreadsListOutput as j3, PlaygroundAnalyticsOverviewInput as j4, PlaygroundAnalyticsOverviewOutput as j5, PlaygroundBillingEntitlementsInput as j6, PlaygroundBillingEntitlementsOutput as j7, PlaygroundBillingRecordUsageInput as j8, PlaygroundBillingRecordUsageOutput as j9, RealtimeGrantListInput as jA, RealtimeGrantListOutput as jB, RealtimeGrantRevokeInput as jC, RealtimeGrantRevokeOutput as jD, RealtimeHistoryGetInput as jE, RealtimeHistoryGetOutput as jF, RealtimeMessagesPublishInput as jG, RealtimeMessagesPublishOutput as jH, RealtimeNamespaceCreateInput as jI, RealtimeNamespaceCreateOutput as jJ, RealtimeNamespaceDeleteInput as jK, RealtimeNamespaceDeleteOutput as jL, RealtimeNamespaceGetInput as jM, RealtimeNamespaceGetOutput as jN, RealtimeNamespaceListInput as jO, RealtimeNamespaceListOutput as jP, RealtimeNamespaceUpdateInput as jQ, RealtimeNamespaceUpdateOutput as jR, RealtimePresenceEnterInput as jS, RealtimePresenceEnterOutput as jT, RealtimePresenceGetInput as jU, RealtimePresenceGetOutput as jV, RealtimePresenceLeaveInput as jW, RealtimePresenceLeaveOutput as jX, RealtimePresenceStatsInput as jY, RealtimePresenceStatsOutput as jZ, RealtimePresenceUpdateInput as j_, PlaygroundClickupCreateTaskInput as ja, PlaygroundClickupCreateTaskOutput as jb, PlaygroundClickupGetLastWebhookInput as jc, PlaygroundClickupGetLastWebhookOutput as jd, PlaygroundClickupGetOverviewInput as je, PlaygroundClickupGetOverviewOutput as jf, PlaygroundGdriveGetLastChangeInput as jg, PlaygroundGdriveGetLastChangeOutput as jh, PlaygroundGdriveReadFileInput as ji, PlaygroundGdriveReadFileOutput as jj, PlaygroundGoogleadsReadCustomerInput as jk, PlaygroundGoogleadsReadCustomerOutput as jl, PlaygroundLifecycleGetStateInput as jm, PlaygroundLifecycleGetStateOutput as jn, PlaygroundLifecycleListEventsInput as jo, PlaygroundLifecycleListEventsOutput as jp, PlaygroundWebhookGetLastInput as jq, PlaygroundWebhookGetLastOutput as jr, RealtimeArchiveExportInput as js, RealtimeArchiveExportOutput as jt, RealtimeArchiveExportStatusInput as ju, RealtimeArchiveExportStatusOutput as jv, RealtimeArchiveGetInput as jw, RealtimeArchiveGetOutput as jx, RealtimeGrantCreateInput as jy, RealtimeGrantCreateOutput as jz, BrainClickupConnectionsListInput as k, SupportStatusUpdateOutput as k$, RealtimePublicAccessStatusInput as k0, RealtimePublicAccessStatusOutput as k1, RealtimeStatusGetInput as k2, RealtimeStatusGetOutput as k3, RealtimeTokensCreateInput as k4, RealtimeTokensCreateOutput as k5, RealtimeWebhookCreateInput as k6, RealtimeWebhookCreateOutput as k7, RealtimeWebhookDeleteInput as k8, RealtimeWebhookDeleteOutput as k9, SupportMessageCreateInput as kA, SupportMessageCreateOutput as kB, SupportMessageListInput as kC, SupportMessageListOutput as kD, SupportResponseEscalateInput as kE, SupportResponseEscalateOutput as kF, SupportResponseGetInput as kG, SupportResponseGetOutput as kH, SupportResponseListInput as kI, SupportResponseListOutput as kJ, SupportRuleCreateInput as kK, SupportRuleCreateOutput as kL, SupportRuleDeleteInput as kM, SupportRuleDeleteOutput as kN, SupportRuleGetInput as kO, SupportRuleGetOutput as kP, SupportRuleListInput as kQ, SupportRuleListOutput as kR, SupportRuleUpdateInput as kS, SupportRuleUpdateOutput as kT, SupportStatusArchiveInput as kU, SupportStatusArchiveOutput as kV, SupportStatusCreateInput as kW, SupportStatusCreateOutput as kX, SupportStatusListInput as kY, SupportStatusListOutput as kZ, SupportStatusUpdateInput as k_, RealtimeWebhookDeliveriesListInput as ka, RealtimeWebhookDeliveriesListOutput as kb, RealtimeWebhookGetInput as kc, RealtimeWebhookGetOutput as kd, RealtimeWebhookListInput as ke, RealtimeWebhookListOutput as kf, RealtimeWebhookSecretRotateInput as kg, RealtimeWebhookSecretRotateOutput as kh, RealtimeWebhookUpdateInput as ki, RealtimeWebhookUpdateOutput as kj, SupportAgentCreateInput as kk, SupportAgentCreateOutput as kl, SupportAgentGetInput as km, SupportAgentGetOutput as kn, SupportAgentListInput as ko, SupportAgentListOutput as kp, SupportAgentUpdateInput as kq, SupportAgentUpdateOutput as kr, SupportAttachmentCreateInput as ks, SupportAttachmentCreateOutput as kt, SupportAttachmentFinalizeInput as ku, SupportAttachmentFinalizeOutput as kv, SupportLabelCreateInput as kw, SupportLabelCreateOutput as kx, SupportLabelListInput as ky, SupportLabelListOutput as kz, BrainClickupConnectionsListOutput as l, TrackingGoogleadsConversionActionsOutput as l$, SupportSurveyArchiveInput as l0, SupportSurveyArchiveOutput as l1, SupportSurveyCreateInput as l2, SupportSurveyCreateOutput as l3, SupportSurveyGetInput as l4, SupportSurveyGetOutput as l5, SupportSurveyListInput as l6, SupportSurveyListOutput as l7, SupportSurveyPublishInput as l8, SupportSurveyPublishOutput as l9, SupportWebhookListInput as lA, SupportWebhookListOutput as lB, SupportWebhookRedeliverInput as lC, SupportWebhookRedeliverOutput as lD, SupportWebhookRotateSecretInput as lE, SupportWebhookRotateSecretOutput as lF, SupportWebhookUpdateInput as lG, SupportWebhookUpdateOutput as lH, TrackingDomainsCreateInput as lI, TrackingDomainsCreateOutput as lJ, TrackingDomainsDeleteInput as lK, TrackingDomainsDeleteOutput as lL, TrackingDomainsGetInput as lM, TrackingDomainsGetOutput as lN, TrackingDomainsListInput as lO, TrackingDomainsListOutput as lP, TrackingDomainsVerifyInput as lQ, TrackingDomainsVerifyOutput as lR, TrackingEventNamesArchiveInput as lS, TrackingEventNamesArchiveOutput as lT, TrackingEventNamesListInput as lU, TrackingEventNamesListOutput as lV, TrackingEventNamesUnarchiveInput as lW, TrackingEventNamesUnarchiveOutput as lX, TrackingGoogleadsConnectionStatusInput as lY, TrackingGoogleadsConnectionStatusOutput as lZ, TrackingGoogleadsConversionActionsInput as l_, SupportSurveyStatsInput as la, SupportSurveyStatsOutput as lb, SupportSurveyUnpublishInput as lc, SupportSurveyUnpublishOutput as ld, SupportSurveyUpdateInput as le, SupportSurveyUpdateOutput as lf, SupportThreadAssignInput as lg, SupportThreadAssignOutput as lh, SupportThreadCreateInput as li, SupportThreadCreateOutput as lj, SupportThreadGetInput as lk, SupportThreadGetOutput as ll, SupportThreadListInput as lm, SupportThreadListOutput as ln, SupportThreadStatusSetInput as lo, SupportThreadStatusSetOutput as lp, SupportThreadUpdateInput as lq, SupportThreadUpdateOutput as lr, SupportWebhookCreateInput as ls, SupportWebhookCreateOutput as lt, SupportWebhookDeleteInput as lu, SupportWebhookDeleteOutput as lv, SupportWebhookDeliveriesListInput as lw, SupportWebhookDeliveriesListOutput as lx, SupportWebhookGetInput as ly, SupportWebhookGetOutput as lz, BrainClickupListsListInput as m, UsersConfigUpsertOutput as m$, TrackingGoogleadsFeedbackConfigGetInput as m0, TrackingGoogleadsFeedbackConfigGetOutput as m1, TrackingGoogleadsFeedbackConfigSetInput as m2, TrackingGoogleadsFeedbackConfigSetOutput as m3, TrackingGoogleadsFeedbackRunInput as m4, TrackingGoogleadsFeedbackRunOutput as m5, TrackingGoogleadsFeedbackStatusInput as m6, TrackingGoogleadsFeedbackStatusOutput as m7, TrackingGoogleadsFeedbackUploadsInput as m8, TrackingGoogleadsFeedbackUploadsOutput as m9, TrackingProfilesExportInput as mA, TrackingProfilesExportOutput as mB, TrackingProfilesGetInput as mC, TrackingProfilesGetOutput as mD, TrackingProfilesListInput as mE, TrackingProfilesListOutput as mF, TrackingReportsAttributedJourneyInput as mG, TrackingReportsAttributedJourneyOutput as mH, TrackingReportsEventVolumeInput as mI, TrackingReportsEventVolumeOutput as mJ, TrackingReportsRevenueBySourceInput as mK, TrackingReportsRevenueBySourceOutput as mL, TrackingReportsSourcePeopleInput as mM, TrackingReportsSourcePeopleOutput as mN, TrackingSnippetsGetInput as mO, TrackingSnippetsGetOutput as mP, UsersApikeysCreateInput as mQ, UsersApikeysCreateOutput as mR, UsersApikeysListInput as mS, UsersApikeysListOutput as mT, UsersApikeysRevokeInput as mU, UsersApikeysRevokeOutput as mV, UsersAuditListInput as mW, UsersAuditListOutput as mX, UsersConfigGetInput as mY, UsersConfigGetOutput as mZ, UsersConfigUpsertInput as m_, TrackingGoogleadsRoasReportInput as ma, TrackingGoogleadsRoasReportOutput as mb, TrackingGoogleadsSyncNowInput as mc, TrackingGoogleadsSyncNowOutput as md, TrackingGoogleadsTrackingHealthInput as me, TrackingGoogleadsTrackingHealthOutput as mf, TrackingGoogleadsUsVsPlatformInput as mg, TrackingGoogleadsUsVsPlatformOutput as mh, TrackingIdentityHealthInput as mi, TrackingIdentityHealthOutput as mj, TrackingInstallDomainsCreateInput as mk, TrackingInstallDomainsCreateOutput as ml, TrackingInstallDomainsDeleteInput as mm, TrackingInstallDomainsDeleteOutput as mn, TrackingInstallDomainsListInput as mo, TrackingInstallDomainsListOutput as mp, TrackingLinkDomainsCreateInput as mq, TrackingLinkDomainsCreateOutput as mr, TrackingLinkDomainsDeleteInput as ms, TrackingLinkDomainsDeleteOutput as mt, TrackingLinkDomainsListInput as mu, TrackingLinkDomainsListOutput as mv, TrackingLiveEventsListInput as mw, TrackingLiveEventsListOutput as mx, TrackingProfilesDeleteInput as my, TrackingProfilesDeleteOutput as mz, BrainClickupListsListOutput as n, UsersWebhooksDeliveriesListOutput as n$, UsersFactorsListInput as n0, UsersFactorsListOutput as n1, UsersFactorsResetInput as n2, UsersFactorsResetOutput as n3, UsersKeysListInput as n4, UsersKeysListOutput as n5, UsersKeysRevokeInput as n6, UsersKeysRevokeOutput as n7, UsersKeysRotateInput as n8, UsersKeysRotateOutput as n9, UsersUsersImportInput as nA, UsersUsersImportOutput as nB, UsersUsersInviteInput as nC, UsersUsersInviteOutput as nD, UsersUsersListInput as nE, UsersUsersListOutput as nF, UsersUsersSetPrimaryIdentifierInput as nG, UsersUsersSetPrimaryIdentifierOutput as nH, UsersUsersUnbanInput as nI, UsersUsersUnbanOutput as nJ, UsersUsersUpdateInput as nK, UsersUsersUpdateOutput as nL, UsersWaitlistEraseInput as nM, UsersWaitlistEraseOutput as nN, UsersWaitlistFunnelInput as nO, UsersWaitlistFunnelOutput as nP, UsersWaitlistImportInput as nQ, UsersWaitlistImportOutput as nR, UsersWaitlistInviteInput as nS, UsersWaitlistInviteOutput as nT, UsersWaitlistListInput as nU, UsersWaitlistListOutput as nV, UsersWebhooksCreateInput as nW, UsersWebhooksCreateOutput as nX, UsersWebhooksDeleteInput as nY, UsersWebhooksDeleteOutput as nZ, UsersWebhooksDeliveriesListInput as n_, UsersOpsRetentionGetInput as na, UsersOpsRetentionGetOutput as nb, UsersOpsSloGetInput as nc, UsersOpsSloGetOutput as nd, UsersSessionsGetInput as ne, UsersSessionsGetOutput as nf, UsersSessionsImpersonateInput as ng, UsersSessionsImpersonateOutput as nh, UsersSessionsListInput as ni, UsersSessionsListOutput as nj, UsersSessionsRevokeInput as nk, UsersSessionsRevokeOutput as nl, UsersStatsGetInput as nm, UsersStatsGetOutput as nn, UsersUsersBanInput as no, UsersUsersBanOutput as np, UsersUsersCreateInput as nq, UsersUsersCreateOutput as nr, UsersUsersDeleteInput as ns, UsersUsersDeleteOutput as nt, UsersUsersEraseInput as nu, UsersUsersEraseOutput as nv, UsersUsersExportInput as nw, UsersUsersExportOutput as nx, UsersUsersGetInput as ny, UsersUsersGetOutput as nz, BrainClickupSpacesListInput as o, UsersWebhooksGetInput as o0, UsersWebhooksGetOutput as o1, UsersWebhooksListInput as o2, UsersWebhooksListOutput as o3, UsersWebhooksRotateSecretInput as o4, UsersWebhooksRotateSecretOutput as o5, UsersWebhooksUpdateInput as o6, UsersWebhooksUpdateOutput as o7, WaitlistConfigGetInput as o8, WaitlistConfigGetOutput as o9, WaitlistConfigUpsertInput as oa, WaitlistConfigUpsertOutput as ob, WaitlistEmbedGetInput as oc, WaitlistEmbedGetOutput as od, WaitlistInvitesSendInput as oe, WaitlistInvitesSendOutput as of, WaitlistSignupsEraseInput as og, WaitlistSignupsEraseOutput as oh, WaitlistSignupsFunnelInput as oi, WaitlistSignupsFunnelOutput as oj, WaitlistSignupsListInput as ok, WaitlistSignupsListOutput as ol, 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 };
|