ovi-kit 1.0.5 → 1.0.6
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare class MetaDto {
|
|
2
2
|
id: string;
|
|
3
|
-
|
|
3
|
+
lat: string;
|
|
4
|
+
lan: string;
|
|
4
5
|
initiator: string;
|
|
5
6
|
initiatorId?: string;
|
|
6
7
|
initiatorRole: string;
|
|
@@ -10,8 +11,11 @@ export declare class MetaDto {
|
|
|
10
11
|
mac?: string;
|
|
11
12
|
sessionSecret?: string;
|
|
12
13
|
reqTime: Date;
|
|
13
|
-
tenantId?: string | null;
|
|
14
14
|
method: string;
|
|
15
|
+
osVersion: string | null | undefined;
|
|
16
|
+
appVersion: string | null | undefined;
|
|
17
|
+
os: string | null | undefined;
|
|
18
|
+
device_id: string | null | undefined;
|
|
15
19
|
}
|
|
16
20
|
export declare class MetaDataDto {
|
|
17
21
|
meta: MetaDto;
|
|
@@ -14,7 +14,8 @@ const class_validator_1 = require("class-validator");
|
|
|
14
14
|
const class_transformer_1 = require("class-transformer");
|
|
15
15
|
class MetaDto {
|
|
16
16
|
id;
|
|
17
|
-
|
|
17
|
+
lat;
|
|
18
|
+
lan;
|
|
18
19
|
initiator;
|
|
19
20
|
initiatorId;
|
|
20
21
|
initiatorRole;
|
|
@@ -24,8 +25,11 @@ class MetaDto {
|
|
|
24
25
|
mac;
|
|
25
26
|
sessionSecret;
|
|
26
27
|
reqTime;
|
|
27
|
-
tenantId;
|
|
28
28
|
method;
|
|
29
|
+
osVersion;
|
|
30
|
+
appVersion;
|
|
31
|
+
os;
|
|
32
|
+
device_id;
|
|
29
33
|
}
|
|
30
34
|
exports.MetaDto = MetaDto;
|
|
31
35
|
__decorate([
|
|
@@ -33,9 +37,15 @@ __decorate([
|
|
|
33
37
|
__metadata("design:type", String)
|
|
34
38
|
], MetaDto.prototype, "id", void 0);
|
|
35
39
|
__decorate([
|
|
40
|
+
(0, class_validator_1.IsOptional)(),
|
|
41
|
+
(0, class_validator_1.IsString)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], MetaDto.prototype, "lat", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
36
46
|
(0, class_validator_1.IsString)(),
|
|
37
47
|
__metadata("design:type", String)
|
|
38
|
-
], MetaDto.prototype, "
|
|
48
|
+
], MetaDto.prototype, "lan", void 0);
|
|
39
49
|
__decorate([
|
|
40
50
|
(0, class_validator_1.IsString)(),
|
|
41
51
|
__metadata("design:type", String)
|
|
@@ -78,15 +88,30 @@ __decorate([
|
|
|
78
88
|
(0, class_validator_1.IsDate)(),
|
|
79
89
|
__metadata("design:type", Date)
|
|
80
90
|
], MetaDto.prototype, "reqTime", void 0);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, class_validator_1.IsString)(),
|
|
93
|
+
__metadata("design:type", String)
|
|
94
|
+
], MetaDto.prototype, "method", void 0);
|
|
81
95
|
__decorate([
|
|
82
96
|
(0, class_validator_1.IsOptional)(),
|
|
83
97
|
(0, class_validator_1.IsString)(),
|
|
84
98
|
__metadata("design:type", Object)
|
|
85
|
-
], MetaDto.prototype, "
|
|
99
|
+
], MetaDto.prototype, "osVersion", void 0);
|
|
86
100
|
__decorate([
|
|
101
|
+
(0, class_validator_1.IsOptional)(),
|
|
87
102
|
(0, class_validator_1.IsString)(),
|
|
88
|
-
__metadata("design:type",
|
|
89
|
-
], MetaDto.prototype, "
|
|
103
|
+
__metadata("design:type", Object)
|
|
104
|
+
], MetaDto.prototype, "appVersion", void 0);
|
|
105
|
+
__decorate([
|
|
106
|
+
(0, class_validator_1.IsOptional)(),
|
|
107
|
+
(0, class_validator_1.IsString)(),
|
|
108
|
+
__metadata("design:type", Object)
|
|
109
|
+
], MetaDto.prototype, "os", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
(0, class_validator_1.IsOptional)(),
|
|
112
|
+
(0, class_validator_1.IsString)(),
|
|
113
|
+
__metadata("design:type", Object)
|
|
114
|
+
], MetaDto.prototype, "device_id", void 0);
|
|
90
115
|
class MetaDataDto {
|
|
91
116
|
meta;
|
|
92
117
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"meta-data.dto.js","sourceRoot":"","sources":["../../../src/shared/dto/meta-data.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"meta-data.dto.js","sourceRoot":"","sources":["../../../src/shared/dto/meta-data.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAOyB;AACzB,yDAAyC;AAEzC,MAAa,OAAO;IAElB,EAAE,CAAS;IAIX,GAAG,CAAS;IAIZ,GAAG,CAAS;IAGZ,SAAS,CAAS;IAIlB,WAAW,CAAU;IAGrB,aAAa,CAAS;IAGtB,aAAa,CAAS;IAItB,EAAE,CAAU;IAIZ,MAAM,CAAU;IAIhB,GAAG,CAAU;IAIb,aAAa,CAAU;IAIvB,OAAO,CAAO;IAGd,MAAM,CAAS;IAIf,SAAS,CAA4B;IAIrC,UAAU,CAA4B;IAItC,EAAE,CAA4B;IAI9B,SAAS,CAA4B;CACtC;AA/DD,0BA+DC;AA7DC;IADC,IAAA,wBAAM,GAAE;;mCACE;AAIX;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oCACC;AAIZ;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oCACC;AAGZ;IADC,IAAA,0BAAQ,GAAE;;0CACO;AAIlB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;4CACU;AAGrB;IADC,IAAA,0BAAQ,GAAE;;8CACW;AAGtB;IADC,IAAA,0BAAQ,GAAE;;8CACW;AAItB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;mCACC;AAIZ;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;uCACK;AAIhB;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;oCACE;AAIb;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;8CACY;AAIvB;IAFC,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IAChB,IAAA,wBAAM,GAAE;8BACA,IAAI;wCAAC;AAGd;IADC,IAAA,0BAAQ,GAAE;;uCACI;AAIf;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;0CAC0B;AAIrC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;2CAC2B;AAItC;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;mCACmB;AAI9B;IAFC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;;0CAC0B;AAGvC,MAAa,WAAW;IAItB,IAAI,CAAU;CACf;AALD,kCAKC;AADC;IAHC,IAAA,4BAAU,GAAE;IACZ,IAAA,gCAAc,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IAC9B,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,OAAO,CAAC;8BACd,OAAO;yCAAC"}
|
|
@@ -10,8 +10,11 @@ export interface MetaData {
|
|
|
10
10
|
mac?: string;
|
|
11
11
|
sessionSecret?: string;
|
|
12
12
|
reqTime: Date;
|
|
13
|
-
tenantId?: string | null;
|
|
14
13
|
method: string;
|
|
14
|
+
lat: string;
|
|
15
|
+
lon: string;
|
|
16
|
+
osVersion: string | null | undefined;
|
|
15
17
|
appVersion: string | null | undefined;
|
|
16
|
-
|
|
18
|
+
os: string | null | undefined;
|
|
19
|
+
device_id: string | null | undefined;
|
|
17
20
|
}
|