@sentry/api 0.231.0 → 0.232.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/zod.gen.d.ts +5 -5
- package/dist/zod.js +1 -1
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -17837,9 +17837,9 @@ export type ListOrganizationProfilingChunksData = {
|
|
|
17837
17837
|
};
|
|
17838
17838
|
query: {
|
|
17839
17839
|
/**
|
|
17840
|
-
* The ID of the project to fetch chunks for. Exactly one project must be specified.
|
|
17840
|
+
* The ID or slug of the project to fetch chunks for. Exactly one project must be specified.
|
|
17841
17841
|
*/
|
|
17842
|
-
project:
|
|
17842
|
+
project: string;
|
|
17843
17843
|
/**
|
|
17844
17844
|
* The continuous-profiler ID to fetch chunks for.
|
|
17845
17845
|
*/
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -44225,19 +44225,19 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
44225
44225
|
organization_id_or_slug: string;
|
|
44226
44226
|
}>;
|
|
44227
44227
|
query: z.ZodObject<{
|
|
44228
|
-
project: z.
|
|
44228
|
+
project: z.ZodString;
|
|
44229
44229
|
profiler_id: z.ZodString;
|
|
44230
44230
|
statsPeriod: z.ZodOptional<z.ZodString>;
|
|
44231
44231
|
start: z.ZodOptional<z.ZodString>;
|
|
44232
44232
|
end: z.ZodOptional<z.ZodString>;
|
|
44233
44233
|
}, "strip", z.ZodTypeAny, {
|
|
44234
|
-
project:
|
|
44234
|
+
project: string;
|
|
44235
44235
|
profiler_id: string;
|
|
44236
44236
|
end?: string | undefined;
|
|
44237
44237
|
start?: string | undefined;
|
|
44238
44238
|
statsPeriod?: string | undefined;
|
|
44239
44239
|
}, {
|
|
44240
|
-
project:
|
|
44240
|
+
project: string;
|
|
44241
44241
|
profiler_id: string;
|
|
44242
44242
|
end?: string | undefined;
|
|
44243
44243
|
start?: string | undefined;
|
|
@@ -44245,7 +44245,7 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
44245
44245
|
}>;
|
|
44246
44246
|
}, "strip", z.ZodTypeAny, {
|
|
44247
44247
|
query: {
|
|
44248
|
-
project:
|
|
44248
|
+
project: string;
|
|
44249
44249
|
profiler_id: string;
|
|
44250
44250
|
end?: string | undefined;
|
|
44251
44251
|
start?: string | undefined;
|
|
@@ -44257,7 +44257,7 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
44257
44257
|
body?: undefined;
|
|
44258
44258
|
}, {
|
|
44259
44259
|
query: {
|
|
44260
|
-
project:
|
|
44260
|
+
project: string;
|
|
44261
44261
|
profiler_id: string;
|
|
44262
44262
|
end?: string | undefined;
|
|
44263
44263
|
start?: string | undefined;
|
package/dist/zod.js
CHANGED
|
@@ -17252,7 +17252,7 @@ var zListOrganizationProfilingChunksData = z.object({
|
|
|
17252
17252
|
organization_id_or_slug: z.string()
|
|
17253
17253
|
}),
|
|
17254
17254
|
query: z.object({
|
|
17255
|
-
project: z.
|
|
17255
|
+
project: z.string(),
|
|
17256
17256
|
profiler_id: z.string(),
|
|
17257
17257
|
statsPeriod: z.string().optional(),
|
|
17258
17258
|
start: z.string().datetime().optional(),
|