@sentry/api 0.207.0 → 0.209.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/sdk.gen.d.ts +2 -1
- package/dist/types.gen.d.ts +117 -90
- package/dist/zod.gen.d.ts +99 -85
- package/dist/zod.js +29 -19
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -4,10 +4,13 @@ import { z } from 'zod';
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const zAutofixPostResponse: z.ZodObject<{
|
|
6
6
|
run_id: z.ZodNumber;
|
|
7
|
+
sentry_run_id: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
7
8
|
}, "strip", z.ZodTypeAny, {
|
|
8
9
|
run_id: number;
|
|
10
|
+
sentry_run_id: string | null;
|
|
9
11
|
}, {
|
|
10
12
|
run_id: number;
|
|
13
|
+
sentry_run_id: string | null;
|
|
11
14
|
}>;
|
|
12
15
|
/**
|
|
13
16
|
* Response type for the GET endpoint
|
|
@@ -5310,6 +5313,7 @@ export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
|
5310
5313
|
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr", "coding_agent_handoff"]>>;
|
|
5311
5314
|
stopping_point: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr"]>>;
|
|
5312
5315
|
run_id: z.ZodOptional<z.ZodNumber>;
|
|
5316
|
+
sentry_run_id: z.ZodOptional<z.ZodString>;
|
|
5313
5317
|
integration_id: z.ZodOptional<z.ZodNumber>;
|
|
5314
5318
|
provider: z.ZodOptional<z.ZodString>;
|
|
5315
5319
|
user_context: z.ZodOptional<z.ZodString>;
|
|
@@ -5320,6 +5324,7 @@ export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
|
5320
5324
|
referrer?: string | undefined;
|
|
5321
5325
|
integration_id?: number | undefined;
|
|
5322
5326
|
run_id?: number | undefined;
|
|
5327
|
+
sentry_run_id?: string | undefined;
|
|
5323
5328
|
provider?: string | undefined;
|
|
5324
5329
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5325
5330
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -5330,6 +5335,7 @@ export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
|
5330
5335
|
referrer?: string | undefined;
|
|
5331
5336
|
integration_id?: number | undefined;
|
|
5332
5337
|
run_id?: number | undefined;
|
|
5338
|
+
sentry_run_id?: string | undefined;
|
|
5333
5339
|
provider?: string | undefined;
|
|
5334
5340
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5335
5341
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -31874,19 +31880,19 @@ export declare const zDeleteOrganizationDetectorsData: z.ZodObject<{
|
|
|
31874
31880
|
organization_id_or_slug: string;
|
|
31875
31881
|
}>;
|
|
31876
31882
|
query: z.ZodOptional<z.ZodObject<{
|
|
31877
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
31883
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
31878
31884
|
query: z.ZodOptional<z.ZodString>;
|
|
31879
31885
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
31880
31886
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
31881
31887
|
}, "strip", z.ZodTypeAny, {
|
|
31882
31888
|
query?: string | undefined;
|
|
31883
31889
|
id?: number[] | undefined;
|
|
31884
|
-
project?: number[] | undefined;
|
|
31890
|
+
project?: (string | number)[] | undefined;
|
|
31885
31891
|
sortBy?: string | undefined;
|
|
31886
31892
|
}, {
|
|
31887
31893
|
query?: string | undefined;
|
|
31888
31894
|
id?: number[] | undefined;
|
|
31889
|
-
project?: number[] | undefined;
|
|
31895
|
+
project?: (string | number)[] | undefined;
|
|
31890
31896
|
sortBy?: string | undefined;
|
|
31891
31897
|
}>>;
|
|
31892
31898
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31896,7 +31902,7 @@ export declare const zDeleteOrganizationDetectorsData: z.ZodObject<{
|
|
|
31896
31902
|
query?: {
|
|
31897
31903
|
query?: string | undefined;
|
|
31898
31904
|
id?: number[] | undefined;
|
|
31899
|
-
project?: number[] | undefined;
|
|
31905
|
+
project?: (string | number)[] | undefined;
|
|
31900
31906
|
sortBy?: string | undefined;
|
|
31901
31907
|
} | undefined;
|
|
31902
31908
|
body?: undefined;
|
|
@@ -31907,7 +31913,7 @@ export declare const zDeleteOrganizationDetectorsData: z.ZodObject<{
|
|
|
31907
31913
|
query?: {
|
|
31908
31914
|
query?: string | undefined;
|
|
31909
31915
|
id?: number[] | undefined;
|
|
31910
|
-
project?: number[] | undefined;
|
|
31916
|
+
project?: (string | number)[] | undefined;
|
|
31911
31917
|
sortBy?: string | undefined;
|
|
31912
31918
|
} | undefined;
|
|
31913
31919
|
body?: undefined;
|
|
@@ -31923,19 +31929,19 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
31923
31929
|
organization_id_or_slug: string;
|
|
31924
31930
|
}>;
|
|
31925
31931
|
query: z.ZodOptional<z.ZodObject<{
|
|
31926
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
31932
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
31927
31933
|
query: z.ZodOptional<z.ZodString>;
|
|
31928
31934
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
31929
31935
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
31930
31936
|
}, "strip", z.ZodTypeAny, {
|
|
31931
31937
|
query?: string | undefined;
|
|
31932
31938
|
id?: number[] | undefined;
|
|
31933
|
-
project?: number[] | undefined;
|
|
31939
|
+
project?: (string | number)[] | undefined;
|
|
31934
31940
|
sortBy?: string | undefined;
|
|
31935
31941
|
}, {
|
|
31936
31942
|
query?: string | undefined;
|
|
31937
31943
|
id?: number[] | undefined;
|
|
31938
|
-
project?: number[] | undefined;
|
|
31944
|
+
project?: (string | number)[] | undefined;
|
|
31939
31945
|
sortBy?: string | undefined;
|
|
31940
31946
|
}>>;
|
|
31941
31947
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31945,7 +31951,7 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
31945
31951
|
query?: {
|
|
31946
31952
|
query?: string | undefined;
|
|
31947
31953
|
id?: number[] | undefined;
|
|
31948
|
-
project?: number[] | undefined;
|
|
31954
|
+
project?: (string | number)[] | undefined;
|
|
31949
31955
|
sortBy?: string | undefined;
|
|
31950
31956
|
} | undefined;
|
|
31951
31957
|
body?: undefined;
|
|
@@ -31956,7 +31962,7 @@ export declare const zListOrganizationDetectorsData: z.ZodObject<{
|
|
|
31956
31962
|
query?: {
|
|
31957
31963
|
query?: string | undefined;
|
|
31958
31964
|
id?: number[] | undefined;
|
|
31959
|
-
project?: number[] | undefined;
|
|
31965
|
+
project?: (string | number)[] | undefined;
|
|
31960
31966
|
sortBy?: string | undefined;
|
|
31961
31967
|
} | undefined;
|
|
31962
31968
|
body?: undefined;
|
|
@@ -32051,17 +32057,17 @@ export declare const zUpdateOrganizationDetectorsData: z.ZodObject<{
|
|
|
32051
32057
|
organization_id_or_slug: string;
|
|
32052
32058
|
}>;
|
|
32053
32059
|
query: z.ZodOptional<z.ZodObject<{
|
|
32054
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
32060
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
32055
32061
|
query: z.ZodOptional<z.ZodString>;
|
|
32056
32062
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
32057
32063
|
}, "strip", z.ZodTypeAny, {
|
|
32058
32064
|
query?: string | undefined;
|
|
32059
32065
|
id?: number[] | undefined;
|
|
32060
|
-
project?: number[] | undefined;
|
|
32066
|
+
project?: (string | number)[] | undefined;
|
|
32061
32067
|
}, {
|
|
32062
32068
|
query?: string | undefined;
|
|
32063
32069
|
id?: number[] | undefined;
|
|
32064
|
-
project?: number[] | undefined;
|
|
32070
|
+
project?: (string | number)[] | undefined;
|
|
32065
32071
|
}>>;
|
|
32066
32072
|
}, "strip", z.ZodTypeAny, {
|
|
32067
32073
|
body: {
|
|
@@ -32073,7 +32079,7 @@ export declare const zUpdateOrganizationDetectorsData: z.ZodObject<{
|
|
|
32073
32079
|
query?: {
|
|
32074
32080
|
query?: string | undefined;
|
|
32075
32081
|
id?: number[] | undefined;
|
|
32076
|
-
project?: number[] | undefined;
|
|
32082
|
+
project?: (string | number)[] | undefined;
|
|
32077
32083
|
} | undefined;
|
|
32078
32084
|
}, {
|
|
32079
32085
|
body: {
|
|
@@ -32085,7 +32091,7 @@ export declare const zUpdateOrganizationDetectorsData: z.ZodObject<{
|
|
|
32085
32091
|
query?: {
|
|
32086
32092
|
query?: string | undefined;
|
|
32087
32093
|
id?: number[] | undefined;
|
|
32088
|
-
project?: number[] | undefined;
|
|
32094
|
+
project?: (string | number)[] | undefined;
|
|
32089
32095
|
} | undefined;
|
|
32090
32096
|
}>;
|
|
32091
32097
|
export declare const zUpdateOrganizationDetectorsResponse: z.ZodArray<z.ZodObject<{
|
|
@@ -34542,7 +34548,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34542
34548
|
dataset: z.ZodEnum<["errors", "logs", "profile_functions", "spans", "tracemetrics", "uptime_results"]>;
|
|
34543
34549
|
end: z.ZodOptional<z.ZodString>;
|
|
34544
34550
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34545
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
34551
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
34546
34552
|
start: z.ZodOptional<z.ZodString>;
|
|
34547
34553
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
34548
34554
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
@@ -34556,7 +34562,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34556
34562
|
sort?: string | undefined;
|
|
34557
34563
|
query?: string | undefined;
|
|
34558
34564
|
environment?: string[] | undefined;
|
|
34559
|
-
project?: number[] | undefined;
|
|
34565
|
+
project?: (string | number)[] | undefined;
|
|
34560
34566
|
cursor?: string | undefined;
|
|
34561
34567
|
per_page?: number | undefined;
|
|
34562
34568
|
end?: string | undefined;
|
|
@@ -34569,7 +34575,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34569
34575
|
sort?: string | undefined;
|
|
34570
34576
|
query?: string | undefined;
|
|
34571
34577
|
environment?: string[] | undefined;
|
|
34572
|
-
project?: number[] | undefined;
|
|
34578
|
+
project?: (string | number)[] | undefined;
|
|
34573
34579
|
cursor?: string | undefined;
|
|
34574
34580
|
per_page?: number | undefined;
|
|
34575
34581
|
end?: string | undefined;
|
|
@@ -34584,7 +34590,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34584
34590
|
sort?: string | undefined;
|
|
34585
34591
|
query?: string | undefined;
|
|
34586
34592
|
environment?: string[] | undefined;
|
|
34587
|
-
project?: number[] | undefined;
|
|
34593
|
+
project?: (string | number)[] | undefined;
|
|
34588
34594
|
cursor?: string | undefined;
|
|
34589
34595
|
per_page?: number | undefined;
|
|
34590
34596
|
end?: string | undefined;
|
|
@@ -34603,7 +34609,7 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34603
34609
|
sort?: string | undefined;
|
|
34604
34610
|
query?: string | undefined;
|
|
34605
34611
|
environment?: string[] | undefined;
|
|
34606
|
-
project?: number[] | undefined;
|
|
34612
|
+
project?: (string | number)[] | undefined;
|
|
34607
34613
|
cursor?: string | undefined;
|
|
34608
34614
|
per_page?: number | undefined;
|
|
34609
34615
|
end?: string | undefined;
|
|
@@ -34699,7 +34705,7 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
34699
34705
|
dataset: z.ZodEnum<["errors", "logs", "profile_functions", "spans", "tracemetrics", "uptime_results"]>;
|
|
34700
34706
|
end: z.ZodOptional<z.ZodString>;
|
|
34701
34707
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
34702
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
34708
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
34703
34709
|
start: z.ZodOptional<z.ZodString>;
|
|
34704
34710
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
34705
34711
|
topEvents: z.ZodOptional<z.ZodNumber>;
|
|
@@ -34718,7 +34724,7 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
34718
34724
|
query?: string | undefined;
|
|
34719
34725
|
interval?: number | undefined;
|
|
34720
34726
|
environment?: string[] | undefined;
|
|
34721
|
-
project?: number[] | undefined;
|
|
34727
|
+
project?: (string | number)[] | undefined;
|
|
34722
34728
|
end?: string | undefined;
|
|
34723
34729
|
start?: string | undefined;
|
|
34724
34730
|
statsPeriod?: string | undefined;
|
|
@@ -34735,7 +34741,7 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
34735
34741
|
query?: string | undefined;
|
|
34736
34742
|
interval?: number | undefined;
|
|
34737
34743
|
environment?: string[] | undefined;
|
|
34738
|
-
project?: number[] | undefined;
|
|
34744
|
+
project?: (string | number)[] | undefined;
|
|
34739
34745
|
end?: string | undefined;
|
|
34740
34746
|
start?: string | undefined;
|
|
34741
34747
|
statsPeriod?: string | undefined;
|
|
@@ -34754,7 +34760,7 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
34754
34760
|
query?: string | undefined;
|
|
34755
34761
|
interval?: number | undefined;
|
|
34756
34762
|
environment?: string[] | undefined;
|
|
34757
|
-
project?: number[] | undefined;
|
|
34763
|
+
project?: (string | number)[] | undefined;
|
|
34758
34764
|
end?: string | undefined;
|
|
34759
34765
|
start?: string | undefined;
|
|
34760
34766
|
statsPeriod?: string | undefined;
|
|
@@ -34777,7 +34783,7 @@ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
|
34777
34783
|
query?: string | undefined;
|
|
34778
34784
|
interval?: number | undefined;
|
|
34779
34785
|
environment?: string[] | undefined;
|
|
34780
|
-
project?: number[] | undefined;
|
|
34786
|
+
project?: (string | number)[] | undefined;
|
|
34781
34787
|
end?: string | undefined;
|
|
34782
34788
|
start?: string | undefined;
|
|
34783
34789
|
statsPeriod?: string | undefined;
|
|
@@ -35977,7 +35983,7 @@ export declare const zDeleteOrganizationIssuesData: z.ZodObject<{
|
|
|
35977
35983
|
}>;
|
|
35978
35984
|
query: z.ZodOptional<z.ZodObject<{
|
|
35979
35985
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
35980
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
35986
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
35981
35987
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
35982
35988
|
query: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
35983
35989
|
viewId: z.ZodOptional<z.ZodString>;
|
|
@@ -35989,14 +35995,14 @@ export declare const zDeleteOrganizationIssuesData: z.ZodObject<{
|
|
|
35989
35995
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
35990
35996
|
environment?: string[] | undefined;
|
|
35991
35997
|
id?: number[] | undefined;
|
|
35992
|
-
project?: number[] | undefined;
|
|
35998
|
+
project?: (string | number)[] | undefined;
|
|
35993
35999
|
viewId?: string | undefined;
|
|
35994
36000
|
}, {
|
|
35995
36001
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
35996
36002
|
query?: string | undefined;
|
|
35997
36003
|
environment?: string[] | undefined;
|
|
35998
36004
|
id?: number[] | undefined;
|
|
35999
|
-
project?: number[] | undefined;
|
|
36005
|
+
project?: (string | number)[] | undefined;
|
|
36000
36006
|
viewId?: string | undefined;
|
|
36001
36007
|
limit?: number | undefined;
|
|
36002
36008
|
}>>;
|
|
@@ -36010,7 +36016,7 @@ export declare const zDeleteOrganizationIssuesData: z.ZodObject<{
|
|
|
36010
36016
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
36011
36017
|
environment?: string[] | undefined;
|
|
36012
36018
|
id?: number[] | undefined;
|
|
36013
|
-
project?: number[] | undefined;
|
|
36019
|
+
project?: (string | number)[] | undefined;
|
|
36014
36020
|
viewId?: string | undefined;
|
|
36015
36021
|
} | undefined;
|
|
36016
36022
|
body?: undefined;
|
|
@@ -36023,7 +36029,7 @@ export declare const zDeleteOrganizationIssuesData: z.ZodObject<{
|
|
|
36023
36029
|
query?: string | undefined;
|
|
36024
36030
|
environment?: string[] | undefined;
|
|
36025
36031
|
id?: number[] | undefined;
|
|
36026
|
-
project?: number[] | undefined;
|
|
36032
|
+
project?: (string | number)[] | undefined;
|
|
36027
36033
|
viewId?: string | undefined;
|
|
36028
36034
|
limit?: number | undefined;
|
|
36029
36035
|
} | undefined;
|
|
@@ -36044,7 +36050,7 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
36044
36050
|
}>;
|
|
36045
36051
|
query: z.ZodOptional<z.ZodObject<{
|
|
36046
36052
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
36047
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
36053
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
36048
36054
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
36049
36055
|
start: z.ZodOptional<z.ZodString>;
|
|
36050
36056
|
end: z.ZodOptional<z.ZodString>;
|
|
@@ -36062,7 +36068,7 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
36062
36068
|
limit: number;
|
|
36063
36069
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
36064
36070
|
environment?: string[] | undefined;
|
|
36065
|
-
project?: number[] | undefined;
|
|
36071
|
+
project?: (string | number)[] | undefined;
|
|
36066
36072
|
cursor?: string | undefined;
|
|
36067
36073
|
end?: string | undefined;
|
|
36068
36074
|
start?: string | undefined;
|
|
@@ -36076,7 +36082,7 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
36076
36082
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
36077
36083
|
query?: string | undefined;
|
|
36078
36084
|
environment?: string[] | undefined;
|
|
36079
|
-
project?: number[] | undefined;
|
|
36085
|
+
project?: (string | number)[] | undefined;
|
|
36080
36086
|
cursor?: string | undefined;
|
|
36081
36087
|
end?: string | undefined;
|
|
36082
36088
|
start?: string | undefined;
|
|
@@ -36097,7 +36103,7 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
36097
36103
|
limit: number;
|
|
36098
36104
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
36099
36105
|
environment?: string[] | undefined;
|
|
36100
|
-
project?: number[] | undefined;
|
|
36106
|
+
project?: (string | number)[] | undefined;
|
|
36101
36107
|
cursor?: string | undefined;
|
|
36102
36108
|
end?: string | undefined;
|
|
36103
36109
|
start?: string | undefined;
|
|
@@ -36117,7 +36123,7 @@ export declare const zListOrganizationIssuesData: z.ZodObject<{
|
|
|
36117
36123
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
36118
36124
|
query?: string | undefined;
|
|
36119
36125
|
environment?: string[] | undefined;
|
|
36120
|
-
project?: number[] | undefined;
|
|
36126
|
+
project?: (string | number)[] | undefined;
|
|
36121
36127
|
cursor?: string | undefined;
|
|
36122
36128
|
end?: string | undefined;
|
|
36123
36129
|
start?: string | undefined;
|
|
@@ -37007,7 +37013,7 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
37007
37013
|
}>;
|
|
37008
37014
|
query: z.ZodOptional<z.ZodObject<{
|
|
37009
37015
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
37010
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
37016
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
37011
37017
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
37012
37018
|
query: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
37013
37019
|
viewId: z.ZodOptional<z.ZodString>;
|
|
@@ -37019,14 +37025,14 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
37019
37025
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
37020
37026
|
environment?: string[] | undefined;
|
|
37021
37027
|
id?: number[] | undefined;
|
|
37022
|
-
project?: number[] | undefined;
|
|
37028
|
+
project?: (string | number)[] | undefined;
|
|
37023
37029
|
viewId?: string | undefined;
|
|
37024
37030
|
}, {
|
|
37025
37031
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
37026
37032
|
query?: string | undefined;
|
|
37027
37033
|
environment?: string[] | undefined;
|
|
37028
37034
|
id?: number[] | undefined;
|
|
37029
|
-
project?: number[] | undefined;
|
|
37035
|
+
project?: (string | number)[] | undefined;
|
|
37030
37036
|
viewId?: string | undefined;
|
|
37031
37037
|
limit?: number | undefined;
|
|
37032
37038
|
}>>;
|
|
@@ -37066,7 +37072,7 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
37066
37072
|
sort?: "user" | "new" | "date" | "freq" | "inbox" | "recommended" | "trends" | undefined;
|
|
37067
37073
|
environment?: string[] | undefined;
|
|
37068
37074
|
id?: number[] | undefined;
|
|
37069
|
-
project?: number[] | undefined;
|
|
37075
|
+
project?: (string | number)[] | undefined;
|
|
37070
37076
|
viewId?: string | undefined;
|
|
37071
37077
|
} | undefined;
|
|
37072
37078
|
}, {
|
|
@@ -37104,7 +37110,7 @@ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
|
|
|
37104
37110
|
query?: string | undefined;
|
|
37105
37111
|
environment?: string[] | undefined;
|
|
37106
37112
|
id?: number[] | undefined;
|
|
37107
|
-
project?: number[] | undefined;
|
|
37113
|
+
project?: (string | number)[] | undefined;
|
|
37108
37114
|
viewId?: string | undefined;
|
|
37109
37115
|
limit?: number | undefined;
|
|
37110
37116
|
} | undefined;
|
|
@@ -39548,19 +39554,19 @@ export declare const zListOrganizationMonitorsData: z.ZodObject<{
|
|
|
39548
39554
|
organization_id_or_slug: string;
|
|
39549
39555
|
}>;
|
|
39550
39556
|
query: z.ZodOptional<z.ZodObject<{
|
|
39551
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
39557
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
39552
39558
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39553
39559
|
owner: z.ZodOptional<z.ZodString>;
|
|
39554
39560
|
cursor: z.ZodOptional<z.ZodString>;
|
|
39555
39561
|
}, "strip", z.ZodTypeAny, {
|
|
39556
39562
|
owner?: string | undefined;
|
|
39557
39563
|
environment?: string[] | undefined;
|
|
39558
|
-
project?: number[] | undefined;
|
|
39564
|
+
project?: (string | number)[] | undefined;
|
|
39559
39565
|
cursor?: string | undefined;
|
|
39560
39566
|
}, {
|
|
39561
39567
|
owner?: string | undefined;
|
|
39562
39568
|
environment?: string[] | undefined;
|
|
39563
|
-
project?: number[] | undefined;
|
|
39569
|
+
project?: (string | number)[] | undefined;
|
|
39564
39570
|
cursor?: string | undefined;
|
|
39565
39571
|
}>>;
|
|
39566
39572
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39570,7 +39576,7 @@ export declare const zListOrganizationMonitorsData: z.ZodObject<{
|
|
|
39570
39576
|
query?: {
|
|
39571
39577
|
owner?: string | undefined;
|
|
39572
39578
|
environment?: string[] | undefined;
|
|
39573
|
-
project?: number[] | undefined;
|
|
39579
|
+
project?: (string | number)[] | undefined;
|
|
39574
39580
|
cursor?: string | undefined;
|
|
39575
39581
|
} | undefined;
|
|
39576
39582
|
body?: undefined;
|
|
@@ -39581,7 +39587,7 @@ export declare const zListOrganizationMonitorsData: z.ZodObject<{
|
|
|
39581
39587
|
query?: {
|
|
39582
39588
|
owner?: string | undefined;
|
|
39583
39589
|
environment?: string[] | undefined;
|
|
39584
|
-
project?: number[] | undefined;
|
|
39590
|
+
project?: (string | number)[] | undefined;
|
|
39585
39591
|
cursor?: string | undefined;
|
|
39586
39592
|
} | undefined;
|
|
39587
39593
|
body?: undefined;
|
|
@@ -41954,15 +41960,15 @@ export declare const zListOrganizationNotificationsActionsData: z.ZodObject<{
|
|
|
41954
41960
|
organization_id_or_slug: string;
|
|
41955
41961
|
}>;
|
|
41956
41962
|
query: z.ZodOptional<z.ZodObject<{
|
|
41957
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
41963
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
41958
41964
|
project_id_or_slug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
41959
41965
|
triggerType: z.ZodOptional<z.ZodString>;
|
|
41960
41966
|
}, "strip", z.ZodTypeAny, {
|
|
41961
|
-
project?: number[] | undefined;
|
|
41967
|
+
project?: (string | number)[] | undefined;
|
|
41962
41968
|
project_id_or_slug?: string[] | undefined;
|
|
41963
41969
|
triggerType?: string | undefined;
|
|
41964
41970
|
}, {
|
|
41965
|
-
project?: number[] | undefined;
|
|
41971
|
+
project?: (string | number)[] | undefined;
|
|
41966
41972
|
project_id_or_slug?: string[] | undefined;
|
|
41967
41973
|
triggerType?: string | undefined;
|
|
41968
41974
|
}>>;
|
|
@@ -41971,7 +41977,7 @@ export declare const zListOrganizationNotificationsActionsData: z.ZodObject<{
|
|
|
41971
41977
|
organization_id_or_slug: string;
|
|
41972
41978
|
};
|
|
41973
41979
|
query?: {
|
|
41974
|
-
project?: number[] | undefined;
|
|
41980
|
+
project?: (string | number)[] | undefined;
|
|
41975
41981
|
project_id_or_slug?: string[] | undefined;
|
|
41976
41982
|
triggerType?: string | undefined;
|
|
41977
41983
|
} | undefined;
|
|
@@ -41981,7 +41987,7 @@ export declare const zListOrganizationNotificationsActionsData: z.ZodObject<{
|
|
|
41981
41987
|
organization_id_or_slug: string;
|
|
41982
41988
|
};
|
|
41983
41989
|
query?: {
|
|
41984
|
-
project?: number[] | undefined;
|
|
41990
|
+
project?: (string | number)[] | undefined;
|
|
41985
41991
|
project_id_or_slug?: string[] | undefined;
|
|
41986
41992
|
triggerType?: string | undefined;
|
|
41987
41993
|
} | undefined;
|
|
@@ -44231,7 +44237,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44231
44237
|
organization_id_or_slug: string;
|
|
44232
44238
|
}>;
|
|
44233
44239
|
query: z.ZodOptional<z.ZodObject<{
|
|
44234
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
44240
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
44235
44241
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
44236
44242
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
44237
44243
|
start: z.ZodOptional<z.ZodString>;
|
|
@@ -44243,7 +44249,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44243
44249
|
}, "strip", z.ZodTypeAny, {
|
|
44244
44250
|
query?: string | undefined;
|
|
44245
44251
|
environment?: string[] | undefined;
|
|
44246
|
-
project?: number[] | undefined;
|
|
44252
|
+
project?: (string | number)[] | undefined;
|
|
44247
44253
|
end?: string | undefined;
|
|
44248
44254
|
start?: string | undefined;
|
|
44249
44255
|
statsPeriod?: string | undefined;
|
|
@@ -44253,7 +44259,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44253
44259
|
}, {
|
|
44254
44260
|
query?: string | undefined;
|
|
44255
44261
|
environment?: string[] | undefined;
|
|
44256
|
-
project?: number[] | undefined;
|
|
44262
|
+
project?: (string | number)[] | undefined;
|
|
44257
44263
|
end?: string | undefined;
|
|
44258
44264
|
start?: string | undefined;
|
|
44259
44265
|
statsPeriod?: string | undefined;
|
|
@@ -44268,7 +44274,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44268
44274
|
query?: {
|
|
44269
44275
|
query?: string | undefined;
|
|
44270
44276
|
environment?: string[] | undefined;
|
|
44271
|
-
project?: number[] | undefined;
|
|
44277
|
+
project?: (string | number)[] | undefined;
|
|
44272
44278
|
end?: string | undefined;
|
|
44273
44279
|
start?: string | undefined;
|
|
44274
44280
|
statsPeriod?: string | undefined;
|
|
@@ -44284,7 +44290,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44284
44290
|
query?: {
|
|
44285
44291
|
query?: string | undefined;
|
|
44286
44292
|
environment?: string[] | undefined;
|
|
44287
|
-
project?: number[] | undefined;
|
|
44293
|
+
project?: (string | number)[] | undefined;
|
|
44288
44294
|
end?: string | undefined;
|
|
44289
44295
|
start?: string | undefined;
|
|
44290
44296
|
statsPeriod?: string | undefined;
|
|
@@ -46927,7 +46933,7 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
46927
46933
|
start: z.ZodOptional<z.ZodString>;
|
|
46928
46934
|
end: z.ZodOptional<z.ZodString>;
|
|
46929
46935
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
46930
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
46936
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
46931
46937
|
project_id_or_slug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46932
46938
|
query: z.ZodOptional<z.ZodString>;
|
|
46933
46939
|
data_source: z.ZodOptional<z.ZodEnum<["discover", "events", "search_issues", "transactions"]>>;
|
|
@@ -46935,7 +46941,7 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
46935
46941
|
}, "strip", z.ZodTypeAny, {
|
|
46936
46942
|
query?: string | undefined;
|
|
46937
46943
|
environment?: string[] | undefined;
|
|
46938
|
-
project?: number[] | undefined;
|
|
46944
|
+
project?: (string | number)[] | undefined;
|
|
46939
46945
|
end?: string | undefined;
|
|
46940
46946
|
start?: string | undefined;
|
|
46941
46947
|
statsPeriod?: string | undefined;
|
|
@@ -46945,7 +46951,7 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
46945
46951
|
}, {
|
|
46946
46952
|
query?: string | undefined;
|
|
46947
46953
|
environment?: string[] | undefined;
|
|
46948
|
-
project?: number[] | undefined;
|
|
46954
|
+
project?: (string | number)[] | undefined;
|
|
46949
46955
|
end?: string | undefined;
|
|
46950
46956
|
start?: string | undefined;
|
|
46951
46957
|
statsPeriod?: string | undefined;
|
|
@@ -46960,7 +46966,7 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
46960
46966
|
query?: {
|
|
46961
46967
|
query?: string | undefined;
|
|
46962
46968
|
environment?: string[] | undefined;
|
|
46963
|
-
project?: number[] | undefined;
|
|
46969
|
+
project?: (string | number)[] | undefined;
|
|
46964
46970
|
end?: string | undefined;
|
|
46965
46971
|
start?: string | undefined;
|
|
46966
46972
|
statsPeriod?: string | undefined;
|
|
@@ -46976,7 +46982,7 @@ export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
|
46976
46982
|
query?: {
|
|
46977
46983
|
query?: string | undefined;
|
|
46978
46984
|
environment?: string[] | undefined;
|
|
46979
|
-
project?: number[] | undefined;
|
|
46985
|
+
project?: (string | number)[] | undefined;
|
|
46980
46986
|
end?: string | undefined;
|
|
46981
46987
|
start?: string | undefined;
|
|
46982
46988
|
statsPeriod?: string | undefined;
|
|
@@ -50228,7 +50234,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50228
50234
|
end: z.ZodOptional<z.ZodString>;
|
|
50229
50235
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50230
50236
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
50231
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
50237
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
50232
50238
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
50233
50239
|
interval: z.ZodOptional<z.ZodString>;
|
|
50234
50240
|
groupBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -50241,7 +50247,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50241
50247
|
query?: string | undefined;
|
|
50242
50248
|
interval?: string | undefined;
|
|
50243
50249
|
environment?: string[] | undefined;
|
|
50244
|
-
project?: number[] | undefined;
|
|
50250
|
+
project?: (string | number)[] | undefined;
|
|
50245
50251
|
per_page?: number | undefined;
|
|
50246
50252
|
end?: string | undefined;
|
|
50247
50253
|
start?: string | undefined;
|
|
@@ -50255,7 +50261,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50255
50261
|
query?: string | undefined;
|
|
50256
50262
|
interval?: string | undefined;
|
|
50257
50263
|
environment?: string[] | undefined;
|
|
50258
|
-
project?: number[] | undefined;
|
|
50264
|
+
project?: (string | number)[] | undefined;
|
|
50259
50265
|
per_page?: number | undefined;
|
|
50260
50266
|
end?: string | undefined;
|
|
50261
50267
|
start?: string | undefined;
|
|
@@ -50271,7 +50277,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50271
50277
|
query?: string | undefined;
|
|
50272
50278
|
interval?: string | undefined;
|
|
50273
50279
|
environment?: string[] | undefined;
|
|
50274
|
-
project?: number[] | undefined;
|
|
50280
|
+
project?: (string | number)[] | undefined;
|
|
50275
50281
|
per_page?: number | undefined;
|
|
50276
50282
|
end?: string | undefined;
|
|
50277
50283
|
start?: string | undefined;
|
|
@@ -50291,7 +50297,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50291
50297
|
query?: string | undefined;
|
|
50292
50298
|
interval?: string | undefined;
|
|
50293
50299
|
environment?: string[] | undefined;
|
|
50294
|
-
project?: number[] | undefined;
|
|
50300
|
+
project?: (string | number)[] | undefined;
|
|
50295
50301
|
per_page?: number | undefined;
|
|
50296
50302
|
end?: string | undefined;
|
|
50297
50303
|
start?: string | undefined;
|
|
@@ -51496,7 +51502,7 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
51496
51502
|
organization_id_or_slug: string;
|
|
51497
51503
|
}>;
|
|
51498
51504
|
query: z.ZodOptional<z.ZodObject<{
|
|
51499
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
51505
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
51500
51506
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51501
51507
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
51502
51508
|
start: z.ZodOptional<z.ZodString>;
|
|
@@ -51506,7 +51512,7 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
51506
51512
|
useFlagsBackend: z.ZodOptional<z.ZodEnum<["0", "1"]>>;
|
|
51507
51513
|
}, "strip", z.ZodTypeAny, {
|
|
51508
51514
|
environment?: string[] | undefined;
|
|
51509
|
-
project?: number[] | undefined;
|
|
51515
|
+
project?: (string | number)[] | undefined;
|
|
51510
51516
|
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
51511
51517
|
end?: string | undefined;
|
|
51512
51518
|
start?: string | undefined;
|
|
@@ -51515,7 +51521,7 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
51515
51521
|
useFlagsBackend?: "0" | "1" | undefined;
|
|
51516
51522
|
}, {
|
|
51517
51523
|
environment?: string[] | undefined;
|
|
51518
|
-
project?: number[] | undefined;
|
|
51524
|
+
project?: (string | number)[] | undefined;
|
|
51519
51525
|
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
51520
51526
|
end?: string | undefined;
|
|
51521
51527
|
start?: string | undefined;
|
|
@@ -51529,7 +51535,7 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
51529
51535
|
};
|
|
51530
51536
|
query?: {
|
|
51531
51537
|
environment?: string[] | undefined;
|
|
51532
|
-
project?: number[] | undefined;
|
|
51538
|
+
project?: (string | number)[] | undefined;
|
|
51533
51539
|
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
51534
51540
|
end?: string | undefined;
|
|
51535
51541
|
start?: string | undefined;
|
|
@@ -51544,7 +51550,7 @@ export declare const zListOrganizationTagsData: z.ZodObject<{
|
|
|
51544
51550
|
};
|
|
51545
51551
|
query?: {
|
|
51546
51552
|
environment?: string[] | undefined;
|
|
51547
|
-
project?: number[] | undefined;
|
|
51553
|
+
project?: (string | number)[] | undefined;
|
|
51548
51554
|
dataset?: "discover" | "events" | "search_issues" | "replays" | undefined;
|
|
51549
51555
|
end?: string | undefined;
|
|
51550
51556
|
start?: string | undefined;
|
|
@@ -54138,15 +54144,15 @@ export declare const zDeleteOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54138
54144
|
query: z.ZodOptional<z.ZodObject<{
|
|
54139
54145
|
query: z.ZodOptional<z.ZodString>;
|
|
54140
54146
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54141
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54147
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
54142
54148
|
}, "strip", z.ZodTypeAny, {
|
|
54143
54149
|
query?: string | undefined;
|
|
54144
54150
|
id?: number[] | undefined;
|
|
54145
|
-
project?: number[] | undefined;
|
|
54151
|
+
project?: (string | number)[] | undefined;
|
|
54146
54152
|
}, {
|
|
54147
54153
|
query?: string | undefined;
|
|
54148
54154
|
id?: number[] | undefined;
|
|
54149
|
-
project?: number[] | undefined;
|
|
54155
|
+
project?: (string | number)[] | undefined;
|
|
54150
54156
|
}>>;
|
|
54151
54157
|
}, "strip", z.ZodTypeAny, {
|
|
54152
54158
|
path: {
|
|
@@ -54155,7 +54161,7 @@ export declare const zDeleteOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54155
54161
|
query?: {
|
|
54156
54162
|
query?: string | undefined;
|
|
54157
54163
|
id?: number[] | undefined;
|
|
54158
|
-
project?: number[] | undefined;
|
|
54164
|
+
project?: (string | number)[] | undefined;
|
|
54159
54165
|
} | undefined;
|
|
54160
54166
|
body?: undefined;
|
|
54161
54167
|
}, {
|
|
@@ -54165,7 +54171,7 @@ export declare const zDeleteOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54165
54171
|
query?: {
|
|
54166
54172
|
query?: string | undefined;
|
|
54167
54173
|
id?: number[] | undefined;
|
|
54168
|
-
project?: number[] | undefined;
|
|
54174
|
+
project?: (string | number)[] | undefined;
|
|
54169
54175
|
} | undefined;
|
|
54170
54176
|
body?: undefined;
|
|
54171
54177
|
}>;
|
|
@@ -54183,16 +54189,16 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54183
54189
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
54184
54190
|
query: z.ZodOptional<z.ZodString>;
|
|
54185
54191
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54186
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54192
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
54187
54193
|
}, "strip", z.ZodTypeAny, {
|
|
54188
54194
|
query?: string | undefined;
|
|
54189
54195
|
id?: number[] | undefined;
|
|
54190
|
-
project?: number[] | undefined;
|
|
54196
|
+
project?: (string | number)[] | undefined;
|
|
54191
54197
|
sortBy?: string | undefined;
|
|
54192
54198
|
}, {
|
|
54193
54199
|
query?: string | undefined;
|
|
54194
54200
|
id?: number[] | undefined;
|
|
54195
|
-
project?: number[] | undefined;
|
|
54201
|
+
project?: (string | number)[] | undefined;
|
|
54196
54202
|
sortBy?: string | undefined;
|
|
54197
54203
|
}>>;
|
|
54198
54204
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -54202,7 +54208,7 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54202
54208
|
query?: {
|
|
54203
54209
|
query?: string | undefined;
|
|
54204
54210
|
id?: number[] | undefined;
|
|
54205
|
-
project?: number[] | undefined;
|
|
54211
|
+
project?: (string | number)[] | undefined;
|
|
54206
54212
|
sortBy?: string | undefined;
|
|
54207
54213
|
} | undefined;
|
|
54208
54214
|
body?: undefined;
|
|
@@ -54213,7 +54219,7 @@ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54213
54219
|
query?: {
|
|
54214
54220
|
query?: string | undefined;
|
|
54215
54221
|
id?: number[] | undefined;
|
|
54216
|
-
project?: number[] | undefined;
|
|
54222
|
+
project?: (string | number)[] | undefined;
|
|
54217
54223
|
sortBy?: string | undefined;
|
|
54218
54224
|
} | undefined;
|
|
54219
54225
|
body?: undefined;
|
|
@@ -54885,15 +54891,15 @@ export declare const zUpdateOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54885
54891
|
query: z.ZodOptional<z.ZodObject<{
|
|
54886
54892
|
query: z.ZodOptional<z.ZodString>;
|
|
54887
54893
|
id: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54888
|
-
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
54894
|
+
project: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>;
|
|
54889
54895
|
}, "strip", z.ZodTypeAny, {
|
|
54890
54896
|
query?: string | undefined;
|
|
54891
54897
|
id?: number[] | undefined;
|
|
54892
|
-
project?: number[] | undefined;
|
|
54898
|
+
project?: (string | number)[] | undefined;
|
|
54893
54899
|
}, {
|
|
54894
54900
|
query?: string | undefined;
|
|
54895
54901
|
id?: number[] | undefined;
|
|
54896
|
-
project?: number[] | undefined;
|
|
54902
|
+
project?: (string | number)[] | undefined;
|
|
54897
54903
|
}>>;
|
|
54898
54904
|
}, "strip", z.ZodTypeAny, {
|
|
54899
54905
|
body: {
|
|
@@ -54905,7 +54911,7 @@ export declare const zUpdateOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54905
54911
|
query?: {
|
|
54906
54912
|
query?: string | undefined;
|
|
54907
54913
|
id?: number[] | undefined;
|
|
54908
|
-
project?: number[] | undefined;
|
|
54914
|
+
project?: (string | number)[] | undefined;
|
|
54909
54915
|
} | undefined;
|
|
54910
54916
|
}, {
|
|
54911
54917
|
body: {
|
|
@@ -54917,7 +54923,7 @@ export declare const zUpdateOrganizationWorkflowsData: z.ZodObject<{
|
|
|
54917
54923
|
query?: {
|
|
54918
54924
|
query?: string | undefined;
|
|
54919
54925
|
id?: number[] | undefined;
|
|
54920
|
-
project?: number[] | undefined;
|
|
54926
|
+
project?: (string | number)[] | undefined;
|
|
54921
54927
|
} | undefined;
|
|
54922
54928
|
}>;
|
|
54923
54929
|
export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<{
|
|
@@ -73085,6 +73091,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73085
73091
|
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr", "coding_agent_handoff"]>>;
|
|
73086
73092
|
stopping_point: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr"]>>;
|
|
73087
73093
|
run_id: z.ZodOptional<z.ZodNumber>;
|
|
73094
|
+
sentry_run_id: z.ZodOptional<z.ZodString>;
|
|
73088
73095
|
integration_id: z.ZodOptional<z.ZodNumber>;
|
|
73089
73096
|
provider: z.ZodOptional<z.ZodString>;
|
|
73090
73097
|
user_context: z.ZodOptional<z.ZodString>;
|
|
@@ -73095,6 +73102,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73095
73102
|
referrer?: string | undefined;
|
|
73096
73103
|
integration_id?: number | undefined;
|
|
73097
73104
|
run_id?: number | undefined;
|
|
73105
|
+
sentry_run_id?: string | undefined;
|
|
73098
73106
|
provider?: string | undefined;
|
|
73099
73107
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73100
73108
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -73105,6 +73113,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73105
73113
|
referrer?: string | undefined;
|
|
73106
73114
|
integration_id?: number | undefined;
|
|
73107
73115
|
run_id?: number | undefined;
|
|
73116
|
+
sentry_run_id?: string | undefined;
|
|
73108
73117
|
provider?: string | undefined;
|
|
73109
73118
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73110
73119
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -73133,6 +73142,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73133
73142
|
referrer?: string | undefined;
|
|
73134
73143
|
integration_id?: number | undefined;
|
|
73135
73144
|
run_id?: number | undefined;
|
|
73145
|
+
sentry_run_id?: string | undefined;
|
|
73136
73146
|
provider?: string | undefined;
|
|
73137
73147
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73138
73148
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -73150,6 +73160,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73150
73160
|
referrer?: string | undefined;
|
|
73151
73161
|
integration_id?: number | undefined;
|
|
73152
73162
|
run_id?: number | undefined;
|
|
73163
|
+
sentry_run_id?: string | undefined;
|
|
73153
73164
|
provider?: string | undefined;
|
|
73154
73165
|
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73155
73166
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
@@ -73163,10 +73174,13 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73163
73174
|
*/
|
|
73164
73175
|
export declare const zCreateOrganizationIssueAutofixResponse: z.ZodObject<{
|
|
73165
73176
|
run_id: z.ZodNumber;
|
|
73177
|
+
sentry_run_id: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
73166
73178
|
}, "strip", z.ZodTypeAny, {
|
|
73167
73179
|
run_id: number;
|
|
73180
|
+
sentry_run_id: string | null;
|
|
73168
73181
|
}, {
|
|
73169
73182
|
run_id: number;
|
|
73183
|
+
sentry_run_id: string | null;
|
|
73170
73184
|
}>;
|
|
73171
73185
|
export declare const zListOrganizationIssueEventsData: z.ZodObject<{
|
|
73172
73186
|
body: z.ZodOptional<z.ZodNever>;
|