vercel-api-js 1.8.1 → 1.8.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/components.d.mts.map +1 -1
- package/dist/effect.d.mts.map +1 -1
- package/dist/index.cjs +8 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/schemas.cjs +8 -0
- package/dist/schemas.d.mts +2 -0
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +8 -0
- package/dist/types.d.mts +8 -0
- package/dist/types.d.mts.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -13748,6 +13748,10 @@ const userEventSchema = z.object({
|
|
|
13748
13748
|
z.literal(false),
|
|
13749
13749
|
z.literal(true)
|
|
13750
13750
|
]).optional(),
|
|
13751
|
+
connectSrcNotificationsEnabled: z.union([
|
|
13752
|
+
z.literal(false),
|
|
13753
|
+
z.literal(true)
|
|
13754
|
+
]).optional(),
|
|
13751
13755
|
computedScriptSrc: z.string().optional(),
|
|
13752
13756
|
computedScriptSrcPreview: z.string().optional(),
|
|
13753
13757
|
computedConnectSrc: z.string().optional(),
|
|
@@ -13776,6 +13780,10 @@ const userEventSchema = z.object({
|
|
|
13776
13780
|
z.literal(false),
|
|
13777
13781
|
z.literal(true)
|
|
13778
13782
|
]).optional(),
|
|
13783
|
+
connectSrcNotificationsEnabled: z.union([
|
|
13784
|
+
z.literal(false),
|
|
13785
|
+
z.literal(true)
|
|
13786
|
+
]).optional(),
|
|
13779
13787
|
computedScriptSrc: z.string().optional(),
|
|
13780
13788
|
computedScriptSrcPreview: z.string().optional(),
|
|
13781
13789
|
computedConnectSrc: z.string().optional(),
|
package/dist/schemas.cjs
CHANGED
|
@@ -5138,6 +5138,10 @@ const userEventSchema = z__namespace.object({
|
|
|
5138
5138
|
z__namespace.literal(false),
|
|
5139
5139
|
z__namespace.literal(true)
|
|
5140
5140
|
]).optional(),
|
|
5141
|
+
connectSrcNotificationsEnabled: z__namespace.union([
|
|
5142
|
+
z__namespace.literal(false),
|
|
5143
|
+
z__namespace.literal(true)
|
|
5144
|
+
]).optional(),
|
|
5141
5145
|
computedScriptSrc: z__namespace.string().optional(),
|
|
5142
5146
|
computedScriptSrcPreview: z__namespace.string().optional(),
|
|
5143
5147
|
computedConnectSrc: z__namespace.string().optional(),
|
|
@@ -5166,6 +5170,10 @@ const userEventSchema = z__namespace.object({
|
|
|
5166
5170
|
z__namespace.literal(false),
|
|
5167
5171
|
z__namespace.literal(true)
|
|
5168
5172
|
]).optional(),
|
|
5173
|
+
connectSrcNotificationsEnabled: z__namespace.union([
|
|
5174
|
+
z__namespace.literal(false),
|
|
5175
|
+
z__namespace.literal(true)
|
|
5176
|
+
]).optional(),
|
|
5169
5177
|
computedScriptSrc: z__namespace.string().optional(),
|
|
5170
5178
|
computedScriptSrcPreview: z__namespace.string().optional(),
|
|
5171
5179
|
computedConnectSrc: z__namespace.string().optional(),
|
package/dist/schemas.d.mts
CHANGED
|
@@ -4399,6 +4399,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4399
4399
|
}>;
|
|
4400
4400
|
allowUnsafeScriptSrcKeywords: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4401
4401
|
omitScriptNonce: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
4402
|
+
connectSrcNotificationsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
4402
4403
|
computedScriptSrc: z.ZodOptional<z.ZodString>;
|
|
4403
4404
|
computedScriptSrcPreview: z.ZodOptional<z.ZodString>;
|
|
4404
4405
|
computedConnectSrc: z.ZodOptional<z.ZodString>;
|
|
@@ -4418,6 +4419,7 @@ declare const userEventSchema: z.ZodObject<{
|
|
|
4418
4419
|
}>;
|
|
4419
4420
|
allowUnsafeScriptSrcKeywords: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
|
|
4420
4421
|
omitScriptNonce: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
4422
|
+
connectSrcNotificationsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
|
|
4421
4423
|
computedScriptSrc: z.ZodOptional<z.ZodString>;
|
|
4422
4424
|
computedScriptSrcPreview: z.ZodOptional<z.ZodString>;
|
|
4423
4425
|
computedConnectSrc: z.ZodOptional<z.ZodString>;
|