@sentry/api 0.186.0 → 0.187.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 +8 -0
- package/dist/zod.gen.d.ts +5 -0
- package/dist/zod.js +1 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -19104,6 +19104,14 @@ export type RetrieveACountOfReplaysForAGivenIssueOrTransactionData = {
|
|
|
19104
19104
|
* For example, `24h`, to mean query data starting from 24 hours ago to now.
|
|
19105
19105
|
*/
|
|
19106
19106
|
statsPeriod?: string;
|
|
19107
|
+
/**
|
|
19108
|
+
* The IDs of projects to filter by. `-1` means all available projects.
|
|
19109
|
+
* For example, the following are valid parameters:
|
|
19110
|
+
* - `/?project=1234&project=56789`
|
|
19111
|
+
* - `/?project=-1`
|
|
19112
|
+
*
|
|
19113
|
+
*/
|
|
19114
|
+
project?: Array<number>;
|
|
19107
19115
|
/**
|
|
19108
19116
|
* The project slugs to filter by. Use `$all` to include all available projects. For example, the following are valid parameters:
|
|
19109
19117
|
* - `/?projectSlug=$all`
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -46422,6 +46422,7 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46422
46422
|
start: z.ZodOptional<z.ZodString>;
|
|
46423
46423
|
end: z.ZodOptional<z.ZodString>;
|
|
46424
46424
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
46425
|
+
project: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
46425
46426
|
project_id_or_slug: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
46426
46427
|
query: z.ZodOptional<z.ZodString>;
|
|
46427
46428
|
data_source: z.ZodOptional<z.ZodEnum<["discover", "events", "search_issues", "transactions"]>>;
|
|
@@ -46429,6 +46430,7 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46429
46430
|
}, "strip", z.ZodTypeAny, {
|
|
46430
46431
|
query?: string | undefined;
|
|
46431
46432
|
environment?: string[] | undefined;
|
|
46433
|
+
project?: number[] | undefined;
|
|
46432
46434
|
end?: string | undefined;
|
|
46433
46435
|
start?: string | undefined;
|
|
46434
46436
|
statsPeriod?: string | undefined;
|
|
@@ -46438,6 +46440,7 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46438
46440
|
}, {
|
|
46439
46441
|
query?: string | undefined;
|
|
46440
46442
|
environment?: string[] | undefined;
|
|
46443
|
+
project?: number[] | undefined;
|
|
46441
46444
|
end?: string | undefined;
|
|
46442
46445
|
start?: string | undefined;
|
|
46443
46446
|
statsPeriod?: string | undefined;
|
|
@@ -46452,6 +46455,7 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46452
46455
|
query?: {
|
|
46453
46456
|
query?: string | undefined;
|
|
46454
46457
|
environment?: string[] | undefined;
|
|
46458
|
+
project?: number[] | undefined;
|
|
46455
46459
|
end?: string | undefined;
|
|
46456
46460
|
start?: string | undefined;
|
|
46457
46461
|
statsPeriod?: string | undefined;
|
|
@@ -46467,6 +46471,7 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
|
|
|
46467
46471
|
query?: {
|
|
46468
46472
|
query?: string | undefined;
|
|
46469
46473
|
environment?: string[] | undefined;
|
|
46474
|
+
project?: number[] | undefined;
|
|
46470
46475
|
end?: string | undefined;
|
|
46471
46476
|
start?: string | undefined;
|
|
46472
46477
|
statsPeriod?: string | undefined;
|
package/dist/zod.js
CHANGED
|
@@ -18048,6 +18048,7 @@ var zRetrieveACountOfReplaysForAGivenIssueOrTransactionData = z.object({
|
|
|
18048
18048
|
start: z.string().datetime().optional(),
|
|
18049
18049
|
end: z.string().datetime().optional(),
|
|
18050
18050
|
statsPeriod: z.string().optional(),
|
|
18051
|
+
project: z.array(z.number().int()).optional(),
|
|
18051
18052
|
project_id_or_slug: z.array(z.string()).optional(),
|
|
18052
18053
|
query: z.string().optional(),
|
|
18053
18054
|
data_source: z.enum([
|