@be-link/ecommerce-backend-bff-service-node-sdk 0.0.59 → 0.0.60
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/cjs/bff/modules/pandora/store/types.d.ts +16 -11
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +4 -2
- package/esm/bff/modules/pandora/store/types.d.ts +16 -11
- package/esm/index.d.ts +2 -0
- package/esm/index.mjs +2 -0
- package/package.json +4 -4
|
@@ -456,8 +456,7 @@ export declare namespace StoreService {
|
|
|
456
456
|
* 查询门店分组列表请求
|
|
457
457
|
*/
|
|
458
458
|
interface getStoreGroupList {
|
|
459
|
-
|
|
460
|
-
tagId: string;
|
|
459
|
+
tagName?: string;
|
|
461
460
|
/** 分页:页码 */
|
|
462
461
|
page?: number;
|
|
463
462
|
/** 分页:每页数量 */
|
|
@@ -467,8 +466,6 @@ export declare namespace StoreService {
|
|
|
467
466
|
* 查询门店分组标签列表请求
|
|
468
467
|
*/
|
|
469
468
|
interface queryTagsByGroup {
|
|
470
|
-
/** 门店分组ID */
|
|
471
|
-
groupId: string;
|
|
472
469
|
}
|
|
473
470
|
}
|
|
474
471
|
/**
|
|
@@ -662,14 +659,22 @@ export declare namespace StoreService {
|
|
|
662
659
|
* 查询门店分组列表响应
|
|
663
660
|
*/
|
|
664
661
|
interface getStoreGroupList {
|
|
665
|
-
/**
|
|
666
|
-
|
|
667
|
-
/**
|
|
668
|
-
|
|
669
|
-
/**
|
|
670
|
-
|
|
671
|
-
/**
|
|
662
|
+
/** 标签列表 */
|
|
663
|
+
tags: Array<{
|
|
664
|
+
/** 标签ID */
|
|
665
|
+
tagId: string;
|
|
666
|
+
/** 标签名称 */
|
|
667
|
+
tagName: string;
|
|
668
|
+
/** 标签分组ID */
|
|
669
|
+
groupId: string;
|
|
670
|
+
/** 标签状态 */
|
|
671
|
+
status: number;
|
|
672
|
+
/** 标签备注 */
|
|
673
|
+
remark?: string;
|
|
674
|
+
/** 创建时间 */
|
|
672
675
|
createdAt: number;
|
|
676
|
+
/** 标签绑定对象的数量 */
|
|
677
|
+
bindCount: number;
|
|
673
678
|
}>;
|
|
674
679
|
/** 总数 */
|
|
675
680
|
total: number;
|
package/cjs/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { MiniProgramDemoService } from './bff/modules/miniprogram/demo/service';
|
|
|
5
5
|
import { PandoraProductService } from './bff/modules/pandora/product/service';
|
|
6
6
|
import { PandoraProductExpService } from './bff/modules/pandora/productExp/service';
|
|
7
7
|
import { PandoraProductLiveService } from './bff/modules/pandora/productLive/service';
|
|
8
|
+
import { PandoraCouponService } from './bff/modules/pandora/coupon/service';
|
|
8
9
|
import { PandoraRoomService } from './bff/modules/pandora/room/service';
|
|
9
10
|
import { SdkOptions } from './types';
|
|
10
11
|
/**
|
|
@@ -23,6 +24,7 @@ export declare class PandoraSDK {
|
|
|
23
24
|
product: PandoraProductService;
|
|
24
25
|
productExp: PandoraProductExpService;
|
|
25
26
|
productLive: PandoraProductLiveService;
|
|
27
|
+
coupon: PandoraCouponService;
|
|
26
28
|
/**
|
|
27
29
|
* Pandora 门店服务模块
|
|
28
30
|
*/
|
package/cjs/index.js
CHANGED
|
@@ -23,7 +23,8 @@ const service_4 = require("./bff/modules/miniprogram/demo/service");
|
|
|
23
23
|
const service_5 = require("./bff/modules/pandora/product/service");
|
|
24
24
|
const service_6 = require("./bff/modules/pandora/productExp/service");
|
|
25
25
|
const service_7 = require("./bff/modules/pandora/productLive/service");
|
|
26
|
-
const service_8 = require("./bff/modules/pandora/
|
|
26
|
+
const service_8 = require("./bff/modules/pandora/coupon/service");
|
|
27
|
+
const service_9 = require("./bff/modules/pandora/room/service");
|
|
27
28
|
/**
|
|
28
29
|
* Pandora 平台 SDK(管理后台)
|
|
29
30
|
* 包含所有 Pandora 平台相关的服务
|
|
@@ -43,7 +44,8 @@ class PandoraSDK {
|
|
|
43
44
|
this.productLive = new service_7.PandoraProductLiveService(this.http);
|
|
44
45
|
this.store = new service_2.PandoraStoreService(this.http);
|
|
45
46
|
this.storeUserRelation = new service_3.PandoraStoreUserRelationService(this.http);
|
|
46
|
-
this.room = new
|
|
47
|
+
this.room = new service_9.PandoraRoomService(this.http);
|
|
48
|
+
this.coupon = new service_8.PandoraCouponService(this.http);
|
|
47
49
|
}
|
|
48
50
|
}
|
|
49
51
|
exports.PandoraSDK = PandoraSDK;
|
|
@@ -456,8 +456,7 @@ export declare namespace StoreService {
|
|
|
456
456
|
* 查询门店分组列表请求
|
|
457
457
|
*/
|
|
458
458
|
interface getStoreGroupList {
|
|
459
|
-
|
|
460
|
-
tagId: string;
|
|
459
|
+
tagName?: string;
|
|
461
460
|
/** 分页:页码 */
|
|
462
461
|
page?: number;
|
|
463
462
|
/** 分页:每页数量 */
|
|
@@ -467,8 +466,6 @@ export declare namespace StoreService {
|
|
|
467
466
|
* 查询门店分组标签列表请求
|
|
468
467
|
*/
|
|
469
468
|
interface queryTagsByGroup {
|
|
470
|
-
/** 门店分组ID */
|
|
471
|
-
groupId: string;
|
|
472
469
|
}
|
|
473
470
|
}
|
|
474
471
|
/**
|
|
@@ -662,14 +659,22 @@ export declare namespace StoreService {
|
|
|
662
659
|
* 查询门店分组列表响应
|
|
663
660
|
*/
|
|
664
661
|
interface getStoreGroupList {
|
|
665
|
-
/**
|
|
666
|
-
|
|
667
|
-
/**
|
|
668
|
-
|
|
669
|
-
/**
|
|
670
|
-
|
|
671
|
-
/**
|
|
662
|
+
/** 标签列表 */
|
|
663
|
+
tags: Array<{
|
|
664
|
+
/** 标签ID */
|
|
665
|
+
tagId: string;
|
|
666
|
+
/** 标签名称 */
|
|
667
|
+
tagName: string;
|
|
668
|
+
/** 标签分组ID */
|
|
669
|
+
groupId: string;
|
|
670
|
+
/** 标签状态 */
|
|
671
|
+
status: number;
|
|
672
|
+
/** 标签备注 */
|
|
673
|
+
remark?: string;
|
|
674
|
+
/** 创建时间 */
|
|
672
675
|
createdAt: number;
|
|
676
|
+
/** 标签绑定对象的数量 */
|
|
677
|
+
bindCount: number;
|
|
673
678
|
}>;
|
|
674
679
|
/** 总数 */
|
|
675
680
|
total: number;
|
package/esm/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { MiniProgramDemoService } from './bff/modules/miniprogram/demo/service';
|
|
|
5
5
|
import { PandoraProductService } from './bff/modules/pandora/product/service';
|
|
6
6
|
import { PandoraProductExpService } from './bff/modules/pandora/productExp/service';
|
|
7
7
|
import { PandoraProductLiveService } from './bff/modules/pandora/productLive/service';
|
|
8
|
+
import { PandoraCouponService } from './bff/modules/pandora/coupon/service';
|
|
8
9
|
import { PandoraRoomService } from './bff/modules/pandora/room/service';
|
|
9
10
|
import { SdkOptions } from './types';
|
|
10
11
|
/**
|
|
@@ -23,6 +24,7 @@ export declare class PandoraSDK {
|
|
|
23
24
|
product: PandoraProductService;
|
|
24
25
|
productExp: PandoraProductExpService;
|
|
25
26
|
productLive: PandoraProductLiveService;
|
|
27
|
+
coupon: PandoraCouponService;
|
|
26
28
|
/**
|
|
27
29
|
* Pandora 门店服务模块
|
|
28
30
|
*/
|
package/esm/index.mjs
CHANGED
|
@@ -6,6 +6,7 @@ import { MiniProgramDemoService } from './bff/modules/miniprogram/demo/service.m
|
|
|
6
6
|
import { PandoraProductService } from './bff/modules/pandora/product/service.mjs';
|
|
7
7
|
import { PandoraProductExpService } from './bff/modules/pandora/productExp/service.mjs';
|
|
8
8
|
import { PandoraProductLiveService } from './bff/modules/pandora/productLive/service.mjs';
|
|
9
|
+
import { PandoraCouponService } from './bff/modules/pandora/coupon/service.mjs';
|
|
9
10
|
import { PandoraRoomService } from './bff/modules/pandora/room/service.mjs';
|
|
10
11
|
/**
|
|
11
12
|
* Pandora 平台 SDK(管理后台)
|
|
@@ -27,6 +28,7 @@ export class PandoraSDK {
|
|
|
27
28
|
this.store = new PandoraStoreService(this.http);
|
|
28
29
|
this.storeUserRelation = new PandoraStoreUserRelationService(this.http);
|
|
29
30
|
this.room = new PandoraRoomService(this.http);
|
|
31
|
+
this.coupon = new PandoraCouponService(this.http);
|
|
30
32
|
}
|
|
31
33
|
}
|
|
32
34
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/ecommerce-backend-bff-service-node-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"description": "EcommerceBackendBffService Node.js SDK",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./cjs/index.js",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@be-link/ecommerce-product-service-node-sdk": "^0.0.17",
|
|
28
28
|
"@be-link/ecommerce-volcengine-open-api-sdk": "^1.0.16",
|
|
29
|
-
"@be-link/ecommerce-client-backend-service-node-sdk": "^0.0.
|
|
30
|
-
"@be-link/ecommerce-tag-service-node-sdk": "^0.0.
|
|
31
|
-
"@be-link/ecommerce-store-service-node-sdk": "^0.0.
|
|
29
|
+
"@be-link/ecommerce-client-backend-service-node-sdk": "^0.0.10",
|
|
30
|
+
"@be-link/ecommerce-tag-service-node-sdk": "^0.0.11",
|
|
31
|
+
"@be-link/ecommerce-store-service-node-sdk": "^0.0.13",
|
|
32
32
|
"@be-link/ecommerce-promotion-service-node-sdk": "^0.0.11",
|
|
33
33
|
"axios": "1.13.2"
|
|
34
34
|
},
|