@uxda/appkit 4.3.0 → 4.3.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.js +24 -0
- package/package.json +1 -1
- package/src/balance/api/index.ts +6 -0
- package/src/notice/api/index.ts +6 -0
- package/src/payment/api/index.ts +6 -0
- package/src/user/api/index.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -997,6 +997,12 @@ const vendor$3 = {
|
|
|
997
997
|
traceId: generateUniqueId("appkit")
|
|
998
998
|
};
|
|
999
999
|
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
1000
|
+
logger$3.info({
|
|
1001
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
1002
|
+
receive: null,
|
|
1003
|
+
traceId: header.traceId,
|
|
1004
|
+
duration: 0
|
|
1005
|
+
});
|
|
1000
1006
|
request$1({
|
|
1001
1007
|
url: config.url,
|
|
1002
1008
|
method: config.method,
|
|
@@ -2728,6 +2734,12 @@ const vendor$2 = {
|
|
|
2728
2734
|
traceId: generateUniqueId("appkit")
|
|
2729
2735
|
};
|
|
2730
2736
|
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
2737
|
+
logger$2.info({
|
|
2738
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
2739
|
+
receive: null,
|
|
2740
|
+
traceId: header.traceId,
|
|
2741
|
+
duration: 0
|
|
2742
|
+
});
|
|
2731
2743
|
request$1({
|
|
2732
2744
|
url: config.url,
|
|
2733
2745
|
method: config.method,
|
|
@@ -6332,6 +6344,12 @@ const vendor$1 = {
|
|
|
6332
6344
|
traceId: generateUniqueId("appkit")
|
|
6333
6345
|
};
|
|
6334
6346
|
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
6347
|
+
logger$1.info({
|
|
6348
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
6349
|
+
receive: null,
|
|
6350
|
+
traceId: header.traceId,
|
|
6351
|
+
duration: 0
|
|
6352
|
+
});
|
|
6335
6353
|
request$1({
|
|
6336
6354
|
url: config.url,
|
|
6337
6355
|
method: config.method,
|
|
@@ -7711,6 +7729,12 @@ const vendor = {
|
|
|
7711
7729
|
traceId: generateUniqueId("appkit")
|
|
7712
7730
|
};
|
|
7713
7731
|
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
7732
|
+
logger.info({
|
|
7733
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
7734
|
+
receive: null,
|
|
7735
|
+
traceId: header.traceId,
|
|
7736
|
+
duration: 0
|
|
7737
|
+
});
|
|
7714
7738
|
request$1({
|
|
7715
7739
|
url: config.url,
|
|
7716
7740
|
method: config.method,
|
package/package.json
CHANGED
package/src/balance/api/index.ts
CHANGED
|
@@ -18,6 +18,12 @@ const vendor = {
|
|
|
18
18
|
}
|
|
19
19
|
const startTime = new Date().getTime()
|
|
20
20
|
|
|
21
|
+
logger.info({
|
|
22
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
23
|
+
receive: null,
|
|
24
|
+
traceId: header.traceId,
|
|
25
|
+
duration: 0,
|
|
26
|
+
})
|
|
21
27
|
TaroRequest({
|
|
22
28
|
url: config.url,
|
|
23
29
|
method: config.method,
|
package/src/notice/api/index.ts
CHANGED
|
@@ -18,6 +18,12 @@ const vendor = {
|
|
|
18
18
|
}
|
|
19
19
|
const startTime = new Date().getTime()
|
|
20
20
|
|
|
21
|
+
logger.info({
|
|
22
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
23
|
+
receive: null,
|
|
24
|
+
traceId: header.traceId,
|
|
25
|
+
duration: 0,
|
|
26
|
+
})
|
|
21
27
|
TaroRequest({
|
|
22
28
|
url: config.url,
|
|
23
29
|
method: config.method,
|
package/src/payment/api/index.ts
CHANGED
|
@@ -18,6 +18,12 @@ const vendor = {
|
|
|
18
18
|
}
|
|
19
19
|
const startTime = new Date().getTime()
|
|
20
20
|
|
|
21
|
+
logger.info({
|
|
22
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
23
|
+
receive: null,
|
|
24
|
+
traceId: header.traceId,
|
|
25
|
+
duration: 0,
|
|
26
|
+
})
|
|
21
27
|
TaroRequest({
|
|
22
28
|
url: config.url,
|
|
23
29
|
method: config.method,
|
package/src/user/api/index.ts
CHANGED
|
@@ -18,6 +18,12 @@ const vendor = {
|
|
|
18
18
|
}
|
|
19
19
|
const startTime = new Date().getTime()
|
|
20
20
|
|
|
21
|
+
logger.info({
|
|
22
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
23
|
+
receive: null,
|
|
24
|
+
traceId: header.traceId,
|
|
25
|
+
duration: 0,
|
|
26
|
+
})
|
|
21
27
|
TaroRequest({
|
|
22
28
|
url: config.url,
|
|
23
29
|
method: config.method,
|