@tmsfe/tms-core 0.0.171 → 0.0.172

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsfe/tms-core",
3
- "version": "0.0.171",
3
+ "version": "0.0.172",
4
4
  "description": "tms运行时框架",
5
5
  "repository": {
6
6
  "type": "git",
@@ -51,7 +51,7 @@ function getSystemInfo(): ISystemInfo {
51
51
  platform,
52
52
  SDKVersion,
53
53
  host,
54
- open_app_id: initOptions?.openAppId || '',
54
+ tms_app_id: initOptions?.tmsAppId || '',
55
55
  };
56
56
  }
57
57
  return systemInfo;
@@ -5,7 +5,7 @@ export type DataItem = any;
5
5
  */
6
6
  export interface IInitOptions {
7
7
  // 外输应用key
8
- openAppId?: string;
8
+ tmsAppId?: string;
9
9
  // 小程序项目名,如:sinan、mycar等
10
10
  client: string,
11
11
  // 小程序版本号
@@ -51,7 +51,7 @@ export interface ISystemInfo {
51
51
  // 开发环境下为空
52
52
  host: object,
53
53
  // 外输应用key, 玉爽就要下划线格式不要驼峰
54
- open_app_id: string,
54
+ tms_app_id: string,
55
55
  }
56
56
 
57
57
  export interface ILocation {