@be-link/ecommerce-trade-service-node-sdk 0.1.55 → 0.1.57
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/modules/BaseService.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ export default abstract class BaseService {
|
|
|
7
7
|
/** URL一级路径 */
|
|
8
8
|
protected abstract prefixUrl: string;
|
|
9
9
|
/** 子网域名 */
|
|
10
|
-
protected readonly natDevHost = "http://
|
|
11
|
-
protected readonly natProdHost = "http://
|
|
10
|
+
protected readonly natDevHost = "http://192.168.58.117:8090/trade";
|
|
11
|
+
protected readonly natProdHost = "http://192.168.106.126:8090/trade";
|
|
12
12
|
/** 公网域名 */
|
|
13
13
|
protected readonly publicDevHost = "https://ecommerce-dev.wejourney.top/trade";
|
|
14
14
|
protected readonly publicProdHost = "";
|
package/modules/BaseService.js
CHANGED
|
@@ -12,8 +12,8 @@ const string_1 = require("../utils/string");
|
|
|
12
12
|
class BaseService {
|
|
13
13
|
constructor() {
|
|
14
14
|
/** 子网域名 */
|
|
15
|
-
this.natDevHost = 'http://
|
|
16
|
-
this.natProdHost = 'http://
|
|
15
|
+
this.natDevHost = 'http://192.168.58.117:8090/trade';
|
|
16
|
+
this.natProdHost = 'http://192.168.106.126:8090/trade';
|
|
17
17
|
/** 公网域名 */
|
|
18
18
|
this.publicDevHost = 'https://ecommerce-dev.wejourney.top/trade';
|
|
19
19
|
this.publicProdHost = '';
|
|
@@ -313,6 +313,8 @@ export declare namespace PosOrderQueryService {
|
|
|
313
313
|
user: {
|
|
314
314
|
userId: string;
|
|
315
315
|
unionId: string;
|
|
316
|
+
/** 用户昵称 */
|
|
317
|
+
nickname?: string;
|
|
316
318
|
memberLevel?: string;
|
|
317
319
|
receiverName: string;
|
|
318
320
|
receiverPhone: string;
|
|
@@ -328,6 +330,8 @@ export declare namespace PosOrderQueryService {
|
|
|
328
330
|
userDetail: {
|
|
329
331
|
userId: string;
|
|
330
332
|
unionId: string;
|
|
333
|
+
/** 用户昵称 */
|
|
334
|
+
nickname?: string;
|
|
331
335
|
memberLevel?: string;
|
|
332
336
|
receiverName: string;
|
|
333
337
|
receiverPhone: string;
|