@sentry/api 0.289.0 → 0.291.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/error-results.gen.d.ts +5 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +24 -0
- package/dist/pagination.gen.d.ts +20 -1
- package/dist/sdk.gen.d.ts +25 -1
- package/dist/types.gen.d.ts +1143 -7
- package/dist/valibot.gen.d.ts +341 -8
- package/dist/valibot.js +453 -27
- package/dist/zod.gen.d.ts +1746 -371
- package/dist/zod.js +750 -23
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -38,26 +38,26 @@ export declare const zAutofixPostResponse: z.ZodObject<{
|
|
|
38
38
|
*/
|
|
39
39
|
export declare const zAutofixStateResponse: z.ZodObject<{
|
|
40
40
|
formatted: z.ZodOptional<z.ZodObject<{
|
|
41
|
-
format: z.ZodEnum<["markdown", "xml"]>;
|
|
41
|
+
format: z.ZodEnum<["markdown", "xml", "json"]>;
|
|
42
42
|
content: z.ZodString;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
|
-
format: "markdown" | "xml";
|
|
44
|
+
format: "json" | "markdown" | "xml";
|
|
45
45
|
content: string;
|
|
46
46
|
}, {
|
|
47
|
-
format: "markdown" | "xml";
|
|
47
|
+
format: "json" | "markdown" | "xml";
|
|
48
48
|
content: string;
|
|
49
49
|
}>>;
|
|
50
50
|
autofix: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
autofix: Record<string, unknown> | null;
|
|
53
53
|
formatted?: {
|
|
54
|
-
format: "markdown" | "xml";
|
|
54
|
+
format: "json" | "markdown" | "xml";
|
|
55
55
|
content: string;
|
|
56
56
|
} | undefined;
|
|
57
57
|
}, {
|
|
58
58
|
autofix: Record<string, unknown> | null;
|
|
59
59
|
formatted?: {
|
|
60
|
-
format: "markdown" | "xml";
|
|
60
|
+
format: "json" | "markdown" | "xml";
|
|
61
61
|
content: string;
|
|
62
62
|
} | undefined;
|
|
63
63
|
}>;
|
|
@@ -2181,8 +2181,8 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2181
2181
|
is_favorited: boolean;
|
|
2182
2182
|
environment?: string[] | null | undefined;
|
|
2183
2183
|
id?: string | undefined;
|
|
2184
|
-
end?: string | null | undefined;
|
|
2185
2184
|
start?: string | null | undefined;
|
|
2185
|
+
end?: string | null | undefined;
|
|
2186
2186
|
projects?: number[] | undefined;
|
|
2187
2187
|
widgets?: {
|
|
2188
2188
|
interval?: string | undefined;
|
|
@@ -2234,8 +2234,8 @@ export declare const zDashboard: z.ZodObject<{
|
|
|
2234
2234
|
title: string;
|
|
2235
2235
|
environment?: string[] | null | undefined;
|
|
2236
2236
|
id?: string | undefined;
|
|
2237
|
-
end?: string | null | undefined;
|
|
2238
2237
|
start?: string | null | undefined;
|
|
2238
|
+
end?: string | null | undefined;
|
|
2239
2239
|
projects?: number[] | undefined;
|
|
2240
2240
|
widgets?: {
|
|
2241
2241
|
interval?: string | undefined;
|
|
@@ -2699,8 +2699,8 @@ export declare const zDashboardDetails: z.ZodObject<{
|
|
|
2699
2699
|
}, "strip", z.ZodTypeAny, {
|
|
2700
2700
|
environment?: string[] | null | undefined;
|
|
2701
2701
|
id?: string | undefined;
|
|
2702
|
-
end?: string | null | undefined;
|
|
2703
2702
|
start?: string | null | undefined;
|
|
2703
|
+
end?: string | null | undefined;
|
|
2704
2704
|
title?: string | undefined;
|
|
2705
2705
|
projects?: number[] | undefined;
|
|
2706
2706
|
widgets?: {
|
|
@@ -2753,8 +2753,8 @@ export declare const zDashboardDetails: z.ZodObject<{
|
|
|
2753
2753
|
}, {
|
|
2754
2754
|
environment?: string[] | null | undefined;
|
|
2755
2755
|
id?: string | undefined;
|
|
2756
|
-
end?: string | null | undefined;
|
|
2757
2756
|
start?: string | null | undefined;
|
|
2757
|
+
end?: string | null | undefined;
|
|
2758
2758
|
title?: string | undefined;
|
|
2759
2759
|
projects?: number[] | undefined;
|
|
2760
2760
|
widgets?: {
|
|
@@ -3348,8 +3348,8 @@ export declare const zDashboardDetailsModel: z.ZodObject<{
|
|
|
3348
3348
|
prebuiltId: number | null;
|
|
3349
3349
|
isFavorited: boolean;
|
|
3350
3350
|
environment?: string[] | undefined;
|
|
3351
|
-
end?: string | undefined;
|
|
3352
3351
|
start?: string | undefined;
|
|
3352
|
+
end?: string | undefined;
|
|
3353
3353
|
period?: string | undefined;
|
|
3354
3354
|
utc?: string | undefined;
|
|
3355
3355
|
expired?: boolean | undefined;
|
|
@@ -3462,8 +3462,8 @@ export declare const zDashboardDetailsModel: z.ZodObject<{
|
|
|
3462
3462
|
prebuiltId: number | null;
|
|
3463
3463
|
isFavorited: boolean;
|
|
3464
3464
|
environment?: string[] | undefined;
|
|
3465
|
-
end?: string | undefined;
|
|
3466
3465
|
start?: string | undefined;
|
|
3466
|
+
end?: string | undefined;
|
|
3467
3467
|
period?: string | undefined;
|
|
3468
3468
|
utc?: string | undefined;
|
|
3469
3469
|
expired?: boolean | undefined;
|
|
@@ -4935,8 +4935,15 @@ export declare const zDiscoverSavedQuery: z.ZodObject<{
|
|
|
4935
4935
|
range: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4936
4936
|
fields: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
4937
4937
|
orderby: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4938
|
+
rollup: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4939
|
+
aggregations: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
4940
|
+
groupby: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
4941
|
+
conditions: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
4942
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4943
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4938
4944
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
4939
4945
|
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4946
|
+
widths: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
4940
4947
|
yAxis: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
4941
4948
|
display: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
4942
4949
|
topEvents: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -4947,14 +4954,21 @@ export declare const zDiscoverSavedQuery: z.ZodObject<{
|
|
|
4947
4954
|
fields?: string[] | null | undefined;
|
|
4948
4955
|
interval?: string | null | undefined;
|
|
4949
4956
|
environment?: string[] | null | undefined;
|
|
4950
|
-
end?: string | null | undefined;
|
|
4951
4957
|
start?: string | null | undefined;
|
|
4958
|
+
end?: string | null | undefined;
|
|
4952
4959
|
topEvents?: number | null | undefined;
|
|
4953
4960
|
yAxis?: string[] | null | undefined;
|
|
4961
|
+
limit?: number | null | undefined;
|
|
4962
|
+
version?: number | null | undefined;
|
|
4963
|
+
conditions?: unknown[][] | null | undefined;
|
|
4954
4964
|
projects?: number[] | undefined;
|
|
4955
4965
|
orderby?: string | null | undefined;
|
|
4956
4966
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
4957
4967
|
range?: string | null | undefined;
|
|
4968
|
+
rollup?: number | null | undefined;
|
|
4969
|
+
aggregations?: unknown[][] | null | undefined;
|
|
4970
|
+
groupby?: string[] | null | undefined;
|
|
4971
|
+
widths?: string[] | null | undefined;
|
|
4958
4972
|
display?: string | null | undefined;
|
|
4959
4973
|
}, {
|
|
4960
4974
|
name: string;
|
|
@@ -4962,14 +4976,21 @@ export declare const zDiscoverSavedQuery: z.ZodObject<{
|
|
|
4962
4976
|
fields?: string[] | null | undefined;
|
|
4963
4977
|
interval?: string | null | undefined;
|
|
4964
4978
|
environment?: string[] | null | undefined;
|
|
4965
|
-
end?: string | null | undefined;
|
|
4966
4979
|
start?: string | null | undefined;
|
|
4980
|
+
end?: string | null | undefined;
|
|
4967
4981
|
topEvents?: number | null | undefined;
|
|
4968
4982
|
yAxis?: string[] | null | undefined;
|
|
4983
|
+
limit?: number | null | undefined;
|
|
4984
|
+
version?: number | null | undefined;
|
|
4985
|
+
conditions?: unknown[][] | null | undefined;
|
|
4969
4986
|
projects?: number[] | undefined;
|
|
4970
4987
|
orderby?: string | null | undefined;
|
|
4971
4988
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
4972
4989
|
range?: string | null | undefined;
|
|
4990
|
+
rollup?: number | null | undefined;
|
|
4991
|
+
aggregations?: unknown[][] | null | undefined;
|
|
4992
|
+
groupby?: string[] | null | undefined;
|
|
4993
|
+
widths?: string[] | null | undefined;
|
|
4973
4994
|
display?: string | null | undefined;
|
|
4974
4995
|
}>;
|
|
4975
4996
|
export declare const zDiscoverSavedQueryListResponse: z.ZodArray<z.ZodObject<{
|
|
@@ -4989,6 +5010,7 @@ export declare const zDiscoverSavedQueryListResponse: z.ZodArray<z.ZodObject<{
|
|
|
4989
5010
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
4990
5011
|
interval: z.ZodOptional<z.ZodString>;
|
|
4991
5012
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5013
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
4992
5014
|
id: z.ZodString;
|
|
4993
5015
|
name: z.ZodString;
|
|
4994
5016
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -5240,17 +5262,18 @@ export declare const zDiscoverSavedQueryListResponse: z.ZodArray<z.ZodObject<{
|
|
|
5240
5262
|
fields?: string[] | undefined;
|
|
5241
5263
|
interval?: string | undefined;
|
|
5242
5264
|
environment?: string[] | undefined;
|
|
5243
|
-
end?: string | undefined;
|
|
5244
5265
|
start?: string | undefined;
|
|
5266
|
+
end?: string | undefined;
|
|
5245
5267
|
topEvents?: number | undefined;
|
|
5246
5268
|
yAxis?: string[] | undefined;
|
|
5247
5269
|
limit?: string | undefined;
|
|
5248
5270
|
conditions?: string[] | undefined;
|
|
5249
5271
|
orderby?: string | undefined;
|
|
5272
|
+
lastVisited?: string | undefined;
|
|
5250
5273
|
range?: string | undefined;
|
|
5251
|
-
display?: string | undefined;
|
|
5252
|
-
widths?: string[] | undefined;
|
|
5253
5274
|
aggregations?: string[] | undefined;
|
|
5275
|
+
widths?: string[] | undefined;
|
|
5276
|
+
display?: string | undefined;
|
|
5254
5277
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
5255
5278
|
}, {
|
|
5256
5279
|
name: string;
|
|
@@ -5310,17 +5333,18 @@ export declare const zDiscoverSavedQueryListResponse: z.ZodArray<z.ZodObject<{
|
|
|
5310
5333
|
fields?: string[] | undefined;
|
|
5311
5334
|
interval?: string | undefined;
|
|
5312
5335
|
environment?: string[] | undefined;
|
|
5313
|
-
end?: string | undefined;
|
|
5314
5336
|
start?: string | undefined;
|
|
5337
|
+
end?: string | undefined;
|
|
5315
5338
|
topEvents?: number | undefined;
|
|
5316
5339
|
yAxis?: string[] | undefined;
|
|
5317
5340
|
limit?: string | undefined;
|
|
5318
5341
|
conditions?: string[] | undefined;
|
|
5319
5342
|
orderby?: string | undefined;
|
|
5343
|
+
lastVisited?: string | undefined;
|
|
5320
5344
|
range?: string | undefined;
|
|
5321
|
-
display?: string | undefined;
|
|
5322
|
-
widths?: string[] | undefined;
|
|
5323
5345
|
aggregations?: string[] | undefined;
|
|
5346
|
+
widths?: string[] | undefined;
|
|
5347
|
+
display?: string | undefined;
|
|
5324
5348
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
5325
5349
|
}>, "many">;
|
|
5326
5350
|
export declare const zDiscoverSavedQueryModel: z.ZodObject<{
|
|
@@ -5340,6 +5364,7 @@ export declare const zDiscoverSavedQueryModel: z.ZodObject<{
|
|
|
5340
5364
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
5341
5365
|
interval: z.ZodOptional<z.ZodString>;
|
|
5342
5366
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5367
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
5343
5368
|
id: z.ZodString;
|
|
5344
5369
|
name: z.ZodString;
|
|
5345
5370
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -5591,17 +5616,18 @@ export declare const zDiscoverSavedQueryModel: z.ZodObject<{
|
|
|
5591
5616
|
fields?: string[] | undefined;
|
|
5592
5617
|
interval?: string | undefined;
|
|
5593
5618
|
environment?: string[] | undefined;
|
|
5594
|
-
end?: string | undefined;
|
|
5595
5619
|
start?: string | undefined;
|
|
5620
|
+
end?: string | undefined;
|
|
5596
5621
|
topEvents?: number | undefined;
|
|
5597
5622
|
yAxis?: string[] | undefined;
|
|
5598
5623
|
limit?: string | undefined;
|
|
5599
5624
|
conditions?: string[] | undefined;
|
|
5600
5625
|
orderby?: string | undefined;
|
|
5626
|
+
lastVisited?: string | undefined;
|
|
5601
5627
|
range?: string | undefined;
|
|
5602
|
-
display?: string | undefined;
|
|
5603
|
-
widths?: string[] | undefined;
|
|
5604
5628
|
aggregations?: string[] | undefined;
|
|
5629
|
+
widths?: string[] | undefined;
|
|
5630
|
+
display?: string | undefined;
|
|
5605
5631
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
5606
5632
|
}, {
|
|
5607
5633
|
name: string;
|
|
@@ -5661,19 +5687,30 @@ export declare const zDiscoverSavedQueryModel: z.ZodObject<{
|
|
|
5661
5687
|
fields?: string[] | undefined;
|
|
5662
5688
|
interval?: string | undefined;
|
|
5663
5689
|
environment?: string[] | undefined;
|
|
5664
|
-
end?: string | undefined;
|
|
5665
5690
|
start?: string | undefined;
|
|
5691
|
+
end?: string | undefined;
|
|
5666
5692
|
topEvents?: number | undefined;
|
|
5667
5693
|
yAxis?: string[] | undefined;
|
|
5668
5694
|
limit?: string | undefined;
|
|
5669
5695
|
conditions?: string[] | undefined;
|
|
5670
5696
|
orderby?: string | undefined;
|
|
5697
|
+
lastVisited?: string | undefined;
|
|
5671
5698
|
range?: string | undefined;
|
|
5672
|
-
display?: string | undefined;
|
|
5673
|
-
widths?: string[] | undefined;
|
|
5674
5699
|
aggregations?: string[] | undefined;
|
|
5700
|
+
widths?: string[] | undefined;
|
|
5701
|
+
display?: string | undefined;
|
|
5675
5702
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
5676
5703
|
}>;
|
|
5704
|
+
export declare const zDynamicSamplingBias: z.ZodObject<{
|
|
5705
|
+
id: z.ZodEnum<["boostEnvironments", "boostKeyTransactions", "boostLatestRelease", "boostLowVolumeTransactions", "boostReplayId", "ignoreHealthChecks", "minimumSampleRate", "recalibrationRule"]>;
|
|
5706
|
+
active: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
5707
|
+
}, "strip", z.ZodTypeAny, {
|
|
5708
|
+
active: boolean;
|
|
5709
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
5710
|
+
}, {
|
|
5711
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
5712
|
+
active?: boolean | undefined;
|
|
5713
|
+
}>;
|
|
5677
5714
|
/**
|
|
5678
5715
|
* Configures multiple options for the Javascript Loader Script.
|
|
5679
5716
|
* - `Performance Monitoring`
|
|
@@ -6381,6 +6418,7 @@ export declare const zExternalIssueLinkResponse: z.ZodObject<{
|
|
|
6381
6418
|
* Errors are output in camel case.
|
|
6382
6419
|
*/
|
|
6383
6420
|
export declare const zExternalTeam: z.ZodObject<{
|
|
6421
|
+
team_id: z.ZodNumber;
|
|
6384
6422
|
external_name: z.ZodString;
|
|
6385
6423
|
provider: z.ZodEnum<["github", "github_enterprise", "jira_server", "slack", "slack_staging", "perforce", "gitlab", "msteams", "custom_scm"]>;
|
|
6386
6424
|
integration_id: z.ZodNumber;
|
|
@@ -6388,11 +6426,13 @@ export declare const zExternalTeam: z.ZodObject<{
|
|
|
6388
6426
|
}, "strip", z.ZodTypeAny, {
|
|
6389
6427
|
integration_id: number;
|
|
6390
6428
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
6429
|
+
team_id: number;
|
|
6391
6430
|
external_name: string;
|
|
6392
6431
|
external_id?: string | null | undefined;
|
|
6393
6432
|
}, {
|
|
6394
6433
|
integration_id: number;
|
|
6395
6434
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
6435
|
+
team_id: number;
|
|
6396
6436
|
external_name: string;
|
|
6397
6437
|
external_id?: string | null | undefined;
|
|
6398
6438
|
}>;
|
|
@@ -8634,13 +8674,13 @@ export declare const zGroupSearchViewPostValidator: z.ZodObject<{
|
|
|
8634
8674
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8635
8675
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
8636
8676
|
}, "strip", z.ZodTypeAny, {
|
|
8637
|
-
end?: string | null | undefined;
|
|
8638
8677
|
start?: string | null | undefined;
|
|
8678
|
+
end?: string | null | undefined;
|
|
8639
8679
|
period?: string | null | undefined;
|
|
8640
8680
|
utc?: boolean | null | undefined;
|
|
8641
8681
|
}, {
|
|
8642
|
-
end?: string | null | undefined;
|
|
8643
8682
|
start?: string | null | undefined;
|
|
8683
|
+
end?: string | null | undefined;
|
|
8644
8684
|
period?: string | null | undefined;
|
|
8645
8685
|
utc?: boolean | null | undefined;
|
|
8646
8686
|
}>;
|
|
@@ -8652,8 +8692,8 @@ export declare const zGroupSearchViewPostValidator: z.ZodObject<{
|
|
|
8652
8692
|
projects: number[];
|
|
8653
8693
|
environments: string[];
|
|
8654
8694
|
timeFilters: {
|
|
8655
|
-
end?: string | null | undefined;
|
|
8656
8695
|
start?: string | null | undefined;
|
|
8696
|
+
end?: string | null | undefined;
|
|
8657
8697
|
period?: string | null | undefined;
|
|
8658
8698
|
utc?: boolean | null | undefined;
|
|
8659
8699
|
};
|
|
@@ -8665,8 +8705,8 @@ export declare const zGroupSearchViewPostValidator: z.ZodObject<{
|
|
|
8665
8705
|
projects: number[];
|
|
8666
8706
|
environments: string[];
|
|
8667
8707
|
timeFilters: {
|
|
8668
|
-
end?: string | null | undefined;
|
|
8669
8708
|
start?: string | null | undefined;
|
|
8709
|
+
end?: string | null | undefined;
|
|
8670
8710
|
period?: string | null | undefined;
|
|
8671
8711
|
utc?: boolean | null | undefined;
|
|
8672
8712
|
};
|
|
@@ -8679,13 +8719,13 @@ export declare const zGroupSearchViewTimeFilters: z.ZodObject<{
|
|
|
8679
8719
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
8680
8720
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
8681
8721
|
}, "strip", z.ZodTypeAny, {
|
|
8682
|
-
end?: string | null | undefined;
|
|
8683
8722
|
start?: string | null | undefined;
|
|
8723
|
+
end?: string | null | undefined;
|
|
8684
8724
|
period?: string | null | undefined;
|
|
8685
8725
|
utc?: boolean | null | undefined;
|
|
8686
8726
|
}, {
|
|
8687
|
-
end?: string | null | undefined;
|
|
8688
8727
|
start?: string | null | undefined;
|
|
8728
|
+
end?: string | null | undefined;
|
|
8689
8729
|
period?: string | null | undefined;
|
|
8690
8730
|
utc?: boolean | null | undefined;
|
|
8691
8731
|
}>;
|
|
@@ -9429,6 +9469,12 @@ export declare const zGroupValidator: z.ZodObject<{
|
|
|
9429
9469
|
discard: z.ZodBoolean;
|
|
9430
9470
|
assignedTo: z.ZodString;
|
|
9431
9471
|
priority: z.ZodEnum<["low", "medium", "high"]>;
|
|
9472
|
+
ignoreDuration: z.ZodNumber;
|
|
9473
|
+
ignoreCount: z.ZodNumber;
|
|
9474
|
+
ignoreWindow: z.ZodNumber;
|
|
9475
|
+
ignoreUserCount: z.ZodNumber;
|
|
9476
|
+
ignoreUserWindow: z.ZodNumber;
|
|
9477
|
+
snoozeDuration: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
9432
9478
|
}, "strip", z.ZodTypeAny, {
|
|
9433
9479
|
priority: "high" | "low" | "medium";
|
|
9434
9480
|
inbox: boolean;
|
|
@@ -9448,10 +9494,16 @@ export declare const zGroupValidator: z.ZodObject<{
|
|
|
9448
9494
|
commit: string;
|
|
9449
9495
|
} | undefined;
|
|
9450
9496
|
};
|
|
9497
|
+
ignoreCount: number;
|
|
9498
|
+
ignoreUserCount: number;
|
|
9499
|
+
ignoreUserWindow: number;
|
|
9500
|
+
ignoreWindow: number;
|
|
9451
9501
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
9452
9502
|
assignedTo: string;
|
|
9453
9503
|
isSubscribed: boolean;
|
|
9454
9504
|
hasSeen: boolean;
|
|
9505
|
+
ignoreDuration: number;
|
|
9506
|
+
snoozeDuration: number | null;
|
|
9455
9507
|
merge: boolean;
|
|
9456
9508
|
discard: boolean;
|
|
9457
9509
|
}, {
|
|
@@ -9473,10 +9525,16 @@ export declare const zGroupValidator: z.ZodObject<{
|
|
|
9473
9525
|
commit: string;
|
|
9474
9526
|
} | undefined;
|
|
9475
9527
|
};
|
|
9528
|
+
ignoreCount: number;
|
|
9529
|
+
ignoreUserCount: number;
|
|
9530
|
+
ignoreUserWindow: number;
|
|
9531
|
+
ignoreWindow: number;
|
|
9476
9532
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
9477
9533
|
assignedTo: string;
|
|
9478
9534
|
isSubscribed: boolean;
|
|
9479
9535
|
hasSeen: boolean;
|
|
9536
|
+
ignoreDuration: number;
|
|
9537
|
+
snoozeDuration: number | null;
|
|
9480
9538
|
merge: boolean;
|
|
9481
9539
|
discard: boolean;
|
|
9482
9540
|
}>;
|
|
@@ -10081,13 +10139,13 @@ export declare const zIssueEventDetailsResponse: z.ZodObject<{
|
|
|
10081
10139
|
nextEventID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
10082
10140
|
previousEventID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
10083
10141
|
formatted: z.ZodOptional<z.ZodObject<{
|
|
10084
|
-
format: z.ZodEnum<["markdown", "xml"]>;
|
|
10142
|
+
format: z.ZodEnum<["markdown", "xml", "json"]>;
|
|
10085
10143
|
content: z.ZodString;
|
|
10086
10144
|
}, "strip", z.ZodTypeAny, {
|
|
10087
|
-
format: "markdown" | "xml";
|
|
10145
|
+
format: "json" | "markdown" | "xml";
|
|
10088
10146
|
content: string;
|
|
10089
10147
|
}, {
|
|
10090
|
-
format: "markdown" | "xml";
|
|
10148
|
+
format: "json" | "markdown" | "xml";
|
|
10091
10149
|
content: string;
|
|
10092
10150
|
}>>;
|
|
10093
10151
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10206,7 +10264,7 @@ export declare const zIssueEventDetailsResponse: z.ZodObject<{
|
|
|
10206
10264
|
nextEventID: string | null;
|
|
10207
10265
|
previousEventID: string | null;
|
|
10208
10266
|
formatted?: {
|
|
10209
|
-
format: "markdown" | "xml";
|
|
10267
|
+
format: "json" | "markdown" | "xml";
|
|
10210
10268
|
content: string;
|
|
10211
10269
|
} | undefined;
|
|
10212
10270
|
dateCreated?: string | undefined;
|
|
@@ -10343,7 +10401,7 @@ export declare const zIssueEventDetailsResponse: z.ZodObject<{
|
|
|
10343
10401
|
nextEventID: string | null;
|
|
10344
10402
|
previousEventID: string | null;
|
|
10345
10403
|
formatted?: {
|
|
10346
|
-
format: "markdown" | "xml";
|
|
10404
|
+
format: "json" | "markdown" | "xml";
|
|
10347
10405
|
content: string;
|
|
10348
10406
|
} | undefined;
|
|
10349
10407
|
dateCreated?: string | undefined;
|
|
@@ -12688,6 +12746,98 @@ export declare const zListOrgTeamResponse: z.ZodArray<z.ZodObject<{
|
|
|
12688
12746
|
teamId?: string | undefined;
|
|
12689
12747
|
}[] | undefined;
|
|
12690
12748
|
}>, "many">;
|
|
12749
|
+
export declare const zListOrganizationAiConversationsResponse: z.ZodArray<z.ZodObject<{
|
|
12750
|
+
conversationId: z.ZodString;
|
|
12751
|
+
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12752
|
+
projectId: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
12753
|
+
flow: z.ZodArray<z.ZodString, "many">;
|
|
12754
|
+
errors: z.ZodNumber;
|
|
12755
|
+
llmCalls: z.ZodNumber;
|
|
12756
|
+
toolCalls: z.ZodNumber;
|
|
12757
|
+
totalTokens: z.ZodNumber;
|
|
12758
|
+
inputTokens: z.ZodNumber;
|
|
12759
|
+
outputTokens: z.ZodNumber;
|
|
12760
|
+
totalCost: z.ZodNumber;
|
|
12761
|
+
generationDuration: z.ZodNumber;
|
|
12762
|
+
startTimestamp: z.ZodNumber;
|
|
12763
|
+
endTimestamp: z.ZodNumber;
|
|
12764
|
+
traceCount: z.ZodNumber;
|
|
12765
|
+
traceIds: z.ZodArray<z.ZodString, "many">;
|
|
12766
|
+
firstInput: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12767
|
+
lastOutput: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12768
|
+
user: z.ZodUnion<[z.ZodObject<{
|
|
12769
|
+
id: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12770
|
+
email: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12771
|
+
username: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12772
|
+
ip_address: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
12773
|
+
}, "strip", z.ZodTypeAny, {
|
|
12774
|
+
id: string | null;
|
|
12775
|
+
email: string | null;
|
|
12776
|
+
username: string | null;
|
|
12777
|
+
ip_address: string | null;
|
|
12778
|
+
}, {
|
|
12779
|
+
id: string | null;
|
|
12780
|
+
email: string | null;
|
|
12781
|
+
username: string | null;
|
|
12782
|
+
ip_address: string | null;
|
|
12783
|
+
}>, z.ZodNull]>;
|
|
12784
|
+
toolNames: z.ZodArray<z.ZodString, "many">;
|
|
12785
|
+
toolErrors: z.ZodNumber;
|
|
12786
|
+
}, "strip", z.ZodTypeAny, {
|
|
12787
|
+
user: {
|
|
12788
|
+
id: string | null;
|
|
12789
|
+
email: string | null;
|
|
12790
|
+
username: string | null;
|
|
12791
|
+
ip_address: string | null;
|
|
12792
|
+
} | null;
|
|
12793
|
+
errors: number;
|
|
12794
|
+
title: string | null;
|
|
12795
|
+
projectId: number | null;
|
|
12796
|
+
startTimestamp: number;
|
|
12797
|
+
endTimestamp: number;
|
|
12798
|
+
flow: string[];
|
|
12799
|
+
llmCalls: number;
|
|
12800
|
+
toolCalls: number;
|
|
12801
|
+
totalTokens: number;
|
|
12802
|
+
inputTokens: number;
|
|
12803
|
+
outputTokens: number;
|
|
12804
|
+
traceCount: number;
|
|
12805
|
+
traceIds: string[];
|
|
12806
|
+
firstInput: string | null;
|
|
12807
|
+
lastOutput: string | null;
|
|
12808
|
+
toolNames: string[];
|
|
12809
|
+
toolErrors: number;
|
|
12810
|
+
conversationId: string;
|
|
12811
|
+
totalCost: number;
|
|
12812
|
+
generationDuration: number;
|
|
12813
|
+
}, {
|
|
12814
|
+
user: {
|
|
12815
|
+
id: string | null;
|
|
12816
|
+
email: string | null;
|
|
12817
|
+
username: string | null;
|
|
12818
|
+
ip_address: string | null;
|
|
12819
|
+
} | null;
|
|
12820
|
+
errors: number;
|
|
12821
|
+
title: string | null;
|
|
12822
|
+
projectId: number | null;
|
|
12823
|
+
startTimestamp: number;
|
|
12824
|
+
endTimestamp: number;
|
|
12825
|
+
flow: string[];
|
|
12826
|
+
llmCalls: number;
|
|
12827
|
+
toolCalls: number;
|
|
12828
|
+
totalTokens: number;
|
|
12829
|
+
inputTokens: number;
|
|
12830
|
+
outputTokens: number;
|
|
12831
|
+
traceCount: number;
|
|
12832
|
+
traceIds: string[];
|
|
12833
|
+
firstInput: string | null;
|
|
12834
|
+
lastOutput: string | null;
|
|
12835
|
+
toolNames: string[];
|
|
12836
|
+
toolErrors: number;
|
|
12837
|
+
conversationId: string;
|
|
12838
|
+
totalCost: number;
|
|
12839
|
+
generationDuration: number;
|
|
12840
|
+
}>, "many">;
|
|
12691
12841
|
export declare const zListOrganizationClientKeysResponse: z.ZodArray<z.ZodObject<{
|
|
12692
12842
|
id: z.ZodString;
|
|
12693
12843
|
name: z.ZodString;
|
|
@@ -18300,6 +18450,41 @@ export declare const zMonitor: z.ZodObject<{
|
|
|
18300
18450
|
}[];
|
|
18301
18451
|
} | undefined;
|
|
18302
18452
|
}>;
|
|
18453
|
+
export declare const zMonitorAlertRuleTargetValidator: z.ZodObject<{
|
|
18454
|
+
target_identifier: z.ZodNumber;
|
|
18455
|
+
target_type: z.ZodString;
|
|
18456
|
+
}, "strip", z.ZodTypeAny, {
|
|
18457
|
+
target_identifier: number;
|
|
18458
|
+
target_type: string;
|
|
18459
|
+
}, {
|
|
18460
|
+
target_identifier: number;
|
|
18461
|
+
target_type: string;
|
|
18462
|
+
}>;
|
|
18463
|
+
export declare const zMonitorAlertRuleValidator: z.ZodObject<{
|
|
18464
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
18465
|
+
targets: z.ZodArray<z.ZodObject<{
|
|
18466
|
+
target_identifier: z.ZodNumber;
|
|
18467
|
+
target_type: z.ZodString;
|
|
18468
|
+
}, "strip", z.ZodTypeAny, {
|
|
18469
|
+
target_identifier: number;
|
|
18470
|
+
target_type: string;
|
|
18471
|
+
}, {
|
|
18472
|
+
target_identifier: number;
|
|
18473
|
+
target_type: string;
|
|
18474
|
+
}>, "many">;
|
|
18475
|
+
}, "strip", z.ZodTypeAny, {
|
|
18476
|
+
targets: {
|
|
18477
|
+
target_identifier: number;
|
|
18478
|
+
target_type: string;
|
|
18479
|
+
}[];
|
|
18480
|
+
environment?: string | null | undefined;
|
|
18481
|
+
}, {
|
|
18482
|
+
targets: {
|
|
18483
|
+
target_identifier: number;
|
|
18484
|
+
target_type: string;
|
|
18485
|
+
}[];
|
|
18486
|
+
environment?: string | null | undefined;
|
|
18487
|
+
}>;
|
|
18303
18488
|
export declare const zMonitorList: z.ZodArray<z.ZodObject<{
|
|
18304
18489
|
alertRule: z.ZodOptional<z.ZodObject<{
|
|
18305
18490
|
targets: z.ZodArray<z.ZodObject<{
|
|
@@ -18816,6 +19001,31 @@ export declare const zMonitorValidator: z.ZodObject<{
|
|
|
18816
19001
|
status: z.ZodOptional<z.ZodEnum<["active", "disabled"]>>;
|
|
18817
19002
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
18818
19003
|
is_muted: z.ZodOptional<z.ZodBoolean>;
|
|
19004
|
+
alert_rule: z.ZodOptional<z.ZodObject<{
|
|
19005
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
19006
|
+
targets: z.ZodArray<z.ZodObject<{
|
|
19007
|
+
target_identifier: z.ZodNumber;
|
|
19008
|
+
target_type: z.ZodString;
|
|
19009
|
+
}, "strip", z.ZodTypeAny, {
|
|
19010
|
+
target_identifier: number;
|
|
19011
|
+
target_type: string;
|
|
19012
|
+
}, {
|
|
19013
|
+
target_identifier: number;
|
|
19014
|
+
target_type: string;
|
|
19015
|
+
}>, "many">;
|
|
19016
|
+
}, "strip", z.ZodTypeAny, {
|
|
19017
|
+
targets: {
|
|
19018
|
+
target_identifier: number;
|
|
19019
|
+
target_type: string;
|
|
19020
|
+
}[];
|
|
19021
|
+
environment?: string | null | undefined;
|
|
19022
|
+
}, {
|
|
19023
|
+
targets: {
|
|
19024
|
+
target_identifier: number;
|
|
19025
|
+
target_type: string;
|
|
19026
|
+
}[];
|
|
19027
|
+
environment?: string | null | undefined;
|
|
19028
|
+
}>>;
|
|
18819
19029
|
}, "strip", z.ZodTypeAny, {
|
|
18820
19030
|
name: string;
|
|
18821
19031
|
project: string;
|
|
@@ -18832,6 +19042,13 @@ export declare const zMonitorValidator: z.ZodObject<{
|
|
|
18832
19042
|
status?: "active" | "disabled" | undefined;
|
|
18833
19043
|
slug?: string | undefined;
|
|
18834
19044
|
is_muted?: boolean | undefined;
|
|
19045
|
+
alert_rule?: {
|
|
19046
|
+
targets: {
|
|
19047
|
+
target_identifier: number;
|
|
19048
|
+
target_type: string;
|
|
19049
|
+
}[];
|
|
19050
|
+
environment?: string | null | undefined;
|
|
19051
|
+
} | undefined;
|
|
18835
19052
|
}, {
|
|
18836
19053
|
name: string;
|
|
18837
19054
|
project: string;
|
|
@@ -18848,6 +19065,13 @@ export declare const zMonitorValidator: z.ZodObject<{
|
|
|
18848
19065
|
status?: "active" | "disabled" | undefined;
|
|
18849
19066
|
slug?: string | undefined;
|
|
18850
19067
|
is_muted?: boolean | undefined;
|
|
19068
|
+
alert_rule?: {
|
|
19069
|
+
targets: {
|
|
19070
|
+
target_identifier: number;
|
|
19071
|
+
target_type: string;
|
|
19072
|
+
}[];
|
|
19073
|
+
environment?: string | null | undefined;
|
|
19074
|
+
} | undefined;
|
|
18851
19075
|
}>;
|
|
18852
19076
|
/**
|
|
18853
19077
|
* Django Rest Framework serializer for incoming NotificationAction API payloads
|
|
@@ -18859,20 +19083,26 @@ export declare const zNotificationAction: z.ZodObject<{
|
|
|
18859
19083
|
target_identifier: z.ZodOptional<z.ZodString>;
|
|
18860
19084
|
target_display: z.ZodOptional<z.ZodString>;
|
|
18861
19085
|
projects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
19086
|
+
sentry_app_id: z.ZodOptional<z.ZodNumber>;
|
|
19087
|
+
target_type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
18862
19088
|
}, "strip", z.ZodTypeAny, {
|
|
19089
|
+
target_type: string;
|
|
18863
19090
|
trigger_type: string;
|
|
18864
19091
|
service_type: string;
|
|
18865
19092
|
integration_id?: number | undefined;
|
|
18866
19093
|
projects?: string[] | undefined;
|
|
18867
19094
|
target_identifier?: string | undefined;
|
|
18868
19095
|
target_display?: string | undefined;
|
|
19096
|
+
sentry_app_id?: number | undefined;
|
|
18869
19097
|
}, {
|
|
18870
19098
|
trigger_type: string;
|
|
18871
19099
|
service_type: string;
|
|
18872
19100
|
integration_id?: number | undefined;
|
|
18873
19101
|
projects?: string[] | undefined;
|
|
18874
19102
|
target_identifier?: string | undefined;
|
|
19103
|
+
target_type?: string | undefined;
|
|
18875
19104
|
target_display?: string | undefined;
|
|
19105
|
+
sentry_app_id?: number | undefined;
|
|
18876
19106
|
}>;
|
|
18877
19107
|
export declare const zOrgReleaseResponse: z.ZodObject<{
|
|
18878
19108
|
ref: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -19552,6 +19782,7 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
|
|
|
19552
19782
|
issueAlertsThreadFlag: z.ZodOptional<z.ZodBoolean>;
|
|
19553
19783
|
metricAlertsThreadFlag: z.ZodOptional<z.ZodBoolean>;
|
|
19554
19784
|
cancelDeletion: z.ZodOptional<z.ZodBoolean>;
|
|
19785
|
+
apdexThreshold: z.ZodOptional<z.ZodNumber>;
|
|
19555
19786
|
}, "strip", z.ZodTypeAny, {
|
|
19556
19787
|
name?: string | undefined;
|
|
19557
19788
|
avatar?: string | undefined;
|
|
@@ -19584,6 +19815,7 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
|
|
|
19584
19815
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
19585
19816
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
19586
19817
|
cancelDeletion?: boolean | undefined;
|
|
19818
|
+
apdexThreshold?: number | undefined;
|
|
19587
19819
|
}, {
|
|
19588
19820
|
name?: string | undefined;
|
|
19589
19821
|
avatar?: string | undefined;
|
|
@@ -19616,6 +19848,7 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
|
|
|
19616
19848
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
19617
19849
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
19618
19850
|
cancelDeletion?: boolean | undefined;
|
|
19851
|
+
apdexThreshold?: number | undefined;
|
|
19619
19852
|
}>;
|
|
19620
19853
|
export declare const zOrganizationEnvironmentResponse: z.ZodArray<z.ZodObject<{
|
|
19621
19854
|
id: z.ZodString;
|
|
@@ -19703,13 +19936,13 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
19703
19936
|
start: z.ZodNumber;
|
|
19704
19937
|
end: z.ZodNumber;
|
|
19705
19938
|
}, "strip", z.ZodTypeAny, {
|
|
19706
|
-
dataset: string;
|
|
19707
|
-
end: number;
|
|
19708
19939
|
start: number;
|
|
19709
|
-
}, {
|
|
19710
|
-
dataset: string;
|
|
19711
19940
|
end: number;
|
|
19941
|
+
dataset: string;
|
|
19942
|
+
}, {
|
|
19712
19943
|
start: number;
|
|
19944
|
+
end: number;
|
|
19945
|
+
dataset: string;
|
|
19713
19946
|
}>>;
|
|
19714
19947
|
timeSeries: z.ZodArray<z.ZodObject<{
|
|
19715
19948
|
values: z.ZodArray<z.ZodObject<{
|
|
@@ -19849,9 +20082,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
19849
20082
|
}[] | undefined;
|
|
19850
20083
|
}[];
|
|
19851
20084
|
meta?: {
|
|
19852
|
-
dataset: string;
|
|
19853
|
-
end: number;
|
|
19854
20085
|
start: number;
|
|
20086
|
+
end: number;
|
|
20087
|
+
dataset: string;
|
|
19855
20088
|
} | undefined;
|
|
19856
20089
|
}, {
|
|
19857
20090
|
timeSeries: {
|
|
@@ -19880,9 +20113,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
19880
20113
|
}[] | undefined;
|
|
19881
20114
|
}[];
|
|
19882
20115
|
meta?: {
|
|
19883
|
-
dataset: string;
|
|
19884
|
-
end: number;
|
|
19885
20116
|
start: number;
|
|
20117
|
+
end: number;
|
|
20118
|
+
dataset: string;
|
|
19886
20119
|
} | undefined;
|
|
19887
20120
|
}>;
|
|
19888
20121
|
export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<{
|
|
@@ -21128,13 +21361,13 @@ export declare const zOrganizationIssueView: z.ZodObject<{
|
|
|
21128
21361
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
21129
21362
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
21130
21363
|
}, "strip", z.ZodTypeAny, {
|
|
21131
|
-
end?: string | null | undefined;
|
|
21132
21364
|
start?: string | null | undefined;
|
|
21365
|
+
end?: string | null | undefined;
|
|
21133
21366
|
period?: string | null | undefined;
|
|
21134
21367
|
utc?: boolean | null | undefined;
|
|
21135
21368
|
}, {
|
|
21136
|
-
end?: string | null | undefined;
|
|
21137
21369
|
start?: string | null | undefined;
|
|
21370
|
+
end?: string | null | undefined;
|
|
21138
21371
|
period?: string | null | undefined;
|
|
21139
21372
|
utc?: boolean | null | undefined;
|
|
21140
21373
|
}>;
|
|
@@ -21197,8 +21430,8 @@ export declare const zOrganizationIssueView: z.ZodObject<{
|
|
|
21197
21430
|
environments: string[];
|
|
21198
21431
|
lastVisited: string | null;
|
|
21199
21432
|
timeFilters: {
|
|
21200
|
-
end?: string | null | undefined;
|
|
21201
21433
|
start?: string | null | undefined;
|
|
21434
|
+
end?: string | null | undefined;
|
|
21202
21435
|
period?: string | null | undefined;
|
|
21203
21436
|
utc?: boolean | null | undefined;
|
|
21204
21437
|
};
|
|
@@ -21259,8 +21492,8 @@ export declare const zOrganizationIssueView: z.ZodObject<{
|
|
|
21259
21492
|
environments: string[];
|
|
21260
21493
|
lastVisited: string | null;
|
|
21261
21494
|
timeFilters: {
|
|
21262
|
-
end?: string | null | undefined;
|
|
21263
21495
|
start?: string | null | undefined;
|
|
21496
|
+
end?: string | null | undefined;
|
|
21264
21497
|
period?: string | null | undefined;
|
|
21265
21498
|
utc?: boolean | null | undefined;
|
|
21266
21499
|
};
|
|
@@ -21465,13 +21698,13 @@ export declare const zOrganizationIssueViewList: z.ZodArray<z.ZodObject<{
|
|
|
21465
21698
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
21466
21699
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
21467
21700
|
}, "strip", z.ZodTypeAny, {
|
|
21468
|
-
end?: string | null | undefined;
|
|
21469
21701
|
start?: string | null | undefined;
|
|
21702
|
+
end?: string | null | undefined;
|
|
21470
21703
|
period?: string | null | undefined;
|
|
21471
21704
|
utc?: boolean | null | undefined;
|
|
21472
21705
|
}, {
|
|
21473
|
-
end?: string | null | undefined;
|
|
21474
21706
|
start?: string | null | undefined;
|
|
21707
|
+
end?: string | null | undefined;
|
|
21475
21708
|
period?: string | null | undefined;
|
|
21476
21709
|
utc?: boolean | null | undefined;
|
|
21477
21710
|
}>;
|
|
@@ -21534,8 +21767,8 @@ export declare const zOrganizationIssueViewList: z.ZodArray<z.ZodObject<{
|
|
|
21534
21767
|
environments: string[];
|
|
21535
21768
|
lastVisited: string | null;
|
|
21536
21769
|
timeFilters: {
|
|
21537
|
-
end?: string | null | undefined;
|
|
21538
21770
|
start?: string | null | undefined;
|
|
21771
|
+
end?: string | null | undefined;
|
|
21539
21772
|
period?: string | null | undefined;
|
|
21540
21773
|
utc?: boolean | null | undefined;
|
|
21541
21774
|
};
|
|
@@ -21596,8 +21829,8 @@ export declare const zOrganizationIssueViewList: z.ZodArray<z.ZodObject<{
|
|
|
21596
21829
|
environments: string[];
|
|
21597
21830
|
lastVisited: string | null;
|
|
21598
21831
|
timeFilters: {
|
|
21599
|
-
end?: string | null | undefined;
|
|
21600
21832
|
start?: string | null | undefined;
|
|
21833
|
+
end?: string | null | undefined;
|
|
21601
21834
|
period?: string | null | undefined;
|
|
21602
21835
|
utc?: boolean | null | undefined;
|
|
21603
21836
|
};
|
|
@@ -21991,19 +22224,28 @@ export declare const zOrganizationMember: z.ZodObject<{
|
|
|
21991
22224
|
}>;
|
|
21992
22225
|
export declare const zOrganizationMemberRequest: z.ZodObject<{
|
|
21993
22226
|
email: z.ZodString;
|
|
22227
|
+
role: z.ZodOptional<z.ZodEnum<["member", "admin", "manager", "owner"]>>;
|
|
21994
22228
|
orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
|
|
22229
|
+
teams: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
21995
22230
|
teamRoles: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
|
|
21996
22231
|
reinvite: z.ZodOptional<z.ZodBoolean>;
|
|
22232
|
+
regenerate: z.ZodOptional<z.ZodBoolean>;
|
|
21997
22233
|
}, "strip", z.ZodTypeAny, {
|
|
21998
22234
|
email: string;
|
|
22235
|
+
teams?: unknown[] | undefined;
|
|
22236
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
21999
22237
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
22000
22238
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
22001
22239
|
reinvite?: boolean | undefined;
|
|
22240
|
+
regenerate?: boolean | undefined;
|
|
22002
22241
|
}, {
|
|
22003
22242
|
email: string;
|
|
22243
|
+
teams?: unknown[] | undefined;
|
|
22244
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
22004
22245
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
22005
22246
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
22006
22247
|
reinvite?: boolean | undefined;
|
|
22248
|
+
regenerate?: boolean | undefined;
|
|
22007
22249
|
}>;
|
|
22008
22250
|
/**
|
|
22009
22251
|
* Conforming to the SCIM RFC, this represents a Sentry Org Member
|
|
@@ -22880,6 +23122,20 @@ export declare const zOrganizationRelease: z.ZodObject<{
|
|
|
22880
23122
|
type: string;
|
|
22881
23123
|
}[] | null | undefined;
|
|
22882
23124
|
}>, "many">>;
|
|
23125
|
+
status: z.ZodOptional<z.ZodString>;
|
|
23126
|
+
headCommits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
23127
|
+
currentId: z.ZodString;
|
|
23128
|
+
repository: z.ZodString;
|
|
23129
|
+
previousId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
23130
|
+
}, "strip", z.ZodTypeAny, {
|
|
23131
|
+
repository: string;
|
|
23132
|
+
currentId: string;
|
|
23133
|
+
previousId?: string | null | undefined;
|
|
23134
|
+
}, {
|
|
23135
|
+
repository: string;
|
|
23136
|
+
currentId: string;
|
|
23137
|
+
previousId?: string | null | undefined;
|
|
23138
|
+
}>, "many">>;
|
|
22883
23139
|
refs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22884
23140
|
commit: z.ZodString;
|
|
22885
23141
|
repository: z.ZodString;
|
|
@@ -22895,6 +23151,7 @@ export declare const zOrganizationRelease: z.ZodObject<{
|
|
|
22895
23151
|
}>, "many">>;
|
|
22896
23152
|
}, "strip", z.ZodTypeAny, {
|
|
22897
23153
|
url?: string | null | undefined;
|
|
23154
|
+
status?: string | undefined;
|
|
22898
23155
|
ref?: string | null | undefined;
|
|
22899
23156
|
dateReleased?: string | null | undefined;
|
|
22900
23157
|
commits?: {
|
|
@@ -22909,6 +23166,11 @@ export declare const zOrganizationRelease: z.ZodObject<{
|
|
|
22909
23166
|
type: string;
|
|
22910
23167
|
}[] | null | undefined;
|
|
22911
23168
|
}[] | undefined;
|
|
23169
|
+
headCommits?: {
|
|
23170
|
+
repository: string;
|
|
23171
|
+
currentId: string;
|
|
23172
|
+
previousId?: string | null | undefined;
|
|
23173
|
+
}[] | undefined;
|
|
22912
23174
|
refs?: {
|
|
22913
23175
|
repository: string;
|
|
22914
23176
|
commit: string;
|
|
@@ -22916,6 +23178,7 @@ export declare const zOrganizationRelease: z.ZodObject<{
|
|
|
22916
23178
|
}[] | undefined;
|
|
22917
23179
|
}, {
|
|
22918
23180
|
url?: string | null | undefined;
|
|
23181
|
+
status?: string | undefined;
|
|
22919
23182
|
ref?: string | null | undefined;
|
|
22920
23183
|
dateReleased?: string | null | undefined;
|
|
22921
23184
|
commits?: {
|
|
@@ -22930,6 +23193,11 @@ export declare const zOrganizationRelease: z.ZodObject<{
|
|
|
22930
23193
|
type: string;
|
|
22931
23194
|
}[] | null | undefined;
|
|
22932
23195
|
}[] | undefined;
|
|
23196
|
+
headCommits?: {
|
|
23197
|
+
repository: string;
|
|
23198
|
+
currentId: string;
|
|
23199
|
+
previousId?: string | null | undefined;
|
|
23200
|
+
}[] | undefined;
|
|
22933
23201
|
refs?: {
|
|
22934
23202
|
repository: string;
|
|
22935
23203
|
commit: string;
|
|
@@ -23077,16 +23345,16 @@ export declare const zOrganizationStatsSummaryResponse: z.ZodObject<{
|
|
|
23077
23345
|
slug: string;
|
|
23078
23346
|
}>, "many">;
|
|
23079
23347
|
}, "strip", z.ZodTypeAny, {
|
|
23080
|
-
end: string;
|
|
23081
23348
|
start: string;
|
|
23349
|
+
end: string;
|
|
23082
23350
|
projects: {
|
|
23083
23351
|
stats: Record<string, unknown>[];
|
|
23084
23352
|
id: string;
|
|
23085
23353
|
slug: string;
|
|
23086
23354
|
}[];
|
|
23087
23355
|
}, {
|
|
23088
|
-
end: string;
|
|
23089
23356
|
start: string;
|
|
23357
|
+
end: string;
|
|
23090
23358
|
projects: {
|
|
23091
23359
|
stats: Record<string, unknown>[];
|
|
23092
23360
|
id: string;
|
|
@@ -25249,8 +25517,8 @@ export declare const zOutcomesResponse: z.ZodObject<{
|
|
|
25249
25517
|
series: Record<string, unknown>;
|
|
25250
25518
|
}>, "many">;
|
|
25251
25519
|
}, "strip", z.ZodTypeAny, {
|
|
25252
|
-
end: string;
|
|
25253
25520
|
start: string;
|
|
25521
|
+
end: string;
|
|
25254
25522
|
groups: {
|
|
25255
25523
|
by: Record<string, unknown>;
|
|
25256
25524
|
totals: Record<string, unknown>;
|
|
@@ -25258,8 +25526,8 @@ export declare const zOutcomesResponse: z.ZodObject<{
|
|
|
25258
25526
|
}[];
|
|
25259
25527
|
intervals: string[];
|
|
25260
25528
|
}, {
|
|
25261
|
-
end: string;
|
|
25262
25529
|
start: string;
|
|
25530
|
+
end: string;
|
|
25263
25531
|
groups: {
|
|
25264
25532
|
by: Record<string, unknown>;
|
|
25265
25533
|
totals: Record<string, unknown>;
|
|
@@ -25302,7 +25570,32 @@ export declare const zOutgoingNotificationAction: z.ZodObject<{
|
|
|
25302
25570
|
targetDisplay: string | null;
|
|
25303
25571
|
}>;
|
|
25304
25572
|
export declare const zProjectAdmin: z.ZodObject<{
|
|
25573
|
+
digestsMinDelay: z.ZodNumber;
|
|
25574
|
+
digestsMaxDelay: z.ZodNumber;
|
|
25575
|
+
securityToken: z.ZodString;
|
|
25576
|
+
securityTokenHeader: z.ZodString;
|
|
25305
25577
|
isBookmarked: z.ZodOptional<z.ZodBoolean>;
|
|
25578
|
+
autofixAutomationTuning: z.ZodOptional<z.ZodEnum<["off", "super_low", "low", "medium", "high", "always"]>>;
|
|
25579
|
+
seerScannerAutomation: z.ZodOptional<z.ZodBoolean>;
|
|
25580
|
+
preprodSizeStatusChecksEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25581
|
+
preprodSizeStatusChecksRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
25582
|
+
preprodSizePrCommentsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25583
|
+
preprodSizePrCommentsRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
25584
|
+
preprodSnapshotStatusChecksEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25585
|
+
preprodSnapshotStatusChecksFailOnAdded: z.ZodOptional<z.ZodBoolean>;
|
|
25586
|
+
preprodSnapshotStatusChecksFailOnRemoved: z.ZodOptional<z.ZodBoolean>;
|
|
25587
|
+
preprodSnapshotStatusChecksFailOnChanged: z.ZodOptional<z.ZodBoolean>;
|
|
25588
|
+
preprodSnapshotStatusChecksFailOnRenamed: z.ZodOptional<z.ZodBoolean>;
|
|
25589
|
+
preprodSizeEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25590
|
+
preprodDistributionEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25591
|
+
preprodDistributionPrCommentsEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25592
|
+
preprodSnapshotPrCommentsEnabled: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25593
|
+
preprodSnapshotPrCommentsPostOnAdded: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25594
|
+
preprodSnapshotPrCommentsPostOnRemoved: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25595
|
+
preprodSnapshotPrCommentsPostOnChanged: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25596
|
+
preprodSnapshotPrCommentsPostOnRenamed: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
25597
|
+
preprodSizeEnabledQuery: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25598
|
+
preprodDistributionEnabledQuery: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25306
25599
|
name: z.ZodOptional<z.ZodString>;
|
|
25307
25600
|
slug: z.ZodOptional<z.ZodString>;
|
|
25308
25601
|
platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -25311,32 +25604,166 @@ export declare const zProjectAdmin: z.ZodObject<{
|
|
|
25311
25604
|
resolveAge: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
25312
25605
|
highlightContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
25313
25606
|
highlightTags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25607
|
+
verifySSL: z.ZodOptional<z.ZodBoolean>;
|
|
25608
|
+
defaultEnvironment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25609
|
+
dataScrubber: z.ZodOptional<z.ZodBoolean>;
|
|
25610
|
+
dataScrubberDefaults: z.ZodOptional<z.ZodBoolean>;
|
|
25611
|
+
sensitiveFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25612
|
+
safeFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25613
|
+
storeCrashReports: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
25614
|
+
relayPiiConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25615
|
+
builtinSymbolSources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25616
|
+
symbolSources: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25617
|
+
scrubIPAddresses: z.ZodOptional<z.ZodBoolean>;
|
|
25618
|
+
groupingConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25619
|
+
groupingEnhancements: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25620
|
+
fingerprintingRules: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25621
|
+
secondaryGroupingConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
25622
|
+
secondaryGroupingExpiry: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
25623
|
+
scrapeJavaScript: z.ZodOptional<z.ZodBoolean>;
|
|
25314
25624
|
enableAutoReleaseCreation: z.ZodOptional<z.ZodBoolean>;
|
|
25625
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25626
|
+
copy_from_project: z.ZodOptional<z.ZodNumber>;
|
|
25627
|
+
targetSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
25628
|
+
dynamicSamplingBiases: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25629
|
+
id: z.ZodEnum<["boostEnvironments", "boostKeyTransactions", "boostLatestRelease", "boostLowVolumeTransactions", "boostReplayId", "ignoreHealthChecks", "minimumSampleRate", "recalibrationRule"]>;
|
|
25630
|
+
active: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
25631
|
+
}, "strip", z.ZodTypeAny, {
|
|
25632
|
+
active: boolean;
|
|
25633
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
25634
|
+
}, {
|
|
25635
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
25636
|
+
active?: boolean | undefined;
|
|
25637
|
+
}>, "many">>;
|
|
25638
|
+
tempestFetchScreenshots: z.ZodOptional<z.ZodBoolean>;
|
|
25315
25639
|
scmSourceContextEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25640
|
+
debugFilesRole: z.ZodOptional<z.ZodNullable<z.ZodEnum<["member", "admin", "manager", "owner"]>>>;
|
|
25316
25641
|
}, "strip", z.ZodTypeAny, {
|
|
25642
|
+
digestsMinDelay: number;
|
|
25643
|
+
digestsMaxDelay: number;
|
|
25644
|
+
securityTokenHeader: string;
|
|
25645
|
+
securityToken: string;
|
|
25317
25646
|
name?: string | undefined;
|
|
25318
25647
|
platform?: string | null | undefined;
|
|
25319
25648
|
slug?: string | undefined;
|
|
25649
|
+
allowedDomains?: string[] | undefined;
|
|
25320
25650
|
resolveAge?: number | null | undefined;
|
|
25651
|
+
safeFields?: string[] | undefined;
|
|
25652
|
+
storeCrashReports?: number | null | undefined;
|
|
25653
|
+
sensitiveFields?: string[] | undefined;
|
|
25321
25654
|
highlightTags?: string[] | undefined;
|
|
25322
25655
|
highlightContext?: Record<string, unknown> | undefined;
|
|
25656
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
25657
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
25658
|
+
defaultEnvironment?: string | null | undefined;
|
|
25659
|
+
relayPiiConfig?: string | null | undefined;
|
|
25660
|
+
builtinSymbolSources?: string[] | undefined;
|
|
25661
|
+
dynamicSamplingBiases?: {
|
|
25662
|
+
active: boolean;
|
|
25663
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
25664
|
+
}[] | undefined;
|
|
25665
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
25323
25666
|
isBookmarked?: boolean | undefined;
|
|
25324
25667
|
subjectPrefix?: string | undefined;
|
|
25668
|
+
dataScrubber?: boolean | undefined;
|
|
25669
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
25325
25670
|
subjectTemplate?: string | undefined;
|
|
25671
|
+
verifySSL?: boolean | undefined;
|
|
25672
|
+
scrubIPAddresses?: boolean | undefined;
|
|
25673
|
+
scrapeJavaScript?: boolean | undefined;
|
|
25326
25674
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
25675
|
+
groupingConfig?: string | null | undefined;
|
|
25676
|
+
groupingEnhancements?: string | null | undefined;
|
|
25677
|
+
fingerprintingRules?: string | null | undefined;
|
|
25678
|
+
symbolSources?: string | null | undefined;
|
|
25679
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
25680
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
25681
|
+
seerScannerAutomation?: boolean | undefined;
|
|
25327
25682
|
scmSourceContextEnabled?: boolean | undefined;
|
|
25683
|
+
targetSampleRate?: number | undefined;
|
|
25684
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
25685
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
25686
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
25687
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
25688
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
25689
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
25690
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
25691
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
25692
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
25693
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
25694
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
25695
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
25696
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
25697
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
25698
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
25699
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
25700
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
25701
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
25702
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
25703
|
+
copy_from_project?: number | undefined;
|
|
25328
25704
|
}, {
|
|
25705
|
+
digestsMinDelay: number;
|
|
25706
|
+
digestsMaxDelay: number;
|
|
25707
|
+
securityTokenHeader: string;
|
|
25708
|
+
securityToken: string;
|
|
25329
25709
|
name?: string | undefined;
|
|
25330
25710
|
platform?: string | null | undefined;
|
|
25331
25711
|
slug?: string | undefined;
|
|
25712
|
+
allowedDomains?: string[] | undefined;
|
|
25332
25713
|
resolveAge?: number | null | undefined;
|
|
25714
|
+
safeFields?: string[] | undefined;
|
|
25715
|
+
storeCrashReports?: number | null | undefined;
|
|
25716
|
+
sensitiveFields?: string[] | undefined;
|
|
25333
25717
|
highlightTags?: string[] | undefined;
|
|
25334
25718
|
highlightContext?: Record<string, unknown> | undefined;
|
|
25719
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
25720
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
25721
|
+
defaultEnvironment?: string | null | undefined;
|
|
25722
|
+
relayPiiConfig?: string | null | undefined;
|
|
25723
|
+
builtinSymbolSources?: string[] | undefined;
|
|
25724
|
+
dynamicSamplingBiases?: {
|
|
25725
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
25726
|
+
active?: boolean | undefined;
|
|
25727
|
+
}[] | undefined;
|
|
25728
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
25335
25729
|
isBookmarked?: boolean | undefined;
|
|
25336
25730
|
subjectPrefix?: string | undefined;
|
|
25731
|
+
dataScrubber?: boolean | undefined;
|
|
25732
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
25337
25733
|
subjectTemplate?: string | undefined;
|
|
25734
|
+
verifySSL?: boolean | undefined;
|
|
25735
|
+
scrubIPAddresses?: boolean | undefined;
|
|
25736
|
+
scrapeJavaScript?: boolean | undefined;
|
|
25338
25737
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
25738
|
+
groupingConfig?: string | null | undefined;
|
|
25739
|
+
groupingEnhancements?: string | null | undefined;
|
|
25740
|
+
fingerprintingRules?: string | null | undefined;
|
|
25741
|
+
symbolSources?: string | null | undefined;
|
|
25742
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
25743
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
25744
|
+
seerScannerAutomation?: boolean | undefined;
|
|
25339
25745
|
scmSourceContextEnabled?: boolean | undefined;
|
|
25746
|
+
targetSampleRate?: number | undefined;
|
|
25747
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
25748
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
25749
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
25750
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
25751
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
25752
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
25753
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
25754
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
25755
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
25756
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
25757
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
25758
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
25759
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
25760
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
25761
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
25762
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
25763
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
25764
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
25765
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
25766
|
+
copy_from_project?: number | undefined;
|
|
25340
25767
|
}>;
|
|
25341
25768
|
export declare const zProjectEventDetailsResponse: z.ZodObject<{
|
|
25342
25769
|
id: z.ZodString;
|
|
@@ -27248,16 +27675,16 @@ export declare const zReleaseSerializerWithProjects: z.ZodObject<{
|
|
|
27248
27675
|
type: string;
|
|
27249
27676
|
}[] | null | undefined;
|
|
27250
27677
|
}[] | undefined;
|
|
27251
|
-
refs?: {
|
|
27252
|
-
repository: string;
|
|
27253
|
-
commit: string;
|
|
27254
|
-
previousCommit?: string | null | undefined;
|
|
27255
|
-
}[] | undefined;
|
|
27256
27678
|
headCommits?: {
|
|
27257
27679
|
repository: string;
|
|
27258
27680
|
currentId: string;
|
|
27259
27681
|
previousId?: string | null | undefined;
|
|
27260
27682
|
}[] | undefined;
|
|
27683
|
+
refs?: {
|
|
27684
|
+
repository: string;
|
|
27685
|
+
commit: string;
|
|
27686
|
+
previousCommit?: string | null | undefined;
|
|
27687
|
+
}[] | undefined;
|
|
27261
27688
|
}, {
|
|
27262
27689
|
version: string;
|
|
27263
27690
|
projects: unknown[];
|
|
@@ -27278,16 +27705,16 @@ export declare const zReleaseSerializerWithProjects: z.ZodObject<{
|
|
|
27278
27705
|
type: string;
|
|
27279
27706
|
}[] | null | undefined;
|
|
27280
27707
|
}[] | undefined;
|
|
27281
|
-
refs?: {
|
|
27282
|
-
repository: string;
|
|
27283
|
-
commit: string;
|
|
27284
|
-
previousCommit?: string | null | undefined;
|
|
27285
|
-
}[] | undefined;
|
|
27286
27708
|
headCommits?: {
|
|
27287
27709
|
repository: string;
|
|
27288
27710
|
currentId: string;
|
|
27289
27711
|
previousId?: string | null | undefined;
|
|
27290
27712
|
}[] | undefined;
|
|
27713
|
+
refs?: {
|
|
27714
|
+
repository: string;
|
|
27715
|
+
commit: string;
|
|
27716
|
+
previousCommit?: string | null | undefined;
|
|
27717
|
+
}[] | undefined;
|
|
27291
27718
|
}>;
|
|
27292
27719
|
export declare const zReleaseThresholdStatusResponse: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
27293
27720
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -27309,8 +27736,8 @@ export declare const zReleaseThresholdStatusResponse: z.ZodRecord<z.ZodString, z
|
|
|
27309
27736
|
}, "strip", z.ZodTypeAny, {
|
|
27310
27737
|
key: string;
|
|
27311
27738
|
project_id: number;
|
|
27312
|
-
end: string;
|
|
27313
27739
|
start: string;
|
|
27740
|
+
end: string;
|
|
27314
27741
|
project_slug: string;
|
|
27315
27742
|
metric_value: number | Record<string, unknown> | null;
|
|
27316
27743
|
is_healthy: boolean;
|
|
@@ -27326,8 +27753,8 @@ export declare const zReleaseThresholdStatusResponse: z.ZodRecord<z.ZodString, z
|
|
|
27326
27753
|
}, {
|
|
27327
27754
|
key: string;
|
|
27328
27755
|
project_id: number;
|
|
27329
|
-
end: string;
|
|
27330
27756
|
start: string;
|
|
27757
|
+
end: string;
|
|
27331
27758
|
project_slug: string;
|
|
27332
27759
|
metric_value: number | Record<string, unknown> | null;
|
|
27333
27760
|
is_healthy: boolean;
|
|
@@ -27390,6 +27817,22 @@ export declare const zReplayDeletionJobCreateData: z.ZodObject<{
|
|
|
27390
27817
|
rangeStart: string;
|
|
27391
27818
|
rangeEnd: string;
|
|
27392
27819
|
}>;
|
|
27820
|
+
/**
|
|
27821
|
+
* Span page plus conversation-level metadata.
|
|
27822
|
+
*/
|
|
27823
|
+
export declare const zRetrieveOrganizationAiConversationResponse: z.ZodObject<{
|
|
27824
|
+
conversationId: z.ZodString;
|
|
27825
|
+
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
27826
|
+
spans: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
27827
|
+
}, "strip", z.ZodTypeAny, {
|
|
27828
|
+
spans: Record<string, unknown>[];
|
|
27829
|
+
title: string | null;
|
|
27830
|
+
conversationId: string;
|
|
27831
|
+
}, {
|
|
27832
|
+
spans: Record<string, unknown>[];
|
|
27833
|
+
title: string | null;
|
|
27834
|
+
conversationId: string;
|
|
27835
|
+
}>;
|
|
27393
27836
|
export declare const zScimListResponseEnvelopeScimMemberIndexResponse: z.ZodObject<{
|
|
27394
27837
|
schemas: z.ZodArray<z.ZodString, "many">;
|
|
27395
27838
|
totalResults: z.ZodNumber;
|
|
@@ -27638,18 +28081,21 @@ export declare const zScimPatchRequest: z.ZodObject<{
|
|
|
27638
28081
|
value?: unknown;
|
|
27639
28082
|
path?: string | undefined;
|
|
27640
28083
|
}>, "many">;
|
|
28084
|
+
schemas: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
27641
28085
|
}, "strip", z.ZodTypeAny, {
|
|
27642
28086
|
Operations: {
|
|
27643
28087
|
op: string;
|
|
27644
28088
|
value?: unknown;
|
|
27645
28089
|
path?: string | undefined;
|
|
27646
28090
|
}[];
|
|
28091
|
+
schemas?: string[] | undefined;
|
|
27647
28092
|
}, {
|
|
27648
28093
|
Operations: {
|
|
27649
28094
|
op: string;
|
|
27650
28095
|
value?: unknown;
|
|
27651
28096
|
path?: string | undefined;
|
|
27652
28097
|
}[];
|
|
28098
|
+
schemas?: string[] | undefined;
|
|
27653
28099
|
}>;
|
|
27654
28100
|
export declare const zScimTeamPatchOperation: z.ZodObject<{
|
|
27655
28101
|
op: z.ZodString;
|
|
@@ -27665,6 +28111,7 @@ export declare const zScimTeamPatchOperation: z.ZodObject<{
|
|
|
27665
28111
|
path?: string | undefined;
|
|
27666
28112
|
}>;
|
|
27667
28113
|
export declare const zScimTeamPatchRequest: z.ZodObject<{
|
|
28114
|
+
schemas: z.ZodArray<z.ZodString, "many">;
|
|
27668
28115
|
Operations: z.ZodArray<z.ZodObject<{
|
|
27669
28116
|
op: z.ZodString;
|
|
27670
28117
|
value: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -27679,12 +28126,14 @@ export declare const zScimTeamPatchRequest: z.ZodObject<{
|
|
|
27679
28126
|
path?: string | undefined;
|
|
27680
28127
|
}>, "many">;
|
|
27681
28128
|
}, "strip", z.ZodTypeAny, {
|
|
28129
|
+
schemas: string[];
|
|
27682
28130
|
Operations: {
|
|
27683
28131
|
op: string;
|
|
27684
28132
|
value?: Record<string, unknown> | undefined;
|
|
27685
28133
|
path?: string | undefined;
|
|
27686
28134
|
}[];
|
|
27687
28135
|
}, {
|
|
28136
|
+
schemas: string[];
|
|
27688
28137
|
Operations: {
|
|
27689
28138
|
op: string;
|
|
27690
28139
|
value?: Record<string, unknown> | undefined;
|
|
@@ -27837,6 +28286,7 @@ export declare const zSentryAppParser: z.ZodObject<{
|
|
|
27837
28286
|
scopes: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>;
|
|
27838
28287
|
author: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
27839
28288
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
28289
|
+
features: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<11>, z.ZodLiteral<12>, z.ZodLiteral<"">]>, "many">, z.ZodNull]>>;
|
|
27840
28290
|
schema: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
|
|
27841
28291
|
webhookUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
27842
28292
|
redirectUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -27853,6 +28303,7 @@ export declare const zSentryAppParser: z.ZodObject<{
|
|
|
27853
28303
|
isAlertable: boolean;
|
|
27854
28304
|
verifyInstall: boolean;
|
|
27855
28305
|
events?: string[] | null | undefined;
|
|
28306
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
27856
28307
|
schema?: Record<string, unknown> | null | undefined;
|
|
27857
28308
|
author?: string | null | undefined;
|
|
27858
28309
|
allowedOrigins?: string[] | undefined;
|
|
@@ -27864,6 +28315,7 @@ export declare const zSentryAppParser: z.ZodObject<{
|
|
|
27864
28315
|
name: string;
|
|
27865
28316
|
scopes: string[] | null;
|
|
27866
28317
|
events?: string[] | null | undefined;
|
|
28318
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
27867
28319
|
schema?: Record<string, unknown> | null | undefined;
|
|
27868
28320
|
author?: string | null | undefined;
|
|
27869
28321
|
isInternal?: boolean | undefined;
|
|
@@ -27920,8 +28372,8 @@ export declare const zSessionsQueryResult: z.ZodObject<{
|
|
|
27920
28372
|
query: z.ZodString;
|
|
27921
28373
|
}, "strip", z.ZodTypeAny, {
|
|
27922
28374
|
query: string;
|
|
27923
|
-
end: string;
|
|
27924
28375
|
start: string;
|
|
28376
|
+
end: string;
|
|
27925
28377
|
groups: {
|
|
27926
28378
|
by: {
|
|
27927
28379
|
environment?: string | undefined;
|
|
@@ -27935,8 +28387,8 @@ export declare const zSessionsQueryResult: z.ZodObject<{
|
|
|
27935
28387
|
intervals: string[];
|
|
27936
28388
|
}, {
|
|
27937
28389
|
query: string;
|
|
27938
|
-
end: string;
|
|
27939
28390
|
start: string;
|
|
28391
|
+
end: string;
|
|
27940
28392
|
groups: {
|
|
27941
28393
|
by: {
|
|
27942
28394
|
environment?: string | undefined;
|
|
@@ -32217,21 +32669,30 @@ export declare const zExternalUserWritable: z.ZodObject<{
|
|
|
32217
32669
|
}>;
|
|
32218
32670
|
export declare const zOrganizationMemberRequestWritable: z.ZodObject<{
|
|
32219
32671
|
email: z.ZodString;
|
|
32672
|
+
role: z.ZodOptional<z.ZodEnum<["member", "admin", "manager", "owner"]>>;
|
|
32220
32673
|
orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
|
|
32674
|
+
teams: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
32221
32675
|
teamRoles: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
|
|
32222
32676
|
sendInvite: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
32223
32677
|
reinvite: z.ZodOptional<z.ZodBoolean>;
|
|
32678
|
+
regenerate: z.ZodOptional<z.ZodBoolean>;
|
|
32224
32679
|
}, "strip", z.ZodTypeAny, {
|
|
32225
32680
|
email: string;
|
|
32226
32681
|
sendInvite: boolean;
|
|
32682
|
+
teams?: unknown[] | undefined;
|
|
32683
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
32227
32684
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
32228
32685
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
32229
32686
|
reinvite?: boolean | undefined;
|
|
32687
|
+
regenerate?: boolean | undefined;
|
|
32230
32688
|
}, {
|
|
32231
32689
|
email: string;
|
|
32690
|
+
teams?: unknown[] | undefined;
|
|
32691
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
32232
32692
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
32233
32693
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
32234
32694
|
reinvite?: boolean | undefined;
|
|
32695
|
+
regenerate?: boolean | undefined;
|
|
32235
32696
|
sendInvite?: boolean | undefined;
|
|
32236
32697
|
}>;
|
|
32237
32698
|
export declare const zListOrganizationsData: z.ZodObject<{
|
|
@@ -32613,6 +33074,7 @@ export declare const zUpdateOrganizationData: z.ZodObject<{
|
|
|
32613
33074
|
issueAlertsThreadFlag: z.ZodOptional<z.ZodBoolean>;
|
|
32614
33075
|
metricAlertsThreadFlag: z.ZodOptional<z.ZodBoolean>;
|
|
32615
33076
|
cancelDeletion: z.ZodOptional<z.ZodBoolean>;
|
|
33077
|
+
apdexThreshold: z.ZodOptional<z.ZodNumber>;
|
|
32616
33078
|
}, "strip", z.ZodTypeAny, {
|
|
32617
33079
|
name?: string | undefined;
|
|
32618
33080
|
avatar?: string | undefined;
|
|
@@ -32645,6 +33107,7 @@ export declare const zUpdateOrganizationData: z.ZodObject<{
|
|
|
32645
33107
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
32646
33108
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
32647
33109
|
cancelDeletion?: boolean | undefined;
|
|
33110
|
+
apdexThreshold?: number | undefined;
|
|
32648
33111
|
}, {
|
|
32649
33112
|
name?: string | undefined;
|
|
32650
33113
|
avatar?: string | undefined;
|
|
@@ -32677,6 +33140,7 @@ export declare const zUpdateOrganizationData: z.ZodObject<{
|
|
|
32677
33140
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
32678
33141
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
32679
33142
|
cancelDeletion?: boolean | undefined;
|
|
33143
|
+
apdexThreshold?: number | undefined;
|
|
32680
33144
|
}>>;
|
|
32681
33145
|
path: z.ZodObject<{
|
|
32682
33146
|
organization_id_or_slug: z.ZodString;
|
|
@@ -32723,6 +33187,7 @@ export declare const zUpdateOrganizationData: z.ZodObject<{
|
|
|
32723
33187
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
32724
33188
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
32725
33189
|
cancelDeletion?: boolean | undefined;
|
|
33190
|
+
apdexThreshold?: number | undefined;
|
|
32726
33191
|
} | undefined;
|
|
32727
33192
|
}, {
|
|
32728
33193
|
path: {
|
|
@@ -32761,6 +33226,7 @@ export declare const zUpdateOrganizationData: z.ZodObject<{
|
|
|
32761
33226
|
issueAlertsThreadFlag?: boolean | undefined;
|
|
32762
33227
|
metricAlertsThreadFlag?: boolean | undefined;
|
|
32763
33228
|
cancelDeletion?: boolean | undefined;
|
|
33229
|
+
apdexThreshold?: number | undefined;
|
|
32764
33230
|
} | undefined;
|
|
32765
33231
|
}>;
|
|
32766
33232
|
export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
@@ -34226,6 +34692,250 @@ export declare const zUpdateOrganizationResponse: z.ZodObject<{
|
|
|
34226
34692
|
planSampleRate?: number | undefined;
|
|
34227
34693
|
desiredSampleRate?: number | undefined;
|
|
34228
34694
|
}>;
|
|
34695
|
+
export declare const zListOrganizationAiConversationsData: z.ZodObject<{
|
|
34696
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
34697
|
+
path: z.ZodObject<{
|
|
34698
|
+
organization_id_or_slug: z.ZodString;
|
|
34699
|
+
}, "strip", z.ZodTypeAny, {
|
|
34700
|
+
organization_id_or_slug: string;
|
|
34701
|
+
}, {
|
|
34702
|
+
organization_id_or_slug: string;
|
|
34703
|
+
}>;
|
|
34704
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
34705
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
34706
|
+
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34707
|
+
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
34708
|
+
start: z.ZodOptional<z.ZodString>;
|
|
34709
|
+
end: z.ZodOptional<z.ZodString>;
|
|
34710
|
+
query: z.ZodOptional<z.ZodString>;
|
|
34711
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
34712
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
34713
|
+
}, "strip", z.ZodTypeAny, {
|
|
34714
|
+
query?: string | undefined;
|
|
34715
|
+
environment?: string[] | undefined;
|
|
34716
|
+
project?: (string | number)[] | undefined;
|
|
34717
|
+
cursor?: string | undefined;
|
|
34718
|
+
per_page?: number | undefined;
|
|
34719
|
+
statsPeriod?: string | undefined;
|
|
34720
|
+
start?: string | undefined;
|
|
34721
|
+
end?: string | undefined;
|
|
34722
|
+
}, {
|
|
34723
|
+
query?: string | undefined;
|
|
34724
|
+
environment?: string[] | undefined;
|
|
34725
|
+
project?: (string | number)[] | undefined;
|
|
34726
|
+
cursor?: string | undefined;
|
|
34727
|
+
per_page?: number | undefined;
|
|
34728
|
+
statsPeriod?: string | undefined;
|
|
34729
|
+
start?: string | undefined;
|
|
34730
|
+
end?: string | undefined;
|
|
34731
|
+
}>>;
|
|
34732
|
+
}, "strip", z.ZodTypeAny, {
|
|
34733
|
+
path: {
|
|
34734
|
+
organization_id_or_slug: string;
|
|
34735
|
+
};
|
|
34736
|
+
query?: {
|
|
34737
|
+
query?: string | undefined;
|
|
34738
|
+
environment?: string[] | undefined;
|
|
34739
|
+
project?: (string | number)[] | undefined;
|
|
34740
|
+
cursor?: string | undefined;
|
|
34741
|
+
per_page?: number | undefined;
|
|
34742
|
+
statsPeriod?: string | undefined;
|
|
34743
|
+
start?: string | undefined;
|
|
34744
|
+
end?: string | undefined;
|
|
34745
|
+
} | undefined;
|
|
34746
|
+
body?: undefined;
|
|
34747
|
+
}, {
|
|
34748
|
+
path: {
|
|
34749
|
+
organization_id_or_slug: string;
|
|
34750
|
+
};
|
|
34751
|
+
query?: {
|
|
34752
|
+
query?: string | undefined;
|
|
34753
|
+
environment?: string[] | undefined;
|
|
34754
|
+
project?: (string | number)[] | undefined;
|
|
34755
|
+
cursor?: string | undefined;
|
|
34756
|
+
per_page?: number | undefined;
|
|
34757
|
+
statsPeriod?: string | undefined;
|
|
34758
|
+
start?: string | undefined;
|
|
34759
|
+
end?: string | undefined;
|
|
34760
|
+
} | undefined;
|
|
34761
|
+
body?: undefined;
|
|
34762
|
+
}>;
|
|
34763
|
+
export declare const zListOrganizationAiConversationsResponse2: z.ZodArray<z.ZodObject<{
|
|
34764
|
+
conversationId: z.ZodString;
|
|
34765
|
+
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34766
|
+
projectId: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
34767
|
+
flow: z.ZodArray<z.ZodString, "many">;
|
|
34768
|
+
errors: z.ZodNumber;
|
|
34769
|
+
llmCalls: z.ZodNumber;
|
|
34770
|
+
toolCalls: z.ZodNumber;
|
|
34771
|
+
totalTokens: z.ZodNumber;
|
|
34772
|
+
inputTokens: z.ZodNumber;
|
|
34773
|
+
outputTokens: z.ZodNumber;
|
|
34774
|
+
totalCost: z.ZodNumber;
|
|
34775
|
+
generationDuration: z.ZodNumber;
|
|
34776
|
+
startTimestamp: z.ZodNumber;
|
|
34777
|
+
endTimestamp: z.ZodNumber;
|
|
34778
|
+
traceCount: z.ZodNumber;
|
|
34779
|
+
traceIds: z.ZodArray<z.ZodString, "many">;
|
|
34780
|
+
firstInput: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34781
|
+
lastOutput: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34782
|
+
user: z.ZodUnion<[z.ZodObject<{
|
|
34783
|
+
id: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34784
|
+
email: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34785
|
+
username: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34786
|
+
ip_address: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34787
|
+
}, "strip", z.ZodTypeAny, {
|
|
34788
|
+
id: string | null;
|
|
34789
|
+
email: string | null;
|
|
34790
|
+
username: string | null;
|
|
34791
|
+
ip_address: string | null;
|
|
34792
|
+
}, {
|
|
34793
|
+
id: string | null;
|
|
34794
|
+
email: string | null;
|
|
34795
|
+
username: string | null;
|
|
34796
|
+
ip_address: string | null;
|
|
34797
|
+
}>, z.ZodNull]>;
|
|
34798
|
+
toolNames: z.ZodArray<z.ZodString, "many">;
|
|
34799
|
+
toolErrors: z.ZodNumber;
|
|
34800
|
+
}, "strip", z.ZodTypeAny, {
|
|
34801
|
+
user: {
|
|
34802
|
+
id: string | null;
|
|
34803
|
+
email: string | null;
|
|
34804
|
+
username: string | null;
|
|
34805
|
+
ip_address: string | null;
|
|
34806
|
+
} | null;
|
|
34807
|
+
errors: number;
|
|
34808
|
+
title: string | null;
|
|
34809
|
+
projectId: number | null;
|
|
34810
|
+
startTimestamp: number;
|
|
34811
|
+
endTimestamp: number;
|
|
34812
|
+
flow: string[];
|
|
34813
|
+
llmCalls: number;
|
|
34814
|
+
toolCalls: number;
|
|
34815
|
+
totalTokens: number;
|
|
34816
|
+
inputTokens: number;
|
|
34817
|
+
outputTokens: number;
|
|
34818
|
+
traceCount: number;
|
|
34819
|
+
traceIds: string[];
|
|
34820
|
+
firstInput: string | null;
|
|
34821
|
+
lastOutput: string | null;
|
|
34822
|
+
toolNames: string[];
|
|
34823
|
+
toolErrors: number;
|
|
34824
|
+
conversationId: string;
|
|
34825
|
+
totalCost: number;
|
|
34826
|
+
generationDuration: number;
|
|
34827
|
+
}, {
|
|
34828
|
+
user: {
|
|
34829
|
+
id: string | null;
|
|
34830
|
+
email: string | null;
|
|
34831
|
+
username: string | null;
|
|
34832
|
+
ip_address: string | null;
|
|
34833
|
+
} | null;
|
|
34834
|
+
errors: number;
|
|
34835
|
+
title: string | null;
|
|
34836
|
+
projectId: number | null;
|
|
34837
|
+
startTimestamp: number;
|
|
34838
|
+
endTimestamp: number;
|
|
34839
|
+
flow: string[];
|
|
34840
|
+
llmCalls: number;
|
|
34841
|
+
toolCalls: number;
|
|
34842
|
+
totalTokens: number;
|
|
34843
|
+
inputTokens: number;
|
|
34844
|
+
outputTokens: number;
|
|
34845
|
+
traceCount: number;
|
|
34846
|
+
traceIds: string[];
|
|
34847
|
+
firstInput: string | null;
|
|
34848
|
+
lastOutput: string | null;
|
|
34849
|
+
toolNames: string[];
|
|
34850
|
+
toolErrors: number;
|
|
34851
|
+
conversationId: string;
|
|
34852
|
+
totalCost: number;
|
|
34853
|
+
generationDuration: number;
|
|
34854
|
+
}>, "many">;
|
|
34855
|
+
export declare const zRetrieveOrganizationAiConversationData: z.ZodObject<{
|
|
34856
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
34857
|
+
path: z.ZodObject<{
|
|
34858
|
+
organization_id_or_slug: z.ZodString;
|
|
34859
|
+
conversation_id: z.ZodString;
|
|
34860
|
+
}, "strip", z.ZodTypeAny, {
|
|
34861
|
+
organization_id_or_slug: string;
|
|
34862
|
+
conversation_id: string;
|
|
34863
|
+
}, {
|
|
34864
|
+
organization_id_or_slug: string;
|
|
34865
|
+
conversation_id: string;
|
|
34866
|
+
}>;
|
|
34867
|
+
query: z.ZodOptional<z.ZodObject<{
|
|
34868
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
34869
|
+
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34870
|
+
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
34871
|
+
start: z.ZodOptional<z.ZodString>;
|
|
34872
|
+
end: z.ZodOptional<z.ZodString>;
|
|
34873
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
34874
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
34875
|
+
}, "strip", z.ZodTypeAny, {
|
|
34876
|
+
environment?: string[] | undefined;
|
|
34877
|
+
project?: (string | number)[] | undefined;
|
|
34878
|
+
cursor?: string | undefined;
|
|
34879
|
+
per_page?: number | undefined;
|
|
34880
|
+
statsPeriod?: string | undefined;
|
|
34881
|
+
start?: string | undefined;
|
|
34882
|
+
end?: string | undefined;
|
|
34883
|
+
}, {
|
|
34884
|
+
environment?: string[] | undefined;
|
|
34885
|
+
project?: (string | number)[] | undefined;
|
|
34886
|
+
cursor?: string | undefined;
|
|
34887
|
+
per_page?: number | undefined;
|
|
34888
|
+
statsPeriod?: string | undefined;
|
|
34889
|
+
start?: string | undefined;
|
|
34890
|
+
end?: string | undefined;
|
|
34891
|
+
}>>;
|
|
34892
|
+
}, "strip", z.ZodTypeAny, {
|
|
34893
|
+
path: {
|
|
34894
|
+
organization_id_or_slug: string;
|
|
34895
|
+
conversation_id: string;
|
|
34896
|
+
};
|
|
34897
|
+
query?: {
|
|
34898
|
+
environment?: string[] | undefined;
|
|
34899
|
+
project?: (string | number)[] | undefined;
|
|
34900
|
+
cursor?: string | undefined;
|
|
34901
|
+
per_page?: number | undefined;
|
|
34902
|
+
statsPeriod?: string | undefined;
|
|
34903
|
+
start?: string | undefined;
|
|
34904
|
+
end?: string | undefined;
|
|
34905
|
+
} | undefined;
|
|
34906
|
+
body?: undefined;
|
|
34907
|
+
}, {
|
|
34908
|
+
path: {
|
|
34909
|
+
organization_id_or_slug: string;
|
|
34910
|
+
conversation_id: string;
|
|
34911
|
+
};
|
|
34912
|
+
query?: {
|
|
34913
|
+
environment?: string[] | undefined;
|
|
34914
|
+
project?: (string | number)[] | undefined;
|
|
34915
|
+
cursor?: string | undefined;
|
|
34916
|
+
per_page?: number | undefined;
|
|
34917
|
+
statsPeriod?: string | undefined;
|
|
34918
|
+
start?: string | undefined;
|
|
34919
|
+
end?: string | undefined;
|
|
34920
|
+
} | undefined;
|
|
34921
|
+
body?: undefined;
|
|
34922
|
+
}>;
|
|
34923
|
+
/**
|
|
34924
|
+
* Span page plus conversation-level metadata.
|
|
34925
|
+
*/
|
|
34926
|
+
export declare const zRetrieveOrganizationAiConversationResponse2: z.ZodObject<{
|
|
34927
|
+
conversationId: z.ZodString;
|
|
34928
|
+
title: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
34929
|
+
spans: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
34930
|
+
}, "strip", z.ZodTypeAny, {
|
|
34931
|
+
spans: Record<string, unknown>[];
|
|
34932
|
+
title: string | null;
|
|
34933
|
+
conversationId: string;
|
|
34934
|
+
}, {
|
|
34935
|
+
spans: Record<string, unknown>[];
|
|
34936
|
+
title: string | null;
|
|
34937
|
+
conversationId: string;
|
|
34938
|
+
}>;
|
|
34229
34939
|
export declare const zGetOrganizationConfigIntegrationsData: z.ZodObject<{
|
|
34230
34940
|
body: z.ZodOptional<z.ZodNever>;
|
|
34231
34941
|
path: z.ZodObject<{
|
|
@@ -34915,8 +35625,8 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
34915
35625
|
is_favorited: boolean;
|
|
34916
35626
|
environment?: string[] | null | undefined;
|
|
34917
35627
|
id?: string | undefined;
|
|
34918
|
-
end?: string | null | undefined;
|
|
34919
35628
|
start?: string | null | undefined;
|
|
35629
|
+
end?: string | null | undefined;
|
|
34920
35630
|
projects?: number[] | undefined;
|
|
34921
35631
|
widgets?: {
|
|
34922
35632
|
interval?: string | undefined;
|
|
@@ -34968,8 +35678,8 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
34968
35678
|
title: string;
|
|
34969
35679
|
environment?: string[] | null | undefined;
|
|
34970
35680
|
id?: string | undefined;
|
|
34971
|
-
end?: string | null | undefined;
|
|
34972
35681
|
start?: string | null | undefined;
|
|
35682
|
+
end?: string | null | undefined;
|
|
34973
35683
|
projects?: number[] | undefined;
|
|
34974
35684
|
widgets?: {
|
|
34975
35685
|
interval?: string | undefined;
|
|
@@ -35033,8 +35743,8 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
35033
35743
|
is_favorited: boolean;
|
|
35034
35744
|
environment?: string[] | null | undefined;
|
|
35035
35745
|
id?: string | undefined;
|
|
35036
|
-
end?: string | null | undefined;
|
|
35037
35746
|
start?: string | null | undefined;
|
|
35747
|
+
end?: string | null | undefined;
|
|
35038
35748
|
projects?: number[] | undefined;
|
|
35039
35749
|
widgets?: {
|
|
35040
35750
|
interval?: string | undefined;
|
|
@@ -35092,8 +35802,8 @@ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
|
|
|
35092
35802
|
title: string;
|
|
35093
35803
|
environment?: string[] | null | undefined;
|
|
35094
35804
|
id?: string | undefined;
|
|
35095
|
-
end?: string | null | undefined;
|
|
35096
35805
|
start?: string | null | undefined;
|
|
35806
|
+
end?: string | null | undefined;
|
|
35097
35807
|
projects?: number[] | undefined;
|
|
35098
35808
|
widgets?: {
|
|
35099
35809
|
interval?: string | undefined;
|
|
@@ -35691,8 +36401,8 @@ export declare const zCreateOrganizationDashboardResponse: z.ZodObject<{
|
|
|
35691
36401
|
prebuiltId: number | null;
|
|
35692
36402
|
isFavorited: boolean;
|
|
35693
36403
|
environment?: string[] | undefined;
|
|
35694
|
-
end?: string | undefined;
|
|
35695
36404
|
start?: string | undefined;
|
|
36405
|
+
end?: string | undefined;
|
|
35696
36406
|
period?: string | undefined;
|
|
35697
36407
|
utc?: string | undefined;
|
|
35698
36408
|
expired?: boolean | undefined;
|
|
@@ -35805,8 +36515,8 @@ export declare const zCreateOrganizationDashboardResponse: z.ZodObject<{
|
|
|
35805
36515
|
prebuiltId: number | null;
|
|
35806
36516
|
isFavorited: boolean;
|
|
35807
36517
|
environment?: string[] | undefined;
|
|
35808
|
-
end?: string | undefined;
|
|
35809
36518
|
start?: string | undefined;
|
|
36519
|
+
end?: string | undefined;
|
|
35810
36520
|
period?: string | undefined;
|
|
35811
36521
|
utc?: string | undefined;
|
|
35812
36522
|
expired?: boolean | undefined;
|
|
@@ -36414,8 +37124,8 @@ export declare const zGetOrganizationDashboardResponse: z.ZodObject<{
|
|
|
36414
37124
|
prebuiltId: number | null;
|
|
36415
37125
|
isFavorited: boolean;
|
|
36416
37126
|
environment?: string[] | undefined;
|
|
36417
|
-
end?: string | undefined;
|
|
36418
37127
|
start?: string | undefined;
|
|
37128
|
+
end?: string | undefined;
|
|
36419
37129
|
period?: string | undefined;
|
|
36420
37130
|
utc?: string | undefined;
|
|
36421
37131
|
expired?: boolean | undefined;
|
|
@@ -36528,8 +37238,8 @@ export declare const zGetOrganizationDashboardResponse: z.ZodObject<{
|
|
|
36528
37238
|
prebuiltId: number | null;
|
|
36529
37239
|
isFavorited: boolean;
|
|
36530
37240
|
environment?: string[] | undefined;
|
|
36531
|
-
end?: string | undefined;
|
|
36532
37241
|
start?: string | undefined;
|
|
37242
|
+
end?: string | undefined;
|
|
36533
37243
|
period?: string | undefined;
|
|
36534
37244
|
utc?: string | undefined;
|
|
36535
37245
|
expired?: boolean | undefined;
|
|
@@ -36740,8 +37450,8 @@ export declare const zUpdateOrganizationDashboardData: z.ZodObject<{
|
|
|
36740
37450
|
}, "strip", z.ZodTypeAny, {
|
|
36741
37451
|
environment?: string[] | null | undefined;
|
|
36742
37452
|
id?: string | undefined;
|
|
36743
|
-
end?: string | null | undefined;
|
|
36744
37453
|
start?: string | null | undefined;
|
|
37454
|
+
end?: string | null | undefined;
|
|
36745
37455
|
title?: string | undefined;
|
|
36746
37456
|
projects?: number[] | undefined;
|
|
36747
37457
|
widgets?: {
|
|
@@ -36794,8 +37504,8 @@ export declare const zUpdateOrganizationDashboardData: z.ZodObject<{
|
|
|
36794
37504
|
}, {
|
|
36795
37505
|
environment?: string[] | null | undefined;
|
|
36796
37506
|
id?: string | undefined;
|
|
36797
|
-
end?: string | null | undefined;
|
|
36798
37507
|
start?: string | null | undefined;
|
|
37508
|
+
end?: string | null | undefined;
|
|
36799
37509
|
title?: string | undefined;
|
|
36800
37510
|
projects?: number[] | undefined;
|
|
36801
37511
|
widgets?: {
|
|
@@ -36866,8 +37576,8 @@ export declare const zUpdateOrganizationDashboardData: z.ZodObject<{
|
|
|
36866
37576
|
body?: {
|
|
36867
37577
|
environment?: string[] | null | undefined;
|
|
36868
37578
|
id?: string | undefined;
|
|
36869
|
-
end?: string | null | undefined;
|
|
36870
37579
|
start?: string | null | undefined;
|
|
37580
|
+
end?: string | null | undefined;
|
|
36871
37581
|
title?: string | undefined;
|
|
36872
37582
|
projects?: number[] | undefined;
|
|
36873
37583
|
widgets?: {
|
|
@@ -36927,8 +37637,8 @@ export declare const zUpdateOrganizationDashboardData: z.ZodObject<{
|
|
|
36927
37637
|
body?: {
|
|
36928
37638
|
environment?: string[] | null | undefined;
|
|
36929
37639
|
id?: string | undefined;
|
|
36930
|
-
end?: string | null | undefined;
|
|
36931
37640
|
start?: string | null | undefined;
|
|
37641
|
+
end?: string | null | undefined;
|
|
36932
37642
|
title?: string | undefined;
|
|
36933
37643
|
projects?: number[] | undefined;
|
|
36934
37644
|
widgets?: {
|
|
@@ -37523,8 +38233,8 @@ export declare const zUpdateOrganizationDashboardResponse: z.ZodObject<{
|
|
|
37523
38233
|
prebuiltId: number | null;
|
|
37524
38234
|
isFavorited: boolean;
|
|
37525
38235
|
environment?: string[] | undefined;
|
|
37526
|
-
end?: string | undefined;
|
|
37527
38236
|
start?: string | undefined;
|
|
38237
|
+
end?: string | undefined;
|
|
37528
38238
|
period?: string | undefined;
|
|
37529
38239
|
utc?: string | undefined;
|
|
37530
38240
|
expired?: boolean | undefined;
|
|
@@ -37637,8 +38347,8 @@ export declare const zUpdateOrganizationDashboardResponse: z.ZodObject<{
|
|
|
37637
38347
|
prebuiltId: number | null;
|
|
37638
38348
|
isFavorited: boolean;
|
|
37639
38349
|
environment?: string[] | undefined;
|
|
37640
|
-
end?: string | undefined;
|
|
37641
38350
|
start?: string | undefined;
|
|
38351
|
+
end?: string | undefined;
|
|
37642
38352
|
period?: string | undefined;
|
|
37643
38353
|
utc?: string | undefined;
|
|
37644
38354
|
expired?: boolean | undefined;
|
|
@@ -38330,6 +39040,7 @@ export declare const zListOrganizationDiscoverSavedQueriesResponse: z.ZodArray<z
|
|
|
38330
39040
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
38331
39041
|
interval: z.ZodOptional<z.ZodString>;
|
|
38332
39042
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39043
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
38333
39044
|
id: z.ZodString;
|
|
38334
39045
|
name: z.ZodString;
|
|
38335
39046
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -38581,17 +39292,18 @@ export declare const zListOrganizationDiscoverSavedQueriesResponse: z.ZodArray<z
|
|
|
38581
39292
|
fields?: string[] | undefined;
|
|
38582
39293
|
interval?: string | undefined;
|
|
38583
39294
|
environment?: string[] | undefined;
|
|
38584
|
-
end?: string | undefined;
|
|
38585
39295
|
start?: string | undefined;
|
|
39296
|
+
end?: string | undefined;
|
|
38586
39297
|
topEvents?: number | undefined;
|
|
38587
39298
|
yAxis?: string[] | undefined;
|
|
38588
39299
|
limit?: string | undefined;
|
|
38589
39300
|
conditions?: string[] | undefined;
|
|
38590
39301
|
orderby?: string | undefined;
|
|
39302
|
+
lastVisited?: string | undefined;
|
|
38591
39303
|
range?: string | undefined;
|
|
38592
|
-
display?: string | undefined;
|
|
38593
|
-
widths?: string[] | undefined;
|
|
38594
39304
|
aggregations?: string[] | undefined;
|
|
39305
|
+
widths?: string[] | undefined;
|
|
39306
|
+
display?: string | undefined;
|
|
38595
39307
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
38596
39308
|
}, {
|
|
38597
39309
|
name: string;
|
|
@@ -38651,17 +39363,18 @@ export declare const zListOrganizationDiscoverSavedQueriesResponse: z.ZodArray<z
|
|
|
38651
39363
|
fields?: string[] | undefined;
|
|
38652
39364
|
interval?: string | undefined;
|
|
38653
39365
|
environment?: string[] | undefined;
|
|
38654
|
-
end?: string | undefined;
|
|
38655
39366
|
start?: string | undefined;
|
|
39367
|
+
end?: string | undefined;
|
|
38656
39368
|
topEvents?: number | undefined;
|
|
38657
39369
|
yAxis?: string[] | undefined;
|
|
38658
39370
|
limit?: string | undefined;
|
|
38659
39371
|
conditions?: string[] | undefined;
|
|
38660
39372
|
orderby?: string | undefined;
|
|
39373
|
+
lastVisited?: string | undefined;
|
|
38661
39374
|
range?: string | undefined;
|
|
38662
|
-
display?: string | undefined;
|
|
38663
|
-
widths?: string[] | undefined;
|
|
38664
39375
|
aggregations?: string[] | undefined;
|
|
39376
|
+
widths?: string[] | undefined;
|
|
39377
|
+
display?: string | undefined;
|
|
38665
39378
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
38666
39379
|
}>, "many">;
|
|
38667
39380
|
export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
@@ -38674,8 +39387,15 @@ export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
38674
39387
|
range: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
38675
39388
|
fields: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
38676
39389
|
orderby: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
39390
|
+
rollup: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
39391
|
+
aggregations: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
39392
|
+
groupby: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
39393
|
+
conditions: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
39394
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
39395
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
38677
39396
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
38678
39397
|
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
39398
|
+
widths: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
38679
39399
|
yAxis: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
38680
39400
|
display: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
38681
39401
|
topEvents: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -38686,14 +39406,21 @@ export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
38686
39406
|
fields?: string[] | null | undefined;
|
|
38687
39407
|
interval?: string | null | undefined;
|
|
38688
39408
|
environment?: string[] | null | undefined;
|
|
38689
|
-
end?: string | null | undefined;
|
|
38690
39409
|
start?: string | null | undefined;
|
|
39410
|
+
end?: string | null | undefined;
|
|
38691
39411
|
topEvents?: number | null | undefined;
|
|
38692
39412
|
yAxis?: string[] | null | undefined;
|
|
39413
|
+
limit?: number | null | undefined;
|
|
39414
|
+
version?: number | null | undefined;
|
|
39415
|
+
conditions?: unknown[][] | null | undefined;
|
|
38693
39416
|
projects?: number[] | undefined;
|
|
38694
39417
|
orderby?: string | null | undefined;
|
|
38695
39418
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
38696
39419
|
range?: string | null | undefined;
|
|
39420
|
+
rollup?: number | null | undefined;
|
|
39421
|
+
aggregations?: unknown[][] | null | undefined;
|
|
39422
|
+
groupby?: string[] | null | undefined;
|
|
39423
|
+
widths?: string[] | null | undefined;
|
|
38697
39424
|
display?: string | null | undefined;
|
|
38698
39425
|
}, {
|
|
38699
39426
|
name: string;
|
|
@@ -38701,14 +39428,21 @@ export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
38701
39428
|
fields?: string[] | null | undefined;
|
|
38702
39429
|
interval?: string | null | undefined;
|
|
38703
39430
|
environment?: string[] | null | undefined;
|
|
38704
|
-
end?: string | null | undefined;
|
|
38705
39431
|
start?: string | null | undefined;
|
|
39432
|
+
end?: string | null | undefined;
|
|
38706
39433
|
topEvents?: number | null | undefined;
|
|
38707
39434
|
yAxis?: string[] | null | undefined;
|
|
39435
|
+
limit?: number | null | undefined;
|
|
39436
|
+
version?: number | null | undefined;
|
|
39437
|
+
conditions?: unknown[][] | null | undefined;
|
|
38708
39438
|
projects?: number[] | undefined;
|
|
38709
39439
|
orderby?: string | null | undefined;
|
|
38710
39440
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
38711
39441
|
range?: string | null | undefined;
|
|
39442
|
+
rollup?: number | null | undefined;
|
|
39443
|
+
aggregations?: unknown[][] | null | undefined;
|
|
39444
|
+
groupby?: string[] | null | undefined;
|
|
39445
|
+
widths?: string[] | null | undefined;
|
|
38712
39446
|
display?: string | null | undefined;
|
|
38713
39447
|
}>;
|
|
38714
39448
|
path: z.ZodObject<{
|
|
@@ -38726,14 +39460,21 @@ export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
38726
39460
|
fields?: string[] | null | undefined;
|
|
38727
39461
|
interval?: string | null | undefined;
|
|
38728
39462
|
environment?: string[] | null | undefined;
|
|
38729
|
-
end?: string | null | undefined;
|
|
38730
39463
|
start?: string | null | undefined;
|
|
39464
|
+
end?: string | null | undefined;
|
|
38731
39465
|
topEvents?: number | null | undefined;
|
|
38732
39466
|
yAxis?: string[] | null | undefined;
|
|
39467
|
+
limit?: number | null | undefined;
|
|
39468
|
+
version?: number | null | undefined;
|
|
39469
|
+
conditions?: unknown[][] | null | undefined;
|
|
38733
39470
|
projects?: number[] | undefined;
|
|
38734
39471
|
orderby?: string | null | undefined;
|
|
38735
39472
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
38736
39473
|
range?: string | null | undefined;
|
|
39474
|
+
rollup?: number | null | undefined;
|
|
39475
|
+
aggregations?: unknown[][] | null | undefined;
|
|
39476
|
+
groupby?: string[] | null | undefined;
|
|
39477
|
+
widths?: string[] | null | undefined;
|
|
38737
39478
|
display?: string | null | undefined;
|
|
38738
39479
|
};
|
|
38739
39480
|
path: {
|
|
@@ -38747,14 +39488,21 @@ export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
38747
39488
|
fields?: string[] | null | undefined;
|
|
38748
39489
|
interval?: string | null | undefined;
|
|
38749
39490
|
environment?: string[] | null | undefined;
|
|
38750
|
-
end?: string | null | undefined;
|
|
38751
39491
|
start?: string | null | undefined;
|
|
39492
|
+
end?: string | null | undefined;
|
|
38752
39493
|
topEvents?: number | null | undefined;
|
|
38753
39494
|
yAxis?: string[] | null | undefined;
|
|
39495
|
+
limit?: number | null | undefined;
|
|
39496
|
+
version?: number | null | undefined;
|
|
39497
|
+
conditions?: unknown[][] | null | undefined;
|
|
38754
39498
|
projects?: number[] | undefined;
|
|
38755
39499
|
orderby?: string | null | undefined;
|
|
38756
39500
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
38757
39501
|
range?: string | null | undefined;
|
|
39502
|
+
rollup?: number | null | undefined;
|
|
39503
|
+
aggregations?: unknown[][] | null | undefined;
|
|
39504
|
+
groupby?: string[] | null | undefined;
|
|
39505
|
+
widths?: string[] | null | undefined;
|
|
38758
39506
|
display?: string | null | undefined;
|
|
38759
39507
|
};
|
|
38760
39508
|
path: {
|
|
@@ -38779,6 +39527,7 @@ export declare const zCreateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
38779
39527
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
38780
39528
|
interval: z.ZodOptional<z.ZodString>;
|
|
38781
39529
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39530
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
38782
39531
|
id: z.ZodString;
|
|
38783
39532
|
name: z.ZodString;
|
|
38784
39533
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -39030,17 +39779,18 @@ export declare const zCreateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
39030
39779
|
fields?: string[] | undefined;
|
|
39031
39780
|
interval?: string | undefined;
|
|
39032
39781
|
environment?: string[] | undefined;
|
|
39033
|
-
end?: string | undefined;
|
|
39034
39782
|
start?: string | undefined;
|
|
39783
|
+
end?: string | undefined;
|
|
39035
39784
|
topEvents?: number | undefined;
|
|
39036
39785
|
yAxis?: string[] | undefined;
|
|
39037
39786
|
limit?: string | undefined;
|
|
39038
39787
|
conditions?: string[] | undefined;
|
|
39039
39788
|
orderby?: string | undefined;
|
|
39789
|
+
lastVisited?: string | undefined;
|
|
39040
39790
|
range?: string | undefined;
|
|
39041
|
-
display?: string | undefined;
|
|
39042
|
-
widths?: string[] | undefined;
|
|
39043
39791
|
aggregations?: string[] | undefined;
|
|
39792
|
+
widths?: string[] | undefined;
|
|
39793
|
+
display?: string | undefined;
|
|
39044
39794
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39045
39795
|
}, {
|
|
39046
39796
|
name: string;
|
|
@@ -39100,17 +39850,18 @@ export declare const zCreateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
39100
39850
|
fields?: string[] | undefined;
|
|
39101
39851
|
interval?: string | undefined;
|
|
39102
39852
|
environment?: string[] | undefined;
|
|
39103
|
-
end?: string | undefined;
|
|
39104
39853
|
start?: string | undefined;
|
|
39854
|
+
end?: string | undefined;
|
|
39105
39855
|
topEvents?: number | undefined;
|
|
39106
39856
|
yAxis?: string[] | undefined;
|
|
39107
39857
|
limit?: string | undefined;
|
|
39108
39858
|
conditions?: string[] | undefined;
|
|
39109
39859
|
orderby?: string | undefined;
|
|
39860
|
+
lastVisited?: string | undefined;
|
|
39110
39861
|
range?: string | undefined;
|
|
39111
|
-
display?: string | undefined;
|
|
39112
|
-
widths?: string[] | undefined;
|
|
39113
39862
|
aggregations?: string[] | undefined;
|
|
39863
|
+
widths?: string[] | undefined;
|
|
39864
|
+
display?: string | undefined;
|
|
39114
39865
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39115
39866
|
}>;
|
|
39116
39867
|
export declare const zDeleteOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
@@ -39190,6 +39941,7 @@ export declare const zGetOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
|
39190
39941
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
39191
39942
|
interval: z.ZodOptional<z.ZodString>;
|
|
39192
39943
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
39944
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
39193
39945
|
id: z.ZodString;
|
|
39194
39946
|
name: z.ZodString;
|
|
39195
39947
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -39441,17 +40193,18 @@ export declare const zGetOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
|
39441
40193
|
fields?: string[] | undefined;
|
|
39442
40194
|
interval?: string | undefined;
|
|
39443
40195
|
environment?: string[] | undefined;
|
|
39444
|
-
end?: string | undefined;
|
|
39445
40196
|
start?: string | undefined;
|
|
40197
|
+
end?: string | undefined;
|
|
39446
40198
|
topEvents?: number | undefined;
|
|
39447
40199
|
yAxis?: string[] | undefined;
|
|
39448
40200
|
limit?: string | undefined;
|
|
39449
40201
|
conditions?: string[] | undefined;
|
|
39450
40202
|
orderby?: string | undefined;
|
|
40203
|
+
lastVisited?: string | undefined;
|
|
39451
40204
|
range?: string | undefined;
|
|
39452
|
-
display?: string | undefined;
|
|
39453
|
-
widths?: string[] | undefined;
|
|
39454
40205
|
aggregations?: string[] | undefined;
|
|
40206
|
+
widths?: string[] | undefined;
|
|
40207
|
+
display?: string | undefined;
|
|
39455
40208
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39456
40209
|
}, {
|
|
39457
40210
|
name: string;
|
|
@@ -39511,17 +40264,18 @@ export declare const zGetOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
|
39511
40264
|
fields?: string[] | undefined;
|
|
39512
40265
|
interval?: string | undefined;
|
|
39513
40266
|
environment?: string[] | undefined;
|
|
39514
|
-
end?: string | undefined;
|
|
39515
40267
|
start?: string | undefined;
|
|
40268
|
+
end?: string | undefined;
|
|
39516
40269
|
topEvents?: number | undefined;
|
|
39517
40270
|
yAxis?: string[] | undefined;
|
|
39518
40271
|
limit?: string | undefined;
|
|
39519
40272
|
conditions?: string[] | undefined;
|
|
39520
40273
|
orderby?: string | undefined;
|
|
40274
|
+
lastVisited?: string | undefined;
|
|
39521
40275
|
range?: string | undefined;
|
|
39522
|
-
display?: string | undefined;
|
|
39523
|
-
widths?: string[] | undefined;
|
|
39524
40276
|
aggregations?: string[] | undefined;
|
|
40277
|
+
widths?: string[] | undefined;
|
|
40278
|
+
display?: string | undefined;
|
|
39525
40279
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39526
40280
|
}>;
|
|
39527
40281
|
export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
@@ -39534,8 +40288,15 @@ export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
39534
40288
|
range: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
39535
40289
|
fields: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
39536
40290
|
orderby: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
40291
|
+
rollup: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
40292
|
+
aggregations: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
40293
|
+
groupby: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
40294
|
+
conditions: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodArray<z.ZodUnknown, "many">, "many">, z.ZodNull]>>;
|
|
40295
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
40296
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
39537
40297
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
39538
40298
|
query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
40299
|
+
widths: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
39539
40300
|
yAxis: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
39540
40301
|
display: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
39541
40302
|
topEvents: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
@@ -39546,14 +40307,21 @@ export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
39546
40307
|
fields?: string[] | null | undefined;
|
|
39547
40308
|
interval?: string | null | undefined;
|
|
39548
40309
|
environment?: string[] | null | undefined;
|
|
39549
|
-
end?: string | null | undefined;
|
|
39550
40310
|
start?: string | null | undefined;
|
|
40311
|
+
end?: string | null | undefined;
|
|
39551
40312
|
topEvents?: number | null | undefined;
|
|
39552
40313
|
yAxis?: string[] | null | undefined;
|
|
40314
|
+
limit?: number | null | undefined;
|
|
40315
|
+
version?: number | null | undefined;
|
|
40316
|
+
conditions?: unknown[][] | null | undefined;
|
|
39553
40317
|
projects?: number[] | undefined;
|
|
39554
40318
|
orderby?: string | null | undefined;
|
|
39555
40319
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
39556
40320
|
range?: string | null | undefined;
|
|
40321
|
+
rollup?: number | null | undefined;
|
|
40322
|
+
aggregations?: unknown[][] | null | undefined;
|
|
40323
|
+
groupby?: string[] | null | undefined;
|
|
40324
|
+
widths?: string[] | null | undefined;
|
|
39557
40325
|
display?: string | null | undefined;
|
|
39558
40326
|
}, {
|
|
39559
40327
|
name: string;
|
|
@@ -39561,14 +40329,21 @@ export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
39561
40329
|
fields?: string[] | null | undefined;
|
|
39562
40330
|
interval?: string | null | undefined;
|
|
39563
40331
|
environment?: string[] | null | undefined;
|
|
39564
|
-
end?: string | null | undefined;
|
|
39565
40332
|
start?: string | null | undefined;
|
|
40333
|
+
end?: string | null | undefined;
|
|
39566
40334
|
topEvents?: number | null | undefined;
|
|
39567
40335
|
yAxis?: string[] | null | undefined;
|
|
40336
|
+
limit?: number | null | undefined;
|
|
40337
|
+
version?: number | null | undefined;
|
|
40338
|
+
conditions?: unknown[][] | null | undefined;
|
|
39568
40339
|
projects?: number[] | undefined;
|
|
39569
40340
|
orderby?: string | null | undefined;
|
|
39570
40341
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
39571
40342
|
range?: string | null | undefined;
|
|
40343
|
+
rollup?: number | null | undefined;
|
|
40344
|
+
aggregations?: unknown[][] | null | undefined;
|
|
40345
|
+
groupby?: string[] | null | undefined;
|
|
40346
|
+
widths?: string[] | null | undefined;
|
|
39572
40347
|
display?: string | null | undefined;
|
|
39573
40348
|
}>;
|
|
39574
40349
|
path: z.ZodObject<{
|
|
@@ -39589,14 +40364,21 @@ export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
39589
40364
|
fields?: string[] | null | undefined;
|
|
39590
40365
|
interval?: string | null | undefined;
|
|
39591
40366
|
environment?: string[] | null | undefined;
|
|
39592
|
-
end?: string | null | undefined;
|
|
39593
40367
|
start?: string | null | undefined;
|
|
40368
|
+
end?: string | null | undefined;
|
|
39594
40369
|
topEvents?: number | null | undefined;
|
|
39595
40370
|
yAxis?: string[] | null | undefined;
|
|
40371
|
+
limit?: number | null | undefined;
|
|
40372
|
+
version?: number | null | undefined;
|
|
40373
|
+
conditions?: unknown[][] | null | undefined;
|
|
39596
40374
|
projects?: number[] | undefined;
|
|
39597
40375
|
orderby?: string | null | undefined;
|
|
39598
40376
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
39599
40377
|
range?: string | null | undefined;
|
|
40378
|
+
rollup?: number | null | undefined;
|
|
40379
|
+
aggregations?: unknown[][] | null | undefined;
|
|
40380
|
+
groupby?: string[] | null | undefined;
|
|
40381
|
+
widths?: string[] | null | undefined;
|
|
39600
40382
|
display?: string | null | undefined;
|
|
39601
40383
|
};
|
|
39602
40384
|
path: {
|
|
@@ -39611,14 +40393,21 @@ export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
|
39611
40393
|
fields?: string[] | null | undefined;
|
|
39612
40394
|
interval?: string | null | undefined;
|
|
39613
40395
|
environment?: string[] | null | undefined;
|
|
39614
|
-
end?: string | null | undefined;
|
|
39615
40396
|
start?: string | null | undefined;
|
|
40397
|
+
end?: string | null | undefined;
|
|
39616
40398
|
topEvents?: number | null | undefined;
|
|
39617
40399
|
yAxis?: string[] | null | undefined;
|
|
40400
|
+
limit?: number | null | undefined;
|
|
40401
|
+
version?: number | null | undefined;
|
|
40402
|
+
conditions?: unknown[][] | null | undefined;
|
|
39618
40403
|
projects?: number[] | undefined;
|
|
39619
40404
|
orderby?: string | null | undefined;
|
|
39620
40405
|
queryDataset?: "discover" | "error-events" | "transaction-like" | undefined;
|
|
39621
40406
|
range?: string | null | undefined;
|
|
40407
|
+
rollup?: number | null | undefined;
|
|
40408
|
+
aggregations?: unknown[][] | null | undefined;
|
|
40409
|
+
groupby?: string[] | null | undefined;
|
|
40410
|
+
widths?: string[] | null | undefined;
|
|
39622
40411
|
display?: string | null | undefined;
|
|
39623
40412
|
};
|
|
39624
40413
|
path: {
|
|
@@ -39644,6 +40433,7 @@ export declare const zUpdateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
39644
40433
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
39645
40434
|
interval: z.ZodOptional<z.ZodString>;
|
|
39646
40435
|
exploreQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40436
|
+
lastVisited: z.ZodOptional<z.ZodString>;
|
|
39647
40437
|
id: z.ZodString;
|
|
39648
40438
|
name: z.ZodString;
|
|
39649
40439
|
projects: z.ZodArray<z.ZodNumber, "many">;
|
|
@@ -39895,17 +40685,18 @@ export declare const zUpdateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
39895
40685
|
fields?: string[] | undefined;
|
|
39896
40686
|
interval?: string | undefined;
|
|
39897
40687
|
environment?: string[] | undefined;
|
|
39898
|
-
end?: string | undefined;
|
|
39899
40688
|
start?: string | undefined;
|
|
40689
|
+
end?: string | undefined;
|
|
39900
40690
|
topEvents?: number | undefined;
|
|
39901
40691
|
yAxis?: string[] | undefined;
|
|
39902
40692
|
limit?: string | undefined;
|
|
39903
40693
|
conditions?: string[] | undefined;
|
|
39904
40694
|
orderby?: string | undefined;
|
|
40695
|
+
lastVisited?: string | undefined;
|
|
39905
40696
|
range?: string | undefined;
|
|
39906
|
-
display?: string | undefined;
|
|
39907
|
-
widths?: string[] | undefined;
|
|
39908
40697
|
aggregations?: string[] | undefined;
|
|
40698
|
+
widths?: string[] | undefined;
|
|
40699
|
+
display?: string | undefined;
|
|
39909
40700
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39910
40701
|
}, {
|
|
39911
40702
|
name: string;
|
|
@@ -39965,17 +40756,18 @@ export declare const zUpdateOrganizationDiscoverSavedQueryResponse: z.ZodObject<
|
|
|
39965
40756
|
fields?: string[] | undefined;
|
|
39966
40757
|
interval?: string | undefined;
|
|
39967
40758
|
environment?: string[] | undefined;
|
|
39968
|
-
end?: string | undefined;
|
|
39969
40759
|
start?: string | undefined;
|
|
40760
|
+
end?: string | undefined;
|
|
39970
40761
|
topEvents?: number | undefined;
|
|
39971
40762
|
yAxis?: string[] | undefined;
|
|
39972
40763
|
limit?: string | undefined;
|
|
39973
40764
|
conditions?: string[] | undefined;
|
|
39974
40765
|
orderby?: string | undefined;
|
|
40766
|
+
lastVisited?: string | undefined;
|
|
39975
40767
|
range?: string | undefined;
|
|
39976
|
-
display?: string | undefined;
|
|
39977
|
-
widths?: string[] | undefined;
|
|
39978
40768
|
aggregations?: string[] | undefined;
|
|
40769
|
+
widths?: string[] | undefined;
|
|
40770
|
+
display?: string | undefined;
|
|
39979
40771
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
39980
40772
|
}>;
|
|
39981
40773
|
export declare const zListOrganizationEnvironmentsData: z.ZodObject<{
|
|
@@ -40610,9 +41402,9 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
40610
41402
|
project?: (string | number)[] | undefined;
|
|
40611
41403
|
cursor?: string | undefined;
|
|
40612
41404
|
per_page?: number | undefined;
|
|
40613
|
-
end?: string | undefined;
|
|
40614
|
-
start?: string | undefined;
|
|
40615
41405
|
statsPeriod?: string | undefined;
|
|
41406
|
+
start?: string | undefined;
|
|
41407
|
+
end?: string | undefined;
|
|
40616
41408
|
allowAggregateConditions?: boolean | undefined;
|
|
40617
41409
|
}, {
|
|
40618
41410
|
field: string[];
|
|
@@ -40624,9 +41416,9 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
40624
41416
|
project?: (string | number)[] | undefined;
|
|
40625
41417
|
cursor?: string | undefined;
|
|
40626
41418
|
per_page?: number | undefined;
|
|
40627
|
-
end?: string | undefined;
|
|
40628
|
-
start?: string | undefined;
|
|
40629
41419
|
statsPeriod?: string | undefined;
|
|
41420
|
+
start?: string | undefined;
|
|
41421
|
+
end?: string | undefined;
|
|
40630
41422
|
allowAggregateConditions?: boolean | undefined;
|
|
40631
41423
|
}>;
|
|
40632
41424
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -40640,9 +41432,9 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
40640
41432
|
project?: (string | number)[] | undefined;
|
|
40641
41433
|
cursor?: string | undefined;
|
|
40642
41434
|
per_page?: number | undefined;
|
|
40643
|
-
end?: string | undefined;
|
|
40644
|
-
start?: string | undefined;
|
|
40645
41435
|
statsPeriod?: string | undefined;
|
|
41436
|
+
start?: string | undefined;
|
|
41437
|
+
end?: string | undefined;
|
|
40646
41438
|
allowAggregateConditions?: boolean | undefined;
|
|
40647
41439
|
};
|
|
40648
41440
|
path: {
|
|
@@ -40660,9 +41452,9 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
40660
41452
|
project?: (string | number)[] | undefined;
|
|
40661
41453
|
cursor?: string | undefined;
|
|
40662
41454
|
per_page?: number | undefined;
|
|
40663
|
-
end?: string | undefined;
|
|
40664
|
-
start?: string | undefined;
|
|
40665
41455
|
statsPeriod?: string | undefined;
|
|
41456
|
+
start?: string | undefined;
|
|
41457
|
+
end?: string | undefined;
|
|
40666
41458
|
allowAggregateConditions?: boolean | undefined;
|
|
40667
41459
|
};
|
|
40668
41460
|
path: {
|
|
@@ -40773,9 +41565,9 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
40773
41565
|
interval?: number | undefined;
|
|
40774
41566
|
environment?: string[] | undefined;
|
|
40775
41567
|
project?: (string | number)[] | undefined;
|
|
40776
|
-
end?: string | undefined;
|
|
40777
|
-
start?: string | undefined;
|
|
40778
41568
|
statsPeriod?: string | undefined;
|
|
41569
|
+
start?: string | undefined;
|
|
41570
|
+
end?: string | undefined;
|
|
40779
41571
|
topEvents?: number | undefined;
|
|
40780
41572
|
comparisonDelta?: number | undefined;
|
|
40781
41573
|
groupBy?: string[] | undefined;
|
|
@@ -40790,9 +41582,9 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
40790
41582
|
interval?: number | undefined;
|
|
40791
41583
|
environment?: string[] | undefined;
|
|
40792
41584
|
project?: (string | number)[] | undefined;
|
|
40793
|
-
end?: string | undefined;
|
|
40794
|
-
start?: string | undefined;
|
|
40795
41585
|
statsPeriod?: string | undefined;
|
|
41586
|
+
start?: string | undefined;
|
|
41587
|
+
end?: string | undefined;
|
|
40796
41588
|
topEvents?: number | undefined;
|
|
40797
41589
|
comparisonDelta?: number | undefined;
|
|
40798
41590
|
groupBy?: string[] | undefined;
|
|
@@ -40809,9 +41601,9 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
40809
41601
|
interval?: number | undefined;
|
|
40810
41602
|
environment?: string[] | undefined;
|
|
40811
41603
|
project?: (string | number)[] | undefined;
|
|
40812
|
-
end?: string | undefined;
|
|
40813
|
-
start?: string | undefined;
|
|
40814
41604
|
statsPeriod?: string | undefined;
|
|
41605
|
+
start?: string | undefined;
|
|
41606
|
+
end?: string | undefined;
|
|
40815
41607
|
topEvents?: number | undefined;
|
|
40816
41608
|
comparisonDelta?: number | undefined;
|
|
40817
41609
|
groupBy?: string[] | undefined;
|
|
@@ -40832,9 +41624,9 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
40832
41624
|
interval?: number | undefined;
|
|
40833
41625
|
environment?: string[] | undefined;
|
|
40834
41626
|
project?: (string | number)[] | undefined;
|
|
40835
|
-
end?: string | undefined;
|
|
40836
|
-
start?: string | undefined;
|
|
40837
41627
|
statsPeriod?: string | undefined;
|
|
41628
|
+
start?: string | undefined;
|
|
41629
|
+
end?: string | undefined;
|
|
40838
41630
|
topEvents?: number | undefined;
|
|
40839
41631
|
comparisonDelta?: number | undefined;
|
|
40840
41632
|
groupBy?: string[] | undefined;
|
|
@@ -40854,13 +41646,13 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
40854
41646
|
start: z.ZodNumber;
|
|
40855
41647
|
end: z.ZodNumber;
|
|
40856
41648
|
}, "strip", z.ZodTypeAny, {
|
|
40857
|
-
dataset: string;
|
|
40858
|
-
end: number;
|
|
40859
41649
|
start: number;
|
|
40860
|
-
}, {
|
|
40861
|
-
dataset: string;
|
|
40862
41650
|
end: number;
|
|
41651
|
+
dataset: string;
|
|
41652
|
+
}, {
|
|
40863
41653
|
start: number;
|
|
41654
|
+
end: number;
|
|
41655
|
+
dataset: string;
|
|
40864
41656
|
}>>;
|
|
40865
41657
|
timeSeries: z.ZodArray<z.ZodObject<{
|
|
40866
41658
|
values: z.ZodArray<z.ZodObject<{
|
|
@@ -41000,9 +41792,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
41000
41792
|
}[] | undefined;
|
|
41001
41793
|
}[];
|
|
41002
41794
|
meta?: {
|
|
41003
|
-
dataset: string;
|
|
41004
|
-
end: number;
|
|
41005
41795
|
start: number;
|
|
41796
|
+
end: number;
|
|
41797
|
+
dataset: string;
|
|
41006
41798
|
} | undefined;
|
|
41007
41799
|
}, {
|
|
41008
41800
|
timeSeries: {
|
|
@@ -41031,9 +41823,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
41031
41823
|
}[] | undefined;
|
|
41032
41824
|
}[];
|
|
41033
41825
|
meta?: {
|
|
41034
|
-
dataset: string;
|
|
41035
|
-
end: number;
|
|
41036
41826
|
start: number;
|
|
41827
|
+
end: number;
|
|
41828
|
+
dataset: string;
|
|
41037
41829
|
} | undefined;
|
|
41038
41830
|
}>;
|
|
41039
41831
|
export declare const zCreateOrganizationExternalUserData: z.ZodObject<{
|
|
@@ -42065,13 +42857,13 @@ export declare const zListOrganizationIssueViewsResponse: z.ZodArray<z.ZodObject
|
|
|
42065
42857
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
42066
42858
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
42067
42859
|
}, "strip", z.ZodTypeAny, {
|
|
42068
|
-
end?: string | null | undefined;
|
|
42069
42860
|
start?: string | null | undefined;
|
|
42861
|
+
end?: string | null | undefined;
|
|
42070
42862
|
period?: string | null | undefined;
|
|
42071
42863
|
utc?: boolean | null | undefined;
|
|
42072
42864
|
}, {
|
|
42073
|
-
end?: string | null | undefined;
|
|
42074
42865
|
start?: string | null | undefined;
|
|
42866
|
+
end?: string | null | undefined;
|
|
42075
42867
|
period?: string | null | undefined;
|
|
42076
42868
|
utc?: boolean | null | undefined;
|
|
42077
42869
|
}>;
|
|
@@ -42134,8 +42926,8 @@ export declare const zListOrganizationIssueViewsResponse: z.ZodArray<z.ZodObject
|
|
|
42134
42926
|
environments: string[];
|
|
42135
42927
|
lastVisited: string | null;
|
|
42136
42928
|
timeFilters: {
|
|
42137
|
-
end?: string | null | undefined;
|
|
42138
42929
|
start?: string | null | undefined;
|
|
42930
|
+
end?: string | null | undefined;
|
|
42139
42931
|
period?: string | null | undefined;
|
|
42140
42932
|
utc?: boolean | null | undefined;
|
|
42141
42933
|
};
|
|
@@ -42196,8 +42988,8 @@ export declare const zListOrganizationIssueViewsResponse: z.ZodArray<z.ZodObject
|
|
|
42196
42988
|
environments: string[];
|
|
42197
42989
|
lastVisited: string | null;
|
|
42198
42990
|
timeFilters: {
|
|
42199
|
-
end?: string | null | undefined;
|
|
42200
42991
|
start?: string | null | undefined;
|
|
42992
|
+
end?: string | null | undefined;
|
|
42201
42993
|
period?: string | null | undefined;
|
|
42202
42994
|
utc?: boolean | null | undefined;
|
|
42203
42995
|
};
|
|
@@ -42217,13 +43009,13 @@ export declare const zCreateOrganizationIssueViewData: z.ZodObject<{
|
|
|
42217
43009
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
42218
43010
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
42219
43011
|
}, "strip", z.ZodTypeAny, {
|
|
42220
|
-
end?: string | null | undefined;
|
|
42221
43012
|
start?: string | null | undefined;
|
|
43013
|
+
end?: string | null | undefined;
|
|
42222
43014
|
period?: string | null | undefined;
|
|
42223
43015
|
utc?: boolean | null | undefined;
|
|
42224
43016
|
}, {
|
|
42225
|
-
end?: string | null | undefined;
|
|
42226
43017
|
start?: string | null | undefined;
|
|
43018
|
+
end?: string | null | undefined;
|
|
42227
43019
|
period?: string | null | undefined;
|
|
42228
43020
|
utc?: boolean | null | undefined;
|
|
42229
43021
|
}>;
|
|
@@ -42235,8 +43027,8 @@ export declare const zCreateOrganizationIssueViewData: z.ZodObject<{
|
|
|
42235
43027
|
projects: number[];
|
|
42236
43028
|
environments: string[];
|
|
42237
43029
|
timeFilters: {
|
|
42238
|
-
end?: string | null | undefined;
|
|
42239
43030
|
start?: string | null | undefined;
|
|
43031
|
+
end?: string | null | undefined;
|
|
42240
43032
|
period?: string | null | undefined;
|
|
42241
43033
|
utc?: boolean | null | undefined;
|
|
42242
43034
|
};
|
|
@@ -42248,8 +43040,8 @@ export declare const zCreateOrganizationIssueViewData: z.ZodObject<{
|
|
|
42248
43040
|
projects: number[];
|
|
42249
43041
|
environments: string[];
|
|
42250
43042
|
timeFilters: {
|
|
42251
|
-
end?: string | null | undefined;
|
|
42252
43043
|
start?: string | null | undefined;
|
|
43044
|
+
end?: string | null | undefined;
|
|
42253
43045
|
period?: string | null | undefined;
|
|
42254
43046
|
utc?: boolean | null | undefined;
|
|
42255
43047
|
};
|
|
@@ -42271,8 +43063,8 @@ export declare const zCreateOrganizationIssueViewData: z.ZodObject<{
|
|
|
42271
43063
|
projects: number[];
|
|
42272
43064
|
environments: string[];
|
|
42273
43065
|
timeFilters: {
|
|
42274
|
-
end?: string | null | undefined;
|
|
42275
43066
|
start?: string | null | undefined;
|
|
43067
|
+
end?: string | null | undefined;
|
|
42276
43068
|
period?: string | null | undefined;
|
|
42277
43069
|
utc?: boolean | null | undefined;
|
|
42278
43070
|
};
|
|
@@ -42290,8 +43082,8 @@ export declare const zCreateOrganizationIssueViewData: z.ZodObject<{
|
|
|
42290
43082
|
projects: number[];
|
|
42291
43083
|
environments: string[];
|
|
42292
43084
|
timeFilters: {
|
|
42293
|
-
end?: string | null | undefined;
|
|
42294
43085
|
start?: string | null | undefined;
|
|
43086
|
+
end?: string | null | undefined;
|
|
42295
43087
|
period?: string | null | undefined;
|
|
42296
43088
|
utc?: boolean | null | undefined;
|
|
42297
43089
|
};
|
|
@@ -42500,13 +43292,13 @@ export declare const zCreateOrganizationIssueViewResponse: z.ZodObject<{
|
|
|
42500
43292
|
period: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
42501
43293
|
utc: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
42502
43294
|
}, "strip", z.ZodTypeAny, {
|
|
42503
|
-
end?: string | null | undefined;
|
|
42504
43295
|
start?: string | null | undefined;
|
|
43296
|
+
end?: string | null | undefined;
|
|
42505
43297
|
period?: string | null | undefined;
|
|
42506
43298
|
utc?: boolean | null | undefined;
|
|
42507
43299
|
}, {
|
|
42508
|
-
end?: string | null | undefined;
|
|
42509
43300
|
start?: string | null | undefined;
|
|
43301
|
+
end?: string | null | undefined;
|
|
42510
43302
|
period?: string | null | undefined;
|
|
42511
43303
|
utc?: boolean | null | undefined;
|
|
42512
43304
|
}>;
|
|
@@ -42569,8 +43361,8 @@ export declare const zCreateOrganizationIssueViewResponse: z.ZodObject<{
|
|
|
42569
43361
|
environments: string[];
|
|
42570
43362
|
lastVisited: string | null;
|
|
42571
43363
|
timeFilters: {
|
|
42572
|
-
end?: string | null | undefined;
|
|
42573
43364
|
start?: string | null | undefined;
|
|
43365
|
+
end?: string | null | undefined;
|
|
42574
43366
|
period?: string | null | undefined;
|
|
42575
43367
|
utc?: boolean | null | undefined;
|
|
42576
43368
|
};
|
|
@@ -42631,8 +43423,8 @@ export declare const zCreateOrganizationIssueViewResponse: z.ZodObject<{
|
|
|
42631
43423
|
environments: string[];
|
|
42632
43424
|
lastVisited: string | null;
|
|
42633
43425
|
timeFilters: {
|
|
42634
|
-
end?: string | null | undefined;
|
|
42635
43426
|
start?: string | null | undefined;
|
|
43427
|
+
end?: string | null | undefined;
|
|
42636
43428
|
period?: string | null | undefined;
|
|
42637
43429
|
utc?: boolean | null | undefined;
|
|
42638
43430
|
};
|
|
@@ -42944,9 +43736,9 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
42944
43736
|
environment?: string[] | undefined;
|
|
42945
43737
|
project?: (string | number)[] | undefined;
|
|
42946
43738
|
cursor?: string | undefined;
|
|
42947
|
-
end?: string | undefined;
|
|
42948
|
-
start?: string | undefined;
|
|
42949
43739
|
statsPeriod?: string | undefined;
|
|
43740
|
+
start?: string | undefined;
|
|
43741
|
+
end?: string | undefined;
|
|
42950
43742
|
viewId?: string | undefined;
|
|
42951
43743
|
groupStatsPeriod?: "" | "auto" | "14d" | "24h" | undefined;
|
|
42952
43744
|
shortIdLookup?: "0" | "1" | undefined;
|
|
@@ -42958,9 +43750,9 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
42958
43750
|
environment?: string[] | undefined;
|
|
42959
43751
|
project?: (string | number)[] | undefined;
|
|
42960
43752
|
cursor?: string | undefined;
|
|
42961
|
-
end?: string | undefined;
|
|
42962
|
-
start?: string | undefined;
|
|
42963
43753
|
statsPeriod?: string | undefined;
|
|
43754
|
+
start?: string | undefined;
|
|
43755
|
+
end?: string | undefined;
|
|
42964
43756
|
viewId?: string | undefined;
|
|
42965
43757
|
limit?: number | undefined;
|
|
42966
43758
|
groupStatsPeriod?: "" | "auto" | "14d" | "24h" | undefined;
|
|
@@ -42979,9 +43771,9 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
42979
43771
|
environment?: string[] | undefined;
|
|
42980
43772
|
project?: (string | number)[] | undefined;
|
|
42981
43773
|
cursor?: string | undefined;
|
|
42982
|
-
end?: string | undefined;
|
|
42983
|
-
start?: string | undefined;
|
|
42984
43774
|
statsPeriod?: string | undefined;
|
|
43775
|
+
start?: string | undefined;
|
|
43776
|
+
end?: string | undefined;
|
|
42985
43777
|
viewId?: string | undefined;
|
|
42986
43778
|
groupStatsPeriod?: "" | "auto" | "14d" | "24h" | undefined;
|
|
42987
43779
|
shortIdLookup?: "0" | "1" | undefined;
|
|
@@ -42999,9 +43791,9 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
42999
43791
|
environment?: string[] | undefined;
|
|
43000
43792
|
project?: (string | number)[] | undefined;
|
|
43001
43793
|
cursor?: string | undefined;
|
|
43002
|
-
end?: string | undefined;
|
|
43003
|
-
start?: string | undefined;
|
|
43004
43794
|
statsPeriod?: string | undefined;
|
|
43795
|
+
start?: string | undefined;
|
|
43796
|
+
end?: string | undefined;
|
|
43005
43797
|
viewId?: string | undefined;
|
|
43006
43798
|
limit?: number | undefined;
|
|
43007
43799
|
groupStatsPeriod?: "" | "auto" | "14d" | "24h" | undefined;
|
|
@@ -43897,6 +44689,12 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
43897
44689
|
discard: z.ZodBoolean;
|
|
43898
44690
|
assignedTo: z.ZodString;
|
|
43899
44691
|
priority: z.ZodEnum<["low", "medium", "high"]>;
|
|
44692
|
+
ignoreDuration: z.ZodNumber;
|
|
44693
|
+
ignoreCount: z.ZodNumber;
|
|
44694
|
+
ignoreWindow: z.ZodNumber;
|
|
44695
|
+
ignoreUserCount: z.ZodNumber;
|
|
44696
|
+
ignoreUserWindow: z.ZodNumber;
|
|
44697
|
+
snoozeDuration: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
43900
44698
|
}, "strip", z.ZodTypeAny, {
|
|
43901
44699
|
priority: "high" | "low" | "medium";
|
|
43902
44700
|
inbox: boolean;
|
|
@@ -43916,10 +44714,16 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
43916
44714
|
commit: string;
|
|
43917
44715
|
} | undefined;
|
|
43918
44716
|
};
|
|
44717
|
+
ignoreCount: number;
|
|
44718
|
+
ignoreUserCount: number;
|
|
44719
|
+
ignoreUserWindow: number;
|
|
44720
|
+
ignoreWindow: number;
|
|
43919
44721
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
43920
44722
|
assignedTo: string;
|
|
43921
44723
|
isSubscribed: boolean;
|
|
43922
44724
|
hasSeen: boolean;
|
|
44725
|
+
ignoreDuration: number;
|
|
44726
|
+
snoozeDuration: number | null;
|
|
43923
44727
|
merge: boolean;
|
|
43924
44728
|
discard: boolean;
|
|
43925
44729
|
}, {
|
|
@@ -43941,10 +44745,16 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
43941
44745
|
commit: string;
|
|
43942
44746
|
} | undefined;
|
|
43943
44747
|
};
|
|
44748
|
+
ignoreCount: number;
|
|
44749
|
+
ignoreUserCount: number;
|
|
44750
|
+
ignoreUserWindow: number;
|
|
44751
|
+
ignoreWindow: number;
|
|
43944
44752
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
43945
44753
|
assignedTo: string;
|
|
43946
44754
|
isSubscribed: boolean;
|
|
43947
44755
|
hasSeen: boolean;
|
|
44756
|
+
ignoreDuration: number;
|
|
44757
|
+
snoozeDuration: number | null;
|
|
43948
44758
|
merge: boolean;
|
|
43949
44759
|
discard: boolean;
|
|
43950
44760
|
}>;
|
|
@@ -44000,10 +44810,16 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
44000
44810
|
commit: string;
|
|
44001
44811
|
} | undefined;
|
|
44002
44812
|
};
|
|
44813
|
+
ignoreCount: number;
|
|
44814
|
+
ignoreUserCount: number;
|
|
44815
|
+
ignoreUserWindow: number;
|
|
44816
|
+
ignoreWindow: number;
|
|
44003
44817
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
44004
44818
|
assignedTo: string;
|
|
44005
44819
|
isSubscribed: boolean;
|
|
44006
44820
|
hasSeen: boolean;
|
|
44821
|
+
ignoreDuration: number;
|
|
44822
|
+
snoozeDuration: number | null;
|
|
44007
44823
|
merge: boolean;
|
|
44008
44824
|
discard: boolean;
|
|
44009
44825
|
};
|
|
@@ -44039,10 +44855,16 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
44039
44855
|
commit: string;
|
|
44040
44856
|
} | undefined;
|
|
44041
44857
|
};
|
|
44858
|
+
ignoreCount: number;
|
|
44859
|
+
ignoreUserCount: number;
|
|
44860
|
+
ignoreUserWindow: number;
|
|
44861
|
+
ignoreWindow: number;
|
|
44042
44862
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
44043
44863
|
assignedTo: string;
|
|
44044
44864
|
isSubscribed: boolean;
|
|
44045
44865
|
hasSeen: boolean;
|
|
44866
|
+
ignoreDuration: number;
|
|
44867
|
+
snoozeDuration: number | null;
|
|
44046
44868
|
merge: boolean;
|
|
44047
44869
|
discard: boolean;
|
|
44048
44870
|
};
|
|
@@ -44236,10 +45058,13 @@ export declare const zListOrganizationMembersData: z.ZodObject<{
|
|
|
44236
45058
|
organization_id_or_slug: string;
|
|
44237
45059
|
}>;
|
|
44238
45060
|
query: z.ZodOptional<z.ZodObject<{
|
|
45061
|
+
query: z.ZodOptional<z.ZodString>;
|
|
44239
45062
|
cursor: z.ZodOptional<z.ZodString>;
|
|
44240
45063
|
}, "strip", z.ZodTypeAny, {
|
|
45064
|
+
query?: string | undefined;
|
|
44241
45065
|
cursor?: string | undefined;
|
|
44242
45066
|
}, {
|
|
45067
|
+
query?: string | undefined;
|
|
44243
45068
|
cursor?: string | undefined;
|
|
44244
45069
|
}>>;
|
|
44245
45070
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44247,6 +45072,7 @@ export declare const zListOrganizationMembersData: z.ZodObject<{
|
|
|
44247
45072
|
organization_id_or_slug: string;
|
|
44248
45073
|
};
|
|
44249
45074
|
query?: {
|
|
45075
|
+
query?: string | undefined;
|
|
44250
45076
|
cursor?: string | undefined;
|
|
44251
45077
|
} | undefined;
|
|
44252
45078
|
body?: undefined;
|
|
@@ -44255,6 +45081,7 @@ export declare const zListOrganizationMembersData: z.ZodObject<{
|
|
|
44255
45081
|
organization_id_or_slug: string;
|
|
44256
45082
|
};
|
|
44257
45083
|
query?: {
|
|
45084
|
+
query?: string | undefined;
|
|
44258
45085
|
cursor?: string | undefined;
|
|
44259
45086
|
} | undefined;
|
|
44260
45087
|
body?: undefined;
|
|
@@ -44646,21 +45473,30 @@ export declare const zListOrganizationMembersResponse: z.ZodArray<z.ZodObject<{
|
|
|
44646
45473
|
export declare const zAddOrganizationMemberData: z.ZodObject<{
|
|
44647
45474
|
body: z.ZodObject<{
|
|
44648
45475
|
email: z.ZodString;
|
|
45476
|
+
role: z.ZodOptional<z.ZodEnum<["member", "admin", "manager", "owner"]>>;
|
|
44649
45477
|
orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
|
|
45478
|
+
teams: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
44650
45479
|
teamRoles: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
|
|
44651
45480
|
sendInvite: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
44652
45481
|
reinvite: z.ZodOptional<z.ZodBoolean>;
|
|
45482
|
+
regenerate: z.ZodOptional<z.ZodBoolean>;
|
|
44653
45483
|
}, "strip", z.ZodTypeAny, {
|
|
44654
45484
|
email: string;
|
|
44655
45485
|
sendInvite: boolean;
|
|
45486
|
+
teams?: unknown[] | undefined;
|
|
45487
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
44656
45488
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
44657
45489
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
44658
45490
|
reinvite?: boolean | undefined;
|
|
45491
|
+
regenerate?: boolean | undefined;
|
|
44659
45492
|
}, {
|
|
44660
45493
|
email: string;
|
|
45494
|
+
teams?: unknown[] | undefined;
|
|
45495
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
44661
45496
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
44662
45497
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
44663
45498
|
reinvite?: boolean | undefined;
|
|
45499
|
+
regenerate?: boolean | undefined;
|
|
44664
45500
|
sendInvite?: boolean | undefined;
|
|
44665
45501
|
}>;
|
|
44666
45502
|
path: z.ZodObject<{
|
|
@@ -44675,9 +45511,12 @@ export declare const zAddOrganizationMemberData: z.ZodObject<{
|
|
|
44675
45511
|
body: {
|
|
44676
45512
|
email: string;
|
|
44677
45513
|
sendInvite: boolean;
|
|
45514
|
+
teams?: unknown[] | undefined;
|
|
45515
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
44678
45516
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
44679
45517
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
44680
45518
|
reinvite?: boolean | undefined;
|
|
45519
|
+
regenerate?: boolean | undefined;
|
|
44681
45520
|
};
|
|
44682
45521
|
path: {
|
|
44683
45522
|
organization_id_or_slug: string;
|
|
@@ -44686,9 +45525,12 @@ export declare const zAddOrganizationMemberData: z.ZodObject<{
|
|
|
44686
45525
|
}, {
|
|
44687
45526
|
body: {
|
|
44688
45527
|
email: string;
|
|
45528
|
+
teams?: unknown[] | undefined;
|
|
45529
|
+
role?: "member" | "admin" | "manager" | "owner" | undefined;
|
|
44689
45530
|
orgRole?: "member" | "admin" | "manager" | "owner" | "billing" | undefined;
|
|
44690
45531
|
teamRoles?: Record<string, unknown>[] | null | undefined;
|
|
44691
45532
|
reinvite?: boolean | undefined;
|
|
45533
|
+
regenerate?: boolean | undefined;
|
|
44692
45534
|
sendInvite?: boolean | undefined;
|
|
44693
45535
|
};
|
|
44694
45536
|
path: {
|
|
@@ -47048,6 +47890,31 @@ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
|
|
|
47048
47890
|
status: z.ZodOptional<z.ZodEnum<["active", "disabled"]>>;
|
|
47049
47891
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47050
47892
|
is_muted: z.ZodOptional<z.ZodBoolean>;
|
|
47893
|
+
alert_rule: z.ZodOptional<z.ZodObject<{
|
|
47894
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
47895
|
+
targets: z.ZodArray<z.ZodObject<{
|
|
47896
|
+
target_identifier: z.ZodNumber;
|
|
47897
|
+
target_type: z.ZodString;
|
|
47898
|
+
}, "strip", z.ZodTypeAny, {
|
|
47899
|
+
target_identifier: number;
|
|
47900
|
+
target_type: string;
|
|
47901
|
+
}, {
|
|
47902
|
+
target_identifier: number;
|
|
47903
|
+
target_type: string;
|
|
47904
|
+
}>, "many">;
|
|
47905
|
+
}, "strip", z.ZodTypeAny, {
|
|
47906
|
+
targets: {
|
|
47907
|
+
target_identifier: number;
|
|
47908
|
+
target_type: string;
|
|
47909
|
+
}[];
|
|
47910
|
+
environment?: string | null | undefined;
|
|
47911
|
+
}, {
|
|
47912
|
+
targets: {
|
|
47913
|
+
target_identifier: number;
|
|
47914
|
+
target_type: string;
|
|
47915
|
+
}[];
|
|
47916
|
+
environment?: string | null | undefined;
|
|
47917
|
+
}>>;
|
|
47051
47918
|
}, "strip", z.ZodTypeAny, {
|
|
47052
47919
|
name: string;
|
|
47053
47920
|
project: string;
|
|
@@ -47064,6 +47931,13 @@ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
|
|
|
47064
47931
|
status?: "active" | "disabled" | undefined;
|
|
47065
47932
|
slug?: string | undefined;
|
|
47066
47933
|
is_muted?: boolean | undefined;
|
|
47934
|
+
alert_rule?: {
|
|
47935
|
+
targets: {
|
|
47936
|
+
target_identifier: number;
|
|
47937
|
+
target_type: string;
|
|
47938
|
+
}[];
|
|
47939
|
+
environment?: string | null | undefined;
|
|
47940
|
+
} | undefined;
|
|
47067
47941
|
}, {
|
|
47068
47942
|
name: string;
|
|
47069
47943
|
project: string;
|
|
@@ -47080,6 +47954,13 @@ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
|
|
|
47080
47954
|
status?: "active" | "disabled" | undefined;
|
|
47081
47955
|
slug?: string | undefined;
|
|
47082
47956
|
is_muted?: boolean | undefined;
|
|
47957
|
+
alert_rule?: {
|
|
47958
|
+
targets: {
|
|
47959
|
+
target_identifier: number;
|
|
47960
|
+
target_type: string;
|
|
47961
|
+
}[];
|
|
47962
|
+
environment?: string | null | undefined;
|
|
47963
|
+
} | undefined;
|
|
47083
47964
|
}>;
|
|
47084
47965
|
path: z.ZodObject<{
|
|
47085
47966
|
organization_id_or_slug: z.ZodString;
|
|
@@ -47106,6 +47987,13 @@ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
|
|
|
47106
47987
|
status?: "active" | "disabled" | undefined;
|
|
47107
47988
|
slug?: string | undefined;
|
|
47108
47989
|
is_muted?: boolean | undefined;
|
|
47990
|
+
alert_rule?: {
|
|
47991
|
+
targets: {
|
|
47992
|
+
target_identifier: number;
|
|
47993
|
+
target_type: string;
|
|
47994
|
+
}[];
|
|
47995
|
+
environment?: string | null | undefined;
|
|
47996
|
+
} | undefined;
|
|
47109
47997
|
};
|
|
47110
47998
|
path: {
|
|
47111
47999
|
organization_id_or_slug: string;
|
|
@@ -47128,6 +48016,13 @@ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
|
|
|
47128
48016
|
status?: "active" | "disabled" | undefined;
|
|
47129
48017
|
slug?: string | undefined;
|
|
47130
48018
|
is_muted?: boolean | undefined;
|
|
48019
|
+
alert_rule?: {
|
|
48020
|
+
targets: {
|
|
48021
|
+
target_identifier: number;
|
|
48022
|
+
target_type: string;
|
|
48023
|
+
}[];
|
|
48024
|
+
environment?: string | null | undefined;
|
|
48025
|
+
} | undefined;
|
|
47131
48026
|
};
|
|
47132
48027
|
path: {
|
|
47133
48028
|
organization_id_or_slug: string;
|
|
@@ -48201,6 +49096,31 @@ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
|
|
|
48201
49096
|
status: z.ZodOptional<z.ZodEnum<["active", "disabled"]>>;
|
|
48202
49097
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
48203
49098
|
is_muted: z.ZodOptional<z.ZodBoolean>;
|
|
49099
|
+
alert_rule: z.ZodOptional<z.ZodObject<{
|
|
49100
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
49101
|
+
targets: z.ZodArray<z.ZodObject<{
|
|
49102
|
+
target_identifier: z.ZodNumber;
|
|
49103
|
+
target_type: z.ZodString;
|
|
49104
|
+
}, "strip", z.ZodTypeAny, {
|
|
49105
|
+
target_identifier: number;
|
|
49106
|
+
target_type: string;
|
|
49107
|
+
}, {
|
|
49108
|
+
target_identifier: number;
|
|
49109
|
+
target_type: string;
|
|
49110
|
+
}>, "many">;
|
|
49111
|
+
}, "strip", z.ZodTypeAny, {
|
|
49112
|
+
targets: {
|
|
49113
|
+
target_identifier: number;
|
|
49114
|
+
target_type: string;
|
|
49115
|
+
}[];
|
|
49116
|
+
environment?: string | null | undefined;
|
|
49117
|
+
}, {
|
|
49118
|
+
targets: {
|
|
49119
|
+
target_identifier: number;
|
|
49120
|
+
target_type: string;
|
|
49121
|
+
}[];
|
|
49122
|
+
environment?: string | null | undefined;
|
|
49123
|
+
}>>;
|
|
48204
49124
|
}, "strip", z.ZodTypeAny, {
|
|
48205
49125
|
name: string;
|
|
48206
49126
|
project: string;
|
|
@@ -48217,6 +49137,13 @@ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
|
|
|
48217
49137
|
status?: "active" | "disabled" | undefined;
|
|
48218
49138
|
slug?: string | undefined;
|
|
48219
49139
|
is_muted?: boolean | undefined;
|
|
49140
|
+
alert_rule?: {
|
|
49141
|
+
targets: {
|
|
49142
|
+
target_identifier: number;
|
|
49143
|
+
target_type: string;
|
|
49144
|
+
}[];
|
|
49145
|
+
environment?: string | null | undefined;
|
|
49146
|
+
} | undefined;
|
|
48220
49147
|
}, {
|
|
48221
49148
|
name: string;
|
|
48222
49149
|
project: string;
|
|
@@ -48233,6 +49160,13 @@ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
|
|
|
48233
49160
|
status?: "active" | "disabled" | undefined;
|
|
48234
49161
|
slug?: string | undefined;
|
|
48235
49162
|
is_muted?: boolean | undefined;
|
|
49163
|
+
alert_rule?: {
|
|
49164
|
+
targets: {
|
|
49165
|
+
target_identifier: number;
|
|
49166
|
+
target_type: string;
|
|
49167
|
+
}[];
|
|
49168
|
+
environment?: string | null | undefined;
|
|
49169
|
+
} | undefined;
|
|
48236
49170
|
}>;
|
|
48237
49171
|
path: z.ZodObject<{
|
|
48238
49172
|
organization_id_or_slug: z.ZodString;
|
|
@@ -48262,6 +49196,13 @@ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
|
|
|
48262
49196
|
status?: "active" | "disabled" | undefined;
|
|
48263
49197
|
slug?: string | undefined;
|
|
48264
49198
|
is_muted?: boolean | undefined;
|
|
49199
|
+
alert_rule?: {
|
|
49200
|
+
targets: {
|
|
49201
|
+
target_identifier: number;
|
|
49202
|
+
target_type: string;
|
|
49203
|
+
}[];
|
|
49204
|
+
environment?: string | null | undefined;
|
|
49205
|
+
} | undefined;
|
|
48265
49206
|
};
|
|
48266
49207
|
path: {
|
|
48267
49208
|
organization_id_or_slug: string;
|
|
@@ -48285,6 +49226,13 @@ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
|
|
|
48285
49226
|
status?: "active" | "disabled" | undefined;
|
|
48286
49227
|
slug?: string | undefined;
|
|
48287
49228
|
is_muted?: boolean | undefined;
|
|
49229
|
+
alert_rule?: {
|
|
49230
|
+
targets: {
|
|
49231
|
+
target_identifier: number;
|
|
49232
|
+
target_type: string;
|
|
49233
|
+
}[];
|
|
49234
|
+
environment?: string | null | undefined;
|
|
49235
|
+
} | undefined;
|
|
48288
49236
|
};
|
|
48289
49237
|
path: {
|
|
48290
49238
|
organization_id_or_slug: string;
|
|
@@ -48979,20 +49927,26 @@ export declare const zCreateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
48979
49927
|
target_identifier: z.ZodOptional<z.ZodString>;
|
|
48980
49928
|
target_display: z.ZodOptional<z.ZodString>;
|
|
48981
49929
|
projects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
49930
|
+
sentry_app_id: z.ZodOptional<z.ZodNumber>;
|
|
49931
|
+
target_type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
48982
49932
|
}, "strip", z.ZodTypeAny, {
|
|
49933
|
+
target_type: string;
|
|
48983
49934
|
trigger_type: string;
|
|
48984
49935
|
service_type: string;
|
|
48985
49936
|
integration_id?: number | undefined;
|
|
48986
49937
|
projects?: string[] | undefined;
|
|
48987
49938
|
target_identifier?: string | undefined;
|
|
48988
49939
|
target_display?: string | undefined;
|
|
49940
|
+
sentry_app_id?: number | undefined;
|
|
48989
49941
|
}, {
|
|
48990
49942
|
trigger_type: string;
|
|
48991
49943
|
service_type: string;
|
|
48992
49944
|
integration_id?: number | undefined;
|
|
48993
49945
|
projects?: string[] | undefined;
|
|
48994
49946
|
target_identifier?: string | undefined;
|
|
49947
|
+
target_type?: string | undefined;
|
|
48995
49948
|
target_display?: string | undefined;
|
|
49949
|
+
sentry_app_id?: number | undefined;
|
|
48996
49950
|
}>;
|
|
48997
49951
|
path: z.ZodObject<{
|
|
48998
49952
|
organization_id_or_slug: z.ZodString;
|
|
@@ -49004,12 +49958,14 @@ export declare const zCreateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
49004
49958
|
query: z.ZodOptional<z.ZodNever>;
|
|
49005
49959
|
}, "strip", z.ZodTypeAny, {
|
|
49006
49960
|
body: {
|
|
49961
|
+
target_type: string;
|
|
49007
49962
|
trigger_type: string;
|
|
49008
49963
|
service_type: string;
|
|
49009
49964
|
integration_id?: number | undefined;
|
|
49010
49965
|
projects?: string[] | undefined;
|
|
49011
49966
|
target_identifier?: string | undefined;
|
|
49012
49967
|
target_display?: string | undefined;
|
|
49968
|
+
sentry_app_id?: number | undefined;
|
|
49013
49969
|
};
|
|
49014
49970
|
path: {
|
|
49015
49971
|
organization_id_or_slug: string;
|
|
@@ -49022,7 +49978,9 @@ export declare const zCreateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
49022
49978
|
integration_id?: number | undefined;
|
|
49023
49979
|
projects?: string[] | undefined;
|
|
49024
49980
|
target_identifier?: string | undefined;
|
|
49981
|
+
target_type?: string | undefined;
|
|
49025
49982
|
target_display?: string | undefined;
|
|
49983
|
+
sentry_app_id?: number | undefined;
|
|
49026
49984
|
};
|
|
49027
49985
|
path: {
|
|
49028
49986
|
organization_id_or_slug: string;
|
|
@@ -49165,20 +50123,26 @@ export declare const zUpdateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
49165
50123
|
target_identifier: z.ZodOptional<z.ZodString>;
|
|
49166
50124
|
target_display: z.ZodOptional<z.ZodString>;
|
|
49167
50125
|
projects: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50126
|
+
sentry_app_id: z.ZodOptional<z.ZodNumber>;
|
|
50127
|
+
target_type: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
49168
50128
|
}, "strip", z.ZodTypeAny, {
|
|
50129
|
+
target_type: string;
|
|
49169
50130
|
trigger_type: string;
|
|
49170
50131
|
service_type: string;
|
|
49171
50132
|
integration_id?: number | undefined;
|
|
49172
50133
|
projects?: string[] | undefined;
|
|
49173
50134
|
target_identifier?: string | undefined;
|
|
49174
50135
|
target_display?: string | undefined;
|
|
50136
|
+
sentry_app_id?: number | undefined;
|
|
49175
50137
|
}, {
|
|
49176
50138
|
trigger_type: string;
|
|
49177
50139
|
service_type: string;
|
|
49178
50140
|
integration_id?: number | undefined;
|
|
49179
50141
|
projects?: string[] | undefined;
|
|
49180
50142
|
target_identifier?: string | undefined;
|
|
50143
|
+
target_type?: string | undefined;
|
|
49181
50144
|
target_display?: string | undefined;
|
|
50145
|
+
sentry_app_id?: number | undefined;
|
|
49182
50146
|
}>;
|
|
49183
50147
|
path: z.ZodObject<{
|
|
49184
50148
|
organization_id_or_slug: z.ZodString;
|
|
@@ -49193,12 +50157,14 @@ export declare const zUpdateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
49193
50157
|
query: z.ZodOptional<z.ZodNever>;
|
|
49194
50158
|
}, "strip", z.ZodTypeAny, {
|
|
49195
50159
|
body: {
|
|
50160
|
+
target_type: string;
|
|
49196
50161
|
trigger_type: string;
|
|
49197
50162
|
service_type: string;
|
|
49198
50163
|
integration_id?: number | undefined;
|
|
49199
50164
|
projects?: string[] | undefined;
|
|
49200
50165
|
target_identifier?: string | undefined;
|
|
49201
50166
|
target_display?: string | undefined;
|
|
50167
|
+
sentry_app_id?: number | undefined;
|
|
49202
50168
|
};
|
|
49203
50169
|
path: {
|
|
49204
50170
|
organization_id_or_slug: string;
|
|
@@ -49212,7 +50178,9 @@ export declare const zUpdateOrganizationNotificationsActionData: z.ZodObject<{
|
|
|
49212
50178
|
integration_id?: number | undefined;
|
|
49213
50179
|
projects?: string[] | undefined;
|
|
49214
50180
|
target_identifier?: string | undefined;
|
|
50181
|
+
target_type?: string | undefined;
|
|
49215
50182
|
target_display?: string | undefined;
|
|
50183
|
+
sentry_app_id?: number | undefined;
|
|
49216
50184
|
};
|
|
49217
50185
|
path: {
|
|
49218
50186
|
organization_id_or_slug: string;
|
|
@@ -51217,23 +52185,23 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
51217
52185
|
}, "strip", z.ZodTypeAny, {
|
|
51218
52186
|
project: string;
|
|
51219
52187
|
profiler_id: string;
|
|
51220
|
-
end?: string | undefined;
|
|
51221
|
-
start?: string | undefined;
|
|
51222
52188
|
statsPeriod?: string | undefined;
|
|
52189
|
+
start?: string | undefined;
|
|
52190
|
+
end?: string | undefined;
|
|
51223
52191
|
}, {
|
|
51224
52192
|
project: string;
|
|
51225
52193
|
profiler_id: string;
|
|
51226
|
-
end?: string | undefined;
|
|
51227
|
-
start?: string | undefined;
|
|
51228
52194
|
statsPeriod?: string | undefined;
|
|
52195
|
+
start?: string | undefined;
|
|
52196
|
+
end?: string | undefined;
|
|
51229
52197
|
}>;
|
|
51230
52198
|
}, "strip", z.ZodTypeAny, {
|
|
51231
52199
|
query: {
|
|
51232
52200
|
project: string;
|
|
51233
52201
|
profiler_id: string;
|
|
51234
|
-
end?: string | undefined;
|
|
51235
|
-
start?: string | undefined;
|
|
51236
52202
|
statsPeriod?: string | undefined;
|
|
52203
|
+
start?: string | undefined;
|
|
52204
|
+
end?: string | undefined;
|
|
51237
52205
|
};
|
|
51238
52206
|
path: {
|
|
51239
52207
|
organization_id_or_slug: string;
|
|
@@ -51243,9 +52211,9 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
51243
52211
|
query: {
|
|
51244
52212
|
project: string;
|
|
51245
52213
|
profiler_id: string;
|
|
51246
|
-
end?: string | undefined;
|
|
51247
|
-
start?: string | undefined;
|
|
51248
52214
|
statsPeriod?: string | undefined;
|
|
52215
|
+
start?: string | undefined;
|
|
52216
|
+
end?: string | undefined;
|
|
51249
52217
|
};
|
|
51250
52218
|
path: {
|
|
51251
52219
|
organization_id_or_slug: string;
|
|
@@ -51276,9 +52244,9 @@ export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
51276
52244
|
query?: string | undefined;
|
|
51277
52245
|
environment?: string[] | undefined;
|
|
51278
52246
|
project?: (string | number)[] | undefined;
|
|
51279
|
-
end?: string | undefined;
|
|
51280
|
-
start?: string | undefined;
|
|
51281
52247
|
statsPeriod?: string | undefined;
|
|
52248
|
+
start?: string | undefined;
|
|
52249
|
+
end?: string | undefined;
|
|
51282
52250
|
expand?: "metrics"[] | undefined;
|
|
51283
52251
|
dataSource?: "spans" | "functions" | "profiles" | "transactions" | undefined;
|
|
51284
52252
|
fingerprint?: number | undefined;
|
|
@@ -51286,9 +52254,9 @@ export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
51286
52254
|
query?: string | undefined;
|
|
51287
52255
|
environment?: string[] | undefined;
|
|
51288
52256
|
project?: (string | number)[] | undefined;
|
|
51289
|
-
end?: string | undefined;
|
|
51290
|
-
start?: string | undefined;
|
|
51291
52257
|
statsPeriod?: string | undefined;
|
|
52258
|
+
start?: string | undefined;
|
|
52259
|
+
end?: string | undefined;
|
|
51292
52260
|
expand?: "metrics"[] | undefined;
|
|
51293
52261
|
dataSource?: "spans" | "functions" | "profiles" | "transactions" | undefined;
|
|
51294
52262
|
fingerprint?: number | undefined;
|
|
@@ -51301,9 +52269,9 @@ export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
51301
52269
|
query?: string | undefined;
|
|
51302
52270
|
environment?: string[] | undefined;
|
|
51303
52271
|
project?: (string | number)[] | undefined;
|
|
51304
|
-
end?: string | undefined;
|
|
51305
|
-
start?: string | undefined;
|
|
51306
52272
|
statsPeriod?: string | undefined;
|
|
52273
|
+
start?: string | undefined;
|
|
52274
|
+
end?: string | undefined;
|
|
51307
52275
|
expand?: "metrics"[] | undefined;
|
|
51308
52276
|
dataSource?: "spans" | "functions" | "profiles" | "transactions" | undefined;
|
|
51309
52277
|
fingerprint?: number | undefined;
|
|
@@ -51317,9 +52285,9 @@ export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
51317
52285
|
query?: string | undefined;
|
|
51318
52286
|
environment?: string[] | undefined;
|
|
51319
52287
|
project?: (string | number)[] | undefined;
|
|
51320
|
-
end?: string | undefined;
|
|
51321
|
-
start?: string | undefined;
|
|
51322
52288
|
statsPeriod?: string | undefined;
|
|
52289
|
+
start?: string | undefined;
|
|
52290
|
+
end?: string | undefined;
|
|
51323
52291
|
expand?: "metrics"[] | undefined;
|
|
51324
52292
|
dataSource?: "spans" | "functions" | "profiles" | "transactions" | undefined;
|
|
51325
52293
|
fingerprint?: number | undefined;
|
|
@@ -52237,15 +53205,15 @@ export declare const zListOrganizationReleaseThresholdStatusesData: z.ZodObject<
|
|
|
52237
53205
|
release: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
52238
53206
|
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
52239
53207
|
}, "strip", z.ZodTypeAny, {
|
|
52240
|
-
end: string;
|
|
52241
53208
|
start: string;
|
|
53209
|
+
end: string;
|
|
52242
53210
|
environment?: string[] | undefined;
|
|
52243
53211
|
project?: (string | number)[] | undefined;
|
|
52244
53212
|
release?: string[] | undefined;
|
|
52245
53213
|
projectSlug?: string[] | undefined;
|
|
52246
53214
|
}, {
|
|
52247
|
-
end: string;
|
|
52248
53215
|
start: string;
|
|
53216
|
+
end: string;
|
|
52249
53217
|
environment?: string[] | undefined;
|
|
52250
53218
|
project?: (string | number)[] | undefined;
|
|
52251
53219
|
release?: string[] | undefined;
|
|
@@ -52253,8 +53221,8 @@ export declare const zListOrganizationReleaseThresholdStatusesData: z.ZodObject<
|
|
|
52253
53221
|
}>;
|
|
52254
53222
|
}, "strip", z.ZodTypeAny, {
|
|
52255
53223
|
query: {
|
|
52256
|
-
end: string;
|
|
52257
53224
|
start: string;
|
|
53225
|
+
end: string;
|
|
52258
53226
|
environment?: string[] | undefined;
|
|
52259
53227
|
project?: (string | number)[] | undefined;
|
|
52260
53228
|
release?: string[] | undefined;
|
|
@@ -52266,8 +53234,8 @@ export declare const zListOrganizationReleaseThresholdStatusesData: z.ZodObject<
|
|
|
52266
53234
|
body?: undefined;
|
|
52267
53235
|
}, {
|
|
52268
53236
|
query: {
|
|
52269
|
-
end: string;
|
|
52270
53237
|
start: string;
|
|
53238
|
+
end: string;
|
|
52271
53239
|
environment?: string[] | undefined;
|
|
52272
53240
|
project?: (string | number)[] | undefined;
|
|
52273
53241
|
release?: string[] | undefined;
|
|
@@ -52298,8 +53266,8 @@ export declare const zListOrganizationReleaseThresholdStatusesResponse: z.ZodRec
|
|
|
52298
53266
|
}, "strip", z.ZodTypeAny, {
|
|
52299
53267
|
key: string;
|
|
52300
53268
|
project_id: number;
|
|
52301
|
-
end: string;
|
|
52302
53269
|
start: string;
|
|
53270
|
+
end: string;
|
|
52303
53271
|
project_slug: string;
|
|
52304
53272
|
metric_value: number | Record<string, unknown> | null;
|
|
52305
53273
|
is_healthy: boolean;
|
|
@@ -52315,8 +53283,8 @@ export declare const zListOrganizationReleaseThresholdStatusesResponse: z.ZodRec
|
|
|
52315
53283
|
}, {
|
|
52316
53284
|
key: string;
|
|
52317
53285
|
project_id: number;
|
|
52318
|
-
end: string;
|
|
52319
53286
|
start: string;
|
|
53287
|
+
end: string;
|
|
52320
53288
|
project_slug: string;
|
|
52321
53289
|
metric_value: number | Record<string, unknown> | null;
|
|
52322
53290
|
is_healthy: boolean;
|
|
@@ -53077,16 +54045,16 @@ export declare const zCreateOrganizationReleaseData: z.ZodObject<{
|
|
|
53077
54045
|
type: string;
|
|
53078
54046
|
}[] | null | undefined;
|
|
53079
54047
|
}[] | undefined;
|
|
53080
|
-
refs?: {
|
|
53081
|
-
repository: string;
|
|
53082
|
-
commit: string;
|
|
53083
|
-
previousCommit?: string | null | undefined;
|
|
53084
|
-
}[] | undefined;
|
|
53085
54048
|
headCommits?: {
|
|
53086
54049
|
repository: string;
|
|
53087
54050
|
currentId: string;
|
|
53088
54051
|
previousId?: string | null | undefined;
|
|
53089
54052
|
}[] | undefined;
|
|
54053
|
+
refs?: {
|
|
54054
|
+
repository: string;
|
|
54055
|
+
commit: string;
|
|
54056
|
+
previousCommit?: string | null | undefined;
|
|
54057
|
+
}[] | undefined;
|
|
53090
54058
|
}, {
|
|
53091
54059
|
version: string;
|
|
53092
54060
|
projects: unknown[];
|
|
@@ -53107,16 +54075,16 @@ export declare const zCreateOrganizationReleaseData: z.ZodObject<{
|
|
|
53107
54075
|
type: string;
|
|
53108
54076
|
}[] | null | undefined;
|
|
53109
54077
|
}[] | undefined;
|
|
53110
|
-
refs?: {
|
|
53111
|
-
repository: string;
|
|
53112
|
-
commit: string;
|
|
53113
|
-
previousCommit?: string | null | undefined;
|
|
53114
|
-
}[] | undefined;
|
|
53115
54078
|
headCommits?: {
|
|
53116
54079
|
repository: string;
|
|
53117
54080
|
currentId: string;
|
|
53118
54081
|
previousId?: string | null | undefined;
|
|
53119
54082
|
}[] | undefined;
|
|
54083
|
+
refs?: {
|
|
54084
|
+
repository: string;
|
|
54085
|
+
commit: string;
|
|
54086
|
+
previousCommit?: string | null | undefined;
|
|
54087
|
+
}[] | undefined;
|
|
53120
54088
|
}>;
|
|
53121
54089
|
path: z.ZodObject<{
|
|
53122
54090
|
organization_id_or_slug: z.ZodString;
|
|
@@ -53147,16 +54115,16 @@ export declare const zCreateOrganizationReleaseData: z.ZodObject<{
|
|
|
53147
54115
|
type: string;
|
|
53148
54116
|
}[] | null | undefined;
|
|
53149
54117
|
}[] | undefined;
|
|
53150
|
-
refs?: {
|
|
53151
|
-
repository: string;
|
|
53152
|
-
commit: string;
|
|
53153
|
-
previousCommit?: string | null | undefined;
|
|
53154
|
-
}[] | undefined;
|
|
53155
54118
|
headCommits?: {
|
|
53156
54119
|
repository: string;
|
|
53157
54120
|
currentId: string;
|
|
53158
54121
|
previousId?: string | null | undefined;
|
|
53159
54122
|
}[] | undefined;
|
|
54123
|
+
refs?: {
|
|
54124
|
+
repository: string;
|
|
54125
|
+
commit: string;
|
|
54126
|
+
previousCommit?: string | null | undefined;
|
|
54127
|
+
}[] | undefined;
|
|
53160
54128
|
};
|
|
53161
54129
|
path: {
|
|
53162
54130
|
organization_id_or_slug: string;
|
|
@@ -53183,16 +54151,16 @@ export declare const zCreateOrganizationReleaseData: z.ZodObject<{
|
|
|
53183
54151
|
type: string;
|
|
53184
54152
|
}[] | null | undefined;
|
|
53185
54153
|
}[] | undefined;
|
|
53186
|
-
refs?: {
|
|
53187
|
-
repository: string;
|
|
53188
|
-
commit: string;
|
|
53189
|
-
previousCommit?: string | null | undefined;
|
|
53190
|
-
}[] | undefined;
|
|
53191
54154
|
headCommits?: {
|
|
53192
54155
|
repository: string;
|
|
53193
54156
|
currentId: string;
|
|
53194
54157
|
previousId?: string | null | undefined;
|
|
53195
54158
|
}[] | undefined;
|
|
54159
|
+
refs?: {
|
|
54160
|
+
repository: string;
|
|
54161
|
+
commit: string;
|
|
54162
|
+
previousCommit?: string | null | undefined;
|
|
54163
|
+
}[] | undefined;
|
|
53196
54164
|
};
|
|
53197
54165
|
path: {
|
|
53198
54166
|
organization_id_or_slug: string;
|
|
@@ -54552,6 +55520,20 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54552
55520
|
type: string;
|
|
54553
55521
|
}[] | null | undefined;
|
|
54554
55522
|
}>, "many">>;
|
|
55523
|
+
status: z.ZodOptional<z.ZodString>;
|
|
55524
|
+
headCommits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
55525
|
+
currentId: z.ZodString;
|
|
55526
|
+
repository: z.ZodString;
|
|
55527
|
+
previousId: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
55528
|
+
}, "strip", z.ZodTypeAny, {
|
|
55529
|
+
repository: string;
|
|
55530
|
+
currentId: string;
|
|
55531
|
+
previousId?: string | null | undefined;
|
|
55532
|
+
}, {
|
|
55533
|
+
repository: string;
|
|
55534
|
+
currentId: string;
|
|
55535
|
+
previousId?: string | null | undefined;
|
|
55536
|
+
}>, "many">>;
|
|
54555
55537
|
refs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
54556
55538
|
commit: z.ZodString;
|
|
54557
55539
|
repository: z.ZodString;
|
|
@@ -54567,6 +55549,7 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54567
55549
|
}>, "many">>;
|
|
54568
55550
|
}, "strip", z.ZodTypeAny, {
|
|
54569
55551
|
url?: string | null | undefined;
|
|
55552
|
+
status?: string | undefined;
|
|
54570
55553
|
ref?: string | null | undefined;
|
|
54571
55554
|
dateReleased?: string | null | undefined;
|
|
54572
55555
|
commits?: {
|
|
@@ -54581,6 +55564,11 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54581
55564
|
type: string;
|
|
54582
55565
|
}[] | null | undefined;
|
|
54583
55566
|
}[] | undefined;
|
|
55567
|
+
headCommits?: {
|
|
55568
|
+
repository: string;
|
|
55569
|
+
currentId: string;
|
|
55570
|
+
previousId?: string | null | undefined;
|
|
55571
|
+
}[] | undefined;
|
|
54584
55572
|
refs?: {
|
|
54585
55573
|
repository: string;
|
|
54586
55574
|
commit: string;
|
|
@@ -54588,6 +55576,7 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54588
55576
|
}[] | undefined;
|
|
54589
55577
|
}, {
|
|
54590
55578
|
url?: string | null | undefined;
|
|
55579
|
+
status?: string | undefined;
|
|
54591
55580
|
ref?: string | null | undefined;
|
|
54592
55581
|
dateReleased?: string | null | undefined;
|
|
54593
55582
|
commits?: {
|
|
@@ -54602,6 +55591,11 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54602
55591
|
type: string;
|
|
54603
55592
|
}[] | null | undefined;
|
|
54604
55593
|
}[] | undefined;
|
|
55594
|
+
headCommits?: {
|
|
55595
|
+
repository: string;
|
|
55596
|
+
currentId: string;
|
|
55597
|
+
previousId?: string | null | undefined;
|
|
55598
|
+
}[] | undefined;
|
|
54605
55599
|
refs?: {
|
|
54606
55600
|
repository: string;
|
|
54607
55601
|
commit: string;
|
|
@@ -54627,6 +55621,7 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54627
55621
|
query?: undefined;
|
|
54628
55622
|
body?: {
|
|
54629
55623
|
url?: string | null | undefined;
|
|
55624
|
+
status?: string | undefined;
|
|
54630
55625
|
ref?: string | null | undefined;
|
|
54631
55626
|
dateReleased?: string | null | undefined;
|
|
54632
55627
|
commits?: {
|
|
@@ -54641,6 +55636,11 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54641
55636
|
type: string;
|
|
54642
55637
|
}[] | null | undefined;
|
|
54643
55638
|
}[] | undefined;
|
|
55639
|
+
headCommits?: {
|
|
55640
|
+
repository: string;
|
|
55641
|
+
currentId: string;
|
|
55642
|
+
previousId?: string | null | undefined;
|
|
55643
|
+
}[] | undefined;
|
|
54644
55644
|
refs?: {
|
|
54645
55645
|
repository: string;
|
|
54646
55646
|
commit: string;
|
|
@@ -54655,6 +55655,7 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54655
55655
|
query?: undefined;
|
|
54656
55656
|
body?: {
|
|
54657
55657
|
url?: string | null | undefined;
|
|
55658
|
+
status?: string | undefined;
|
|
54658
55659
|
ref?: string | null | undefined;
|
|
54659
55660
|
dateReleased?: string | null | undefined;
|
|
54660
55661
|
commits?: {
|
|
@@ -54669,6 +55670,11 @@ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
|
|
|
54669
55670
|
type: string;
|
|
54670
55671
|
}[] | null | undefined;
|
|
54671
55672
|
}[] | undefined;
|
|
55673
|
+
headCommits?: {
|
|
55674
|
+
repository: string;
|
|
55675
|
+
currentId: string;
|
|
55676
|
+
previousId?: string | null | undefined;
|
|
55677
|
+
}[] | undefined;
|
|
54672
55678
|
refs?: {
|
|
54673
55679
|
repository: string;
|
|
54674
55680
|
commit: string;
|
|
@@ -56762,9 +57768,9 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
56762
57768
|
query?: string | undefined;
|
|
56763
57769
|
environment?: string[] | undefined;
|
|
56764
57770
|
project?: (string | number)[] | undefined;
|
|
56765
|
-
end?: string | undefined;
|
|
56766
|
-
start?: string | undefined;
|
|
56767
57771
|
statsPeriod?: string | undefined;
|
|
57772
|
+
start?: string | undefined;
|
|
57773
|
+
end?: string | undefined;
|
|
56768
57774
|
project_id_or_slug?: string[] | undefined;
|
|
56769
57775
|
returnIds?: boolean | undefined;
|
|
56770
57776
|
}, {
|
|
@@ -56772,9 +57778,9 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
56772
57778
|
query?: string | undefined;
|
|
56773
57779
|
environment?: string[] | undefined;
|
|
56774
57780
|
project?: (string | number)[] | undefined;
|
|
56775
|
-
end?: string | undefined;
|
|
56776
|
-
start?: string | undefined;
|
|
56777
57781
|
statsPeriod?: string | undefined;
|
|
57782
|
+
start?: string | undefined;
|
|
57783
|
+
end?: string | undefined;
|
|
56778
57784
|
project_id_or_slug?: string[] | undefined;
|
|
56779
57785
|
returnIds?: boolean | undefined;
|
|
56780
57786
|
}>;
|
|
@@ -56784,9 +57790,9 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
56784
57790
|
query?: string | undefined;
|
|
56785
57791
|
environment?: string[] | undefined;
|
|
56786
57792
|
project?: (string | number)[] | undefined;
|
|
56787
|
-
end?: string | undefined;
|
|
56788
|
-
start?: string | undefined;
|
|
56789
57793
|
statsPeriod?: string | undefined;
|
|
57794
|
+
start?: string | undefined;
|
|
57795
|
+
end?: string | undefined;
|
|
56790
57796
|
project_id_or_slug?: string[] | undefined;
|
|
56791
57797
|
returnIds?: boolean | undefined;
|
|
56792
57798
|
};
|
|
@@ -56800,9 +57806,9 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
56800
57806
|
query?: string | undefined;
|
|
56801
57807
|
environment?: string[] | undefined;
|
|
56802
57808
|
project?: (string | number)[] | undefined;
|
|
56803
|
-
end?: string | undefined;
|
|
56804
|
-
start?: string | undefined;
|
|
56805
57809
|
statsPeriod?: string | undefined;
|
|
57810
|
+
start?: string | undefined;
|
|
57811
|
+
end?: string | undefined;
|
|
56806
57812
|
project_id_or_slug?: string[] | undefined;
|
|
56807
57813
|
returnIds?: boolean | undefined;
|
|
56808
57814
|
};
|
|
@@ -56842,9 +57848,9 @@ export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
|
|
|
56842
57848
|
cursor?: string | undefined;
|
|
56843
57849
|
sortBy?: string | undefined;
|
|
56844
57850
|
per_page?: number | undefined;
|
|
56845
|
-
end?: string | undefined;
|
|
56846
|
-
start?: string | undefined;
|
|
56847
57851
|
statsPeriod?: string | undefined;
|
|
57852
|
+
start?: string | undefined;
|
|
57853
|
+
end?: string | undefined;
|
|
56848
57854
|
projectSlug?: string[] | undefined;
|
|
56849
57855
|
orderBy?: string | undefined;
|
|
56850
57856
|
}, {
|
|
@@ -56855,9 +57861,9 @@ export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
|
|
|
56855
57861
|
cursor?: string | undefined;
|
|
56856
57862
|
sortBy?: string | undefined;
|
|
56857
57863
|
per_page?: number | undefined;
|
|
56858
|
-
end?: string | undefined;
|
|
56859
|
-
start?: string | undefined;
|
|
56860
57864
|
statsPeriod?: string | undefined;
|
|
57865
|
+
start?: string | undefined;
|
|
57866
|
+
end?: string | undefined;
|
|
56861
57867
|
projectSlug?: string[] | undefined;
|
|
56862
57868
|
orderBy?: string | undefined;
|
|
56863
57869
|
}>>;
|
|
@@ -56873,9 +57879,9 @@ export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
|
|
|
56873
57879
|
cursor?: string | undefined;
|
|
56874
57880
|
sortBy?: string | undefined;
|
|
56875
57881
|
per_page?: number | undefined;
|
|
56876
|
-
end?: string | undefined;
|
|
56877
|
-
start?: string | undefined;
|
|
56878
57882
|
statsPeriod?: string | undefined;
|
|
57883
|
+
start?: string | undefined;
|
|
57884
|
+
end?: string | undefined;
|
|
56879
57885
|
projectSlug?: string[] | undefined;
|
|
56880
57886
|
orderBy?: string | undefined;
|
|
56881
57887
|
} | undefined;
|
|
@@ -56892,9 +57898,9 @@ export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
|
|
|
56892
57898
|
cursor?: string | undefined;
|
|
56893
57899
|
sortBy?: string | undefined;
|
|
56894
57900
|
per_page?: number | undefined;
|
|
56895
|
-
end?: string | undefined;
|
|
56896
|
-
start?: string | undefined;
|
|
56897
57901
|
statsPeriod?: string | undefined;
|
|
57902
|
+
start?: string | undefined;
|
|
57903
|
+
end?: string | undefined;
|
|
56898
57904
|
projectSlug?: string[] | undefined;
|
|
56899
57905
|
orderBy?: string | undefined;
|
|
56900
57906
|
} | undefined;
|
|
@@ -57039,10 +58045,10 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
57039
58045
|
cursor?: string | undefined;
|
|
57040
58046
|
sortBy?: string | undefined;
|
|
57041
58047
|
per_page?: number | undefined;
|
|
57042
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57043
|
-
end?: string | undefined;
|
|
57044
|
-
start?: string | undefined;
|
|
57045
58048
|
statsPeriod?: string | undefined;
|
|
58049
|
+
start?: string | undefined;
|
|
58050
|
+
end?: string | undefined;
|
|
58051
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57046
58052
|
projectSlug?: string[] | undefined;
|
|
57047
58053
|
orderBy?: string | undefined;
|
|
57048
58054
|
queryReferrer?: string | undefined;
|
|
@@ -57054,10 +58060,10 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
57054
58060
|
cursor?: string | undefined;
|
|
57055
58061
|
sortBy?: string | undefined;
|
|
57056
58062
|
per_page?: number | undefined;
|
|
57057
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57058
|
-
end?: string | undefined;
|
|
57059
|
-
start?: string | undefined;
|
|
57060
58063
|
statsPeriod?: string | undefined;
|
|
58064
|
+
start?: string | undefined;
|
|
58065
|
+
end?: string | undefined;
|
|
58066
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57061
58067
|
projectSlug?: string[] | undefined;
|
|
57062
58068
|
orderBy?: string | undefined;
|
|
57063
58069
|
queryReferrer?: string | undefined;
|
|
@@ -57074,10 +58080,10 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
57074
58080
|
cursor?: string | undefined;
|
|
57075
58081
|
sortBy?: string | undefined;
|
|
57076
58082
|
per_page?: number | undefined;
|
|
57077
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57078
|
-
end?: string | undefined;
|
|
57079
|
-
start?: string | undefined;
|
|
57080
58083
|
statsPeriod?: string | undefined;
|
|
58084
|
+
start?: string | undefined;
|
|
58085
|
+
end?: string | undefined;
|
|
58086
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57081
58087
|
projectSlug?: string[] | undefined;
|
|
57082
58088
|
orderBy?: string | undefined;
|
|
57083
58089
|
queryReferrer?: string | undefined;
|
|
@@ -57095,10 +58101,10 @@ export declare const zListOrganizationReplaysData: z.ZodObject<{
|
|
|
57095
58101
|
cursor?: string | undefined;
|
|
57096
58102
|
sortBy?: string | undefined;
|
|
57097
58103
|
per_page?: number | undefined;
|
|
57098
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57099
|
-
end?: string | undefined;
|
|
57100
|
-
start?: string | undefined;
|
|
57101
58104
|
statsPeriod?: string | undefined;
|
|
58105
|
+
start?: string | undefined;
|
|
58106
|
+
end?: string | undefined;
|
|
58107
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57102
58108
|
projectSlug?: string[] | undefined;
|
|
57103
58109
|
orderBy?: string | undefined;
|
|
57104
58110
|
queryReferrer?: string | undefined;
|
|
@@ -57532,10 +58538,10 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
57532
58538
|
cursor?: string | undefined;
|
|
57533
58539
|
sortBy?: string | undefined;
|
|
57534
58540
|
per_page?: number | undefined;
|
|
57535
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57536
|
-
end?: string | undefined;
|
|
57537
|
-
start?: string | undefined;
|
|
57538
58541
|
statsPeriod?: string | undefined;
|
|
58542
|
+
start?: string | undefined;
|
|
58543
|
+
end?: string | undefined;
|
|
58544
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57539
58545
|
projectSlug?: string[] | undefined;
|
|
57540
58546
|
orderBy?: string | undefined;
|
|
57541
58547
|
queryReferrer?: string | undefined;
|
|
@@ -57547,10 +58553,10 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
57547
58553
|
cursor?: string | undefined;
|
|
57548
58554
|
sortBy?: string | undefined;
|
|
57549
58555
|
per_page?: number | undefined;
|
|
57550
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57551
|
-
end?: string | undefined;
|
|
57552
|
-
start?: string | undefined;
|
|
57553
58556
|
statsPeriod?: string | undefined;
|
|
58557
|
+
start?: string | undefined;
|
|
58558
|
+
end?: string | undefined;
|
|
58559
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57554
58560
|
projectSlug?: string[] | undefined;
|
|
57555
58561
|
orderBy?: string | undefined;
|
|
57556
58562
|
queryReferrer?: string | undefined;
|
|
@@ -57568,10 +58574,10 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
57568
58574
|
cursor?: string | undefined;
|
|
57569
58575
|
sortBy?: string | undefined;
|
|
57570
58576
|
per_page?: number | undefined;
|
|
57571
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57572
|
-
end?: string | undefined;
|
|
57573
|
-
start?: string | undefined;
|
|
57574
58577
|
statsPeriod?: string | undefined;
|
|
58578
|
+
start?: string | undefined;
|
|
58579
|
+
end?: string | undefined;
|
|
58580
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57575
58581
|
projectSlug?: string[] | undefined;
|
|
57576
58582
|
orderBy?: string | undefined;
|
|
57577
58583
|
queryReferrer?: string | undefined;
|
|
@@ -57590,10 +58596,10 @@ export declare const zGetOrganizationReplayData: z.ZodObject<{
|
|
|
57590
58596
|
cursor?: string | undefined;
|
|
57591
58597
|
sortBy?: string | undefined;
|
|
57592
58598
|
per_page?: number | undefined;
|
|
57593
|
-
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57594
|
-
end?: string | undefined;
|
|
57595
|
-
start?: string | undefined;
|
|
57596
58599
|
statsPeriod?: string | undefined;
|
|
58600
|
+
start?: string | undefined;
|
|
58601
|
+
end?: string | undefined;
|
|
58602
|
+
field?: ("user" | "activity" | "browser" | "count_dead_clicks" | "count_errors" | "count_rage_clicks" | "count_segments" | "count_urls" | "device" | "dist" | "duration" | "environment" | "error_ids" | "finished_at" | "id" | "is_archived" | "os" | "platform" | "project_id" | "releases" | "sdk" | "started_at" | "tags" | "trace_ids" | "segment_names" | "urls" | "clicks" | "info_ids" | "warning_ids" | "count_warnings" | "count_infos" | "has_viewed")[] | undefined;
|
|
57597
58603
|
projectSlug?: string[] | undefined;
|
|
57598
58604
|
orderBy?: string | undefined;
|
|
57599
58605
|
queryReferrer?: string | undefined;
|
|
@@ -59362,6 +60368,7 @@ export declare const zGetOrganizationScimV2GroupResponse: z.ZodObject<{
|
|
|
59362
60368
|
}>;
|
|
59363
60369
|
export declare const zUpdateOrganizationScimV2GroupData: z.ZodObject<{
|
|
59364
60370
|
body: z.ZodObject<{
|
|
60371
|
+
schemas: z.ZodArray<z.ZodString, "many">;
|
|
59365
60372
|
Operations: z.ZodArray<z.ZodObject<{
|
|
59366
60373
|
op: z.ZodString;
|
|
59367
60374
|
value: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -59376,12 +60383,14 @@ export declare const zUpdateOrganizationScimV2GroupData: z.ZodObject<{
|
|
|
59376
60383
|
path?: string | undefined;
|
|
59377
60384
|
}>, "many">;
|
|
59378
60385
|
}, "strip", z.ZodTypeAny, {
|
|
60386
|
+
schemas: string[];
|
|
59379
60387
|
Operations: {
|
|
59380
60388
|
op: string;
|
|
59381
60389
|
value?: Record<string, unknown> | undefined;
|
|
59382
60390
|
path?: string | undefined;
|
|
59383
60391
|
}[];
|
|
59384
60392
|
}, {
|
|
60393
|
+
schemas: string[];
|
|
59385
60394
|
Operations: {
|
|
59386
60395
|
op: string;
|
|
59387
60396
|
value?: Record<string, unknown> | undefined;
|
|
@@ -59401,6 +60410,7 @@ export declare const zUpdateOrganizationScimV2GroupData: z.ZodObject<{
|
|
|
59401
60410
|
query: z.ZodOptional<z.ZodNever>;
|
|
59402
60411
|
}, "strip", z.ZodTypeAny, {
|
|
59403
60412
|
body: {
|
|
60413
|
+
schemas: string[];
|
|
59404
60414
|
Operations: {
|
|
59405
60415
|
op: string;
|
|
59406
60416
|
value?: Record<string, unknown> | undefined;
|
|
@@ -59414,6 +60424,7 @@ export declare const zUpdateOrganizationScimV2GroupData: z.ZodObject<{
|
|
|
59414
60424
|
query?: undefined;
|
|
59415
60425
|
}, {
|
|
59416
60426
|
body: {
|
|
60427
|
+
schemas: string[];
|
|
59417
60428
|
Operations: {
|
|
59418
60429
|
op: string;
|
|
59419
60430
|
value?: Record<string, unknown> | undefined;
|
|
@@ -59872,18 +60883,21 @@ export declare const zUpdateOrganizationScimV2UserData: z.ZodObject<{
|
|
|
59872
60883
|
value?: unknown;
|
|
59873
60884
|
path?: string | undefined;
|
|
59874
60885
|
}>, "many">;
|
|
60886
|
+
schemas: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59875
60887
|
}, "strip", z.ZodTypeAny, {
|
|
59876
60888
|
Operations: {
|
|
59877
60889
|
op: string;
|
|
59878
60890
|
value?: unknown;
|
|
59879
60891
|
path?: string | undefined;
|
|
59880
60892
|
}[];
|
|
60893
|
+
schemas?: string[] | undefined;
|
|
59881
60894
|
}, {
|
|
59882
60895
|
Operations: {
|
|
59883
60896
|
op: string;
|
|
59884
60897
|
value?: unknown;
|
|
59885
60898
|
path?: string | undefined;
|
|
59886
60899
|
}[];
|
|
60900
|
+
schemas?: string[] | undefined;
|
|
59887
60901
|
}>;
|
|
59888
60902
|
path: z.ZodObject<{
|
|
59889
60903
|
organization_id_or_slug: z.ZodString;
|
|
@@ -59903,6 +60917,7 @@ export declare const zUpdateOrganizationScimV2UserData: z.ZodObject<{
|
|
|
59903
60917
|
value?: unknown;
|
|
59904
60918
|
path?: string | undefined;
|
|
59905
60919
|
}[];
|
|
60920
|
+
schemas?: string[] | undefined;
|
|
59906
60921
|
};
|
|
59907
60922
|
path: {
|
|
59908
60923
|
organization_id_or_slug: string;
|
|
@@ -59916,6 +60931,7 @@ export declare const zUpdateOrganizationScimV2UserData: z.ZodObject<{
|
|
|
59916
60931
|
value?: unknown;
|
|
59917
60932
|
path?: string | undefined;
|
|
59918
60933
|
}[];
|
|
60934
|
+
schemas?: string[] | undefined;
|
|
59919
60935
|
};
|
|
59920
60936
|
path: {
|
|
59921
60937
|
organization_id_or_slug: string;
|
|
@@ -60104,9 +61120,9 @@ export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
|
60104
61120
|
environment?: string[] | undefined;
|
|
60105
61121
|
project?: (string | number)[] | undefined;
|
|
60106
61122
|
per_page?: number | undefined;
|
|
60107
|
-
end?: string | undefined;
|
|
60108
|
-
start?: string | undefined;
|
|
60109
61123
|
statsPeriod?: string | undefined;
|
|
61124
|
+
start?: string | undefined;
|
|
61125
|
+
end?: string | undefined;
|
|
60110
61126
|
groupBy?: string[] | undefined;
|
|
60111
61127
|
orderBy?: string | undefined;
|
|
60112
61128
|
includeTotals?: number | undefined;
|
|
@@ -60118,9 +61134,9 @@ export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
|
60118
61134
|
environment?: string[] | undefined;
|
|
60119
61135
|
project?: (string | number)[] | undefined;
|
|
60120
61136
|
per_page?: number | undefined;
|
|
60121
|
-
end?: string | undefined;
|
|
60122
|
-
start?: string | undefined;
|
|
60123
61137
|
statsPeriod?: string | undefined;
|
|
61138
|
+
start?: string | undefined;
|
|
61139
|
+
end?: string | undefined;
|
|
60124
61140
|
groupBy?: string[] | undefined;
|
|
60125
61141
|
orderBy?: string | undefined;
|
|
60126
61142
|
includeTotals?: number | undefined;
|
|
@@ -60134,9 +61150,9 @@ export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
|
60134
61150
|
environment?: string[] | undefined;
|
|
60135
61151
|
project?: (string | number)[] | undefined;
|
|
60136
61152
|
per_page?: number | undefined;
|
|
60137
|
-
end?: string | undefined;
|
|
60138
|
-
start?: string | undefined;
|
|
60139
61153
|
statsPeriod?: string | undefined;
|
|
61154
|
+
start?: string | undefined;
|
|
61155
|
+
end?: string | undefined;
|
|
60140
61156
|
groupBy?: string[] | undefined;
|
|
60141
61157
|
orderBy?: string | undefined;
|
|
60142
61158
|
includeTotals?: number | undefined;
|
|
@@ -60154,9 +61170,9 @@ export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
|
60154
61170
|
environment?: string[] | undefined;
|
|
60155
61171
|
project?: (string | number)[] | undefined;
|
|
60156
61172
|
per_page?: number | undefined;
|
|
60157
|
-
end?: string | undefined;
|
|
60158
|
-
start?: string | undefined;
|
|
60159
61173
|
statsPeriod?: string | undefined;
|
|
61174
|
+
start?: string | undefined;
|
|
61175
|
+
end?: string | undefined;
|
|
60160
61176
|
groupBy?: string[] | undefined;
|
|
60161
61177
|
orderBy?: string | undefined;
|
|
60162
61178
|
includeTotals?: number | undefined;
|
|
@@ -60212,8 +61228,8 @@ export declare const zGetOrganizationSessionsResponse: z.ZodObject<{
|
|
|
60212
61228
|
query: z.ZodString;
|
|
60213
61229
|
}, "strip", z.ZodTypeAny, {
|
|
60214
61230
|
query: string;
|
|
60215
|
-
end: string;
|
|
60216
61231
|
start: string;
|
|
61232
|
+
end: string;
|
|
60217
61233
|
groups: {
|
|
60218
61234
|
by: {
|
|
60219
61235
|
environment?: string | undefined;
|
|
@@ -60227,8 +61243,8 @@ export declare const zGetOrganizationSessionsResponse: z.ZodObject<{
|
|
|
60227
61243
|
intervals: string[];
|
|
60228
61244
|
}, {
|
|
60229
61245
|
query: string;
|
|
60230
|
-
end: string;
|
|
60231
61246
|
start: string;
|
|
61247
|
+
end: string;
|
|
60232
61248
|
groups: {
|
|
60233
61249
|
by: {
|
|
60234
61250
|
environment?: string | undefined;
|
|
@@ -61253,9 +62269,9 @@ export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
61253
62269
|
category?: "error" | "transaction" | "profiles" | "attachment" | "replays" | undefined;
|
|
61254
62270
|
reason?: string | undefined;
|
|
61255
62271
|
project?: unknown[] | undefined;
|
|
61256
|
-
end?: string | undefined;
|
|
61257
|
-
start?: string | undefined;
|
|
61258
62272
|
statsPeriod?: string | undefined;
|
|
62273
|
+
start?: string | undefined;
|
|
62274
|
+
end?: string | undefined;
|
|
61259
62275
|
download?: boolean | undefined;
|
|
61260
62276
|
}, {
|
|
61261
62277
|
field: "sum(quantity)" | "sum(times_seen)";
|
|
@@ -61264,9 +62280,9 @@ export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
61264
62280
|
category?: "error" | "transaction" | "profiles" | "attachment" | "replays" | undefined;
|
|
61265
62281
|
reason?: string | undefined;
|
|
61266
62282
|
project?: unknown[] | undefined;
|
|
61267
|
-
end?: string | undefined;
|
|
61268
|
-
start?: string | undefined;
|
|
61269
62283
|
statsPeriod?: string | undefined;
|
|
62284
|
+
start?: string | undefined;
|
|
62285
|
+
end?: string | undefined;
|
|
61270
62286
|
download?: boolean | undefined;
|
|
61271
62287
|
}>;
|
|
61272
62288
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -61277,9 +62293,9 @@ export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
61277
62293
|
category?: "error" | "transaction" | "profiles" | "attachment" | "replays" | undefined;
|
|
61278
62294
|
reason?: string | undefined;
|
|
61279
62295
|
project?: unknown[] | undefined;
|
|
61280
|
-
end?: string | undefined;
|
|
61281
|
-
start?: string | undefined;
|
|
61282
62296
|
statsPeriod?: string | undefined;
|
|
62297
|
+
start?: string | undefined;
|
|
62298
|
+
end?: string | undefined;
|
|
61283
62299
|
download?: boolean | undefined;
|
|
61284
62300
|
};
|
|
61285
62301
|
path: {
|
|
@@ -61294,9 +62310,9 @@ export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
61294
62310
|
category?: "error" | "transaction" | "profiles" | "attachment" | "replays" | undefined;
|
|
61295
62311
|
reason?: string | undefined;
|
|
61296
62312
|
project?: unknown[] | undefined;
|
|
61297
|
-
end?: string | undefined;
|
|
61298
|
-
start?: string | undefined;
|
|
61299
62313
|
statsPeriod?: string | undefined;
|
|
62314
|
+
start?: string | undefined;
|
|
62315
|
+
end?: string | undefined;
|
|
61300
62316
|
download?: boolean | undefined;
|
|
61301
62317
|
};
|
|
61302
62318
|
path: {
|
|
@@ -61321,16 +62337,16 @@ export declare const zGetOrganizationStatsSummaryResponse: z.ZodObject<{
|
|
|
61321
62337
|
slug: string;
|
|
61322
62338
|
}>, "many">;
|
|
61323
62339
|
}, "strip", z.ZodTypeAny, {
|
|
61324
|
-
end: string;
|
|
61325
62340
|
start: string;
|
|
62341
|
+
end: string;
|
|
61326
62342
|
projects: {
|
|
61327
62343
|
stats: Record<string, unknown>[];
|
|
61328
62344
|
id: string;
|
|
61329
62345
|
slug: string;
|
|
61330
62346
|
}[];
|
|
61331
62347
|
}, {
|
|
61332
|
-
end: string;
|
|
61333
62348
|
start: string;
|
|
62349
|
+
end: string;
|
|
61334
62350
|
projects: {
|
|
61335
62351
|
stats: Record<string, unknown>[];
|
|
61336
62352
|
id: string;
|
|
@@ -61365,9 +62381,9 @@ export declare const zListOrganizationStatsV2Data: z.ZodObject<{
|
|
|
61365
62381
|
category?: "error" | "transaction" | "attachment" | "replay" | "profile" | "profile_duration" | "profile_duration_ui" | "profile_chunk" | "profile_chunk_ui" | "monitor" | undefined;
|
|
61366
62382
|
reason?: string | undefined;
|
|
61367
62383
|
project?: unknown[] | undefined;
|
|
61368
|
-
end?: string | undefined;
|
|
61369
|
-
start?: string | undefined;
|
|
61370
62384
|
statsPeriod?: string | undefined;
|
|
62385
|
+
start?: string | undefined;
|
|
62386
|
+
end?: string | undefined;
|
|
61371
62387
|
}, {
|
|
61372
62388
|
field: "sum(quantity)" | "sum(times_seen)";
|
|
61373
62389
|
groupBy: ("outcome" | "category" | "reason" | "project")[];
|
|
@@ -61376,9 +62392,9 @@ export declare const zListOrganizationStatsV2Data: z.ZodObject<{
|
|
|
61376
62392
|
category?: "error" | "transaction" | "attachment" | "replay" | "profile" | "profile_duration" | "profile_duration_ui" | "profile_chunk" | "profile_chunk_ui" | "monitor" | undefined;
|
|
61377
62393
|
reason?: string | undefined;
|
|
61378
62394
|
project?: unknown[] | undefined;
|
|
61379
|
-
end?: string | undefined;
|
|
61380
|
-
start?: string | undefined;
|
|
61381
62395
|
statsPeriod?: string | undefined;
|
|
62396
|
+
start?: string | undefined;
|
|
62397
|
+
end?: string | undefined;
|
|
61382
62398
|
}>;
|
|
61383
62399
|
}, "strip", z.ZodTypeAny, {
|
|
61384
62400
|
query: {
|
|
@@ -61389,9 +62405,9 @@ export declare const zListOrganizationStatsV2Data: z.ZodObject<{
|
|
|
61389
62405
|
category?: "error" | "transaction" | "attachment" | "replay" | "profile" | "profile_duration" | "profile_duration_ui" | "profile_chunk" | "profile_chunk_ui" | "monitor" | undefined;
|
|
61390
62406
|
reason?: string | undefined;
|
|
61391
62407
|
project?: unknown[] | undefined;
|
|
61392
|
-
end?: string | undefined;
|
|
61393
|
-
start?: string | undefined;
|
|
61394
62408
|
statsPeriod?: string | undefined;
|
|
62409
|
+
start?: string | undefined;
|
|
62410
|
+
end?: string | undefined;
|
|
61395
62411
|
};
|
|
61396
62412
|
path: {
|
|
61397
62413
|
organization_id_or_slug: string;
|
|
@@ -61406,9 +62422,9 @@ export declare const zListOrganizationStatsV2Data: z.ZodObject<{
|
|
|
61406
62422
|
category?: "error" | "transaction" | "attachment" | "replay" | "profile" | "profile_duration" | "profile_duration_ui" | "profile_chunk" | "profile_chunk_ui" | "monitor" | undefined;
|
|
61407
62423
|
reason?: string | undefined;
|
|
61408
62424
|
project?: unknown[] | undefined;
|
|
61409
|
-
end?: string | undefined;
|
|
61410
|
-
start?: string | undefined;
|
|
61411
62425
|
statsPeriod?: string | undefined;
|
|
62426
|
+
start?: string | undefined;
|
|
62427
|
+
end?: string | undefined;
|
|
61412
62428
|
};
|
|
61413
62429
|
path: {
|
|
61414
62430
|
organization_id_or_slug: string;
|
|
@@ -61433,8 +62449,8 @@ export declare const zListOrganizationStatsV2Response: z.ZodObject<{
|
|
|
61433
62449
|
series: Record<string, unknown>;
|
|
61434
62450
|
}>, "many">;
|
|
61435
62451
|
}, "strip", z.ZodTypeAny, {
|
|
61436
|
-
end: string;
|
|
61437
62452
|
start: string;
|
|
62453
|
+
end: string;
|
|
61438
62454
|
groups: {
|
|
61439
62455
|
by: Record<string, unknown>;
|
|
61440
62456
|
totals: Record<string, unknown>;
|
|
@@ -61442,8 +62458,8 @@ export declare const zListOrganizationStatsV2Response: z.ZodObject<{
|
|
|
61442
62458
|
}[];
|
|
61443
62459
|
intervals: string[];
|
|
61444
62460
|
}, {
|
|
61445
|
-
end: string;
|
|
61446
62461
|
start: string;
|
|
62462
|
+
end: string;
|
|
61447
62463
|
groups: {
|
|
61448
62464
|
by: Record<string, unknown>;
|
|
61449
62465
|
totals: Record<string, unknown>;
|
|
@@ -61472,19 +62488,19 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
61472
62488
|
}, "strip", z.ZodTypeAny, {
|
|
61473
62489
|
environment?: string[] | undefined;
|
|
61474
62490
|
project?: (string | number)[] | undefined;
|
|
61475
|
-
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61476
|
-
end?: string | undefined;
|
|
61477
|
-
start?: string | undefined;
|
|
61478
62491
|
statsPeriod?: string | undefined;
|
|
62492
|
+
start?: string | undefined;
|
|
62493
|
+
end?: string | undefined;
|
|
62494
|
+
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61479
62495
|
use_cache?: "0" | "1" | undefined;
|
|
61480
62496
|
useFlagsBackend?: "0" | "1" | undefined;
|
|
61481
62497
|
}, {
|
|
61482
62498
|
environment?: string[] | undefined;
|
|
61483
62499
|
project?: (string | number)[] | undefined;
|
|
61484
|
-
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61485
|
-
end?: string | undefined;
|
|
61486
|
-
start?: string | undefined;
|
|
61487
62500
|
statsPeriod?: string | undefined;
|
|
62501
|
+
start?: string | undefined;
|
|
62502
|
+
end?: string | undefined;
|
|
62503
|
+
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61488
62504
|
use_cache?: "0" | "1" | undefined;
|
|
61489
62505
|
useFlagsBackend?: "0" | "1" | undefined;
|
|
61490
62506
|
}>>;
|
|
@@ -61495,10 +62511,10 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
61495
62511
|
query?: {
|
|
61496
62512
|
environment?: string[] | undefined;
|
|
61497
62513
|
project?: (string | number)[] | undefined;
|
|
61498
|
-
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61499
|
-
end?: string | undefined;
|
|
61500
|
-
start?: string | undefined;
|
|
61501
62514
|
statsPeriod?: string | undefined;
|
|
62515
|
+
start?: string | undefined;
|
|
62516
|
+
end?: string | undefined;
|
|
62517
|
+
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61502
62518
|
use_cache?: "0" | "1" | undefined;
|
|
61503
62519
|
useFlagsBackend?: "0" | "1" | undefined;
|
|
61504
62520
|
} | undefined;
|
|
@@ -61510,10 +62526,10 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
61510
62526
|
query?: {
|
|
61511
62527
|
environment?: string[] | undefined;
|
|
61512
62528
|
project?: (string | number)[] | undefined;
|
|
61513
|
-
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61514
|
-
end?: string | undefined;
|
|
61515
|
-
start?: string | undefined;
|
|
61516
62529
|
statsPeriod?: string | undefined;
|
|
62530
|
+
start?: string | undefined;
|
|
62531
|
+
end?: string | undefined;
|
|
62532
|
+
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
61517
62533
|
use_cache?: "0" | "1" | undefined;
|
|
61518
62534
|
useFlagsBackend?: "0" | "1" | undefined;
|
|
61519
62535
|
} | undefined;
|
|
@@ -62778,10 +63794,10 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
62778
63794
|
environment?: string[] | undefined;
|
|
62779
63795
|
project?: (string | number)[] | undefined;
|
|
62780
63796
|
cursor?: string | undefined;
|
|
62781
|
-
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62782
|
-
end?: string | undefined;
|
|
62783
|
-
start?: string | undefined;
|
|
62784
63797
|
statsPeriod?: string | undefined;
|
|
63798
|
+
start?: string | undefined;
|
|
63799
|
+
end?: string | undefined;
|
|
63800
|
+
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62785
63801
|
itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62786
63802
|
attributeType?: ("string" | "number" | "boolean" | "array")[] | undefined;
|
|
62787
63803
|
substringMatch?: string | undefined;
|
|
@@ -62790,10 +63806,10 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
62790
63806
|
environment?: string[] | undefined;
|
|
62791
63807
|
project?: (string | number)[] | undefined;
|
|
62792
63808
|
cursor?: string | undefined;
|
|
62793
|
-
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62794
|
-
end?: string | undefined;
|
|
62795
|
-
start?: string | undefined;
|
|
62796
63809
|
statsPeriod?: string | undefined;
|
|
63810
|
+
start?: string | undefined;
|
|
63811
|
+
end?: string | undefined;
|
|
63812
|
+
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62797
63813
|
itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62798
63814
|
attributeType?: ("string" | "number" | "boolean" | "array")[] | undefined;
|
|
62799
63815
|
substringMatch?: string | undefined;
|
|
@@ -62807,10 +63823,10 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
62807
63823
|
environment?: string[] | undefined;
|
|
62808
63824
|
project?: (string | number)[] | undefined;
|
|
62809
63825
|
cursor?: string | undefined;
|
|
62810
|
-
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62811
|
-
end?: string | undefined;
|
|
62812
|
-
start?: string | undefined;
|
|
62813
63826
|
statsPeriod?: string | undefined;
|
|
63827
|
+
start?: string | undefined;
|
|
63828
|
+
end?: string | undefined;
|
|
63829
|
+
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62814
63830
|
itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62815
63831
|
attributeType?: ("string" | "number" | "boolean" | "array")[] | undefined;
|
|
62816
63832
|
substringMatch?: string | undefined;
|
|
@@ -62825,10 +63841,10 @@ export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
|
62825
63841
|
environment?: string[] | undefined;
|
|
62826
63842
|
project?: (string | number)[] | undefined;
|
|
62827
63843
|
cursor?: string | undefined;
|
|
62828
|
-
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62829
|
-
end?: string | undefined;
|
|
62830
|
-
start?: string | undefined;
|
|
62831
63844
|
statsPeriod?: string | undefined;
|
|
63845
|
+
start?: string | undefined;
|
|
63846
|
+
end?: string | undefined;
|
|
63847
|
+
dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62832
63848
|
itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
|
|
62833
63849
|
attributeType?: ("string" | "number" | "boolean" | "array")[] | undefined;
|
|
62834
63850
|
substringMatch?: string | undefined;
|
|
@@ -62896,9 +63912,9 @@ export declare const zListOrganizationTraceItemsStatsData: z.ZodObject<{
|
|
|
62896
63912
|
environment?: string[] | undefined;
|
|
62897
63913
|
project?: (string | number)[] | undefined;
|
|
62898
63914
|
cursor?: string | undefined;
|
|
62899
|
-
end?: string | undefined;
|
|
62900
|
-
start?: string | undefined;
|
|
62901
63915
|
statsPeriod?: string | undefined;
|
|
63916
|
+
start?: string | undefined;
|
|
63917
|
+
end?: string | undefined;
|
|
62902
63918
|
itemType?: "spans" | "occurrences" | undefined;
|
|
62903
63919
|
substringMatch?: string | undefined;
|
|
62904
63920
|
traceItemsLimit?: number | undefined;
|
|
@@ -62908,9 +63924,9 @@ export declare const zListOrganizationTraceItemsStatsData: z.ZodObject<{
|
|
|
62908
63924
|
environment?: string[] | undefined;
|
|
62909
63925
|
project?: (string | number)[] | undefined;
|
|
62910
63926
|
cursor?: string | undefined;
|
|
62911
|
-
end?: string | undefined;
|
|
62912
|
-
start?: string | undefined;
|
|
62913
63927
|
statsPeriod?: string | undefined;
|
|
63928
|
+
start?: string | undefined;
|
|
63929
|
+
end?: string | undefined;
|
|
62914
63930
|
itemType?: "spans" | "occurrences" | undefined;
|
|
62915
63931
|
substringMatch?: string | undefined;
|
|
62916
63932
|
traceItemsLimit?: number | undefined;
|
|
@@ -62922,9 +63938,9 @@ export declare const zListOrganizationTraceItemsStatsData: z.ZodObject<{
|
|
|
62922
63938
|
environment?: string[] | undefined;
|
|
62923
63939
|
project?: (string | number)[] | undefined;
|
|
62924
63940
|
cursor?: string | undefined;
|
|
62925
|
-
end?: string | undefined;
|
|
62926
|
-
start?: string | undefined;
|
|
62927
63941
|
statsPeriod?: string | undefined;
|
|
63942
|
+
start?: string | undefined;
|
|
63943
|
+
end?: string | undefined;
|
|
62928
63944
|
itemType?: "spans" | "occurrences" | undefined;
|
|
62929
63945
|
substringMatch?: string | undefined;
|
|
62930
63946
|
traceItemsLimit?: number | undefined;
|
|
@@ -62940,9 +63956,9 @@ export declare const zListOrganizationTraceItemsStatsData: z.ZodObject<{
|
|
|
62940
63956
|
environment?: string[] | undefined;
|
|
62941
63957
|
project?: (string | number)[] | undefined;
|
|
62942
63958
|
cursor?: string | undefined;
|
|
62943
|
-
end?: string | undefined;
|
|
62944
|
-
start?: string | undefined;
|
|
62945
63959
|
statsPeriod?: string | undefined;
|
|
63960
|
+
start?: string | undefined;
|
|
63961
|
+
end?: string | undefined;
|
|
62946
63962
|
itemType?: "spans" | "occurrences" | undefined;
|
|
62947
63963
|
substringMatch?: string | undefined;
|
|
62948
63964
|
traceItemsLimit?: number | undefined;
|
|
@@ -63028,14 +64044,14 @@ export declare const zGetOrganizationTraceMetaData: z.ZodObject<{
|
|
|
63028
64044
|
end: z.ZodOptional<z.ZodString>;
|
|
63029
64045
|
include_uptime: z.ZodOptional<z.ZodEnum<["0", "1"]>>;
|
|
63030
64046
|
}, "strip", z.ZodTypeAny, {
|
|
63031
|
-
end?: string | undefined;
|
|
63032
|
-
start?: string | undefined;
|
|
63033
64047
|
statsPeriod?: string | undefined;
|
|
64048
|
+
start?: string | undefined;
|
|
64049
|
+
end?: string | undefined;
|
|
63034
64050
|
include_uptime?: "0" | "1" | undefined;
|
|
63035
64051
|
}, {
|
|
63036
|
-
end?: string | undefined;
|
|
63037
|
-
start?: string | undefined;
|
|
63038
64052
|
statsPeriod?: string | undefined;
|
|
64053
|
+
start?: string | undefined;
|
|
64054
|
+
end?: string | undefined;
|
|
63039
64055
|
include_uptime?: "0" | "1" | undefined;
|
|
63040
64056
|
}>>;
|
|
63041
64057
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -63044,9 +64060,9 @@ export declare const zGetOrganizationTraceMetaData: z.ZodObject<{
|
|
|
63044
64060
|
trace_id: string;
|
|
63045
64061
|
};
|
|
63046
64062
|
query?: {
|
|
63047
|
-
end?: string | undefined;
|
|
63048
|
-
start?: string | undefined;
|
|
63049
64063
|
statsPeriod?: string | undefined;
|
|
64064
|
+
start?: string | undefined;
|
|
64065
|
+
end?: string | undefined;
|
|
63050
64066
|
include_uptime?: "0" | "1" | undefined;
|
|
63051
64067
|
} | undefined;
|
|
63052
64068
|
body?: undefined;
|
|
@@ -63056,9 +64072,9 @@ export declare const zGetOrganizationTraceMetaData: z.ZodObject<{
|
|
|
63056
64072
|
trace_id: string;
|
|
63057
64073
|
};
|
|
63058
64074
|
query?: {
|
|
63059
|
-
end?: string | undefined;
|
|
63060
|
-
start?: string | undefined;
|
|
63061
64075
|
statsPeriod?: string | undefined;
|
|
64076
|
+
start?: string | undefined;
|
|
64077
|
+
end?: string | undefined;
|
|
63062
64078
|
include_uptime?: "0" | "1" | undefined;
|
|
63063
64079
|
} | undefined;
|
|
63064
64080
|
body?: undefined;
|
|
@@ -63113,17 +64129,17 @@ export declare const zGetOrganizationTraceData: z.ZodObject<{
|
|
|
63113
64129
|
include_uptime: z.ZodOptional<z.ZodEnum<["0", "1"]>>;
|
|
63114
64130
|
}, "strip", z.ZodTypeAny, {
|
|
63115
64131
|
referrer?: string | undefined;
|
|
63116
|
-
end?: string | undefined;
|
|
63117
|
-
start?: string | undefined;
|
|
63118
64132
|
statsPeriod?: string | undefined;
|
|
64133
|
+
start?: string | undefined;
|
|
64134
|
+
end?: string | undefined;
|
|
63119
64135
|
include_uptime?: "0" | "1" | undefined;
|
|
63120
64136
|
errorId?: string | undefined;
|
|
63121
64137
|
additional_attributes?: string[] | undefined;
|
|
63122
64138
|
}, {
|
|
63123
64139
|
referrer?: string | undefined;
|
|
63124
|
-
end?: string | undefined;
|
|
63125
|
-
start?: string | undefined;
|
|
63126
64140
|
statsPeriod?: string | undefined;
|
|
64141
|
+
start?: string | undefined;
|
|
64142
|
+
end?: string | undefined;
|
|
63127
64143
|
include_uptime?: "0" | "1" | undefined;
|
|
63128
64144
|
errorId?: string | undefined;
|
|
63129
64145
|
additional_attributes?: string[] | undefined;
|
|
@@ -63135,9 +64151,9 @@ export declare const zGetOrganizationTraceData: z.ZodObject<{
|
|
|
63135
64151
|
};
|
|
63136
64152
|
query?: {
|
|
63137
64153
|
referrer?: string | undefined;
|
|
63138
|
-
end?: string | undefined;
|
|
63139
|
-
start?: string | undefined;
|
|
63140
64154
|
statsPeriod?: string | undefined;
|
|
64155
|
+
start?: string | undefined;
|
|
64156
|
+
end?: string | undefined;
|
|
63141
64157
|
include_uptime?: "0" | "1" | undefined;
|
|
63142
64158
|
errorId?: string | undefined;
|
|
63143
64159
|
additional_attributes?: string[] | undefined;
|
|
@@ -63150,9 +64166,9 @@ export declare const zGetOrganizationTraceData: z.ZodObject<{
|
|
|
63150
64166
|
};
|
|
63151
64167
|
query?: {
|
|
63152
64168
|
referrer?: string | undefined;
|
|
63153
|
-
end?: string | undefined;
|
|
63154
|
-
start?: string | undefined;
|
|
63155
64169
|
statsPeriod?: string | undefined;
|
|
64170
|
+
start?: string | undefined;
|
|
64171
|
+
end?: string | undefined;
|
|
63156
64172
|
include_uptime?: "0" | "1" | undefined;
|
|
63157
64173
|
errorId?: string | undefined;
|
|
63158
64174
|
additional_attributes?: string[] | undefined;
|
|
@@ -66712,8 +67728,33 @@ export declare const zGetProjectResponse: z.ZodObject<{
|
|
|
66712
67728
|
seerNightshiftTweaks?: unknown;
|
|
66713
67729
|
}>;
|
|
66714
67730
|
export declare const zUpdateProjectData: z.ZodObject<{
|
|
66715
|
-
body: z.
|
|
67731
|
+
body: z.ZodObject<{
|
|
67732
|
+
digestsMinDelay: z.ZodNumber;
|
|
67733
|
+
digestsMaxDelay: z.ZodNumber;
|
|
67734
|
+
securityToken: z.ZodString;
|
|
67735
|
+
securityTokenHeader: z.ZodString;
|
|
66716
67736
|
isBookmarked: z.ZodOptional<z.ZodBoolean>;
|
|
67737
|
+
autofixAutomationTuning: z.ZodOptional<z.ZodEnum<["off", "super_low", "low", "medium", "high", "always"]>>;
|
|
67738
|
+
seerScannerAutomation: z.ZodOptional<z.ZodBoolean>;
|
|
67739
|
+
preprodSizeStatusChecksEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
67740
|
+
preprodSizeStatusChecksRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
67741
|
+
preprodSizePrCommentsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
67742
|
+
preprodSizePrCommentsRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
67743
|
+
preprodSnapshotStatusChecksEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
67744
|
+
preprodSnapshotStatusChecksFailOnAdded: z.ZodOptional<z.ZodBoolean>;
|
|
67745
|
+
preprodSnapshotStatusChecksFailOnRemoved: z.ZodOptional<z.ZodBoolean>;
|
|
67746
|
+
preprodSnapshotStatusChecksFailOnChanged: z.ZodOptional<z.ZodBoolean>;
|
|
67747
|
+
preprodSnapshotStatusChecksFailOnRenamed: z.ZodOptional<z.ZodBoolean>;
|
|
67748
|
+
preprodSizeEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67749
|
+
preprodDistributionEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67750
|
+
preprodDistributionPrCommentsEnabledByCustomer: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67751
|
+
preprodSnapshotPrCommentsEnabled: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67752
|
+
preprodSnapshotPrCommentsPostOnAdded: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67753
|
+
preprodSnapshotPrCommentsPostOnRemoved: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67754
|
+
preprodSnapshotPrCommentsPostOnChanged: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67755
|
+
preprodSnapshotPrCommentsPostOnRenamed: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
67756
|
+
preprodSizeEnabledQuery: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67757
|
+
preprodDistributionEnabledQuery: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
66717
67758
|
name: z.ZodOptional<z.ZodString>;
|
|
66718
67759
|
slug: z.ZodOptional<z.ZodString>;
|
|
66719
67760
|
platform: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -66722,33 +67763,167 @@ export declare const zUpdateProjectData: z.ZodObject<{
|
|
|
66722
67763
|
resolveAge: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
66723
67764
|
highlightContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
66724
67765
|
highlightTags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67766
|
+
verifySSL: z.ZodOptional<z.ZodBoolean>;
|
|
67767
|
+
defaultEnvironment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67768
|
+
dataScrubber: z.ZodOptional<z.ZodBoolean>;
|
|
67769
|
+
dataScrubberDefaults: z.ZodOptional<z.ZodBoolean>;
|
|
67770
|
+
sensitiveFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67771
|
+
safeFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67772
|
+
storeCrashReports: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
67773
|
+
relayPiiConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67774
|
+
builtinSymbolSources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67775
|
+
symbolSources: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67776
|
+
scrubIPAddresses: z.ZodOptional<z.ZodBoolean>;
|
|
67777
|
+
groupingConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67778
|
+
groupingEnhancements: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67779
|
+
fingerprintingRules: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67780
|
+
secondaryGroupingConfig: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
67781
|
+
secondaryGroupingExpiry: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
67782
|
+
scrapeJavaScript: z.ZodOptional<z.ZodBoolean>;
|
|
66725
67783
|
enableAutoReleaseCreation: z.ZodOptional<z.ZodBoolean>;
|
|
67784
|
+
allowedDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
67785
|
+
copy_from_project: z.ZodOptional<z.ZodNumber>;
|
|
67786
|
+
targetSampleRate: z.ZodOptional<z.ZodNumber>;
|
|
67787
|
+
dynamicSamplingBiases: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
67788
|
+
id: z.ZodEnum<["boostEnvironments", "boostKeyTransactions", "boostLatestRelease", "boostLowVolumeTransactions", "boostReplayId", "ignoreHealthChecks", "minimumSampleRate", "recalibrationRule"]>;
|
|
67789
|
+
active: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
67790
|
+
}, "strip", z.ZodTypeAny, {
|
|
67791
|
+
active: boolean;
|
|
67792
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
67793
|
+
}, {
|
|
67794
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
67795
|
+
active?: boolean | undefined;
|
|
67796
|
+
}>, "many">>;
|
|
67797
|
+
tempestFetchScreenshots: z.ZodOptional<z.ZodBoolean>;
|
|
66726
67798
|
scmSourceContextEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
67799
|
+
debugFilesRole: z.ZodOptional<z.ZodNullable<z.ZodEnum<["member", "admin", "manager", "owner"]>>>;
|
|
66727
67800
|
}, "strip", z.ZodTypeAny, {
|
|
67801
|
+
digestsMinDelay: number;
|
|
67802
|
+
digestsMaxDelay: number;
|
|
67803
|
+
securityTokenHeader: string;
|
|
67804
|
+
securityToken: string;
|
|
66728
67805
|
name?: string | undefined;
|
|
66729
67806
|
platform?: string | null | undefined;
|
|
66730
67807
|
slug?: string | undefined;
|
|
67808
|
+
allowedDomains?: string[] | undefined;
|
|
66731
67809
|
resolveAge?: number | null | undefined;
|
|
67810
|
+
safeFields?: string[] | undefined;
|
|
67811
|
+
storeCrashReports?: number | null | undefined;
|
|
67812
|
+
sensitiveFields?: string[] | undefined;
|
|
66732
67813
|
highlightTags?: string[] | undefined;
|
|
66733
67814
|
highlightContext?: Record<string, unknown> | undefined;
|
|
67815
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
67816
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
67817
|
+
defaultEnvironment?: string | null | undefined;
|
|
67818
|
+
relayPiiConfig?: string | null | undefined;
|
|
67819
|
+
builtinSymbolSources?: string[] | undefined;
|
|
67820
|
+
dynamicSamplingBiases?: {
|
|
67821
|
+
active: boolean;
|
|
67822
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
67823
|
+
}[] | undefined;
|
|
67824
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
66734
67825
|
isBookmarked?: boolean | undefined;
|
|
66735
67826
|
subjectPrefix?: string | undefined;
|
|
67827
|
+
dataScrubber?: boolean | undefined;
|
|
67828
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
66736
67829
|
subjectTemplate?: string | undefined;
|
|
67830
|
+
verifySSL?: boolean | undefined;
|
|
67831
|
+
scrubIPAddresses?: boolean | undefined;
|
|
67832
|
+
scrapeJavaScript?: boolean | undefined;
|
|
66737
67833
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
67834
|
+
groupingConfig?: string | null | undefined;
|
|
67835
|
+
groupingEnhancements?: string | null | undefined;
|
|
67836
|
+
fingerprintingRules?: string | null | undefined;
|
|
67837
|
+
symbolSources?: string | null | undefined;
|
|
67838
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
67839
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
67840
|
+
seerScannerAutomation?: boolean | undefined;
|
|
66738
67841
|
scmSourceContextEnabled?: boolean | undefined;
|
|
66739
|
-
|
|
67842
|
+
targetSampleRate?: number | undefined;
|
|
67843
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
67844
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
67845
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
67846
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
67847
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
67848
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
67849
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
67850
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
67851
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
67852
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
67853
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
67854
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
67855
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
67856
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
67857
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
67858
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
67859
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
67860
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
67861
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
67862
|
+
copy_from_project?: number | undefined;
|
|
67863
|
+
}, {
|
|
67864
|
+
digestsMinDelay: number;
|
|
67865
|
+
digestsMaxDelay: number;
|
|
67866
|
+
securityTokenHeader: string;
|
|
67867
|
+
securityToken: string;
|
|
66740
67868
|
name?: string | undefined;
|
|
66741
67869
|
platform?: string | null | undefined;
|
|
66742
67870
|
slug?: string | undefined;
|
|
67871
|
+
allowedDomains?: string[] | undefined;
|
|
66743
67872
|
resolveAge?: number | null | undefined;
|
|
67873
|
+
safeFields?: string[] | undefined;
|
|
67874
|
+
storeCrashReports?: number | null | undefined;
|
|
67875
|
+
sensitiveFields?: string[] | undefined;
|
|
66744
67876
|
highlightTags?: string[] | undefined;
|
|
66745
67877
|
highlightContext?: Record<string, unknown> | undefined;
|
|
67878
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
67879
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
67880
|
+
defaultEnvironment?: string | null | undefined;
|
|
67881
|
+
relayPiiConfig?: string | null | undefined;
|
|
67882
|
+
builtinSymbolSources?: string[] | undefined;
|
|
67883
|
+
dynamicSamplingBiases?: {
|
|
67884
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
67885
|
+
active?: boolean | undefined;
|
|
67886
|
+
}[] | undefined;
|
|
67887
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
66746
67888
|
isBookmarked?: boolean | undefined;
|
|
66747
67889
|
subjectPrefix?: string | undefined;
|
|
67890
|
+
dataScrubber?: boolean | undefined;
|
|
67891
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
66748
67892
|
subjectTemplate?: string | undefined;
|
|
67893
|
+
verifySSL?: boolean | undefined;
|
|
67894
|
+
scrubIPAddresses?: boolean | undefined;
|
|
67895
|
+
scrapeJavaScript?: boolean | undefined;
|
|
66749
67896
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
67897
|
+
groupingConfig?: string | null | undefined;
|
|
67898
|
+
groupingEnhancements?: string | null | undefined;
|
|
67899
|
+
fingerprintingRules?: string | null | undefined;
|
|
67900
|
+
symbolSources?: string | null | undefined;
|
|
67901
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
67902
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
67903
|
+
seerScannerAutomation?: boolean | undefined;
|
|
66750
67904
|
scmSourceContextEnabled?: boolean | undefined;
|
|
66751
|
-
|
|
67905
|
+
targetSampleRate?: number | undefined;
|
|
67906
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
67907
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
67908
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
67909
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
67910
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
67911
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
67912
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
67913
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
67914
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
67915
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
67916
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
67917
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
67918
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
67919
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
67920
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
67921
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
67922
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
67923
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
67924
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
67925
|
+
copy_from_project?: number | undefined;
|
|
67926
|
+
}>;
|
|
66752
67927
|
path: z.ZodObject<{
|
|
66753
67928
|
organization_id_or_slug: z.ZodString;
|
|
66754
67929
|
project_id_or_slug: z.ZodString;
|
|
@@ -66761,43 +67936,145 @@ export declare const zUpdateProjectData: z.ZodObject<{
|
|
|
66761
67936
|
}>;
|
|
66762
67937
|
query: z.ZodOptional<z.ZodNever>;
|
|
66763
67938
|
}, "strip", z.ZodTypeAny, {
|
|
66764
|
-
|
|
66765
|
-
|
|
66766
|
-
|
|
66767
|
-
|
|
66768
|
-
|
|
66769
|
-
body?: {
|
|
67939
|
+
body: {
|
|
67940
|
+
digestsMinDelay: number;
|
|
67941
|
+
digestsMaxDelay: number;
|
|
67942
|
+
securityTokenHeader: string;
|
|
67943
|
+
securityToken: string;
|
|
66770
67944
|
name?: string | undefined;
|
|
66771
67945
|
platform?: string | null | undefined;
|
|
66772
67946
|
slug?: string | undefined;
|
|
67947
|
+
allowedDomains?: string[] | undefined;
|
|
66773
67948
|
resolveAge?: number | null | undefined;
|
|
67949
|
+
safeFields?: string[] | undefined;
|
|
67950
|
+
storeCrashReports?: number | null | undefined;
|
|
67951
|
+
sensitiveFields?: string[] | undefined;
|
|
66774
67952
|
highlightTags?: string[] | undefined;
|
|
66775
67953
|
highlightContext?: Record<string, unknown> | undefined;
|
|
67954
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
67955
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
67956
|
+
defaultEnvironment?: string | null | undefined;
|
|
67957
|
+
relayPiiConfig?: string | null | undefined;
|
|
67958
|
+
builtinSymbolSources?: string[] | undefined;
|
|
67959
|
+
dynamicSamplingBiases?: {
|
|
67960
|
+
active: boolean;
|
|
67961
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
67962
|
+
}[] | undefined;
|
|
67963
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
66776
67964
|
isBookmarked?: boolean | undefined;
|
|
66777
67965
|
subjectPrefix?: string | undefined;
|
|
67966
|
+
dataScrubber?: boolean | undefined;
|
|
67967
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
66778
67968
|
subjectTemplate?: string | undefined;
|
|
67969
|
+
verifySSL?: boolean | undefined;
|
|
67970
|
+
scrubIPAddresses?: boolean | undefined;
|
|
67971
|
+
scrapeJavaScript?: boolean | undefined;
|
|
66779
67972
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
67973
|
+
groupingConfig?: string | null | undefined;
|
|
67974
|
+
groupingEnhancements?: string | null | undefined;
|
|
67975
|
+
fingerprintingRules?: string | null | undefined;
|
|
67976
|
+
symbolSources?: string | null | undefined;
|
|
67977
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
67978
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
67979
|
+
seerScannerAutomation?: boolean | undefined;
|
|
66780
67980
|
scmSourceContextEnabled?: boolean | undefined;
|
|
66781
|
-
|
|
66782
|
-
|
|
67981
|
+
targetSampleRate?: number | undefined;
|
|
67982
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
67983
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
67984
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
67985
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
67986
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
67987
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
67988
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
67989
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
67990
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
67991
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
67992
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
67993
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
67994
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
67995
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
67996
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
67997
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
67998
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
67999
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
68000
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
68001
|
+
copy_from_project?: number | undefined;
|
|
68002
|
+
};
|
|
66783
68003
|
path: {
|
|
66784
68004
|
organization_id_or_slug: string;
|
|
66785
68005
|
project_id_or_slug: string;
|
|
66786
68006
|
};
|
|
66787
68007
|
query?: undefined;
|
|
66788
|
-
|
|
68008
|
+
}, {
|
|
68009
|
+
body: {
|
|
68010
|
+
digestsMinDelay: number;
|
|
68011
|
+
digestsMaxDelay: number;
|
|
68012
|
+
securityTokenHeader: string;
|
|
68013
|
+
securityToken: string;
|
|
66789
68014
|
name?: string | undefined;
|
|
66790
68015
|
platform?: string | null | undefined;
|
|
66791
68016
|
slug?: string | undefined;
|
|
68017
|
+
allowedDomains?: string[] | undefined;
|
|
66792
68018
|
resolveAge?: number | null | undefined;
|
|
68019
|
+
safeFields?: string[] | undefined;
|
|
68020
|
+
storeCrashReports?: number | null | undefined;
|
|
68021
|
+
sensitiveFields?: string[] | undefined;
|
|
66793
68022
|
highlightTags?: string[] | undefined;
|
|
66794
68023
|
highlightContext?: Record<string, unknown> | undefined;
|
|
68024
|
+
secondaryGroupingExpiry?: number | null | undefined;
|
|
68025
|
+
secondaryGroupingConfig?: string | null | undefined;
|
|
68026
|
+
defaultEnvironment?: string | null | undefined;
|
|
68027
|
+
relayPiiConfig?: string | null | undefined;
|
|
68028
|
+
builtinSymbolSources?: string[] | undefined;
|
|
68029
|
+
dynamicSamplingBiases?: {
|
|
68030
|
+
id: "boostEnvironments" | "boostKeyTransactions" | "boostLatestRelease" | "boostLowVolumeTransactions" | "boostReplayId" | "ignoreHealthChecks" | "minimumSampleRate" | "recalibrationRule";
|
|
68031
|
+
active?: boolean | undefined;
|
|
68032
|
+
}[] | undefined;
|
|
68033
|
+
debugFilesRole?: "member" | "admin" | "manager" | "owner" | null | undefined;
|
|
66795
68034
|
isBookmarked?: boolean | undefined;
|
|
66796
68035
|
subjectPrefix?: string | undefined;
|
|
68036
|
+
dataScrubber?: boolean | undefined;
|
|
68037
|
+
dataScrubberDefaults?: boolean | undefined;
|
|
66797
68038
|
subjectTemplate?: string | undefined;
|
|
68039
|
+
verifySSL?: boolean | undefined;
|
|
68040
|
+
scrubIPAddresses?: boolean | undefined;
|
|
68041
|
+
scrapeJavaScript?: boolean | undefined;
|
|
66798
68042
|
enableAutoReleaseCreation?: boolean | undefined;
|
|
68043
|
+
groupingConfig?: string | null | undefined;
|
|
68044
|
+
groupingEnhancements?: string | null | undefined;
|
|
68045
|
+
fingerprintingRules?: string | null | undefined;
|
|
68046
|
+
symbolSources?: string | null | undefined;
|
|
68047
|
+
tempestFetchScreenshots?: boolean | undefined;
|
|
68048
|
+
autofixAutomationTuning?: "high" | "low" | "medium" | "off" | "super_low" | "always" | undefined;
|
|
68049
|
+
seerScannerAutomation?: boolean | undefined;
|
|
66799
68050
|
scmSourceContextEnabled?: boolean | undefined;
|
|
66800
|
-
|
|
68051
|
+
targetSampleRate?: number | undefined;
|
|
68052
|
+
preprodSizeStatusChecksEnabled?: boolean | undefined;
|
|
68053
|
+
preprodSizeStatusChecksRules?: Record<string, unknown> | undefined;
|
|
68054
|
+
preprodSizePrCommentsEnabled?: boolean | undefined;
|
|
68055
|
+
preprodSizePrCommentsRules?: Record<string, unknown> | undefined;
|
|
68056
|
+
preprodSnapshotStatusChecksEnabled?: boolean | undefined;
|
|
68057
|
+
preprodSnapshotStatusChecksFailOnAdded?: boolean | undefined;
|
|
68058
|
+
preprodSnapshotStatusChecksFailOnRemoved?: boolean | undefined;
|
|
68059
|
+
preprodSnapshotStatusChecksFailOnChanged?: boolean | undefined;
|
|
68060
|
+
preprodSnapshotStatusChecksFailOnRenamed?: boolean | undefined;
|
|
68061
|
+
preprodSizeEnabledByCustomer?: boolean | null | undefined;
|
|
68062
|
+
preprodDistributionEnabledByCustomer?: boolean | null | undefined;
|
|
68063
|
+
preprodDistributionPrCommentsEnabledByCustomer?: boolean | null | undefined;
|
|
68064
|
+
preprodSnapshotPrCommentsEnabled?: boolean | null | undefined;
|
|
68065
|
+
preprodSnapshotPrCommentsPostOnAdded?: boolean | null | undefined;
|
|
68066
|
+
preprodSnapshotPrCommentsPostOnRemoved?: boolean | null | undefined;
|
|
68067
|
+
preprodSnapshotPrCommentsPostOnChanged?: boolean | null | undefined;
|
|
68068
|
+
preprodSnapshotPrCommentsPostOnRenamed?: boolean | null | undefined;
|
|
68069
|
+
preprodSizeEnabledQuery?: string | null | undefined;
|
|
68070
|
+
preprodDistributionEnabledQuery?: string | null | undefined;
|
|
68071
|
+
copy_from_project?: number | undefined;
|
|
68072
|
+
};
|
|
68073
|
+
path: {
|
|
68074
|
+
organization_id_or_slug: string;
|
|
68075
|
+
project_id_or_slug: string;
|
|
68076
|
+
};
|
|
68077
|
+
query?: undefined;
|
|
66801
68078
|
}>;
|
|
66802
68079
|
export declare const zUpdateProjectResponse: z.ZodObject<{
|
|
66803
68080
|
stats: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -67577,16 +68854,16 @@ export declare const zListProjectEventsData: z.ZodObject<{
|
|
|
67577
68854
|
sample: boolean;
|
|
67578
68855
|
full: boolean;
|
|
67579
68856
|
cursor?: string | undefined;
|
|
67580
|
-
end?: string | undefined;
|
|
67581
|
-
start?: string | undefined;
|
|
67582
68857
|
statsPeriod?: string | undefined;
|
|
68858
|
+
start?: string | undefined;
|
|
68859
|
+
end?: string | undefined;
|
|
67583
68860
|
}, {
|
|
67584
68861
|
sample?: boolean | undefined;
|
|
67585
68862
|
full?: boolean | undefined;
|
|
67586
68863
|
cursor?: string | undefined;
|
|
67587
|
-
end?: string | undefined;
|
|
67588
|
-
start?: string | undefined;
|
|
67589
68864
|
statsPeriod?: string | undefined;
|
|
68865
|
+
start?: string | undefined;
|
|
68866
|
+
end?: string | undefined;
|
|
67590
68867
|
}>>;
|
|
67591
68868
|
}, "strip", z.ZodTypeAny, {
|
|
67592
68869
|
path: {
|
|
@@ -67597,9 +68874,9 @@ export declare const zListProjectEventsData: z.ZodObject<{
|
|
|
67597
68874
|
sample: boolean;
|
|
67598
68875
|
full: boolean;
|
|
67599
68876
|
cursor?: string | undefined;
|
|
67600
|
-
end?: string | undefined;
|
|
67601
|
-
start?: string | undefined;
|
|
67602
68877
|
statsPeriod?: string | undefined;
|
|
68878
|
+
start?: string | undefined;
|
|
68879
|
+
end?: string | undefined;
|
|
67603
68880
|
} | undefined;
|
|
67604
68881
|
body?: undefined;
|
|
67605
68882
|
}, {
|
|
@@ -67611,9 +68888,9 @@ export declare const zListProjectEventsData: z.ZodObject<{
|
|
|
67611
68888
|
sample?: boolean | undefined;
|
|
67612
68889
|
full?: boolean | undefined;
|
|
67613
68890
|
cursor?: string | undefined;
|
|
67614
|
-
end?: string | undefined;
|
|
67615
|
-
start?: string | undefined;
|
|
67616
68891
|
statsPeriod?: string | undefined;
|
|
68892
|
+
start?: string | undefined;
|
|
68893
|
+
end?: string | undefined;
|
|
67617
68894
|
} | undefined;
|
|
67618
68895
|
body?: undefined;
|
|
67619
68896
|
}>;
|
|
@@ -71232,6 +72509,31 @@ export declare const zUpdateProjectMonitorData: z.ZodObject<{
|
|
|
71232
72509
|
status: z.ZodOptional<z.ZodEnum<["active", "disabled"]>>;
|
|
71233
72510
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
71234
72511
|
is_muted: z.ZodOptional<z.ZodBoolean>;
|
|
72512
|
+
alert_rule: z.ZodOptional<z.ZodObject<{
|
|
72513
|
+
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
72514
|
+
targets: z.ZodArray<z.ZodObject<{
|
|
72515
|
+
target_identifier: z.ZodNumber;
|
|
72516
|
+
target_type: z.ZodString;
|
|
72517
|
+
}, "strip", z.ZodTypeAny, {
|
|
72518
|
+
target_identifier: number;
|
|
72519
|
+
target_type: string;
|
|
72520
|
+
}, {
|
|
72521
|
+
target_identifier: number;
|
|
72522
|
+
target_type: string;
|
|
72523
|
+
}>, "many">;
|
|
72524
|
+
}, "strip", z.ZodTypeAny, {
|
|
72525
|
+
targets: {
|
|
72526
|
+
target_identifier: number;
|
|
72527
|
+
target_type: string;
|
|
72528
|
+
}[];
|
|
72529
|
+
environment?: string | null | undefined;
|
|
72530
|
+
}, {
|
|
72531
|
+
targets: {
|
|
72532
|
+
target_identifier: number;
|
|
72533
|
+
target_type: string;
|
|
72534
|
+
}[];
|
|
72535
|
+
environment?: string | null | undefined;
|
|
72536
|
+
}>>;
|
|
71235
72537
|
}, "strip", z.ZodTypeAny, {
|
|
71236
72538
|
name: string;
|
|
71237
72539
|
project: string;
|
|
@@ -71248,6 +72550,13 @@ export declare const zUpdateProjectMonitorData: z.ZodObject<{
|
|
|
71248
72550
|
status?: "active" | "disabled" | undefined;
|
|
71249
72551
|
slug?: string | undefined;
|
|
71250
72552
|
is_muted?: boolean | undefined;
|
|
72553
|
+
alert_rule?: {
|
|
72554
|
+
targets: {
|
|
72555
|
+
target_identifier: number;
|
|
72556
|
+
target_type: string;
|
|
72557
|
+
}[];
|
|
72558
|
+
environment?: string | null | undefined;
|
|
72559
|
+
} | undefined;
|
|
71251
72560
|
}, {
|
|
71252
72561
|
name: string;
|
|
71253
72562
|
project: string;
|
|
@@ -71264,6 +72573,13 @@ export declare const zUpdateProjectMonitorData: z.ZodObject<{
|
|
|
71264
72573
|
status?: "active" | "disabled" | undefined;
|
|
71265
72574
|
slug?: string | undefined;
|
|
71266
72575
|
is_muted?: boolean | undefined;
|
|
72576
|
+
alert_rule?: {
|
|
72577
|
+
targets: {
|
|
72578
|
+
target_identifier: number;
|
|
72579
|
+
target_type: string;
|
|
72580
|
+
}[];
|
|
72581
|
+
environment?: string | null | undefined;
|
|
72582
|
+
} | undefined;
|
|
71267
72583
|
}>;
|
|
71268
72584
|
path: z.ZodObject<{
|
|
71269
72585
|
organization_id_or_slug: z.ZodString;
|
|
@@ -71296,6 +72612,13 @@ export declare const zUpdateProjectMonitorData: z.ZodObject<{
|
|
|
71296
72612
|
status?: "active" | "disabled" | undefined;
|
|
71297
72613
|
slug?: string | undefined;
|
|
71298
72614
|
is_muted?: boolean | undefined;
|
|
72615
|
+
alert_rule?: {
|
|
72616
|
+
targets: {
|
|
72617
|
+
target_identifier: number;
|
|
72618
|
+
target_type: string;
|
|
72619
|
+
}[];
|
|
72620
|
+
environment?: string | null | undefined;
|
|
72621
|
+
} | undefined;
|
|
71299
72622
|
};
|
|
71300
72623
|
path: {
|
|
71301
72624
|
organization_id_or_slug: string;
|
|
@@ -71320,6 +72643,13 @@ export declare const zUpdateProjectMonitorData: z.ZodObject<{
|
|
|
71320
72643
|
status?: "active" | "disabled" | undefined;
|
|
71321
72644
|
slug?: string | undefined;
|
|
71322
72645
|
is_muted?: boolean | undefined;
|
|
72646
|
+
alert_rule?: {
|
|
72647
|
+
targets: {
|
|
72648
|
+
target_identifier: number;
|
|
72649
|
+
target_type: string;
|
|
72650
|
+
}[];
|
|
72651
|
+
environment?: string | null | undefined;
|
|
72652
|
+
} | undefined;
|
|
71323
72653
|
};
|
|
71324
72654
|
path: {
|
|
71325
72655
|
organization_id_or_slug: string;
|
|
@@ -77900,6 +79230,7 @@ export declare const zUpdateSentryAppData: z.ZodObject<{
|
|
|
77900
79230
|
scopes: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>;
|
|
77901
79231
|
author: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
77902
79232
|
events: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>>;
|
|
79233
|
+
features: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<6>, z.ZodLiteral<7>, z.ZodLiteral<8>, z.ZodLiteral<9>, z.ZodLiteral<11>, z.ZodLiteral<12>, z.ZodLiteral<"">]>, "many">, z.ZodNull]>>;
|
|
77903
79234
|
schema: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
|
|
77904
79235
|
webhookUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
77905
79236
|
redirectUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -77916,6 +79247,7 @@ export declare const zUpdateSentryAppData: z.ZodObject<{
|
|
|
77916
79247
|
isAlertable: boolean;
|
|
77917
79248
|
verifyInstall: boolean;
|
|
77918
79249
|
events?: string[] | null | undefined;
|
|
79250
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
77919
79251
|
schema?: Record<string, unknown> | null | undefined;
|
|
77920
79252
|
author?: string | null | undefined;
|
|
77921
79253
|
allowedOrigins?: string[] | undefined;
|
|
@@ -77927,6 +79259,7 @@ export declare const zUpdateSentryAppData: z.ZodObject<{
|
|
|
77927
79259
|
name: string;
|
|
77928
79260
|
scopes: string[] | null;
|
|
77929
79261
|
events?: string[] | null | undefined;
|
|
79262
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
77930
79263
|
schema?: Record<string, unknown> | null | undefined;
|
|
77931
79264
|
author?: string | null | undefined;
|
|
77932
79265
|
isInternal?: boolean | undefined;
|
|
@@ -77954,6 +79287,7 @@ export declare const zUpdateSentryAppData: z.ZodObject<{
|
|
|
77954
79287
|
isAlertable: boolean;
|
|
77955
79288
|
verifyInstall: boolean;
|
|
77956
79289
|
events?: string[] | null | undefined;
|
|
79290
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
77957
79291
|
schema?: Record<string, unknown> | null | undefined;
|
|
77958
79292
|
author?: string | null | undefined;
|
|
77959
79293
|
allowedOrigins?: string[] | undefined;
|
|
@@ -77971,6 +79305,7 @@ export declare const zUpdateSentryAppData: z.ZodObject<{
|
|
|
77971
79305
|
name: string;
|
|
77972
79306
|
scopes: string[] | null;
|
|
77973
79307
|
events?: string[] | null | undefined;
|
|
79308
|
+
features?: ("" | 0 | 1 | 2 | 5 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 12)[] | null | undefined;
|
|
77974
79309
|
schema?: Record<string, unknown> | null | undefined;
|
|
77975
79310
|
author?: string | null | undefined;
|
|
77976
79311
|
isInternal?: boolean | undefined;
|
|
@@ -79319,6 +80654,7 @@ export declare const zUpdateTeamResponse: z.ZodObject<{
|
|
|
79319
80654
|
}>;
|
|
79320
80655
|
export declare const zCreateTeamExternalTeamData: z.ZodObject<{
|
|
79321
80656
|
body: z.ZodObject<{
|
|
80657
|
+
team_id: z.ZodNumber;
|
|
79322
80658
|
external_name: z.ZodString;
|
|
79323
80659
|
provider: z.ZodEnum<["github", "github_enterprise", "jira_server", "slack", "slack_staging", "perforce", "gitlab", "msteams", "custom_scm"]>;
|
|
79324
80660
|
integration_id: z.ZodNumber;
|
|
@@ -79326,11 +80662,13 @@ export declare const zCreateTeamExternalTeamData: z.ZodObject<{
|
|
|
79326
80662
|
}, "strip", z.ZodTypeAny, {
|
|
79327
80663
|
integration_id: number;
|
|
79328
80664
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80665
|
+
team_id: number;
|
|
79329
80666
|
external_name: string;
|
|
79330
80667
|
external_id?: string | null | undefined;
|
|
79331
80668
|
}, {
|
|
79332
80669
|
integration_id: number;
|
|
79333
80670
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80671
|
+
team_id: number;
|
|
79334
80672
|
external_name: string;
|
|
79335
80673
|
external_id?: string | null | undefined;
|
|
79336
80674
|
}>;
|
|
@@ -79349,6 +80687,7 @@ export declare const zCreateTeamExternalTeamData: z.ZodObject<{
|
|
|
79349
80687
|
body: {
|
|
79350
80688
|
integration_id: number;
|
|
79351
80689
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80690
|
+
team_id: number;
|
|
79352
80691
|
external_name: string;
|
|
79353
80692
|
external_id?: string | null | undefined;
|
|
79354
80693
|
};
|
|
@@ -79361,6 +80700,7 @@ export declare const zCreateTeamExternalTeamData: z.ZodObject<{
|
|
|
79361
80700
|
body: {
|
|
79362
80701
|
integration_id: number;
|
|
79363
80702
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80703
|
+
team_id: number;
|
|
79364
80704
|
external_name: string;
|
|
79365
80705
|
external_id?: string | null | undefined;
|
|
79366
80706
|
};
|
|
@@ -79458,6 +80798,7 @@ export declare const zDeleteTeamExternalTeamData: z.ZodObject<{
|
|
|
79458
80798
|
export declare const zDeleteTeamExternalTeamResponse: z.ZodVoid;
|
|
79459
80799
|
export declare const zUpdateTeamExternalTeamData: z.ZodObject<{
|
|
79460
80800
|
body: z.ZodObject<{
|
|
80801
|
+
team_id: z.ZodNumber;
|
|
79461
80802
|
external_name: z.ZodString;
|
|
79462
80803
|
provider: z.ZodEnum<["github", "github_enterprise", "jira_server", "slack", "slack_staging", "perforce", "gitlab", "msteams", "custom_scm"]>;
|
|
79463
80804
|
integration_id: z.ZodNumber;
|
|
@@ -79465,11 +80806,13 @@ export declare const zUpdateTeamExternalTeamData: z.ZodObject<{
|
|
|
79465
80806
|
}, "strip", z.ZodTypeAny, {
|
|
79466
80807
|
integration_id: number;
|
|
79467
80808
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80809
|
+
team_id: number;
|
|
79468
80810
|
external_name: string;
|
|
79469
80811
|
external_id?: string | null | undefined;
|
|
79470
80812
|
}, {
|
|
79471
80813
|
integration_id: number;
|
|
79472
80814
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80815
|
+
team_id: number;
|
|
79473
80816
|
external_name: string;
|
|
79474
80817
|
external_id?: string | null | undefined;
|
|
79475
80818
|
}>;
|
|
@@ -79491,6 +80834,7 @@ export declare const zUpdateTeamExternalTeamData: z.ZodObject<{
|
|
|
79491
80834
|
body: {
|
|
79492
80835
|
integration_id: number;
|
|
79493
80836
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80837
|
+
team_id: number;
|
|
79494
80838
|
external_name: string;
|
|
79495
80839
|
external_id?: string | null | undefined;
|
|
79496
80840
|
};
|
|
@@ -79504,6 +80848,7 @@ export declare const zUpdateTeamExternalTeamData: z.ZodObject<{
|
|
|
79504
80848
|
body: {
|
|
79505
80849
|
integration_id: number;
|
|
79506
80850
|
provider: "github" | "github_enterprise" | "jira_server" | "slack" | "slack_staging" | "perforce" | "gitlab" | "msteams" | "custom_scm";
|
|
80851
|
+
team_id: number;
|
|
79507
80852
|
external_name: string;
|
|
79508
80853
|
external_id?: string | null | undefined;
|
|
79509
80854
|
};
|
|
@@ -82715,6 +84060,12 @@ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
|
|
|
82715
84060
|
discard: z.ZodBoolean;
|
|
82716
84061
|
assignedTo: z.ZodString;
|
|
82717
84062
|
priority: z.ZodEnum<["low", "medium", "high"]>;
|
|
84063
|
+
ignoreDuration: z.ZodNumber;
|
|
84064
|
+
ignoreCount: z.ZodNumber;
|
|
84065
|
+
ignoreWindow: z.ZodNumber;
|
|
84066
|
+
ignoreUserCount: z.ZodNumber;
|
|
84067
|
+
ignoreUserWindow: z.ZodNumber;
|
|
84068
|
+
snoozeDuration: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
|
|
82718
84069
|
}, "strip", z.ZodTypeAny, {
|
|
82719
84070
|
priority: "high" | "low" | "medium";
|
|
82720
84071
|
inbox: boolean;
|
|
@@ -82734,10 +84085,16 @@ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
|
|
|
82734
84085
|
commit: string;
|
|
82735
84086
|
} | undefined;
|
|
82736
84087
|
};
|
|
84088
|
+
ignoreCount: number;
|
|
84089
|
+
ignoreUserCount: number;
|
|
84090
|
+
ignoreUserWindow: number;
|
|
84091
|
+
ignoreWindow: number;
|
|
82737
84092
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
82738
84093
|
assignedTo: string;
|
|
82739
84094
|
isSubscribed: boolean;
|
|
82740
84095
|
hasSeen: boolean;
|
|
84096
|
+
ignoreDuration: number;
|
|
84097
|
+
snoozeDuration: number | null;
|
|
82741
84098
|
merge: boolean;
|
|
82742
84099
|
discard: boolean;
|
|
82743
84100
|
}, {
|
|
@@ -82759,10 +84116,16 @@ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
|
|
|
82759
84116
|
commit: string;
|
|
82760
84117
|
} | undefined;
|
|
82761
84118
|
};
|
|
84119
|
+
ignoreCount: number;
|
|
84120
|
+
ignoreUserCount: number;
|
|
84121
|
+
ignoreUserWindow: number;
|
|
84122
|
+
ignoreWindow: number;
|
|
82762
84123
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
82763
84124
|
assignedTo: string;
|
|
82764
84125
|
isSubscribed: boolean;
|
|
82765
84126
|
hasSeen: boolean;
|
|
84127
|
+
ignoreDuration: number;
|
|
84128
|
+
snoozeDuration: number | null;
|
|
82766
84129
|
merge: boolean;
|
|
82767
84130
|
discard: boolean;
|
|
82768
84131
|
}>;
|
|
@@ -82797,10 +84160,16 @@ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
|
|
|
82797
84160
|
commit: string;
|
|
82798
84161
|
} | undefined;
|
|
82799
84162
|
};
|
|
84163
|
+
ignoreCount: number;
|
|
84164
|
+
ignoreUserCount: number;
|
|
84165
|
+
ignoreUserWindow: number;
|
|
84166
|
+
ignoreWindow: number;
|
|
82800
84167
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
82801
84168
|
assignedTo: string;
|
|
82802
84169
|
isSubscribed: boolean;
|
|
82803
84170
|
hasSeen: boolean;
|
|
84171
|
+
ignoreDuration: number;
|
|
84172
|
+
snoozeDuration: number | null;
|
|
82804
84173
|
merge: boolean;
|
|
82805
84174
|
discard: boolean;
|
|
82806
84175
|
};
|
|
@@ -82829,10 +84198,16 @@ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
|
|
|
82829
84198
|
commit: string;
|
|
82830
84199
|
} | undefined;
|
|
82831
84200
|
};
|
|
84201
|
+
ignoreCount: number;
|
|
84202
|
+
ignoreUserCount: number;
|
|
84203
|
+
ignoreUserWindow: number;
|
|
84204
|
+
ignoreWindow: number;
|
|
82832
84205
|
substatus: "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new" | null;
|
|
82833
84206
|
assignedTo: string;
|
|
82834
84207
|
isSubscribed: boolean;
|
|
82835
84208
|
hasSeen: boolean;
|
|
84209
|
+
ignoreDuration: number;
|
|
84210
|
+
snoozeDuration: number | null;
|
|
82836
84211
|
merge: boolean;
|
|
82837
84212
|
discard: boolean;
|
|
82838
84213
|
};
|
|
@@ -83540,11 +84915,11 @@ export declare const zGetOrganizationIssueAutofixStateData: z.ZodObject<{
|
|
|
83540
84915
|
issue_id: string;
|
|
83541
84916
|
}>;
|
|
83542
84917
|
query: z.ZodOptional<z.ZodObject<{
|
|
83543
|
-
llmFormat: z.ZodOptional<z.ZodEnum<["markdown", "xml"]>>;
|
|
84918
|
+
llmFormat: z.ZodOptional<z.ZodEnum<["json", "markdown", "xml"]>>;
|
|
83544
84919
|
}, "strip", z.ZodTypeAny, {
|
|
83545
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
84920
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83546
84921
|
}, {
|
|
83547
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
84922
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83548
84923
|
}>>;
|
|
83549
84924
|
}, "strip", z.ZodTypeAny, {
|
|
83550
84925
|
path: {
|
|
@@ -83552,7 +84927,7 @@ export declare const zGetOrganizationIssueAutofixStateData: z.ZodObject<{
|
|
|
83552
84927
|
issue_id: string;
|
|
83553
84928
|
};
|
|
83554
84929
|
query?: {
|
|
83555
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
84930
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83556
84931
|
} | undefined;
|
|
83557
84932
|
body?: undefined;
|
|
83558
84933
|
}, {
|
|
@@ -83561,7 +84936,7 @@ export declare const zGetOrganizationIssueAutofixStateData: z.ZodObject<{
|
|
|
83561
84936
|
issue_id: string;
|
|
83562
84937
|
};
|
|
83563
84938
|
query?: {
|
|
83564
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
84939
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83565
84940
|
} | undefined;
|
|
83566
84941
|
body?: undefined;
|
|
83567
84942
|
}>;
|
|
@@ -83570,26 +84945,26 @@ export declare const zGetOrganizationIssueAutofixStateData: z.ZodObject<{
|
|
|
83570
84945
|
*/
|
|
83571
84946
|
export declare const zGetOrganizationIssueAutofixStateResponse: z.ZodObject<{
|
|
83572
84947
|
formatted: z.ZodOptional<z.ZodObject<{
|
|
83573
|
-
format: z.ZodEnum<["markdown", "xml"]>;
|
|
84948
|
+
format: z.ZodEnum<["markdown", "xml", "json"]>;
|
|
83574
84949
|
content: z.ZodString;
|
|
83575
84950
|
}, "strip", z.ZodTypeAny, {
|
|
83576
|
-
format: "markdown" | "xml";
|
|
84951
|
+
format: "json" | "markdown" | "xml";
|
|
83577
84952
|
content: string;
|
|
83578
84953
|
}, {
|
|
83579
|
-
format: "markdown" | "xml";
|
|
84954
|
+
format: "json" | "markdown" | "xml";
|
|
83580
84955
|
content: string;
|
|
83581
84956
|
}>>;
|
|
83582
84957
|
autofix: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>;
|
|
83583
84958
|
}, "strip", z.ZodTypeAny, {
|
|
83584
84959
|
autofix: Record<string, unknown> | null;
|
|
83585
84960
|
formatted?: {
|
|
83586
|
-
format: "markdown" | "xml";
|
|
84961
|
+
format: "json" | "markdown" | "xml";
|
|
83587
84962
|
content: string;
|
|
83588
84963
|
} | undefined;
|
|
83589
84964
|
}, {
|
|
83590
84965
|
autofix: Record<string, unknown> | null;
|
|
83591
84966
|
formatted?: {
|
|
83592
|
-
format: "markdown" | "xml";
|
|
84967
|
+
format: "json" | "markdown" | "xml";
|
|
83593
84968
|
content: string;
|
|
83594
84969
|
} | undefined;
|
|
83595
84970
|
}>;
|
|
@@ -83723,9 +85098,9 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
|
|
|
83723
85098
|
environment?: string[] | undefined;
|
|
83724
85099
|
cursor?: string | undefined;
|
|
83725
85100
|
per_page?: number | undefined;
|
|
83726
|
-
end?: string | undefined;
|
|
83727
|
-
start?: string | undefined;
|
|
83728
85101
|
statsPeriod?: string | undefined;
|
|
85102
|
+
start?: string | undefined;
|
|
85103
|
+
end?: string | undefined;
|
|
83729
85104
|
}, {
|
|
83730
85105
|
query?: string | undefined;
|
|
83731
85106
|
sample?: boolean | undefined;
|
|
@@ -83733,9 +85108,9 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
|
|
|
83733
85108
|
environment?: string[] | undefined;
|
|
83734
85109
|
cursor?: string | undefined;
|
|
83735
85110
|
per_page?: number | undefined;
|
|
83736
|
-
end?: string | undefined;
|
|
83737
|
-
start?: string | undefined;
|
|
83738
85111
|
statsPeriod?: string | undefined;
|
|
85112
|
+
start?: string | undefined;
|
|
85113
|
+
end?: string | undefined;
|
|
83739
85114
|
}>>;
|
|
83740
85115
|
}, "strip", z.ZodTypeAny, {
|
|
83741
85116
|
path: {
|
|
@@ -83749,9 +85124,9 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
|
|
|
83749
85124
|
environment?: string[] | undefined;
|
|
83750
85125
|
cursor?: string | undefined;
|
|
83751
85126
|
per_page?: number | undefined;
|
|
83752
|
-
end?: string | undefined;
|
|
83753
|
-
start?: string | undefined;
|
|
83754
85127
|
statsPeriod?: string | undefined;
|
|
85128
|
+
start?: string | undefined;
|
|
85129
|
+
end?: string | undefined;
|
|
83755
85130
|
} | undefined;
|
|
83756
85131
|
body?: undefined;
|
|
83757
85132
|
}, {
|
|
@@ -83766,9 +85141,9 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
|
|
|
83766
85141
|
environment?: string[] | undefined;
|
|
83767
85142
|
cursor?: string | undefined;
|
|
83768
85143
|
per_page?: number | undefined;
|
|
83769
|
-
end?: string | undefined;
|
|
83770
|
-
start?: string | undefined;
|
|
83771
85144
|
statsPeriod?: string | undefined;
|
|
85145
|
+
start?: string | undefined;
|
|
85146
|
+
end?: string | undefined;
|
|
83772
85147
|
} | undefined;
|
|
83773
85148
|
body?: undefined;
|
|
83774
85149
|
}>;
|
|
@@ -83898,13 +85273,13 @@ export declare const zGetOrganizationIssueEventData: z.ZodObject<{
|
|
|
83898
85273
|
}>;
|
|
83899
85274
|
query: z.ZodOptional<z.ZodObject<{
|
|
83900
85275
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
83901
|
-
llmFormat: z.ZodOptional<z.ZodEnum<["markdown", "xml"]>>;
|
|
85276
|
+
llmFormat: z.ZodOptional<z.ZodEnum<["json", "markdown", "xml"]>>;
|
|
83902
85277
|
}, "strip", z.ZodTypeAny, {
|
|
83903
85278
|
environment?: string[] | undefined;
|
|
83904
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
85279
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83905
85280
|
}, {
|
|
83906
85281
|
environment?: string[] | undefined;
|
|
83907
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
85282
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83908
85283
|
}>>;
|
|
83909
85284
|
}, "strip", z.ZodTypeAny, {
|
|
83910
85285
|
path: {
|
|
@@ -83914,7 +85289,7 @@ export declare const zGetOrganizationIssueEventData: z.ZodObject<{
|
|
|
83914
85289
|
};
|
|
83915
85290
|
query?: {
|
|
83916
85291
|
environment?: string[] | undefined;
|
|
83917
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
85292
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83918
85293
|
} | undefined;
|
|
83919
85294
|
body?: undefined;
|
|
83920
85295
|
}, {
|
|
@@ -83925,7 +85300,7 @@ export declare const zGetOrganizationIssueEventData: z.ZodObject<{
|
|
|
83925
85300
|
};
|
|
83926
85301
|
query?: {
|
|
83927
85302
|
environment?: string[] | undefined;
|
|
83928
|
-
llmFormat?: "markdown" | "xml" | undefined;
|
|
85303
|
+
llmFormat?: "json" | "markdown" | "xml" | undefined;
|
|
83929
85304
|
} | undefined;
|
|
83930
85305
|
body?: undefined;
|
|
83931
85306
|
}>;
|
|
@@ -84303,13 +85678,13 @@ export declare const zGetOrganizationIssueEventResponse: z.ZodObject<{
|
|
|
84303
85678
|
nextEventID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
84304
85679
|
previousEventID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
84305
85680
|
formatted: z.ZodOptional<z.ZodObject<{
|
|
84306
|
-
format: z.ZodEnum<["markdown", "xml"]>;
|
|
85681
|
+
format: z.ZodEnum<["markdown", "xml", "json"]>;
|
|
84307
85682
|
content: z.ZodString;
|
|
84308
85683
|
}, "strip", z.ZodTypeAny, {
|
|
84309
|
-
format: "markdown" | "xml";
|
|
85684
|
+
format: "json" | "markdown" | "xml";
|
|
84310
85685
|
content: string;
|
|
84311
85686
|
}, {
|
|
84312
|
-
format: "markdown" | "xml";
|
|
85687
|
+
format: "json" | "markdown" | "xml";
|
|
84313
85688
|
content: string;
|
|
84314
85689
|
}>>;
|
|
84315
85690
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -84428,7 +85803,7 @@ export declare const zGetOrganizationIssueEventResponse: z.ZodObject<{
|
|
|
84428
85803
|
nextEventID: string | null;
|
|
84429
85804
|
previousEventID: string | null;
|
|
84430
85805
|
formatted?: {
|
|
84431
|
-
format: "markdown" | "xml";
|
|
85806
|
+
format: "json" | "markdown" | "xml";
|
|
84432
85807
|
content: string;
|
|
84433
85808
|
} | undefined;
|
|
84434
85809
|
dateCreated?: string | undefined;
|
|
@@ -84565,7 +85940,7 @@ export declare const zGetOrganizationIssueEventResponse: z.ZodObject<{
|
|
|
84565
85940
|
nextEventID: string | null;
|
|
84566
85941
|
previousEventID: string | null;
|
|
84567
85942
|
formatted?: {
|
|
84568
|
-
format: "markdown" | "xml";
|
|
85943
|
+
format: "json" | "markdown" | "xml";
|
|
84569
85944
|
content: string;
|
|
84570
85945
|
} | undefined;
|
|
84571
85946
|
dateCreated?: string | undefined;
|