uni-oaview 1.1.5 → 1.1.7
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.esm.js
CHANGED
|
@@ -21,6 +21,7 @@ function sendLaunchAppParamsLog(params) {
|
|
|
21
21
|
try {
|
|
22
22
|
var outputData = JSON.parse(JSON.stringify((_a = params === null || params === void 0 ? void 0 : params.referrerInfo) === null || _a === void 0 ? void 0 : _a.extraData));
|
|
23
23
|
outputData === null || outputData === void 0 ? true : delete outputData.token;
|
|
24
|
+
outputData === null || outputData === void 0 ? true : delete outputData.cookie;
|
|
24
25
|
outputData === null || outputData === void 0 ? true : delete outputData.loginUserInfo;
|
|
25
26
|
reportLog(outputData, '小程序启动入参');
|
|
26
27
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uni-oaview",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "uniapp小程序组件库",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"rollup-plugin-typescript2": "^0.27.2",
|
|
46
46
|
"rollup-plugin-vue": "^6.0.0",
|
|
47
47
|
"typescript": "^4.0.2",
|
|
48
|
-
"uniapp-log-sdk": "^1.2.
|
|
48
|
+
"uniapp-log-sdk": "^1.2.22"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@dcloudio/uni-ui": "^1.4.26",
|
package/src/utils/send-log.ts
CHANGED
|
@@ -10,6 +10,7 @@ export function sendLaunchAppParamsLog(params: any) {
|
|
|
10
10
|
try {
|
|
11
11
|
const outputData = JSON.parse(JSON.stringify(params?.referrerInfo?.extraData));
|
|
12
12
|
delete outputData?.token;
|
|
13
|
+
delete outputData?.cookie;
|
|
13
14
|
delete outputData?.loginUserInfo;
|
|
14
15
|
reportLog(outputData, '小程序启动入参');
|
|
15
16
|
} catch (error) {
|