@sentry/api 0.200.0 → 0.201.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 +3 -3
- package/dist/zod.gen.d.ts +9 -9
- package/dist/zod.js +21 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2127,7 +2127,7 @@ export type DetailedProject = {
|
|
|
2127
2127
|
builtinSymbolSources: Array<string>;
|
|
2128
2128
|
dynamicSamplingBiases: Array<{
|
|
2129
2129
|
[key: string]: string | boolean;
|
|
2130
|
-
}
|
|
2130
|
+
}> | null;
|
|
2131
2131
|
symbolSources: string;
|
|
2132
2132
|
isDynamicallySampled: boolean;
|
|
2133
2133
|
tempestFetchScreenshots: boolean;
|
|
@@ -24105,7 +24105,7 @@ export type GetProjectResponses = {
|
|
|
24105
24105
|
builtinSymbolSources: Array<string>;
|
|
24106
24106
|
dynamicSamplingBiases: Array<{
|
|
24107
24107
|
[key: string]: string | boolean;
|
|
24108
|
-
}
|
|
24108
|
+
}> | null;
|
|
24109
24109
|
symbolSources: string;
|
|
24110
24110
|
isDynamicallySampled: boolean;
|
|
24111
24111
|
tempestFetchScreenshots: boolean;
|
|
@@ -24367,7 +24367,7 @@ export type UpdateProjectResponses = {
|
|
|
24367
24367
|
builtinSymbolSources: Array<string>;
|
|
24368
24368
|
dynamicSamplingBiases: Array<{
|
|
24369
24369
|
[key: string]: string | boolean;
|
|
24370
|
-
}
|
|
24370
|
+
}> | null;
|
|
24371
24371
|
symbolSources: string;
|
|
24372
24372
|
isDynamicallySampled: boolean;
|
|
24373
24373
|
tempestFetchScreenshots: boolean;
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -3788,7 +3788,7 @@ export declare const zDetailedProject: z.ZodObject<{
|
|
|
3788
3788
|
defaultEnvironment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
3789
3789
|
relayPiiConfig: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
3790
3790
|
builtinSymbolSources: z.ZodArray<z.ZodString, "many">;
|
|
3791
|
-
dynamicSamplingBiases: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">;
|
|
3791
|
+
dynamicSamplingBiases: z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">, z.ZodNull]>;
|
|
3792
3792
|
symbolSources: z.ZodString;
|
|
3793
3793
|
isDynamicallySampled: z.ZodBoolean;
|
|
3794
3794
|
tempestFetchScreenshots: z.ZodBoolean;
|
|
@@ -3943,7 +3943,7 @@ export declare const zDetailedProject: z.ZodObject<{
|
|
|
3943
3943
|
defaultEnvironment: string | null;
|
|
3944
3944
|
relayPiiConfig: string | null;
|
|
3945
3945
|
builtinSymbolSources: string[];
|
|
3946
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
3946
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
3947
3947
|
symbolSources: string;
|
|
3948
3948
|
isDynamicallySampled: boolean;
|
|
3949
3949
|
tempestFetchScreenshots: boolean;
|
|
@@ -4106,7 +4106,7 @@ export declare const zDetailedProject: z.ZodObject<{
|
|
|
4106
4106
|
defaultEnvironment: string | null;
|
|
4107
4107
|
relayPiiConfig: string | null;
|
|
4108
4108
|
builtinSymbolSources: string[];
|
|
4109
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
4109
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
4110
4110
|
symbolSources: string;
|
|
4111
4111
|
isDynamicallySampled: boolean;
|
|
4112
4112
|
tempestFetchScreenshots: boolean;
|
|
@@ -56245,7 +56245,7 @@ export declare const zGetProjectResponse: z.ZodObject<{
|
|
|
56245
56245
|
defaultEnvironment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
56246
56246
|
relayPiiConfig: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
56247
56247
|
builtinSymbolSources: z.ZodArray<z.ZodString, "many">;
|
|
56248
|
-
dynamicSamplingBiases: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">;
|
|
56248
|
+
dynamicSamplingBiases: z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">, z.ZodNull]>;
|
|
56249
56249
|
symbolSources: z.ZodString;
|
|
56250
56250
|
isDynamicallySampled: z.ZodBoolean;
|
|
56251
56251
|
tempestFetchScreenshots: z.ZodBoolean;
|
|
@@ -56400,7 +56400,7 @@ export declare const zGetProjectResponse: z.ZodObject<{
|
|
|
56400
56400
|
defaultEnvironment: string | null;
|
|
56401
56401
|
relayPiiConfig: string | null;
|
|
56402
56402
|
builtinSymbolSources: string[];
|
|
56403
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
56403
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
56404
56404
|
symbolSources: string;
|
|
56405
56405
|
isDynamicallySampled: boolean;
|
|
56406
56406
|
tempestFetchScreenshots: boolean;
|
|
@@ -56563,7 +56563,7 @@ export declare const zGetProjectResponse: z.ZodObject<{
|
|
|
56563
56563
|
defaultEnvironment: string | null;
|
|
56564
56564
|
relayPiiConfig: string | null;
|
|
56565
56565
|
builtinSymbolSources: string[];
|
|
56566
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
56566
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
56567
56567
|
symbolSources: string;
|
|
56568
56568
|
isDynamicallySampled: boolean;
|
|
56569
56569
|
tempestFetchScreenshots: boolean;
|
|
@@ -57004,7 +57004,7 @@ export declare const zUpdateProjectResponse: z.ZodObject<{
|
|
|
57004
57004
|
defaultEnvironment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
57005
57005
|
relayPiiConfig: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
57006
57006
|
builtinSymbolSources: z.ZodArray<z.ZodString, "many">;
|
|
57007
|
-
dynamicSamplingBiases: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">;
|
|
57007
|
+
dynamicSamplingBiases: z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodBoolean]>>, "many">, z.ZodNull]>;
|
|
57008
57008
|
symbolSources: z.ZodString;
|
|
57009
57009
|
isDynamicallySampled: z.ZodBoolean;
|
|
57010
57010
|
tempestFetchScreenshots: z.ZodBoolean;
|
|
@@ -57159,7 +57159,7 @@ export declare const zUpdateProjectResponse: z.ZodObject<{
|
|
|
57159
57159
|
defaultEnvironment: string | null;
|
|
57160
57160
|
relayPiiConfig: string | null;
|
|
57161
57161
|
builtinSymbolSources: string[];
|
|
57162
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
57162
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
57163
57163
|
symbolSources: string;
|
|
57164
57164
|
isDynamicallySampled: boolean;
|
|
57165
57165
|
tempestFetchScreenshots: boolean;
|
|
@@ -57322,7 +57322,7 @@ export declare const zUpdateProjectResponse: z.ZodObject<{
|
|
|
57322
57322
|
defaultEnvironment: string | null;
|
|
57323
57323
|
relayPiiConfig: string | null;
|
|
57324
57324
|
builtinSymbolSources: string[];
|
|
57325
|
-
dynamicSamplingBiases: Record<string, string | boolean>[];
|
|
57325
|
+
dynamicSamplingBiases: Record<string, string | boolean>[] | null;
|
|
57326
57326
|
symbolSources: string;
|
|
57327
57327
|
isDynamicallySampled: boolean;
|
|
57328
57328
|
tempestFetchScreenshots: boolean;
|
package/dist/zod.js
CHANGED
|
@@ -1942,10 +1942,13 @@ var zDetailedProject = z.object({
|
|
|
1942
1942
|
z.null()
|
|
1943
1943
|
]),
|
|
1944
1944
|
builtinSymbolSources: z.array(z.string()),
|
|
1945
|
-
dynamicSamplingBiases: z.
|
|
1946
|
-
z.
|
|
1947
|
-
|
|
1948
|
-
|
|
1945
|
+
dynamicSamplingBiases: z.union([
|
|
1946
|
+
z.array(z.record(z.union([
|
|
1947
|
+
z.string(),
|
|
1948
|
+
z.boolean()
|
|
1949
|
+
]))),
|
|
1950
|
+
z.null()
|
|
1951
|
+
]),
|
|
1949
1952
|
symbolSources: z.string(),
|
|
1950
1953
|
isDynamicallySampled: z.boolean(),
|
|
1951
1954
|
tempestFetchScreenshots: z.boolean(),
|
|
@@ -21251,10 +21254,13 @@ var zGetProjectResponse = z.object({
|
|
|
21251
21254
|
z.null()
|
|
21252
21255
|
]),
|
|
21253
21256
|
builtinSymbolSources: z.array(z.string()),
|
|
21254
|
-
dynamicSamplingBiases: z.
|
|
21255
|
-
z.
|
|
21256
|
-
|
|
21257
|
-
|
|
21257
|
+
dynamicSamplingBiases: z.union([
|
|
21258
|
+
z.array(z.record(z.union([
|
|
21259
|
+
z.string(),
|
|
21260
|
+
z.boolean()
|
|
21261
|
+
]))),
|
|
21262
|
+
z.null()
|
|
21263
|
+
]),
|
|
21258
21264
|
symbolSources: z.string(),
|
|
21259
21265
|
isDynamicallySampled: z.boolean(),
|
|
21260
21266
|
tempestFetchScreenshots: z.boolean(),
|
|
@@ -21488,10 +21494,13 @@ var zUpdateProjectResponse = z.object({
|
|
|
21488
21494
|
z.null()
|
|
21489
21495
|
]),
|
|
21490
21496
|
builtinSymbolSources: z.array(z.string()),
|
|
21491
|
-
dynamicSamplingBiases: z.
|
|
21492
|
-
z.
|
|
21493
|
-
|
|
21494
|
-
|
|
21497
|
+
dynamicSamplingBiases: z.union([
|
|
21498
|
+
z.array(z.record(z.union([
|
|
21499
|
+
z.string(),
|
|
21500
|
+
z.boolean()
|
|
21501
|
+
]))),
|
|
21502
|
+
z.null()
|
|
21503
|
+
]),
|
|
21495
21504
|
symbolSources: z.string(),
|
|
21496
21505
|
isDynamicallySampled: z.boolean(),
|
|
21497
21506
|
tempestFetchScreenshots: z.boolean(),
|