@be-link/ecommerce-backend-bff-service-node-sdk 0.0.47 → 0.0.49

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/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 { PandoraRoomService } from './bff/modules/pandora/room/service';
8
9
  import { SdkOptions } from './types';
9
10
  /**
10
11
  * Pandora 平台 SDK(管理后台)
@@ -30,6 +31,10 @@ export declare class PandoraSDK {
30
31
  * Pandora 门店用户关系服务模块
31
32
  */
32
33
  storeUserRelation: PandoraStoreUserRelationService;
34
+ /**
35
+ * 直播间模块
36
+ */
37
+ room: PandoraRoomService;
33
38
  /**
34
39
  * 使用配置选项初始化 Pandora SDK
35
40
  * @param options - SDK 配置,包含凭证回调函数
package/cjs/index.js CHANGED
@@ -23,6 +23,7 @@ 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/room/service");
26
27
  /**
27
28
  * Pandora 平台 SDK(管理后台)
28
29
  * 包含所有 Pandora 平台相关的服务
@@ -42,6 +43,7 @@ class PandoraSDK {
42
43
  this.productLive = new service_7.PandoraProductLiveService(this.http);
43
44
  this.store = new service_2.PandoraStoreService(this.http);
44
45
  this.storeUserRelation = new service_3.PandoraStoreUserRelationService(this.http);
46
+ this.room = new service_8.PandoraRoomService(this.http);
45
47
  }
46
48
  }
47
49
  exports.PandoraSDK = PandoraSDK;
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 { PandoraRoomService } from './bff/modules/pandora/room/service';
8
9
  import { SdkOptions } from './types';
9
10
  /**
10
11
  * Pandora 平台 SDK(管理后台)
@@ -30,6 +31,10 @@ export declare class PandoraSDK {
30
31
  * Pandora 门店用户关系服务模块
31
32
  */
32
33
  storeUserRelation: PandoraStoreUserRelationService;
34
+ /**
35
+ * 直播间模块
36
+ */
37
+ room: PandoraRoomService;
33
38
  /**
34
39
  * 使用配置选项初始化 Pandora SDK
35
40
  * @param options - SDK 配置,包含凭证回调函数
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 { PandoraRoomService } from './bff/modules/pandora/room/service.mjs';
9
10
  /**
10
11
  * Pandora 平台 SDK(管理后台)
11
12
  * 包含所有 Pandora 平台相关的服务
@@ -25,6 +26,7 @@ export class PandoraSDK {
25
26
  this.productLive = new PandoraProductLiveService(this.http);
26
27
  this.store = new PandoraStoreService(this.http);
27
28
  this.storeUserRelation = new PandoraStoreUserRelationService(this.http);
29
+ this.room = new PandoraRoomService(this.http);
28
30
  }
29
31
  }
30
32
  /**
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.47",
3
+ "version": "0.0.49",
4
4
  "description": "EcommerceBackendBffService Node.js SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./cjs/index.js",