@sentry/api 0.173.0 → 0.174.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/types.gen.d.ts +27 -11
- package/dist/zod.gen.d.ts +99 -79
- package/dist/zod.js +22 -13
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -9668,6 +9668,10 @@ export type ListYourOrganizationsData = {
|
|
|
9668
9668
|
*
|
|
9669
9669
|
*/
|
|
9670
9670
|
sortBy?: string;
|
|
9671
|
+
/**
|
|
9672
|
+
* Limit the number of rows to return in the result. Default and maximum allowed is 100.
|
|
9673
|
+
*/
|
|
9674
|
+
per_page?: number;
|
|
9671
9675
|
};
|
|
9672
9676
|
url: '/api/0/organizations/';
|
|
9673
9677
|
};
|
|
@@ -12780,6 +12784,10 @@ export type QueryExploreEventsInTableFormatData = {
|
|
|
12780
12784
|
* What to order the results of the query by. Must be something in the `field` list, excluding equations.
|
|
12781
12785
|
*/
|
|
12782
12786
|
sort?: string;
|
|
12787
|
+
/**
|
|
12788
|
+
* If false, aggregate conditions in the query string are disallowed. Defaults to true.
|
|
12789
|
+
*/
|
|
12790
|
+
allowAggregateConditions?: boolean;
|
|
12783
12791
|
/**
|
|
12784
12792
|
* A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
|
|
12785
12793
|
*/
|
|
@@ -19057,6 +19065,14 @@ export type RetrieveACountOfReplaysForAGivenIssueOrTransactionData = {
|
|
|
19057
19065
|
*
|
|
19058
19066
|
*/
|
|
19059
19067
|
query?: string;
|
|
19068
|
+
/**
|
|
19069
|
+
* The data source to query replays from. Defaults to 'discover'.
|
|
19070
|
+
*/
|
|
19071
|
+
data_source?: 'discover' | 'events' | 'search_issues' | 'transactions';
|
|
19072
|
+
/**
|
|
19073
|
+
* If true, return issue IDs rather than counts.
|
|
19074
|
+
*/
|
|
19075
|
+
returnIds?: boolean;
|
|
19060
19076
|
};
|
|
19061
19077
|
url: '/api/0/organizations/{organization_id_or_slug}/replay-count/';
|
|
19062
19078
|
};
|
|
@@ -30120,7 +30136,7 @@ export type ListATagSValuesForAnIssueData = {
|
|
|
30120
30136
|
/**
|
|
30121
30137
|
* The ID of the issue you'd like to query.
|
|
30122
30138
|
*/
|
|
30123
|
-
issue_id:
|
|
30139
|
+
issue_id: string;
|
|
30124
30140
|
/**
|
|
30125
30141
|
* The ID or slug of the organization the resource belongs to.
|
|
30126
30142
|
*/
|
|
@@ -31224,7 +31240,7 @@ export type RemoveAnIssueData = {
|
|
|
31224
31240
|
/**
|
|
31225
31241
|
* The ID of the issue you'd like to query.
|
|
31226
31242
|
*/
|
|
31227
|
-
issue_id:
|
|
31243
|
+
issue_id: string;
|
|
31228
31244
|
};
|
|
31229
31245
|
query?: never;
|
|
31230
31246
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/';
|
|
@@ -31259,7 +31275,7 @@ export type RetrieveAnIssueData = {
|
|
|
31259
31275
|
/**
|
|
31260
31276
|
* The ID of the issue you'd like to query.
|
|
31261
31277
|
*/
|
|
31262
|
-
issue_id:
|
|
31278
|
+
issue_id: string;
|
|
31263
31279
|
};
|
|
31264
31280
|
query?: {
|
|
31265
31281
|
/**
|
|
@@ -31571,7 +31587,7 @@ export type UpdateAnIssueData = {
|
|
|
31571
31587
|
/**
|
|
31572
31588
|
* The ID of the issue you'd like to query.
|
|
31573
31589
|
*/
|
|
31574
|
-
issue_id:
|
|
31590
|
+
issue_id: string;
|
|
31575
31591
|
};
|
|
31576
31592
|
query?: never;
|
|
31577
31593
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/';
|
|
@@ -31720,7 +31736,7 @@ export type RetrieveSeerIssueFixStateData = {
|
|
|
31720
31736
|
/**
|
|
31721
31737
|
* The ID of the issue you'd like to query.
|
|
31722
31738
|
*/
|
|
31723
|
-
issue_id:
|
|
31739
|
+
issue_id: string;
|
|
31724
31740
|
};
|
|
31725
31741
|
query?: never;
|
|
31726
31742
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/autofix/';
|
|
@@ -31811,7 +31827,7 @@ export type StartSeerIssueFixData = {
|
|
|
31811
31827
|
/**
|
|
31812
31828
|
* The ID of the issue you'd like to query.
|
|
31813
31829
|
*/
|
|
31814
|
-
issue_id:
|
|
31830
|
+
issue_id: string;
|
|
31815
31831
|
};
|
|
31816
31832
|
query?: never;
|
|
31817
31833
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/autofix/';
|
|
@@ -31853,7 +31869,7 @@ export type ListAnIssueSEventsData = {
|
|
|
31853
31869
|
/**
|
|
31854
31870
|
* The ID of the issue you'd like to query.
|
|
31855
31871
|
*/
|
|
31856
|
-
issue_id:
|
|
31872
|
+
issue_id: string;
|
|
31857
31873
|
};
|
|
31858
31874
|
query?: {
|
|
31859
31875
|
/**
|
|
@@ -31964,7 +31980,7 @@ export type RetrieveAnIssueEventData = {
|
|
|
31964
31980
|
/**
|
|
31965
31981
|
* The ID of the issue you'd like to query.
|
|
31966
31982
|
*/
|
|
31967
|
-
issue_id:
|
|
31983
|
+
issue_id: string;
|
|
31968
31984
|
/**
|
|
31969
31985
|
* The ID of the event to retrieve, or 'latest', 'oldest', or 'recommended'.
|
|
31970
31986
|
*/
|
|
@@ -32129,7 +32145,7 @@ export type RetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueData = {
|
|
|
32129
32145
|
/**
|
|
32130
32146
|
* The ID of the issue you'd like to query.
|
|
32131
32147
|
*/
|
|
32132
|
-
issue_id:
|
|
32148
|
+
issue_id: string;
|
|
32133
32149
|
};
|
|
32134
32150
|
query?: never;
|
|
32135
32151
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/external-issues/';
|
|
@@ -32154,7 +32170,7 @@ export type ListAnIssueSHashesData = {
|
|
|
32154
32170
|
/**
|
|
32155
32171
|
* The ID of the issue you'd like to query.
|
|
32156
32172
|
*/
|
|
32157
|
-
issue_id:
|
|
32173
|
+
issue_id: string;
|
|
32158
32174
|
};
|
|
32159
32175
|
query?: {
|
|
32160
32176
|
/**
|
|
@@ -32291,7 +32307,7 @@ export type RetrieveTagDetailsData = {
|
|
|
32291
32307
|
/**
|
|
32292
32308
|
* The ID of the issue you'd like to query.
|
|
32293
32309
|
*/
|
|
32294
|
-
issue_id:
|
|
32310
|
+
issue_id: string;
|
|
32295
32311
|
/**
|
|
32296
32312
|
* The ID or slug of the organization the resource belongs to.
|
|
32297
32313
|
*/
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -17442,6 +17442,7 @@ export declare const zOrganizationSentryAppDetailsResponse: z.ZodArray<z.ZodObje
|
|
|
17442
17442
|
}>>;
|
|
17443
17443
|
}, "strip", z.ZodTypeAny, {
|
|
17444
17444
|
name: string;
|
|
17445
|
+
events: string[];
|
|
17445
17446
|
status: string;
|
|
17446
17447
|
uuid: string;
|
|
17447
17448
|
slug: string;
|
|
@@ -17455,7 +17456,6 @@ export declare const zOrganizationSentryAppDetailsResponse: z.ZodArray<z.ZodObje
|
|
|
17455
17456
|
color: boolean;
|
|
17456
17457
|
photoType: string;
|
|
17457
17458
|
}[];
|
|
17458
|
-
events: string[];
|
|
17459
17459
|
featureData: string[];
|
|
17460
17460
|
isAlertable: boolean;
|
|
17461
17461
|
schema: string;
|
|
@@ -17475,6 +17475,7 @@ export declare const zOrganizationSentryAppDetailsResponse: z.ZodArray<z.ZodObje
|
|
|
17475
17475
|
clientId?: string | undefined;
|
|
17476
17476
|
}, {
|
|
17477
17477
|
name: string;
|
|
17478
|
+
events: string[];
|
|
17478
17479
|
status: string;
|
|
17479
17480
|
uuid: string;
|
|
17480
17481
|
slug: string;
|
|
@@ -17488,7 +17489,6 @@ export declare const zOrganizationSentryAppDetailsResponse: z.ZodArray<z.ZodObje
|
|
|
17488
17489
|
color: boolean;
|
|
17489
17490
|
photoType: string;
|
|
17490
17491
|
}[];
|
|
17491
|
-
events: string[];
|
|
17492
17492
|
featureData: string[];
|
|
17493
17493
|
isAlertable: boolean;
|
|
17494
17494
|
schema: string;
|
|
@@ -21782,6 +21782,7 @@ export declare const zSentryAppDetailsResponse: z.ZodObject<{
|
|
|
21782
21782
|
}>>;
|
|
21783
21783
|
}, "strip", z.ZodTypeAny, {
|
|
21784
21784
|
name: string;
|
|
21785
|
+
events: string[];
|
|
21785
21786
|
status: string;
|
|
21786
21787
|
uuid: string;
|
|
21787
21788
|
slug: string;
|
|
@@ -21795,7 +21796,6 @@ export declare const zSentryAppDetailsResponse: z.ZodObject<{
|
|
|
21795
21796
|
color: boolean;
|
|
21796
21797
|
photoType: string;
|
|
21797
21798
|
}[];
|
|
21798
|
-
events: string[];
|
|
21799
21799
|
featureData: string[];
|
|
21800
21800
|
isAlertable: boolean;
|
|
21801
21801
|
schema: string;
|
|
@@ -21815,6 +21815,7 @@ export declare const zSentryAppDetailsResponse: z.ZodObject<{
|
|
|
21815
21815
|
clientId?: string | undefined;
|
|
21816
21816
|
}, {
|
|
21817
21817
|
name: string;
|
|
21818
|
+
events: string[];
|
|
21818
21819
|
status: string;
|
|
21819
21820
|
uuid: string;
|
|
21820
21821
|
slug: string;
|
|
@@ -21828,7 +21829,6 @@ export declare const zSentryAppDetailsResponse: z.ZodObject<{
|
|
|
21828
21829
|
color: boolean;
|
|
21829
21830
|
photoType: string;
|
|
21830
21831
|
}[];
|
|
21831
|
-
events: string[];
|
|
21832
21832
|
featureData: string[];
|
|
21833
21833
|
isAlertable: boolean;
|
|
21834
21834
|
schema: string;
|
|
@@ -21866,9 +21866,9 @@ export declare const zSentryAppParser: z.ZodObject<{
|
|
|
21866
21866
|
scopes: string[] | null;
|
|
21867
21867
|
isAlertable: boolean;
|
|
21868
21868
|
verifyInstall: boolean;
|
|
21869
|
+
events?: string[] | null | undefined;
|
|
21869
21870
|
author?: string | null | undefined;
|
|
21870
21871
|
allowedOrigins?: string[] | undefined;
|
|
21871
|
-
events?: string[] | null | undefined;
|
|
21872
21872
|
schema?: Record<string, unknown> | null | undefined;
|
|
21873
21873
|
overview?: string | null | undefined;
|
|
21874
21874
|
redirectUrl?: string | null | undefined;
|
|
@@ -21876,10 +21876,10 @@ export declare const zSentryAppParser: z.ZodObject<{
|
|
|
21876
21876
|
}, {
|
|
21877
21877
|
name: string;
|
|
21878
21878
|
scopes: string[] | null;
|
|
21879
|
+
events?: string[] | null | undefined;
|
|
21879
21880
|
author?: string | null | undefined;
|
|
21880
21881
|
isInternal?: boolean | undefined;
|
|
21881
21882
|
allowedOrigins?: string[] | undefined;
|
|
21882
|
-
events?: string[] | null | undefined;
|
|
21883
21883
|
isAlertable?: boolean | undefined;
|
|
21884
21884
|
schema?: Record<string, unknown> | null | undefined;
|
|
21885
21885
|
verifyInstall?: boolean | undefined;
|
|
@@ -25974,16 +25974,19 @@ export declare const zListYourOrganizationsData: z.ZodObject<{
|
|
|
25974
25974
|
cursor: z.ZodOptional<z.ZodString>;
|
|
25975
25975
|
query: z.ZodOptional<z.ZodString>;
|
|
25976
25976
|
sortBy: z.ZodOptional<z.ZodString>;
|
|
25977
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
25977
25978
|
}, "strip", z.ZodTypeAny, {
|
|
25978
25979
|
query?: string | undefined;
|
|
25979
25980
|
owner?: boolean | undefined;
|
|
25980
25981
|
cursor?: string | undefined;
|
|
25981
25982
|
sortBy?: string | undefined;
|
|
25983
|
+
per_page?: number | undefined;
|
|
25982
25984
|
}, {
|
|
25983
25985
|
query?: string | undefined;
|
|
25984
25986
|
owner?: boolean | undefined;
|
|
25985
25987
|
cursor?: string | undefined;
|
|
25986
25988
|
sortBy?: string | undefined;
|
|
25989
|
+
per_page?: number | undefined;
|
|
25987
25990
|
}>>;
|
|
25988
25991
|
}, "strip", z.ZodTypeAny, {
|
|
25989
25992
|
query?: {
|
|
@@ -25991,6 +25994,7 @@ export declare const zListYourOrganizationsData: z.ZodObject<{
|
|
|
25991
25994
|
owner?: boolean | undefined;
|
|
25992
25995
|
cursor?: string | undefined;
|
|
25993
25996
|
sortBy?: string | undefined;
|
|
25997
|
+
per_page?: number | undefined;
|
|
25994
25998
|
} | undefined;
|
|
25995
25999
|
body?: undefined;
|
|
25996
26000
|
path?: undefined;
|
|
@@ -26000,6 +26004,7 @@ export declare const zListYourOrganizationsData: z.ZodObject<{
|
|
|
26000
26004
|
owner?: boolean | undefined;
|
|
26001
26005
|
cursor?: string | undefined;
|
|
26002
26006
|
sortBy?: string | undefined;
|
|
26007
|
+
per_page?: number | undefined;
|
|
26003
26008
|
} | undefined;
|
|
26004
26009
|
body?: undefined;
|
|
26005
26010
|
path?: undefined;
|
|
@@ -34040,6 +34045,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
|
|
|
34040
34045
|
per_page: z.ZodOptional<z.ZodNumber>;
|
|
34041
34046
|
query: z.ZodOptional<z.ZodString>;
|
|
34042
34047
|
sort: z.ZodOptional<z.ZodString>;
|
|
34048
|
+
allowAggregateConditions: z.ZodOptional<z.ZodBoolean>;
|
|
34043
34049
|
cursor: z.ZodOptional<z.ZodString>;
|
|
34044
34050
|
}, "strip", z.ZodTypeAny, {
|
|
34045
34051
|
field: string[];
|
|
@@ -34053,6 +34059,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
|
|
|
34053
34059
|
end?: string | undefined;
|
|
34054
34060
|
start?: string | undefined;
|
|
34055
34061
|
statsPeriod?: string | undefined;
|
|
34062
|
+
allowAggregateConditions?: boolean | undefined;
|
|
34056
34063
|
}, {
|
|
34057
34064
|
field: string[];
|
|
34058
34065
|
dataset: "spans" | "logs" | "tracemetrics" | "errors" | "profile_functions" | "uptime_results";
|
|
@@ -34065,6 +34072,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
|
|
|
34065
34072
|
end?: string | undefined;
|
|
34066
34073
|
start?: string | undefined;
|
|
34067
34074
|
statsPeriod?: string | undefined;
|
|
34075
|
+
allowAggregateConditions?: boolean | undefined;
|
|
34068
34076
|
}>;
|
|
34069
34077
|
}, "strip", z.ZodTypeAny, {
|
|
34070
34078
|
query: {
|
|
@@ -34079,6 +34087,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
|
|
|
34079
34087
|
end?: string | undefined;
|
|
34080
34088
|
start?: string | undefined;
|
|
34081
34089
|
statsPeriod?: string | undefined;
|
|
34090
|
+
allowAggregateConditions?: boolean | undefined;
|
|
34082
34091
|
};
|
|
34083
34092
|
path: {
|
|
34084
34093
|
organization_id_or_slug: string;
|
|
@@ -34097,6 +34106,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
|
|
|
34097
34106
|
end?: string | undefined;
|
|
34098
34107
|
start?: string | undefined;
|
|
34099
34108
|
statsPeriod?: string | undefined;
|
|
34109
|
+
allowAggregateConditions?: boolean | undefined;
|
|
34100
34110
|
};
|
|
34101
34111
|
path: {
|
|
34102
34112
|
organization_id_or_slug: string;
|
|
@@ -46261,6 +46271,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46261
46271
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
46262
46272
|
project_id_or_slug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46263
46273
|
query: z.ZodOptional<z.ZodString>;
|
|
46274
|
+
data_source: z.ZodOptional<z.ZodEnum<["discover", "events", "search_issues", "transactions"]>>;
|
|
46275
|
+
returnIds: z.ZodOptional<z.ZodBoolean>;
|
|
46264
46276
|
}, "strip", z.ZodTypeAny, {
|
|
46265
46277
|
query?: string | undefined;
|
|
46266
46278
|
environment?: string[] | undefined;
|
|
@@ -46268,6 +46280,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46268
46280
|
start?: string | undefined;
|
|
46269
46281
|
statsPeriod?: string | undefined;
|
|
46270
46282
|
project_id_or_slug?: string[] | undefined;
|
|
46283
|
+
data_source?: "discover" | "transactions" | "events" | "search_issues" | undefined;
|
|
46284
|
+
returnIds?: boolean | undefined;
|
|
46271
46285
|
}, {
|
|
46272
46286
|
query?: string | undefined;
|
|
46273
46287
|
environment?: string[] | undefined;
|
|
@@ -46275,6 +46289,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46275
46289
|
start?: string | undefined;
|
|
46276
46290
|
statsPeriod?: string | undefined;
|
|
46277
46291
|
project_id_or_slug?: string[] | undefined;
|
|
46292
|
+
data_source?: "discover" | "transactions" | "events" | "search_issues" | undefined;
|
|
46293
|
+
returnIds?: boolean | undefined;
|
|
46278
46294
|
}>>;
|
|
46279
46295
|
}, "strip", z.ZodTypeAny, {
|
|
46280
46296
|
path: {
|
|
@@ -46287,6 +46303,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46287
46303
|
start?: string | undefined;
|
|
46288
46304
|
statsPeriod?: string | undefined;
|
|
46289
46305
|
project_id_or_slug?: string[] | undefined;
|
|
46306
|
+
data_source?: "discover" | "transactions" | "events" | "search_issues" | undefined;
|
|
46307
|
+
returnIds?: boolean | undefined;
|
|
46290
46308
|
} | undefined;
|
|
46291
46309
|
body?: undefined;
|
|
46292
46310
|
}, {
|
|
@@ -46300,6 +46318,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46300
46318
|
start?: string | undefined;
|
|
46301
46319
|
statsPeriod?: string | undefined;
|
|
46302
46320
|
project_id_or_slug?: string[] | undefined;
|
|
46321
|
+
data_source?: "discover" | "transactions" | "events" | "search_issues" | undefined;
|
|
46322
|
+
returnIds?: boolean | undefined;
|
|
46303
46323
|
} | undefined;
|
|
46304
46324
|
body?: undefined;
|
|
46305
46325
|
}>;
|
|
@@ -49233,6 +49253,7 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationRespon
|
|
|
49233
49253
|
}>>;
|
|
49234
49254
|
}, "strip", z.ZodTypeAny, {
|
|
49235
49255
|
name: string;
|
|
49256
|
+
events: string[];
|
|
49236
49257
|
status: string;
|
|
49237
49258
|
uuid: string;
|
|
49238
49259
|
slug: string;
|
|
@@ -49246,7 +49267,6 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationRespon
|
|
|
49246
49267
|
color: boolean;
|
|
49247
49268
|
photoType: string;
|
|
49248
49269
|
}[];
|
|
49249
|
-
events: string[];
|
|
49250
49270
|
featureData: string[];
|
|
49251
49271
|
isAlertable: boolean;
|
|
49252
49272
|
schema: string;
|
|
@@ -49266,6 +49286,7 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationRespon
|
|
|
49266
49286
|
clientId?: string | undefined;
|
|
49267
49287
|
}, {
|
|
49268
49288
|
name: string;
|
|
49289
|
+
events: string[];
|
|
49269
49290
|
status: string;
|
|
49270
49291
|
uuid: string;
|
|
49271
49292
|
slug: string;
|
|
@@ -49279,7 +49300,6 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationRespon
|
|
|
49279
49300
|
color: boolean;
|
|
49280
49301
|
photoType: string;
|
|
49281
49302
|
}[];
|
|
49282
|
-
events: string[];
|
|
49283
49303
|
featureData: string[];
|
|
49284
49304
|
isAlertable: boolean;
|
|
49285
49305
|
schema: string;
|
|
@@ -64967,6 +64987,7 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<
|
|
|
64967
64987
|
}>>;
|
|
64968
64988
|
}, "strip", z.ZodTypeAny, {
|
|
64969
64989
|
name: string;
|
|
64990
|
+
events: string[];
|
|
64970
64991
|
status: string;
|
|
64971
64992
|
uuid: string;
|
|
64972
64993
|
slug: string;
|
|
@@ -64980,7 +65001,6 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<
|
|
|
64980
65001
|
color: boolean;
|
|
64981
65002
|
photoType: string;
|
|
64982
65003
|
}[];
|
|
64983
|
-
events: string[];
|
|
64984
65004
|
featureData: string[];
|
|
64985
65005
|
isAlertable: boolean;
|
|
64986
65006
|
schema: string;
|
|
@@ -65000,6 +65020,7 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<
|
|
|
65000
65020
|
clientId?: string | undefined;
|
|
65001
65021
|
}, {
|
|
65002
65022
|
name: string;
|
|
65023
|
+
events: string[];
|
|
65003
65024
|
status: string;
|
|
65004
65025
|
uuid: string;
|
|
65005
65026
|
slug: string;
|
|
@@ -65013,7 +65034,6 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<
|
|
|
65013
65034
|
color: boolean;
|
|
65014
65035
|
photoType: string;
|
|
65015
65036
|
}[];
|
|
65016
|
-
events: string[];
|
|
65017
65037
|
featureData: string[];
|
|
65018
65038
|
isAlertable: boolean;
|
|
65019
65039
|
schema: string;
|
|
@@ -65052,9 +65072,9 @@ export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
|
|
|
65052
65072
|
scopes: string[] | null;
|
|
65053
65073
|
isAlertable: boolean;
|
|
65054
65074
|
verifyInstall: boolean;
|
|
65075
|
+
events?: string[] | null | undefined;
|
|
65055
65076
|
author?: string | null | undefined;
|
|
65056
65077
|
allowedOrigins?: string[] | undefined;
|
|
65057
|
-
events?: string[] | null | undefined;
|
|
65058
65078
|
schema?: Record<string, unknown> | null | undefined;
|
|
65059
65079
|
overview?: string | null | undefined;
|
|
65060
65080
|
redirectUrl?: string | null | undefined;
|
|
@@ -65062,10 +65082,10 @@ export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
|
|
|
65062
65082
|
}, {
|
|
65063
65083
|
name: string;
|
|
65064
65084
|
scopes: string[] | null;
|
|
65085
|
+
events?: string[] | null | undefined;
|
|
65065
65086
|
author?: string | null | undefined;
|
|
65066
65087
|
isInternal?: boolean | undefined;
|
|
65067
65088
|
allowedOrigins?: string[] | undefined;
|
|
65068
|
-
events?: string[] | null | undefined;
|
|
65069
65089
|
isAlertable?: boolean | undefined;
|
|
65070
65090
|
schema?: Record<string, unknown> | null | undefined;
|
|
65071
65091
|
verifyInstall?: boolean | undefined;
|
|
@@ -65088,9 +65108,9 @@ export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
|
|
|
65088
65108
|
scopes: string[] | null;
|
|
65089
65109
|
isAlertable: boolean;
|
|
65090
65110
|
verifyInstall: boolean;
|
|
65111
|
+
events?: string[] | null | undefined;
|
|
65091
65112
|
author?: string | null | undefined;
|
|
65092
65113
|
allowedOrigins?: string[] | undefined;
|
|
65093
|
-
events?: string[] | null | undefined;
|
|
65094
65114
|
schema?: Record<string, unknown> | null | undefined;
|
|
65095
65115
|
overview?: string | null | undefined;
|
|
65096
65116
|
redirectUrl?: string | null | undefined;
|
|
@@ -65104,10 +65124,10 @@ export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
|
|
|
65104
65124
|
body: {
|
|
65105
65125
|
name: string;
|
|
65106
65126
|
scopes: string[] | null;
|
|
65127
|
+
events?: string[] | null | undefined;
|
|
65107
65128
|
author?: string | null | undefined;
|
|
65108
65129
|
isInternal?: boolean | undefined;
|
|
65109
65130
|
allowedOrigins?: string[] | undefined;
|
|
65110
|
-
events?: string[] | null | undefined;
|
|
65111
65131
|
isAlertable?: boolean | undefined;
|
|
65112
65132
|
schema?: Record<string, unknown> | null | undefined;
|
|
65113
65133
|
verifyInstall?: boolean | undefined;
|
|
@@ -65173,6 +65193,7 @@ export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
|
|
|
65173
65193
|
}>>;
|
|
65174
65194
|
}, "strip", z.ZodTypeAny, {
|
|
65175
65195
|
name: string;
|
|
65196
|
+
events: string[];
|
|
65176
65197
|
status: string;
|
|
65177
65198
|
uuid: string;
|
|
65178
65199
|
slug: string;
|
|
@@ -65186,7 +65207,6 @@ export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
|
|
|
65186
65207
|
color: boolean;
|
|
65187
65208
|
photoType: string;
|
|
65188
65209
|
}[];
|
|
65189
|
-
events: string[];
|
|
65190
65210
|
featureData: string[];
|
|
65191
65211
|
isAlertable: boolean;
|
|
65192
65212
|
schema: string;
|
|
@@ -65206,6 +65226,7 @@ export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
|
|
|
65206
65226
|
clientId?: string | undefined;
|
|
65207
65227
|
}, {
|
|
65208
65228
|
name: string;
|
|
65229
|
+
events: string[];
|
|
65209
65230
|
status: string;
|
|
65210
65231
|
uuid: string;
|
|
65211
65232
|
slug: string;
|
|
@@ -65219,7 +65240,6 @@ export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
|
|
|
65219
65240
|
color: boolean;
|
|
65220
65241
|
photoType: string;
|
|
65221
65242
|
}[];
|
|
65222
|
-
events: string[];
|
|
65223
65243
|
featureData: string[];
|
|
65224
65244
|
isAlertable: boolean;
|
|
65225
65245
|
schema: string;
|
|
@@ -68006,18 +68026,18 @@ export declare const zListAProjectSServiceHooksResponse: z.ZodArray<z.ZodObject<
|
|
|
68006
68026
|
url: z.ZodString;
|
|
68007
68027
|
}, "strip", z.ZodTypeAny, {
|
|
68008
68028
|
url: string;
|
|
68029
|
+
events: string[];
|
|
68009
68030
|
id: string;
|
|
68010
68031
|
status: string;
|
|
68011
68032
|
dateCreated: string;
|
|
68012
68033
|
secret: string;
|
|
68013
|
-
events: string[];
|
|
68014
68034
|
}, {
|
|
68015
68035
|
url: string;
|
|
68036
|
+
events: string[];
|
|
68016
68037
|
id: string;
|
|
68017
68038
|
status: string;
|
|
68018
68039
|
dateCreated: string;
|
|
68019
68040
|
secret: string;
|
|
68020
|
-
events: string[];
|
|
68021
68041
|
}>, "many">;
|
|
68022
68042
|
export declare const zRegisterANewServiceHookData: z.ZodObject<{
|
|
68023
68043
|
body: z.ZodObject<{
|
|
@@ -68074,18 +68094,18 @@ export declare const zRegisterANewServiceHookResponse: z.ZodObject<{
|
|
|
68074
68094
|
url: z.ZodString;
|
|
68075
68095
|
}, "strip", z.ZodTypeAny, {
|
|
68076
68096
|
url: string;
|
|
68097
|
+
events: string[];
|
|
68077
68098
|
id: string;
|
|
68078
68099
|
status: string;
|
|
68079
68100
|
dateCreated: string;
|
|
68080
68101
|
secret: string;
|
|
68081
|
-
events: string[];
|
|
68082
68102
|
}, {
|
|
68083
68103
|
url: string;
|
|
68104
|
+
events: string[];
|
|
68084
68105
|
id: string;
|
|
68085
68106
|
status: string;
|
|
68086
68107
|
dateCreated: string;
|
|
68087
68108
|
secret: string;
|
|
68088
|
-
events: string[];
|
|
68089
68109
|
}>;
|
|
68090
68110
|
export declare const zRemoveAServiceHookData: z.ZodObject<{
|
|
68091
68111
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -68169,18 +68189,18 @@ export declare const zRetrieveAServiceHookResponse: z.ZodObject<{
|
|
|
68169
68189
|
url: z.ZodString;
|
|
68170
68190
|
}, "strip", z.ZodTypeAny, {
|
|
68171
68191
|
url: string;
|
|
68192
|
+
events: string[];
|
|
68172
68193
|
id: string;
|
|
68173
68194
|
status: string;
|
|
68174
68195
|
dateCreated: string;
|
|
68175
68196
|
secret: string;
|
|
68176
|
-
events: string[];
|
|
68177
68197
|
}, {
|
|
68178
68198
|
url: string;
|
|
68199
|
+
events: string[];
|
|
68179
68200
|
id: string;
|
|
68180
68201
|
status: string;
|
|
68181
68202
|
dateCreated: string;
|
|
68182
68203
|
secret: string;
|
|
68183
|
-
events: string[];
|
|
68184
68204
|
}>;
|
|
68185
68205
|
export declare const zUpdateAServiceHookData: z.ZodObject<{
|
|
68186
68206
|
body: z.ZodOptional<z.ZodObject<{
|
|
@@ -68242,18 +68262,18 @@ export declare const zUpdateAServiceHookResponse: z.ZodObject<{
|
|
|
68242
68262
|
url: z.ZodString;
|
|
68243
68263
|
}, "strip", z.ZodTypeAny, {
|
|
68244
68264
|
url: string;
|
|
68265
|
+
events: string[];
|
|
68245
68266
|
id: string;
|
|
68246
68267
|
status: string;
|
|
68247
68268
|
dateCreated: string;
|
|
68248
68269
|
secret: string;
|
|
68249
|
-
events: string[];
|
|
68250
68270
|
}, {
|
|
68251
68271
|
url: string;
|
|
68272
|
+
events: string[];
|
|
68252
68273
|
id: string;
|
|
68253
68274
|
status: string;
|
|
68254
68275
|
dateCreated: string;
|
|
68255
68276
|
secret: string;
|
|
68256
|
-
events: string[];
|
|
68257
68277
|
}>;
|
|
68258
68278
|
export declare const zBulkRemoveAListOfIssuesData: z.ZodObject<{
|
|
68259
68279
|
body: z.ZodOptional<z.ZodNever>;
|
|
@@ -68670,17 +68690,17 @@ export declare const zBulkMutateAListOfIssuesResponse: z.ZodObject<{
|
|
|
68670
68690
|
export declare const zListATagSValuesForAnIssueData: z.ZodObject<{
|
|
68671
68691
|
body: z.ZodOptional<z.ZodNever>;
|
|
68672
68692
|
path: z.ZodObject<{
|
|
68673
|
-
issue_id: z.
|
|
68693
|
+
issue_id: z.ZodString;
|
|
68674
68694
|
organization_id_or_slug: z.ZodString;
|
|
68675
68695
|
key: z.ZodString;
|
|
68676
68696
|
}, "strip", z.ZodTypeAny, {
|
|
68677
68697
|
key: string;
|
|
68678
68698
|
organization_id_or_slug: string;
|
|
68679
|
-
issue_id:
|
|
68699
|
+
issue_id: string;
|
|
68680
68700
|
}, {
|
|
68681
68701
|
key: string;
|
|
68682
68702
|
organization_id_or_slug: string;
|
|
68683
|
-
issue_id:
|
|
68703
|
+
issue_id: string;
|
|
68684
68704
|
}>;
|
|
68685
68705
|
query: z.ZodOptional<z.ZodObject<{
|
|
68686
68706
|
sort: z.ZodOptional<z.ZodEnum<["age", "count", "date", "id"]>>;
|
|
@@ -68696,7 +68716,7 @@ export declare const zListATagSValuesForAnIssueData: z.ZodObject<{
|
|
|
68696
68716
|
path: {
|
|
68697
68717
|
key: string;
|
|
68698
68718
|
organization_id_or_slug: string;
|
|
68699
|
-
issue_id:
|
|
68719
|
+
issue_id: string;
|
|
68700
68720
|
};
|
|
68701
68721
|
query?: {
|
|
68702
68722
|
sort?: "date" | "id" | "age" | "count" | undefined;
|
|
@@ -68707,7 +68727,7 @@ export declare const zListATagSValuesForAnIssueData: z.ZodObject<{
|
|
|
68707
68727
|
path: {
|
|
68708
68728
|
key: string;
|
|
68709
68729
|
organization_id_or_slug: string;
|
|
68710
|
-
issue_id:
|
|
68730
|
+
issue_id: string;
|
|
68711
68731
|
};
|
|
68712
68732
|
query?: {
|
|
68713
68733
|
sort?: "date" | "id" | "age" | "count" | undefined;
|
|
@@ -70298,26 +70318,26 @@ export declare const zRemoveAnIssueData: z.ZodObject<{
|
|
|
70298
70318
|
body: z.ZodOptional<z.ZodNever>;
|
|
70299
70319
|
path: z.ZodObject<{
|
|
70300
70320
|
organization_id_or_slug: z.ZodString;
|
|
70301
|
-
issue_id: z.
|
|
70321
|
+
issue_id: z.ZodString;
|
|
70302
70322
|
}, "strip", z.ZodTypeAny, {
|
|
70303
70323
|
organization_id_or_slug: string;
|
|
70304
|
-
issue_id:
|
|
70324
|
+
issue_id: string;
|
|
70305
70325
|
}, {
|
|
70306
70326
|
organization_id_or_slug: string;
|
|
70307
|
-
issue_id:
|
|
70327
|
+
issue_id: string;
|
|
70308
70328
|
}>;
|
|
70309
70329
|
query: z.ZodOptional<z.ZodNever>;
|
|
70310
70330
|
}, "strip", z.ZodTypeAny, {
|
|
70311
70331
|
path: {
|
|
70312
70332
|
organization_id_or_slug: string;
|
|
70313
|
-
issue_id:
|
|
70333
|
+
issue_id: string;
|
|
70314
70334
|
};
|
|
70315
70335
|
query?: undefined;
|
|
70316
70336
|
body?: undefined;
|
|
70317
70337
|
}, {
|
|
70318
70338
|
path: {
|
|
70319
70339
|
organization_id_or_slug: string;
|
|
70320
|
-
issue_id:
|
|
70340
|
+
issue_id: string;
|
|
70321
70341
|
};
|
|
70322
70342
|
query?: undefined;
|
|
70323
70343
|
body?: undefined;
|
|
@@ -70326,13 +70346,13 @@ export declare const zRetrieveAnIssueData: z.ZodObject<{
|
|
|
70326
70346
|
body: z.ZodOptional<z.ZodNever>;
|
|
70327
70347
|
path: z.ZodObject<{
|
|
70328
70348
|
organization_id_or_slug: z.ZodString;
|
|
70329
|
-
issue_id: z.
|
|
70349
|
+
issue_id: z.ZodString;
|
|
70330
70350
|
}, "strip", z.ZodTypeAny, {
|
|
70331
70351
|
organization_id_or_slug: string;
|
|
70332
|
-
issue_id:
|
|
70352
|
+
issue_id: string;
|
|
70333
70353
|
}, {
|
|
70334
70354
|
organization_id_or_slug: string;
|
|
70335
|
-
issue_id:
|
|
70355
|
+
issue_id: string;
|
|
70336
70356
|
}>;
|
|
70337
70357
|
query: z.ZodOptional<z.ZodObject<{
|
|
70338
70358
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -70350,7 +70370,7 @@ export declare const zRetrieveAnIssueData: z.ZodObject<{
|
|
|
70350
70370
|
}, "strip", z.ZodTypeAny, {
|
|
70351
70371
|
path: {
|
|
70352
70372
|
organization_id_or_slug: string;
|
|
70353
|
-
issue_id:
|
|
70373
|
+
issue_id: string;
|
|
70354
70374
|
};
|
|
70355
70375
|
query?: {
|
|
70356
70376
|
environment?: string[] | undefined;
|
|
@@ -70361,7 +70381,7 @@ export declare const zRetrieveAnIssueData: z.ZodObject<{
|
|
|
70361
70381
|
}, {
|
|
70362
70382
|
path: {
|
|
70363
70383
|
organization_id_or_slug: string;
|
|
70364
|
-
issue_id:
|
|
70384
|
+
issue_id: string;
|
|
70365
70385
|
};
|
|
70366
70386
|
query?: {
|
|
70367
70387
|
environment?: string[] | undefined;
|
|
@@ -71139,13 +71159,13 @@ export declare const zUpdateAnIssueData: z.ZodObject<{
|
|
|
71139
71159
|
}>;
|
|
71140
71160
|
path: z.ZodObject<{
|
|
71141
71161
|
organization_id_or_slug: z.ZodString;
|
|
71142
|
-
issue_id: z.
|
|
71162
|
+
issue_id: z.ZodString;
|
|
71143
71163
|
}, "strip", z.ZodTypeAny, {
|
|
71144
71164
|
organization_id_or_slug: string;
|
|
71145
|
-
issue_id:
|
|
71165
|
+
issue_id: string;
|
|
71146
71166
|
}, {
|
|
71147
71167
|
organization_id_or_slug: string;
|
|
71148
|
-
issue_id:
|
|
71168
|
+
issue_id: string;
|
|
71149
71169
|
}>;
|
|
71150
71170
|
query: z.ZodOptional<z.ZodNever>;
|
|
71151
71171
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -71177,7 +71197,7 @@ export declare const zUpdateAnIssueData: z.ZodObject<{
|
|
|
71177
71197
|
};
|
|
71178
71198
|
path: {
|
|
71179
71199
|
organization_id_or_slug: string;
|
|
71180
|
-
issue_id:
|
|
71200
|
+
issue_id: string;
|
|
71181
71201
|
};
|
|
71182
71202
|
query?: undefined;
|
|
71183
71203
|
}, {
|
|
@@ -71209,7 +71229,7 @@ export declare const zUpdateAnIssueData: z.ZodObject<{
|
|
|
71209
71229
|
};
|
|
71210
71230
|
path: {
|
|
71211
71231
|
organization_id_or_slug: string;
|
|
71212
|
-
issue_id:
|
|
71232
|
+
issue_id: string;
|
|
71213
71233
|
};
|
|
71214
71234
|
query?: undefined;
|
|
71215
71235
|
}>;
|
|
@@ -71826,26 +71846,26 @@ export declare const zRetrieveSeerIssueFixStateData: z.ZodObject<{
|
|
|
71826
71846
|
body: z.ZodOptional<z.ZodNever>;
|
|
71827
71847
|
path: z.ZodObject<{
|
|
71828
71848
|
organization_id_or_slug: z.ZodString;
|
|
71829
|
-
issue_id: z.
|
|
71849
|
+
issue_id: z.ZodString;
|
|
71830
71850
|
}, "strip", z.ZodTypeAny, {
|
|
71831
71851
|
organization_id_or_slug: string;
|
|
71832
|
-
issue_id:
|
|
71852
|
+
issue_id: string;
|
|
71833
71853
|
}, {
|
|
71834
71854
|
organization_id_or_slug: string;
|
|
71835
|
-
issue_id:
|
|
71855
|
+
issue_id: string;
|
|
71836
71856
|
}>;
|
|
71837
71857
|
query: z.ZodOptional<z.ZodNever>;
|
|
71838
71858
|
}, "strip", z.ZodTypeAny, {
|
|
71839
71859
|
path: {
|
|
71840
71860
|
organization_id_or_slug: string;
|
|
71841
|
-
issue_id:
|
|
71861
|
+
issue_id: string;
|
|
71842
71862
|
};
|
|
71843
71863
|
query?: undefined;
|
|
71844
71864
|
body?: undefined;
|
|
71845
71865
|
}, {
|
|
71846
71866
|
path: {
|
|
71847
71867
|
organization_id_or_slug: string;
|
|
71848
|
-
issue_id:
|
|
71868
|
+
issue_id: string;
|
|
71849
71869
|
};
|
|
71850
71870
|
query?: undefined;
|
|
71851
71871
|
body?: undefined;
|
|
@@ -71894,19 +71914,19 @@ export declare const zStartSeerIssueFixData: z.ZodObject<{
|
|
|
71894
71914
|
}>>;
|
|
71895
71915
|
path: z.ZodObject<{
|
|
71896
71916
|
organization_id_or_slug: z.ZodString;
|
|
71897
|
-
issue_id: z.
|
|
71917
|
+
issue_id: z.ZodString;
|
|
71898
71918
|
}, "strip", z.ZodTypeAny, {
|
|
71899
71919
|
organization_id_or_slug: string;
|
|
71900
|
-
issue_id:
|
|
71920
|
+
issue_id: string;
|
|
71901
71921
|
}, {
|
|
71902
71922
|
organization_id_or_slug: string;
|
|
71903
|
-
issue_id:
|
|
71923
|
+
issue_id: string;
|
|
71904
71924
|
}>;
|
|
71905
71925
|
query: z.ZodOptional<z.ZodNever>;
|
|
71906
71926
|
}, "strip", z.ZodTypeAny, {
|
|
71907
71927
|
path: {
|
|
71908
71928
|
organization_id_or_slug: string;
|
|
71909
|
-
issue_id:
|
|
71929
|
+
issue_id: string;
|
|
71910
71930
|
};
|
|
71911
71931
|
query?: undefined;
|
|
71912
71932
|
body?: {
|
|
@@ -71923,7 +71943,7 @@ export declare const zStartSeerIssueFixData: z.ZodObject<{
|
|
|
71923
71943
|
}, {
|
|
71924
71944
|
path: {
|
|
71925
71945
|
organization_id_or_slug: string;
|
|
71926
|
-
issue_id:
|
|
71946
|
+
issue_id: string;
|
|
71927
71947
|
};
|
|
71928
71948
|
query?: undefined;
|
|
71929
71949
|
body?: {
|
|
@@ -71952,13 +71972,13 @@ export declare const zListAnIssueSEventsData: z.ZodObject<{
|
|
|
71952
71972
|
body: z.ZodOptional<z.ZodNever>;
|
|
71953
71973
|
path: z.ZodObject<{
|
|
71954
71974
|
organization_id_or_slug: z.ZodString;
|
|
71955
|
-
issue_id: z.
|
|
71975
|
+
issue_id: z.ZodString;
|
|
71956
71976
|
}, "strip", z.ZodTypeAny, {
|
|
71957
71977
|
organization_id_or_slug: string;
|
|
71958
|
-
issue_id:
|
|
71978
|
+
issue_id: string;
|
|
71959
71979
|
}, {
|
|
71960
71980
|
organization_id_or_slug: string;
|
|
71961
|
-
issue_id:
|
|
71981
|
+
issue_id: string;
|
|
71962
71982
|
}>;
|
|
71963
71983
|
query: z.ZodOptional<z.ZodObject<{
|
|
71964
71984
|
start: z.ZodOptional<z.ZodString>;
|
|
@@ -71991,7 +72011,7 @@ export declare const zListAnIssueSEventsData: z.ZodObject<{
|
|
|
71991
72011
|
}, "strip", z.ZodTypeAny, {
|
|
71992
72012
|
path: {
|
|
71993
72013
|
organization_id_or_slug: string;
|
|
71994
|
-
issue_id:
|
|
72014
|
+
issue_id: string;
|
|
71995
72015
|
};
|
|
71996
72016
|
query?: {
|
|
71997
72017
|
full: boolean;
|
|
@@ -72007,7 +72027,7 @@ export declare const zListAnIssueSEventsData: z.ZodObject<{
|
|
|
72007
72027
|
}, {
|
|
72008
72028
|
path: {
|
|
72009
72029
|
organization_id_or_slug: string;
|
|
72010
|
-
issue_id:
|
|
72030
|
+
issue_id: string;
|
|
72011
72031
|
};
|
|
72012
72032
|
query?: {
|
|
72013
72033
|
query?: string | undefined;
|
|
@@ -72134,16 +72154,16 @@ export declare const zRetrieveAnIssueEventData: z.ZodObject<{
|
|
|
72134
72154
|
body: z.ZodOptional<z.ZodNever>;
|
|
72135
72155
|
path: z.ZodObject<{
|
|
72136
72156
|
organization_id_or_slug: z.ZodString;
|
|
72137
|
-
issue_id: z.
|
|
72157
|
+
issue_id: z.ZodString;
|
|
72138
72158
|
event_id: z.ZodEnum<["latest", "oldest", "recommended"]>;
|
|
72139
72159
|
}, "strip", z.ZodTypeAny, {
|
|
72140
72160
|
organization_id_or_slug: string;
|
|
72141
72161
|
event_id: "latest" | "recommended" | "oldest";
|
|
72142
|
-
issue_id:
|
|
72162
|
+
issue_id: string;
|
|
72143
72163
|
}, {
|
|
72144
72164
|
organization_id_or_slug: string;
|
|
72145
72165
|
event_id: "latest" | "recommended" | "oldest";
|
|
72146
|
-
issue_id:
|
|
72166
|
+
issue_id: string;
|
|
72147
72167
|
}>;
|
|
72148
72168
|
query: z.ZodOptional<z.ZodObject<{
|
|
72149
72169
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -72156,7 +72176,7 @@ export declare const zRetrieveAnIssueEventData: z.ZodObject<{
|
|
|
72156
72176
|
path: {
|
|
72157
72177
|
organization_id_or_slug: string;
|
|
72158
72178
|
event_id: "latest" | "recommended" | "oldest";
|
|
72159
|
-
issue_id:
|
|
72179
|
+
issue_id: string;
|
|
72160
72180
|
};
|
|
72161
72181
|
query?: {
|
|
72162
72182
|
environment?: string[] | undefined;
|
|
@@ -72166,7 +72186,7 @@ export declare const zRetrieveAnIssueEventData: z.ZodObject<{
|
|
|
72166
72186
|
path: {
|
|
72167
72187
|
organization_id_or_slug: string;
|
|
72168
72188
|
event_id: "latest" | "recommended" | "oldest";
|
|
72169
|
-
issue_id:
|
|
72189
|
+
issue_id: string;
|
|
72170
72190
|
};
|
|
72171
72191
|
query?: {
|
|
72172
72192
|
environment?: string[] | undefined;
|
|
@@ -72629,26 +72649,26 @@ export declare const zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueD
|
|
|
72629
72649
|
body: z.ZodOptional<z.ZodNever>;
|
|
72630
72650
|
path: z.ZodObject<{
|
|
72631
72651
|
organization_id_or_slug: z.ZodString;
|
|
72632
|
-
issue_id: z.
|
|
72652
|
+
issue_id: z.ZodString;
|
|
72633
72653
|
}, "strip", z.ZodTypeAny, {
|
|
72634
72654
|
organization_id_or_slug: string;
|
|
72635
|
-
issue_id:
|
|
72655
|
+
issue_id: string;
|
|
72636
72656
|
}, {
|
|
72637
72657
|
organization_id_or_slug: string;
|
|
72638
|
-
issue_id:
|
|
72658
|
+
issue_id: string;
|
|
72639
72659
|
}>;
|
|
72640
72660
|
query: z.ZodOptional<z.ZodNever>;
|
|
72641
72661
|
}, "strip", z.ZodTypeAny, {
|
|
72642
72662
|
path: {
|
|
72643
72663
|
organization_id_or_slug: string;
|
|
72644
|
-
issue_id:
|
|
72664
|
+
issue_id: string;
|
|
72645
72665
|
};
|
|
72646
72666
|
query?: undefined;
|
|
72647
72667
|
body?: undefined;
|
|
72648
72668
|
}, {
|
|
72649
72669
|
path: {
|
|
72650
72670
|
organization_id_or_slug: string;
|
|
72651
|
-
issue_id:
|
|
72671
|
+
issue_id: string;
|
|
72652
72672
|
};
|
|
72653
72673
|
query?: undefined;
|
|
72654
72674
|
body?: undefined;
|
|
@@ -72676,13 +72696,13 @@ export declare const zListAnIssueSHashesData: z.ZodObject<{
|
|
|
72676
72696
|
body: z.ZodOptional<z.ZodNever>;
|
|
72677
72697
|
path: z.ZodObject<{
|
|
72678
72698
|
organization_id_or_slug: z.ZodString;
|
|
72679
|
-
issue_id: z.
|
|
72699
|
+
issue_id: z.ZodString;
|
|
72680
72700
|
}, "strip", z.ZodTypeAny, {
|
|
72681
72701
|
organization_id_or_slug: string;
|
|
72682
|
-
issue_id:
|
|
72702
|
+
issue_id: string;
|
|
72683
72703
|
}, {
|
|
72684
72704
|
organization_id_or_slug: string;
|
|
72685
|
-
issue_id:
|
|
72705
|
+
issue_id: string;
|
|
72686
72706
|
}>;
|
|
72687
72707
|
query: z.ZodOptional<z.ZodObject<{
|
|
72688
72708
|
full: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -72697,7 +72717,7 @@ export declare const zListAnIssueSHashesData: z.ZodObject<{
|
|
|
72697
72717
|
}, "strip", z.ZodTypeAny, {
|
|
72698
72718
|
path: {
|
|
72699
72719
|
organization_id_or_slug: string;
|
|
72700
|
-
issue_id:
|
|
72720
|
+
issue_id: string;
|
|
72701
72721
|
};
|
|
72702
72722
|
query?: {
|
|
72703
72723
|
full: boolean;
|
|
@@ -72707,7 +72727,7 @@ export declare const zListAnIssueSHashesData: z.ZodObject<{
|
|
|
72707
72727
|
}, {
|
|
72708
72728
|
path: {
|
|
72709
72729
|
organization_id_or_slug: string;
|
|
72710
|
-
issue_id:
|
|
72730
|
+
issue_id: string;
|
|
72711
72731
|
};
|
|
72712
72732
|
query?: {
|
|
72713
72733
|
full?: boolean | undefined;
|
|
@@ -73144,17 +73164,17 @@ export declare const zListAnIssueSHashesResponse: z.ZodArray<z.ZodObject<{
|
|
|
73144
73164
|
export declare const zRetrieveTagDetailsData: z.ZodObject<{
|
|
73145
73165
|
body: z.ZodOptional<z.ZodNever>;
|
|
73146
73166
|
path: z.ZodObject<{
|
|
73147
|
-
issue_id: z.
|
|
73167
|
+
issue_id: z.ZodString;
|
|
73148
73168
|
organization_id_or_slug: z.ZodString;
|
|
73149
73169
|
key: z.ZodString;
|
|
73150
73170
|
}, "strip", z.ZodTypeAny, {
|
|
73151
73171
|
key: string;
|
|
73152
73172
|
organization_id_or_slug: string;
|
|
73153
|
-
issue_id:
|
|
73173
|
+
issue_id: string;
|
|
73154
73174
|
}, {
|
|
73155
73175
|
key: string;
|
|
73156
73176
|
organization_id_or_slug: string;
|
|
73157
|
-
issue_id:
|
|
73177
|
+
issue_id: string;
|
|
73158
73178
|
}>;
|
|
73159
73179
|
query: z.ZodOptional<z.ZodObject<{
|
|
73160
73180
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -73167,7 +73187,7 @@ export declare const zRetrieveTagDetailsData: z.ZodObject<{
|
|
|
73167
73187
|
path: {
|
|
73168
73188
|
key: string;
|
|
73169
73189
|
organization_id_or_slug: string;
|
|
73170
|
-
issue_id:
|
|
73190
|
+
issue_id: string;
|
|
73171
73191
|
};
|
|
73172
73192
|
query?: {
|
|
73173
73193
|
environment?: string[] | undefined;
|
|
@@ -73177,7 +73197,7 @@ export declare const zRetrieveTagDetailsData: z.ZodObject<{
|
|
|
73177
73197
|
path: {
|
|
73178
73198
|
key: string;
|
|
73179
73199
|
organization_id_or_slug: string;
|
|
73180
|
-
issue_id:
|
|
73200
|
+
issue_id: string;
|
|
73181
73201
|
};
|
|
73182
73202
|
query?: {
|
|
73183
73203
|
environment?: string[] | undefined;
|
package/dist/zod.js
CHANGED
|
@@ -10312,7 +10312,8 @@ var zListYourOrganizationsData = z.object({
|
|
|
10312
10312
|
owner: z.boolean().optional(),
|
|
10313
10313
|
cursor: z.string().min(1).optional(),
|
|
10314
10314
|
query: z.string().optional(),
|
|
10315
|
-
sortBy: z.string().optional()
|
|
10315
|
+
sortBy: z.string().optional(),
|
|
10316
|
+
per_page: z.number().int().optional()
|
|
10316
10317
|
}).optional()
|
|
10317
10318
|
});
|
|
10318
10319
|
var zListYourOrganizationsResponse = z.array(z.object({
|
|
@@ -12635,6 +12636,7 @@ var zQueryExploreEventsInTableFormatData = z.object({
|
|
|
12635
12636
|
per_page: z.number().int().optional(),
|
|
12636
12637
|
query: z.string().optional(),
|
|
12637
12638
|
sort: z.string().optional(),
|
|
12639
|
+
allowAggregateConditions: z.boolean().optional(),
|
|
12638
12640
|
cursor: z.string().min(1).optional()
|
|
12639
12641
|
})
|
|
12640
12642
|
});
|
|
@@ -17957,7 +17959,14 @@ var zRetrieveACountOfReplaysForAGivenIssueOrTransactionData = z.object({
|
|
|
17957
17959
|
end: z.string().datetime().optional(),
|
|
17958
17960
|
statsPeriod: z.string().optional(),
|
|
17959
17961
|
project_id_or_slug: z.array(z.string()).optional(),
|
|
17960
|
-
query: z.string().optional()
|
|
17962
|
+
query: z.string().optional(),
|
|
17963
|
+
data_source: z.enum([
|
|
17964
|
+
"discover",
|
|
17965
|
+
"events",
|
|
17966
|
+
"search_issues",
|
|
17967
|
+
"transactions"
|
|
17968
|
+
]).optional(),
|
|
17969
|
+
returnIds: z.boolean().optional()
|
|
17961
17970
|
}).optional()
|
|
17962
17971
|
});
|
|
17963
17972
|
var zRetrieveACountOfReplaysForAGivenIssueOrTransactionResponse = z.record(z.number().int());
|
|
@@ -26034,7 +26043,7 @@ var zBulkMutateAListOfIssuesResponse = z.object({
|
|
|
26034
26043
|
var zListATagSValuesForAnIssueData = z.object({
|
|
26035
26044
|
body: z.never().optional(),
|
|
26036
26045
|
path: z.object({
|
|
26037
|
-
issue_id: z.
|
|
26046
|
+
issue_id: z.string(),
|
|
26038
26047
|
organization_id_or_slug: z.string(),
|
|
26039
26048
|
key: z.string()
|
|
26040
26049
|
}),
|
|
@@ -26575,7 +26584,7 @@ var zRemoveAnIssueData = z.object({
|
|
|
26575
26584
|
body: z.never().optional(),
|
|
26576
26585
|
path: z.object({
|
|
26577
26586
|
organization_id_or_slug: z.string(),
|
|
26578
|
-
issue_id: z.
|
|
26587
|
+
issue_id: z.string()
|
|
26579
26588
|
}),
|
|
26580
26589
|
query: z.never().optional()
|
|
26581
26590
|
});
|
|
@@ -26583,7 +26592,7 @@ var zRetrieveAnIssueData = z.object({
|
|
|
26583
26592
|
body: z.never().optional(),
|
|
26584
26593
|
path: z.object({
|
|
26585
26594
|
organization_id_or_slug: z.string(),
|
|
26586
|
-
issue_id: z.
|
|
26595
|
+
issue_id: z.string()
|
|
26587
26596
|
}),
|
|
26588
26597
|
query: z.object({
|
|
26589
26598
|
environment: z.array(z.string()).optional(),
|
|
@@ -26844,7 +26853,7 @@ var zUpdateAnIssueData = z.object({
|
|
|
26844
26853
|
}),
|
|
26845
26854
|
path: z.object({
|
|
26846
26855
|
organization_id_or_slug: z.string(),
|
|
26847
|
-
issue_id: z.
|
|
26856
|
+
issue_id: z.string()
|
|
26848
26857
|
}),
|
|
26849
26858
|
query: z.never().optional()
|
|
26850
26859
|
});
|
|
@@ -27018,7 +27027,7 @@ var zRetrieveSeerIssueFixStateData = z.object({
|
|
|
27018
27027
|
body: z.never().optional(),
|
|
27019
27028
|
path: z.object({
|
|
27020
27029
|
organization_id_or_slug: z.string(),
|
|
27021
|
-
issue_id: z.
|
|
27030
|
+
issue_id: z.string()
|
|
27022
27031
|
}),
|
|
27023
27032
|
query: z.never().optional()
|
|
27024
27033
|
});
|
|
@@ -27053,7 +27062,7 @@ var zStartSeerIssueFixData = z.object({
|
|
|
27053
27062
|
}).optional(),
|
|
27054
27063
|
path: z.object({
|
|
27055
27064
|
organization_id_or_slug: z.string(),
|
|
27056
|
-
issue_id: z.
|
|
27065
|
+
issue_id: z.string()
|
|
27057
27066
|
}),
|
|
27058
27067
|
query: z.never().optional()
|
|
27059
27068
|
});
|
|
@@ -27064,7 +27073,7 @@ var zListAnIssueSEventsData = z.object({
|
|
|
27064
27073
|
body: z.never().optional(),
|
|
27065
27074
|
path: z.object({
|
|
27066
27075
|
organization_id_or_slug: z.string(),
|
|
27067
|
-
issue_id: z.
|
|
27076
|
+
issue_id: z.string()
|
|
27068
27077
|
}),
|
|
27069
27078
|
query: z.object({
|
|
27070
27079
|
start: z.string().datetime().optional(),
|
|
@@ -27152,7 +27161,7 @@ var zRetrieveAnIssueEventData = z.object({
|
|
|
27152
27161
|
body: z.never().optional(),
|
|
27153
27162
|
path: z.object({
|
|
27154
27163
|
organization_id_or_slug: z.string(),
|
|
27155
|
-
issue_id: z.
|
|
27164
|
+
issue_id: z.string(),
|
|
27156
27165
|
event_id: z.enum([
|
|
27157
27166
|
"latest",
|
|
27158
27167
|
"oldest",
|
|
@@ -27391,7 +27400,7 @@ var zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueData = z.object({
|
|
|
27391
27400
|
body: z.never().optional(),
|
|
27392
27401
|
path: z.object({
|
|
27393
27402
|
organization_id_or_slug: z.string(),
|
|
27394
|
-
issue_id: z.
|
|
27403
|
+
issue_id: z.string()
|
|
27395
27404
|
}),
|
|
27396
27405
|
query: z.never().optional()
|
|
27397
27406
|
});
|
|
@@ -27406,7 +27415,7 @@ var zListAnIssueSHashesData = z.object({
|
|
|
27406
27415
|
body: z.never().optional(),
|
|
27407
27416
|
path: z.object({
|
|
27408
27417
|
organization_id_or_slug: z.string(),
|
|
27409
|
-
issue_id: z.
|
|
27418
|
+
issue_id: z.string()
|
|
27410
27419
|
}),
|
|
27411
27420
|
query: z.object({
|
|
27412
27421
|
full: z.boolean().optional().default(true),
|
|
@@ -27597,7 +27606,7 @@ var zListAnIssueSHashesResponse = z.array(z.object({
|
|
|
27597
27606
|
var zRetrieveTagDetailsData = z.object({
|
|
27598
27607
|
body: z.never().optional(),
|
|
27599
27608
|
path: z.object({
|
|
27600
|
-
issue_id: z.
|
|
27609
|
+
issue_id: z.string(),
|
|
27601
27610
|
organization_id_or_slug: z.string(),
|
|
27602
27611
|
key: z.string()
|
|
27603
27612
|
}),
|