@mptool/all 0.7.0 → 0.7.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/lib/index.d.mts +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +5 -5
package/lib/index.d.mts
CHANGED
|
@@ -1104,7 +1104,7 @@ interface CookieType {
|
|
|
1104
1104
|
/**
|
|
1105
1105
|
* indicates a cookie ought not to be sent along with cross-site requests
|
|
1106
1106
|
*/
|
|
1107
|
-
sameSite?:
|
|
1107
|
+
sameSite?: boolean | "lax" | "strict" | "none" | undefined;
|
|
1108
1108
|
}
|
|
1109
1109
|
|
|
1110
1110
|
declare const getCookieScopeDomain: (domain?: string) => string[];
|
package/lib/index.d.ts
CHANGED
|
@@ -1104,7 +1104,7 @@ interface CookieType {
|
|
|
1104
1104
|
/**
|
|
1105
1105
|
* indicates a cookie ought not to be sent along with cross-site requests
|
|
1106
1106
|
*/
|
|
1107
|
-
sameSite?:
|
|
1107
|
+
sameSite?: boolean | "lax" | "strict" | "none" | undefined;
|
|
1108
1108
|
}
|
|
1109
1109
|
|
|
1110
1110
|
declare const getCookieScopeDomain: (domain?: string) => string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mptool/all",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Full back for mptool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"miniprogram-api-typings": "3.12.2",
|
|
35
|
-
"@mptool/
|
|
36
|
-
"@mptool/enhance": "0.7.
|
|
37
|
-
"@mptool/
|
|
38
|
-
"@mptool/parser": "0.7.
|
|
35
|
+
"@mptool/file": "0.7.1",
|
|
36
|
+
"@mptool/enhance": "0.7.1",
|
|
37
|
+
"@mptool/net": "0.7.1",
|
|
38
|
+
"@mptool/parser": "0.7.1"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|