@sentry/api 0.274.0 → 0.275.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 +2 -2
- package/dist/valibot.gen.d.ts +1 -1
- package/dist/valibot.js +1 -1
- package/dist/zod.gen.d.ts +5 -5
- package/dist/zod.js +1 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -33093,9 +33093,9 @@ export type ListProjectIssuesData = {
|
|
|
33093
33093
|
*/
|
|
33094
33094
|
hashes?: string;
|
|
33095
33095
|
/**
|
|
33096
|
-
* The sort order of the issues. Options include 'Last Seen' (`date`), 'First Seen' (`new`), 'Trends' (`trends`), 'Events' (`freq`), 'Users' (`user`), and '
|
|
33096
|
+
* The sort order of the issues. Options include 'Last Seen' (`date`), 'First Seen' (`new`), 'Trends' (`trends`), 'Events' (`freq`), 'Users' (`user`), and 'Recommended' (`recommended`).
|
|
33097
33097
|
*/
|
|
33098
|
-
sort?: 'date' | 'new' | 'trends' | 'freq' | 'user' | '
|
|
33098
|
+
sort?: 'date' | 'new' | 'trends' | 'freq' | 'user' | 'recommended';
|
|
33099
33099
|
/**
|
|
33100
33100
|
* The maximum number of issues to return. The maximum is 100.
|
|
33101
33101
|
*/
|
package/dist/valibot.gen.d.ts
CHANGED
|
@@ -16106,7 +16106,7 @@ export declare const vListProjectIssuesData: v.ObjectSchema<{
|
|
|
16106
16106
|
readonly shortIdLookup: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
16107
16107
|
readonly query: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
16108
16108
|
readonly hashes: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
16109
|
-
readonly sort: v.OptionalSchema<v.PicklistSchema<["date", "new", "trends", "freq", "user", "
|
|
16109
|
+
readonly sort: v.OptionalSchema<v.PicklistSchema<["date", "new", "trends", "freq", "user", "recommended"], undefined>, undefined>;
|
|
16110
16110
|
readonly limit: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, 100>;
|
|
16111
16111
|
readonly cursor: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
16112
16112
|
}, undefined>, undefined>;
|
package/dist/valibot.js
CHANGED
|
@@ -20345,7 +20345,7 @@ var vListProjectIssuesData = v.object({
|
|
|
20345
20345
|
"trends",
|
|
20346
20346
|
"freq",
|
|
20347
20347
|
"user",
|
|
20348
|
-
"
|
|
20348
|
+
"recommended"
|
|
20349
20349
|
])),
|
|
20350
20350
|
limit: v.optional(v.pipe(v.number(), v.integer()), 100),
|
|
20351
20351
|
cursor: v.optional(v.string())
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -79096,19 +79096,19 @@ export declare const zListProjectIssuesData: z.ZodObject<{
|
|
|
79096
79096
|
shortIdLookup: z.ZodOptional<z.ZodBoolean>;
|
|
79097
79097
|
query: z.ZodOptional<z.ZodString>;
|
|
79098
79098
|
hashes: z.ZodOptional<z.ZodString>;
|
|
79099
|
-
sort: z.ZodOptional<z.ZodEnum<["date", "new", "trends", "freq", "user", "
|
|
79099
|
+
sort: z.ZodOptional<z.ZodEnum<["date", "new", "trends", "freq", "user", "recommended"]>>;
|
|
79100
79100
|
limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
79101
79101
|
cursor: z.ZodOptional<z.ZodString>;
|
|
79102
79102
|
}, "strip", z.ZodTypeAny, {
|
|
79103
79103
|
limit: number;
|
|
79104
|
-
sort?: "user" | "new" | "date" | "freq" | "
|
|
79104
|
+
sort?: "user" | "new" | "date" | "freq" | "recommended" | "trends" | undefined;
|
|
79105
79105
|
query?: string | undefined;
|
|
79106
79106
|
cursor?: string | undefined;
|
|
79107
79107
|
statsPeriod?: string | undefined;
|
|
79108
79108
|
shortIdLookup?: boolean | undefined;
|
|
79109
79109
|
hashes?: string | undefined;
|
|
79110
79110
|
}, {
|
|
79111
|
-
sort?: "user" | "new" | "date" | "freq" | "
|
|
79111
|
+
sort?: "user" | "new" | "date" | "freq" | "recommended" | "trends" | undefined;
|
|
79112
79112
|
query?: string | undefined;
|
|
79113
79113
|
cursor?: string | undefined;
|
|
79114
79114
|
statsPeriod?: string | undefined;
|
|
@@ -79123,7 +79123,7 @@ export declare const zListProjectIssuesData: z.ZodObject<{
|
|
|
79123
79123
|
};
|
|
79124
79124
|
query?: {
|
|
79125
79125
|
limit: number;
|
|
79126
|
-
sort?: "user" | "new" | "date" | "freq" | "
|
|
79126
|
+
sort?: "user" | "new" | "date" | "freq" | "recommended" | "trends" | undefined;
|
|
79127
79127
|
query?: string | undefined;
|
|
79128
79128
|
cursor?: string | undefined;
|
|
79129
79129
|
statsPeriod?: string | undefined;
|
|
@@ -79137,7 +79137,7 @@ export declare const zListProjectIssuesData: z.ZodObject<{
|
|
|
79137
79137
|
project_id_or_slug: string;
|
|
79138
79138
|
};
|
|
79139
79139
|
query?: {
|
|
79140
|
-
sort?: "user" | "new" | "date" | "freq" | "
|
|
79140
|
+
sort?: "user" | "new" | "date" | "freq" | "recommended" | "trends" | undefined;
|
|
79141
79141
|
query?: string | undefined;
|
|
79142
79142
|
cursor?: string | undefined;
|
|
79143
79143
|
statsPeriod?: string | undefined;
|
package/dist/zod.js
CHANGED
|
@@ -29825,7 +29825,7 @@ var zListProjectIssuesData = z.object({
|
|
|
29825
29825
|
"trends",
|
|
29826
29826
|
"freq",
|
|
29827
29827
|
"user",
|
|
29828
|
-
"
|
|
29828
|
+
"recommended"
|
|
29829
29829
|
]).optional(),
|
|
29830
29830
|
limit: z.number().int().optional().default(100),
|
|
29831
29831
|
cursor: z.string().optional()
|