@etsoo/appscript 1.6.42 → 1.6.43

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.
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Place location
3
+ * 地点位置
4
+ */
5
+ export type PlaceLocation = {
6
+ /**
7
+ * Latitude, 纬度
8
+ */
9
+ Lat: number;
10
+ /**
11
+ * Longitude, 经度
12
+ */
13
+ Lng: number;
14
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -16,6 +16,7 @@ export * from "./api/dto/IdLabelDto";
16
16
  export * from "./api/dto/IdLabelPrimaryDto";
17
17
  export * from "./api/dto/InitCallDto";
18
18
  export * from "./api/dto/PinDto";
19
+ export * from "./api/dto/PlaceLocation";
19
20
  export * from "./api/dto/ResultPayload";
20
21
  export * from "./api/dto/UserIdentifierType";
21
22
  export * from "./api/rq/AdminSupportRQ";
package/lib/cjs/index.js CHANGED
@@ -35,6 +35,7 @@ __exportStar(require("./api/dto/IdLabelDto"), exports);
35
35
  __exportStar(require("./api/dto/IdLabelPrimaryDto"), exports);
36
36
  __exportStar(require("./api/dto/InitCallDto"), exports);
37
37
  __exportStar(require("./api/dto/PinDto"), exports);
38
+ __exportStar(require("./api/dto/PlaceLocation"), exports);
38
39
  __exportStar(require("./api/dto/ResultPayload"), exports);
39
40
  __exportStar(require("./api/dto/UserIdentifierType"), exports);
40
41
  __exportStar(require("./api/rq/AdminSupportRQ"), exports);
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Place location
3
+ * 地点位置
4
+ */
5
+ export type PlaceLocation = {
6
+ /**
7
+ * Latitude, 纬度
8
+ */
9
+ Lat: number;
10
+ /**
11
+ * Longitude, 经度
12
+ */
13
+ Lng: number;
14
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -16,6 +16,7 @@ export * from "./api/dto/IdLabelDto";
16
16
  export * from "./api/dto/IdLabelPrimaryDto";
17
17
  export * from "./api/dto/InitCallDto";
18
18
  export * from "./api/dto/PinDto";
19
+ export * from "./api/dto/PlaceLocation";
19
20
  export * from "./api/dto/ResultPayload";
20
21
  export * from "./api/dto/UserIdentifierType";
21
22
  export * from "./api/rq/AdminSupportRQ";
package/lib/mjs/index.js CHANGED
@@ -18,6 +18,7 @@ export * from "./api/dto/IdLabelDto";
18
18
  export * from "./api/dto/IdLabelPrimaryDto";
19
19
  export * from "./api/dto/InitCallDto";
20
20
  export * from "./api/dto/PinDto";
21
+ export * from "./api/dto/PlaceLocation";
21
22
  export * from "./api/dto/ResultPayload";
22
23
  export * from "./api/dto/UserIdentifierType";
23
24
  export * from "./api/rq/AdminSupportRQ";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.6.42",
3
+ "version": "1.6.43",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Place location
3
+ * 地点位置
4
+ */
5
+ export type PlaceLocation = {
6
+ /**
7
+ * Latitude, 纬度
8
+ */
9
+ Lat: number;
10
+
11
+ /**
12
+ * Longitude, 经度
13
+ */
14
+ Lng: number;
15
+ };
package/src/index.ts CHANGED
@@ -19,6 +19,7 @@ export * from "./api/dto/IdLabelDto";
19
19
  export * from "./api/dto/IdLabelPrimaryDto";
20
20
  export * from "./api/dto/InitCallDto";
21
21
  export * from "./api/dto/PinDto";
22
+ export * from "./api/dto/PlaceLocation";
22
23
  export * from "./api/dto/ResultPayload";
23
24
  export * from "./api/dto/UserIdentifierType";
24
25