@sentry/api 0.275.0 → 0.277.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/index.js +1 -1
- package/dist/types.gen.d.ts +4 -0
- package/dist/valibot.gen.d.ts +1 -1
- package/dist/valibot.js +1 -1
- package/dist/zod.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2499,7 +2499,7 @@ var narrowError_listOrganizationMembers = async (options) => callWithTypedErrors
|
|
|
2499
2499
|
var narrowError_listOrganizationMonitorCheckins = async (options) => callWithTypedErrors(() => listOrganizationMonitorCheckins({ ...options, responseStyle: "fields", throwOnError: false }), [401, 403, 404]);
|
|
2500
2500
|
var narrowError_listOrganizationMonitors = async (options) => callWithTypedErrors(() => listOrganizationMonitors({ ...options, responseStyle: "fields", throwOnError: false }), [401, 403, 404]);
|
|
2501
2501
|
var narrowError_listOrganizationNotificationsActions = async (options) => callWithTypedErrors(() => listOrganizationNotificationsActions({ ...options, responseStyle: "fields", throwOnError: false }), [400, 403]);
|
|
2502
|
-
var narrowError_listOrganizationProfilingChunks = async (options) => callWithTypedErrors(() => listOrganizationProfilingChunks({ ...options, responseStyle: "fields", throwOnError: false }), [401, 403, 404]);
|
|
2502
|
+
var narrowError_listOrganizationProfilingChunks = async (options) => callWithTypedErrors(() => listOrganizationProfilingChunks({ ...options, responseStyle: "fields", throwOnError: false }), [400, 401, 403, 404]);
|
|
2503
2503
|
var narrowError_listOrganizationProjectKeys = async (options) => callWithTypedErrors(() => listOrganizationProjectKeys({ ...options, responseStyle: "fields", throwOnError: false }), [400, 403, 404]);
|
|
2504
2504
|
var narrowError_listOrganizationProjects = async (options) => callWithTypedErrors(() => listOrganizationProjects({ ...options, responseStyle: "fields", throwOnError: false }), [401, 403, 404]);
|
|
2505
2505
|
var narrowError_listOrganizationRelayUsage = async (options) => callWithTypedErrors(() => listOrganizationRelayUsage({ ...options, responseStyle: "fields", throwOnError: false }), [404]);
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -18949,6 +18949,10 @@ export type ListOrganizationProfilingChunksData = {
|
|
|
18949
18949
|
url: '/api/0/organizations/{organization_id_or_slug}/profiling/chunks/';
|
|
18950
18950
|
};
|
|
18951
18951
|
export type ListOrganizationProfilingChunksErrors = {
|
|
18952
|
+
/**
|
|
18953
|
+
* Bad Request
|
|
18954
|
+
*/
|
|
18955
|
+
400: unknown;
|
|
18952
18956
|
/**
|
|
18953
18957
|
* Unauthorized
|
|
18954
18958
|
*/
|
package/dist/valibot.gen.d.ts
CHANGED
|
@@ -10002,7 +10002,7 @@ export declare const vListOrganizationProfilingChunksData: v.ObjectSchema<{
|
|
|
10002
10002
|
}, undefined>;
|
|
10003
10003
|
readonly query: v.ObjectSchema<{
|
|
10004
10004
|
readonly project: v.StringSchema<undefined>;
|
|
10005
|
-
readonly profiler_id: v.StringSchema<undefined>;
|
|
10005
|
+
readonly profiler_id: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UuidAction<string, undefined>]>;
|
|
10006
10006
|
readonly statsPeriod: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
10007
10007
|
readonly start: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
|
10008
10008
|
readonly end: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoTimestampAction<string, undefined>]>, undefined>;
|
package/dist/valibot.js
CHANGED
|
@@ -13037,7 +13037,7 @@ var vListOrganizationProfilingChunksData = v.object({
|
|
|
13037
13037
|
}),
|
|
13038
13038
|
query: v.object({
|
|
13039
13039
|
project: v.string(),
|
|
13040
|
-
profiler_id: v.string(),
|
|
13040
|
+
profiler_id: v.pipe(v.string(), v.uuid()),
|
|
13041
13041
|
statsPeriod: v.optional(v.string()),
|
|
13042
13042
|
start: v.optional(v.pipe(v.string(), v.isoTimestamp())),
|
|
13043
13043
|
end: v.optional(v.pipe(v.string(), v.isoTimestamp()))
|
package/dist/zod.js
CHANGED
|
@@ -19167,7 +19167,7 @@ var zListOrganizationProfilingChunksData = z.object({
|
|
|
19167
19167
|
}),
|
|
19168
19168
|
query: z.object({
|
|
19169
19169
|
project: z.string(),
|
|
19170
|
-
profiler_id: z.string(),
|
|
19170
|
+
profiler_id: z.string().uuid(),
|
|
19171
19171
|
statsPeriod: z.string().optional(),
|
|
19172
19172
|
start: z.string().datetime().optional(),
|
|
19173
19173
|
end: z.string().datetime().optional()
|