cookie-es 1.2.0 → 1.2.1

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.d.cts CHANGED
@@ -202,7 +202,7 @@ interface SetCookie {
202
202
  /**
203
203
  * Indicates a cookie ought not to be sent along with cross-site requests
204
204
  */
205
- sameSite?: string | undefined;
205
+ sameSite?: true | false | "lax" | "strict" | "none" | undefined;
206
206
  [key: string]: unknown;
207
207
  }
208
208
 
package/dist/index.d.mts CHANGED
@@ -202,7 +202,7 @@ interface SetCookie {
202
202
  /**
203
203
  * Indicates a cookie ought not to be sent along with cross-site requests
204
204
  */
205
- sameSite?: string | undefined;
205
+ sameSite?: true | false | "lax" | "strict" | "none" | undefined;
206
206
  [key: string]: unknown;
207
207
  }
208
208
 
package/dist/index.d.ts CHANGED
@@ -202,7 +202,7 @@ interface SetCookie {
202
202
  /**
203
203
  * Indicates a cookie ought not to be sent along with cross-site requests
204
204
  */
205
- sameSite?: string | undefined;
205
+ sameSite?: true | false | "lax" | "strict" | "none" | undefined;
206
206
  [key: string]: unknown;
207
207
  }
208
208
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cookie-es",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "repository": "unjs/cookie-es",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,