@be-link/ecommerce-client-backend-service-node-sdk 0.1.44 → 0.1.46

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.
@@ -9,10 +9,12 @@ export declare namespace MiniProgramService {
9
9
  * 小程序列表查询
10
10
  */
11
11
  interface List {
12
- /** 关键词搜索:小程序名称或 AppId */
12
+ /** 关键词搜索:小程序名称或公司主体 */
13
13
  keywords?: string;
14
14
  /** 状态:0-封禁、1-正常 */
15
15
  display?: ENUM.MINI_PROGRAM.DISPLAY;
16
+ /** 是否使用中:0-否、1-是 */
17
+ used?: ENUM.MINI_PROGRAM.USED;
16
18
  /** 页码,从0开始 */
17
19
  pageIndex: number;
18
20
  /** 每页数量,默认20,最大100 */
@@ -23,9 +25,9 @@ export declare namespace MiniProgramService {
23
25
  */
24
26
  interface Create {
25
27
  /** 公司主体 */
26
- corporate: string;
28
+ corporate?: string;
27
29
  /** 小程序名称 */
28
- name: string;
30
+ name?: string;
29
31
  /** 小程序 AppId */
30
32
  appId: string;
31
33
  /** 小程序 Secret */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-client-backend-service-node-sdk",
3
- "version": "0.1.44",
3
+ "version": "0.1.46",
4
4
  "description": "EcommerceClientBackendService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",