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/schemas.mjs CHANGED
@@ -5116,6 +5116,10 @@ const userEventSchema = z.object({
5116
5116
  z.literal(false),
5117
5117
  z.literal(true)
5118
5118
  ]).optional(),
5119
+ connectSrcNotificationsEnabled: z.union([
5120
+ z.literal(false),
5121
+ z.literal(true)
5122
+ ]).optional(),
5119
5123
  computedScriptSrc: z.string().optional(),
5120
5124
  computedScriptSrcPreview: z.string().optional(),
5121
5125
  computedConnectSrc: z.string().optional(),
@@ -5144,6 +5148,10 @@ const userEventSchema = z.object({
5144
5148
  z.literal(false),
5145
5149
  z.literal(true)
5146
5150
  ]).optional(),
5151
+ connectSrcNotificationsEnabled: z.union([
5152
+ z.literal(false),
5153
+ z.literal(true)
5154
+ ]).optional(),
5147
5155
  computedScriptSrc: z.string().optional(),
5148
5156
  computedScriptSrcPreview: z.string().optional(),
5149
5157
  computedConnectSrc: z.string().optional(),
package/dist/types.d.mts CHANGED
@@ -10881,6 +10881,10 @@ type UserEvent = {
10881
10881
  * @type boolean | undefined
10882
10882
  */
10883
10883
  omitScriptNonce?: (false | true) | undefined;
10884
+ /**
10885
+ * @type boolean | undefined
10886
+ */
10887
+ connectSrcNotificationsEnabled?: (false | true) | undefined;
10884
10888
  /**
10885
10889
  * @type string | undefined
10886
10890
  */
@@ -10930,6 +10934,10 @@ type UserEvent = {
10930
10934
  * @type boolean | undefined
10931
10935
  */
10932
10936
  omitScriptNonce?: (false | true) | undefined;
10937
+ /**
10938
+ * @type boolean | undefined
10939
+ */
10940
+ connectSrcNotificationsEnabled?: (false | true) | undefined;
10933
10941
  /**
10934
10942
  * @type string | undefined
10935
10943
  */