@sentry/junior-plugin-api 0.104.0 → 0.104.2
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 +0 -1
- package/dist/operations.d.ts +0 -1
- package/package.json +1 -1
- package/src/operations.ts +0 -1
package/dist/index.js
CHANGED
|
@@ -330,7 +330,6 @@ var pluginApiRouteRequestContextSchema = z6.object({
|
|
|
330
330
|
user: z6.object({
|
|
331
331
|
email: z6.string().nullable().optional(),
|
|
332
332
|
emailVerified: z6.boolean().optional(),
|
|
333
|
-
hostedDomain: z6.string().nullable().optional(),
|
|
334
333
|
name: z6.string().nullable().optional()
|
|
335
334
|
}).strict()
|
|
336
335
|
}).strict(),
|
package/dist/operations.d.ts
CHANGED
|
@@ -80,7 +80,6 @@ export declare const pluginApiRouteRequestContextSchema: z.ZodObject<{
|
|
|
80
80
|
user: z.ZodObject<{
|
|
81
81
|
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
82
82
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
83
|
-
hostedDomain: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
84
83
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
85
84
|
}, z.core.$strict>;
|
|
86
85
|
}, z.core.$strict>;
|
package/package.json
CHANGED
package/src/operations.ts
CHANGED
|
@@ -112,7 +112,6 @@ export const pluginApiRouteRequestContextSchema = z
|
|
|
112
112
|
.object({
|
|
113
113
|
email: z.string().nullable().optional(),
|
|
114
114
|
emailVerified: z.boolean().optional(),
|
|
115
|
-
hostedDomain: z.string().nullable().optional(),
|
|
116
115
|
name: z.string().nullable().optional(),
|
|
117
116
|
})
|
|
118
117
|
.strict(),
|