@be-link/ecommerce-backend-bff-service-node-sdk 0.0.13 → 0.0.15

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.
Files changed (41) hide show
  1. package/cjs/bff/modules/pandora/product/service.d.ts +77 -0
  2. package/cjs/bff/modules/pandora/product/service.js +107 -0
  3. package/cjs/bff/modules/pandora/product/types.d.ts +247 -0
  4. package/cjs/bff/modules/pandora/product/types.js +2 -0
  5. package/cjs/bff/modules/pandora/productExp/service.d.ts +47 -0
  6. package/cjs/bff/modules/pandora/productExp/service.js +67 -0
  7. package/cjs/bff/modules/pandora/productExp/types.d.ts +81 -0
  8. package/cjs/bff/modules/pandora/productExp/types.js +2 -0
  9. package/cjs/bff/modules/pandora/productLive/service.d.ts +29 -0
  10. package/cjs/bff/modules/pandora/productLive/service.js +43 -0
  11. package/cjs/bff/modules/pandora/productLive/types.d.ts +43 -0
  12. package/cjs/bff/modules/pandora/productLive/types.js +2 -0
  13. package/cjs/bff/modules/pandora/store/service.d.ts +24 -0
  14. package/cjs/bff/modules/pandora/store/service.js +32 -0
  15. package/cjs/bff/modules/pandora/store/types.d.ts +119 -0
  16. package/cjs/bff/request/client.js +2 -2
  17. package/cjs/enums.d.ts +5 -0
  18. package/cjs/enums.js +10 -0
  19. package/cjs/index.d.ts +16 -10
  20. package/cjs/index.js +27 -10
  21. package/esm/bff/modules/pandora/product/service.d.ts +77 -0
  22. package/esm/bff/modules/pandora/product/service.mjs +100 -0
  23. package/esm/bff/modules/pandora/product/types.d.ts +247 -0
  24. package/esm/bff/modules/pandora/product/types.mjs +1 -0
  25. package/esm/bff/modules/pandora/productExp/service.d.ts +47 -0
  26. package/esm/bff/modules/pandora/productExp/service.mjs +60 -0
  27. package/esm/bff/modules/pandora/productExp/types.d.ts +81 -0
  28. package/esm/bff/modules/pandora/productExp/types.mjs +1 -0
  29. package/esm/bff/modules/pandora/productLive/service.d.ts +29 -0
  30. package/esm/bff/modules/pandora/productLive/service.mjs +36 -0
  31. package/esm/bff/modules/pandora/productLive/types.d.ts +43 -0
  32. package/esm/bff/modules/pandora/productLive/types.mjs +1 -0
  33. package/esm/bff/modules/pandora/store/service.d.ts +24 -0
  34. package/esm/bff/modules/pandora/store/service.mjs +32 -0
  35. package/esm/bff/modules/pandora/store/types.d.ts +119 -0
  36. package/esm/bff/request/client.mjs +2 -2
  37. package/esm/enums.d.ts +5 -0
  38. package/esm/enums.mjs +6 -0
  39. package/esm/index.d.ts +16 -10
  40. package/esm/index.mjs +10 -5
  41. package/package.json +1 -1
@@ -0,0 +1,77 @@
1
+ import { ProductService as Service } from './types';
2
+ import BaseService from '../../BaseService';
3
+ import type { StandardResponse } from '../../../../types';
4
+ /**
5
+ * PandoraProductService - Pandora Product 服务模块
6
+ * 提供 Pandora Product 相关的 API 方法
7
+ * 平台: pandora
8
+ */
9
+ export declare class PandoraProductService extends BaseService implements Service.ProductController {
10
+ protected prefixUrl: string;
11
+ /**
12
+ * 商品列表
13
+ * @param request - 请求参数
14
+ * @returns Promise,解析为标准响应格式
15
+ */
16
+ list(request: Service.Request.list): Promise<StandardResponse<Service.Response.list>>;
17
+ /**
18
+ * 创建商品
19
+ * @param request - 请求参数
20
+ * @returns Promise,解析为标准响应格式
21
+ */
22
+ create(request: Service.ProductData): Promise<StandardResponse<Service.Response.create>>;
23
+ /**
24
+ * 商品详情
25
+ * @param request - 请求参数
26
+ * @returns Promise,解析为标准响应格式
27
+ */
28
+ detail(request: Service.Request.detail): Promise<StandardResponse<Service.ProductData>>;
29
+ /**
30
+ * 商品更新
31
+ * @param request - 请求参数
32
+ * @returns Promise,解析为标准响应格式
33
+ */
34
+ update(request: Service.ProductData): Promise<StandardResponse<void>>;
35
+ /**
36
+ * 批量更新
37
+ * @param request - 请求参数
38
+ * @returns Promise,解析为标准响应格式
39
+ */
40
+ batchUpdate(request: Service.Request.batchUpdate): Promise<StandardResponse<void>>;
41
+ /**
42
+ * 查询定时任务任务
43
+ * @param request - 请求参数
44
+ * @returns Promise,解析为标准响应格式
45
+ */
46
+ queryScheduledTask(request: Service.Request.queryScheduledTask): Promise<StandardResponse<Service.Response.queryScheduledTask[]>>;
47
+ /**
48
+ * 校验69码是否重复
49
+ * @param request - 请求参数
50
+ * @returns Promise,解析为标准响应格式
51
+ */
52
+ checkSkuCode(request: Service.Request.checkSkuCode): Promise<StandardResponse<Service.Response.checkSkuCode>>;
53
+ /**
54
+ * 商品导出
55
+ * @param request - 请求参数
56
+ * @returns Promise,解析为标准响应格式
57
+ */
58
+ export(request: Service.Request.list): Promise<StandardResponse<void>>;
59
+ /**
60
+ * 获取商品信息(不含规格信息)
61
+ * @param request - 请求参数
62
+ * @returns Promise,解析为标准响应格式
63
+ */
64
+ queryProductList(request: Service.Request.queryProductList): Promise<StandardResponse<Service.Response.queryProductList>>;
65
+ /**
66
+ * 获取商品+规格信息
67
+ * @param request - 请求参数
68
+ * @returns Promise,解析为标准响应格式
69
+ */
70
+ queryProductSkuList(request: Service.Request.queryProductList): Promise<StandardResponse<Service.Response.queryProductSkuList>>;
71
+ /**
72
+ * 商品二维码
73
+ * @param request - 请求参数
74
+ * @returns Promise,解析为标准响应格式
75
+ */
76
+ productQrCode(request: Service.Request.productQrCode): Promise<StandardResponse<Service.Response.productQrCode>>;
77
+ }
@@ -0,0 +1,107 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.PandoraProductService = void 0;
7
+ const BaseService_1 = __importDefault(require("../../BaseService"));
8
+ /**
9
+ * PandoraProductService - Pandora Product 服务模块
10
+ * 提供 Pandora Product 相关的 API 方法
11
+ * 平台: pandora
12
+ */
13
+ class PandoraProductService extends BaseService_1.default {
14
+ constructor() {
15
+ super(...arguments);
16
+ this.prefixUrl = '/pandora/product';
17
+ }
18
+ /**
19
+ * 商品列表
20
+ * @param request - 请求参数
21
+ * @returns Promise,解析为标准响应格式
22
+ */
23
+ list(request) {
24
+ return this.request(this.list, request);
25
+ }
26
+ /**
27
+ * 创建商品
28
+ * @param request - 请求参数
29
+ * @returns Promise,解析为标准响应格式
30
+ */
31
+ create(request) {
32
+ return this.request(this.create, request);
33
+ }
34
+ /**
35
+ * 商品详情
36
+ * @param request - 请求参数
37
+ * @returns Promise,解析为标准响应格式
38
+ */
39
+ detail(request) {
40
+ return this.request(this.detail, request);
41
+ }
42
+ /**
43
+ * 商品更新
44
+ * @param request - 请求参数
45
+ * @returns Promise,解析为标准响应格式
46
+ */
47
+ update(request) {
48
+ return this.request(this.update, request);
49
+ }
50
+ /**
51
+ * 批量更新
52
+ * @param request - 请求参数
53
+ * @returns Promise,解析为标准响应格式
54
+ */
55
+ batchUpdate(request) {
56
+ return this.request(this.batchUpdate, request);
57
+ }
58
+ /**
59
+ * 查询定时任务任务
60
+ * @param request - 请求参数
61
+ * @returns Promise,解析为标准响应格式
62
+ */
63
+ queryScheduledTask(request) {
64
+ return this.request(this.queryScheduledTask, request);
65
+ }
66
+ /**
67
+ * 校验69码是否重复
68
+ * @param request - 请求参数
69
+ * @returns Promise,解析为标准响应格式
70
+ */
71
+ checkSkuCode(request) {
72
+ return this.request(this.checkSkuCode, request);
73
+ }
74
+ /**
75
+ * 商品导出
76
+ * @param request - 请求参数
77
+ * @returns Promise,解析为标准响应格式
78
+ */
79
+ export(request) {
80
+ return this.request(this.export, request);
81
+ }
82
+ /**
83
+ * 获取商品信息(不含规格信息)
84
+ * @param request - 请求参数
85
+ * @returns Promise,解析为标准响应格式
86
+ */
87
+ queryProductList(request) {
88
+ return this.request(this.queryProductList, request);
89
+ }
90
+ /**
91
+ * 获取商品+规格信息
92
+ * @param request - 请求参数
93
+ * @returns Promise,解析为标准响应格式
94
+ */
95
+ queryProductSkuList(request) {
96
+ return this.request(this.queryProductSkuList, request);
97
+ }
98
+ /**
99
+ * 商品二维码
100
+ * @param request - 请求参数
101
+ * @returns Promise,解析为标准响应格式
102
+ */
103
+ productQrCode(request) {
104
+ return this.request(this.productQrCode, request);
105
+ }
106
+ }
107
+ exports.PandoraProductService = PandoraProductService;
@@ -0,0 +1,247 @@
1
+ import { StandardResponse } from '../../../../types';
2
+ export declare namespace ProductService {
3
+ /**
4
+ * 核销期限接口
5
+ */
6
+ interface VerifyPeriod {
7
+ startDate: number;
8
+ endDate: number;
9
+ payAfterDay: number;
10
+ type: number;
11
+ }
12
+ /**
13
+ * 属性接口
14
+ */
15
+ interface Attr {
16
+ attrName: string;
17
+ attrValue: string;
18
+ }
19
+ /**
20
+ * 绑定的SKU接口
21
+ */
22
+ interface BindSku {
23
+ productId: string;
24
+ skuId: string;
25
+ quantity: number;
26
+ }
27
+ /**
28
+ * 定时任务接口
29
+ */
30
+ interface ScheduledTask {
31
+ scheduledTime: number;
32
+ status: string;
33
+ }
34
+ /**
35
+ * SKU项接口
36
+ */
37
+ interface SkuItem {
38
+ skuId?: string;
39
+ attrs: Attr[];
40
+ price: number;
41
+ strikethroughPrice: number;
42
+ purchasePrice: number;
43
+ skuCode: string;
44
+ multiSkuCodes: string[];
45
+ bindSkus: BindSku[];
46
+ stock: number;
47
+ }
48
+ /**
49
+ * 产品信息接口
50
+ */
51
+ interface ProductInfo {
52
+ productId?: string;
53
+ productType: string;
54
+ isCombo: number;
55
+ productName: string;
56
+ mainImg: string;
57
+ imgList: string[];
58
+ productDesc?: string;
59
+ categoryId: string;
60
+ twoCategoryId: string;
61
+ threeCategoryId: string;
62
+ pickType: string;
63
+ dispatchType: string;
64
+ storageMethod: string;
65
+ classification: string;
66
+ stockUnit: string;
67
+ productManagerId?: string;
68
+ supplierId?: string;
69
+ liveGroupId?: string;
70
+ status?: string;
71
+ scheduledTasks?: ScheduledTask[];
72
+ needVerify?: number;
73
+ verifyPeriod?: VerifyPeriod;
74
+ miniSaleQuantity?: number;
75
+ purchaseLimit?: number;
76
+ freightType?: string;
77
+ }
78
+ interface ProductData {
79
+ productInfo: ProductInfo;
80
+ skuList: SkuItem[];
81
+ creatorId: string;
82
+ }
83
+ namespace Request {
84
+ interface detail {
85
+ productId: string;
86
+ }
87
+ interface list {
88
+ pageIndex: number;
89
+ pageSize: number;
90
+ productIds?: string[];
91
+ productNames?: string[];
92
+ classifications?: string[];
93
+ storageMethods?: string[];
94
+ dispatchTypes?: string[];
95
+ supplierIds?: string[];
96
+ liveGroupIds?: string[];
97
+ productManagerIds?: string[];
98
+ productType?: string;
99
+ status?: string;
100
+ isCombo?: number;
101
+ skuCodes?: string[];
102
+ }
103
+ interface batchUpdate {
104
+ productIds: string[];
105
+ status?: string;
106
+ scheduledTasks?: ScheduledTask[];
107
+ classification?: string;
108
+ storageMethod?: string;
109
+ dispatchType?: string;
110
+ liveGroupId?: string;
111
+ isDelete?: boolean;
112
+ }
113
+ interface queryScheduledTask {
114
+ productId: string;
115
+ }
116
+ interface checkSkuCode {
117
+ productId?: string;
118
+ skuId?: string;
119
+ skuCode: string;
120
+ }
121
+ interface queryProductList {
122
+ pageIndex: number;
123
+ pageSize: number;
124
+ productIds?: string[];
125
+ productNames?: string[];
126
+ skuCodes?: string[];
127
+ isCombo?: number;
128
+ }
129
+ interface productQrCode {
130
+ path: string;
131
+ }
132
+ }
133
+ namespace Response {
134
+ interface create {
135
+ productId: string;
136
+ }
137
+ interface queryScheduledTask {
138
+ scheduledTime: number;
139
+ status: string;
140
+ operationType: string;
141
+ }
142
+ interface list {
143
+ total: number;
144
+ list: {
145
+ productId: string;
146
+ productName: string;
147
+ productImage: string;
148
+ cateName: string;
149
+ classification: string;
150
+ storageMethod: string;
151
+ dispatchType: string;
152
+ salesQuantity: number;
153
+ refundQuantity: number;
154
+ price: number;
155
+ stock: number;
156
+ status: string;
157
+ createdAt: number;
158
+ }[];
159
+ }
160
+ interface checkSkuCode {
161
+ enable: boolean;
162
+ }
163
+ interface queryProductList {
164
+ total: number;
165
+ list: {
166
+ productId: string;
167
+ productName: string;
168
+ productImage: string;
169
+ classification: string;
170
+ storageMethod: string;
171
+ dispatchType: string;
172
+ price: number;
173
+ stock: number;
174
+ status: string;
175
+ }[];
176
+ }
177
+ interface queryProductSkuList {
178
+ total: number;
179
+ list: {
180
+ productId: string;
181
+ productName: string;
182
+ productImage: string;
183
+ classification: string;
184
+ storageMethod: string;
185
+ dispatchType: string;
186
+ price: number;
187
+ stock: number;
188
+ status: string;
189
+ skuId: string;
190
+ attrs: Attr[];
191
+ skuCode: string;
192
+ }[];
193
+ }
194
+ interface productQrCode {
195
+ qrCodeUrl: string;
196
+ }
197
+ }
198
+ /**
199
+ * ProductLive Controller 接口定义
200
+ */
201
+ interface ProductController {
202
+ /**
203
+ * 商品列表
204
+ */
205
+ list(request: ProductService.Request.list): Promise<StandardResponse<ProductService.Response.list>>;
206
+ /**
207
+ * 创建商品
208
+ */
209
+ create(request: ProductService.ProductData): Promise<StandardResponse<ProductService.Response.create>>;
210
+ /**
211
+ * 商品详情
212
+ */
213
+ detail(request: ProductService.Request.detail): Promise<StandardResponse<ProductService.ProductData>>;
214
+ /**
215
+ * 商品更新
216
+ */
217
+ update(request: ProductService.ProductData): Promise<StandardResponse<void>>;
218
+ /**
219
+ * 批量更新
220
+ */
221
+ batchUpdate(request: ProductService.Request.batchUpdate): Promise<StandardResponse<void>>;
222
+ /**
223
+ * 查询定时任务任务
224
+ */
225
+ queryScheduledTask(request: ProductService.Request.queryScheduledTask): Promise<StandardResponse<ProductService.Response.queryScheduledTask[]>>;
226
+ /**
227
+ * 校验69码是否重复
228
+ */
229
+ checkSkuCode(request: ProductService.Request.checkSkuCode): Promise<StandardResponse<ProductService.Response.checkSkuCode>>;
230
+ /**
231
+ * 商品导出
232
+ */
233
+ export(request: ProductService.Request.list): Promise<StandardResponse<void>>;
234
+ /**
235
+ * 获取商品信息(不含规格信息)
236
+ */
237
+ queryProductList(request: ProductService.Request.queryProductList): Promise<StandardResponse<ProductService.Response.queryProductList>>;
238
+ /**
239
+ * 获取商品+规格信息
240
+ */
241
+ queryProductSkuList(request: ProductService.Request.queryProductList): Promise<StandardResponse<ProductService.Response.queryProductSkuList>>;
242
+ /**
243
+ * 商品二维码
244
+ */
245
+ productQrCode(request: ProductService.Request.productQrCode): Promise<StandardResponse<ProductService.Response.productQrCode>>;
246
+ }
247
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,47 @@
1
+ import { ProductExpService as Service } from './types';
2
+ import BaseService from '../../BaseService';
3
+ import type { StandardResponse } from '../../../../types';
4
+ /**
5
+ * PandoraProductexpService - Pandora Productexp 服务模块
6
+ * 提供 Pandora Productexp 相关的 API 方法
7
+ * 平台: pandora
8
+ */
9
+ export declare class PandoraProductExpService extends BaseService implements Service.ProductExpController {
10
+ protected prefixUrl: string;
11
+ /**
12
+ * 获取供应商列表
13
+ * @param request - 请求参数
14
+ * @returns Promise,解析为标准响应格式
15
+ */
16
+ getSupplierList(): Promise<StandardResponse<Service.Response.getSupplierList[]>>;
17
+ /**
18
+ * 新增供应商
19
+ * @param request - 请求参数
20
+ * @returns Promise,解析为标准响应格式
21
+ */
22
+ addSupplier(): Promise<StandardResponse<Service.Response.addSupplier>>;
23
+ /**
24
+ * 获取直播分组列表
25
+ * @param request - 请求参数
26
+ * @returns Promise,解析为标准响应格式
27
+ */
28
+ getLiveGroupList(): Promise<StandardResponse<Service.Response.getLiveGroupList[]>>;
29
+ /**
30
+ * 新增直播分组
31
+ * @param request - 请求参数
32
+ * @returns Promise,解析为标准响应格式
33
+ */
34
+ addLiveGroup(request: Service.Request.addLiveGroup): Promise<StandardResponse<Service.Response.addLiveGroup>>;
35
+ /**
36
+ * 商品分类 树结构
37
+ * @param request - 请求参数
38
+ * @returns Promise,解析为标准响应格式
39
+ */
40
+ productCategoryTree(): Promise<StandardResponse<Service.Response.ProductCategoryTree>>;
41
+ /**
42
+ * 获取产品经理列表
43
+ * @param request - 请求参数
44
+ * @returns Promise,解析为标准响应格式
45
+ */
46
+ getProductManagerList(): Promise<StandardResponse<Service.Response.getProductManagerList>>;
47
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.PandoraProductExpService = void 0;
7
+ const BaseService_1 = __importDefault(require("../../BaseService"));
8
+ /**
9
+ * PandoraProductexpService - Pandora Productexp 服务模块
10
+ * 提供 Pandora Productexp 相关的 API 方法
11
+ * 平台: pandora
12
+ */
13
+ class PandoraProductExpService extends BaseService_1.default {
14
+ constructor() {
15
+ super(...arguments);
16
+ this.prefixUrl = '/pandora/product-exp';
17
+ }
18
+ /**
19
+ * 获取供应商列表
20
+ * @param request - 请求参数
21
+ * @returns Promise,解析为标准响应格式
22
+ */
23
+ getSupplierList() {
24
+ return this.request(this.getSupplierList);
25
+ }
26
+ /**
27
+ * 新增供应商
28
+ * @param request - 请求参数
29
+ * @returns Promise,解析为标准响应格式
30
+ */
31
+ addSupplier() {
32
+ return this.request(this.addSupplier);
33
+ }
34
+ /**
35
+ * 获取直播分组列表
36
+ * @param request - 请求参数
37
+ * @returns Promise,解析为标准响应格式
38
+ */
39
+ getLiveGroupList() {
40
+ return this.request(this.getLiveGroupList);
41
+ }
42
+ /**
43
+ * 新增直播分组
44
+ * @param request - 请求参数
45
+ * @returns Promise,解析为标准响应格式
46
+ */
47
+ addLiveGroup(request) {
48
+ return this.request(this.addLiveGroup, request);
49
+ }
50
+ /**
51
+ * 商品分类 树结构
52
+ * @param request - 请求参数
53
+ * @returns Promise,解析为标准响应格式
54
+ */
55
+ productCategoryTree() {
56
+ return this.request(this.productCategoryTree);
57
+ }
58
+ /**
59
+ * 获取产品经理列表
60
+ * @param request - 请求参数
61
+ * @returns Promise,解析为标准响应格式
62
+ */
63
+ getProductManagerList() {
64
+ return this.request(this.getProductManagerList);
65
+ }
66
+ }
67
+ exports.PandoraProductExpService = PandoraProductExpService;
@@ -0,0 +1,81 @@
1
+ import { StandardResponse } from '../../../../types';
2
+ export declare namespace ProductExpService {
3
+ interface ProductCategory {
4
+ id: string;
5
+ parentId: string;
6
+ level: string;
7
+ categoryName: string;
8
+ }
9
+ namespace Request {
10
+ interface addSupplier {
11
+ supplierName: string;
12
+ creatorId: string;
13
+ }
14
+ interface addLiveGroup {
15
+ liveGroupName: string;
16
+ creatorId: string;
17
+ }
18
+ }
19
+ namespace Response {
20
+ interface addSupplier {
21
+ supplierId: string;
22
+ }
23
+ interface getSupplierList {
24
+ supplierId: string;
25
+ supplierName: string;
26
+ }
27
+ interface addLiveGroup {
28
+ liveGroupId: string;
29
+ }
30
+ interface getLiveGroupList {
31
+ liveGroupId: string;
32
+ liveGroupName: string;
33
+ }
34
+ interface ProductCategoryTree extends ProductCategory {
35
+ children?: ProductCategoryTree[];
36
+ }
37
+ interface list {
38
+ total: number;
39
+ list: {
40
+ productId: string;
41
+ productName: string;
42
+ productImage: string;
43
+ price: number;
44
+ stock: number;
45
+ }[];
46
+ }
47
+ interface getProductManagerList {
48
+ productManagerId: string;
49
+ productManagerName: string;
50
+ }
51
+ }
52
+ /**
53
+ * ProductLive Controller 接口定义
54
+ */
55
+ interface ProductExpController {
56
+ /**
57
+ * 获取供应商列表
58
+ */
59
+ getSupplierList(): Promise<StandardResponse<ProductExpService.Response.getSupplierList[]>>;
60
+ /**
61
+ * 新增供应商
62
+ */
63
+ addSupplier(request: ProductExpService.Request.addSupplier): Promise<StandardResponse<ProductExpService.Response.addSupplier>>;
64
+ /**
65
+ * 获取直播分组列表
66
+ */
67
+ getLiveGroupList(): Promise<StandardResponse<ProductExpService.Response.getLiveGroupList[]>>;
68
+ /**
69
+ * 新增直播分组
70
+ */
71
+ addLiveGroup(request: ProductExpService.Request.addLiveGroup): Promise<StandardResponse<ProductExpService.Response.addLiveGroup>>;
72
+ /**
73
+ * 商品分类 树结构
74
+ */
75
+ productCategoryTree(): Promise<StandardResponse<ProductExpService.Response.ProductCategoryTree>>;
76
+ /**
77
+ * 获取产品经理列表
78
+ */
79
+ getProductManagerList(): Promise<StandardResponse<ProductExpService.Response.getProductManagerList>>;
80
+ }
81
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,29 @@
1
+ import { ProductLiveService as Service } from './types';
2
+ import BaseService from '../../BaseService';
3
+ import type { StandardResponse } from '../../../../types';
4
+ /**
5
+ * PandoraProductliveService - Pandora Productlive 服务模块
6
+ * 提供 Pandora Productlive 相关的 API 方法
7
+ * 平台: pandora
8
+ */
9
+ export declare class PandoraProductLiveService extends BaseService implements Service.ProductLiveController {
10
+ protected prefixUrl: string;
11
+ /**
12
+ * 商品列表
13
+ * @param request - 请求参数
14
+ * @returns Promise,解析为标准响应格式
15
+ */
16
+ list(request: Service.Request.list): Promise<StandardResponse<Service.Response.list>>;
17
+ /**
18
+ * 新增商品
19
+ * @param request - 请求参数
20
+ * @returns Promise,解析为标准响应格式
21
+ */
22
+ add(request: Service.Request.operate): Promise<StandardResponse<void>>;
23
+ /**
24
+ * 删除商品
25
+ * @param request - 请求参数
26
+ * @returns Promise,解析为标准响应格式
27
+ */
28
+ remove(request: Service.Request.operate): Promise<StandardResponse<void>>;
29
+ }