@sentry/api 0.221.0 → 0.223.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.
@@ -27259,6 +27259,10 @@ export type ListProjectReleasesData = {
27259
27259
  * Case-insensitive substring match against the release version.
27260
27260
  */
27261
27261
  query?: string;
27262
+ /**
27263
+ * Limit the number of rows to return in the result. Default and maximum allowed is 100.
27264
+ */
27265
+ per_page?: number;
27262
27266
  /**
27263
27267
  * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
27264
27268
  */
@@ -32324,6 +32328,10 @@ export type ListOrganizationIssueEventsData = {
32324
32328
  * An optional search query for filtering events. See [search syntax](https://docs.sentry.io/concepts/search/) and queryable event properties at [Sentry Search Documentation](https://docs.sentry.io/concepts/search/searchable-properties/events/) for more information. An example query might be `query=transaction:foo AND release:abc`
32325
32329
  */
32326
32330
  query?: string;
32331
+ /**
32332
+ * Limit the number of rows to return in the result. Default and maximum allowed is 100.
32333
+ */
32334
+ per_page?: number;
32327
32335
  /**
32328
32336
  * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
32329
32337
  */
package/dist/zod.gen.d.ts CHANGED
@@ -62919,15 +62919,18 @@ export declare const zListProjectReleasesData: z.ZodObject<{
62919
62919
  query: z.ZodOptional<z.ZodObject<{
62920
62920
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
62921
62921
  query: z.ZodOptional<z.ZodString>;
62922
+ per_page: z.ZodOptional<z.ZodNumber>;
62922
62923
  cursor: z.ZodOptional<z.ZodString>;
62923
62924
  }, "strip", z.ZodTypeAny, {
62924
62925
  query?: string | undefined;
62925
62926
  environment?: string[] | undefined;
62926
62927
  cursor?: string | undefined;
62928
+ per_page?: number | undefined;
62927
62929
  }, {
62928
62930
  query?: string | undefined;
62929
62931
  environment?: string[] | undefined;
62930
62932
  cursor?: string | undefined;
62933
+ per_page?: number | undefined;
62931
62934
  }>>;
62932
62935
  }, "strip", z.ZodTypeAny, {
62933
62936
  path: {
@@ -62938,6 +62941,7 @@ export declare const zListProjectReleasesData: z.ZodObject<{
62938
62941
  query?: string | undefined;
62939
62942
  environment?: string[] | undefined;
62940
62943
  cursor?: string | undefined;
62944
+ per_page?: number | undefined;
62941
62945
  } | undefined;
62942
62946
  body?: undefined;
62943
62947
  }, {
@@ -62949,6 +62953,7 @@ export declare const zListProjectReleasesData: z.ZodObject<{
62949
62953
  query?: string | undefined;
62950
62954
  environment?: string[] | undefined;
62951
62955
  cursor?: string | undefined;
62956
+ per_page?: number | undefined;
62952
62957
  } | undefined;
62953
62958
  body?: undefined;
62954
62959
  }>;
@@ -73212,6 +73217,7 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
73212
73217
  full: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
73213
73218
  sample: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
73214
73219
  query: z.ZodOptional<z.ZodString>;
73220
+ per_page: z.ZodOptional<z.ZodNumber>;
73215
73221
  cursor: z.ZodOptional<z.ZodString>;
73216
73222
  }, "strip", z.ZodTypeAny, {
73217
73223
  full: boolean;
@@ -73219,6 +73225,7 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
73219
73225
  query?: string | undefined;
73220
73226
  environment?: string[] | undefined;
73221
73227
  cursor?: string | undefined;
73228
+ per_page?: number | undefined;
73222
73229
  end?: string | undefined;
73223
73230
  start?: string | undefined;
73224
73231
  statsPeriod?: string | undefined;
@@ -73227,6 +73234,7 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
73227
73234
  full?: boolean | undefined;
73228
73235
  environment?: string[] | undefined;
73229
73236
  cursor?: string | undefined;
73237
+ per_page?: number | undefined;
73230
73238
  end?: string | undefined;
73231
73239
  start?: string | undefined;
73232
73240
  statsPeriod?: string | undefined;
@@ -73243,6 +73251,7 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
73243
73251
  query?: string | undefined;
73244
73252
  environment?: string[] | undefined;
73245
73253
  cursor?: string | undefined;
73254
+ per_page?: number | undefined;
73246
73255
  end?: string | undefined;
73247
73256
  start?: string | undefined;
73248
73257
  statsPeriod?: string | undefined;
@@ -73258,6 +73267,7 @@ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
73258
73267
  full?: boolean | undefined;
73259
73268
  environment?: string[] | undefined;
73260
73269
  cursor?: string | undefined;
73270
+ per_page?: number | undefined;
73261
73271
  end?: string | undefined;
73262
73272
  start?: string | undefined;
73263
73273
  statsPeriod?: string | undefined;
package/dist/zod.js CHANGED
@@ -24026,6 +24026,7 @@ var zListProjectReleasesData = z.object({
24026
24026
  query: z.object({
24027
24027
  environment: z.array(z.string()).optional(),
24028
24028
  query: z.string().optional(),
24029
+ per_page: z.number().int().optional(),
24029
24030
  cursor: z.string().min(1).optional()
24030
24031
  }).optional()
24031
24032
  });
@@ -27609,6 +27610,7 @@ var zListOrganizationIssueEventsData = z.object({
27609
27610
  full: z.boolean().optional().default(false),
27610
27611
  sample: z.boolean().optional().default(false),
27611
27612
  query: z.string().optional(),
27613
+ per_page: z.number().int().optional(),
27612
27614
  cursor: z.string().min(1).optional()
27613
27615
  }).optional()
27614
27616
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.221.0",
3
+ "version": "0.223.0",
4
4
  "description": "Official auto-generated TypeScript client for the Sentry public REST API",
5
5
  "keywords": [
6
6
  "sentry",