tabletcommand-location 2.3.0 → 2.3.1
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.
|
@@ -3,6 +3,7 @@ import { LocationPayload } from "./types";
|
|
|
3
3
|
import { StoreModule } from "./store";
|
|
4
4
|
export declare function location(store: StoreModule): {
|
|
5
5
|
processVehicle: (item: LocationPayload, department: Partial<Department>, atDate: Date) => Promise<(import("mongoose").FlattenMaps<{
|
|
6
|
+
_id: import("mongoose").Types.ObjectId;
|
|
6
7
|
uuid: string;
|
|
7
8
|
departmentId: string;
|
|
8
9
|
modifiedDate: number;
|
|
@@ -17,9 +18,9 @@ export declare function location(store: StoreModule): {
|
|
|
17
18
|
mapHidden: boolean;
|
|
18
19
|
locationToCAD: boolean;
|
|
19
20
|
backupDate: Date;
|
|
20
|
-
}> & {
|
|
21
|
+
}> & Required<{
|
|
21
22
|
_id: import("mongoose").Types.ObjectId;
|
|
22
|
-
} & {
|
|
23
|
+
}> & {
|
|
23
24
|
__v: number;
|
|
24
25
|
}) | null>;
|
|
25
26
|
processItems: (department: Partial<Department>, items: LocationPayload[], atDate: Date) => Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../src/location.ts"],"names":[],"mappings":"AACA,OAAO,EACL,UAAU,EAIX,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,eAAe,EAEhB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,WAAW;2BAiHL,eAAe,cAAc,OAAO,CAAC,UAAU,CAAC,UAAU,IAAI
|
|
1
|
+
{"version":3,"file":"location.d.ts","sourceRoot":"","sources":["../src/location.ts"],"names":[],"mappings":"AACA,OAAO,EACL,UAAU,EAIX,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,eAAe,EAEhB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,wBAAgB,QAAQ,CAAC,KAAK,EAAE,WAAW;2BAiHL,eAAe,cAAc,OAAO,CAAC,UAAU,CAAC,UAAU,IAAI;;;;;;;;;;;;;;;;;;;;;+BAqB1D,OAAO,CAAC,UAAU,CAAC,SAAS,eAAe,EAAE,UAAU,IAAI;kDA+BxC,OAAO,CAAC,UAAU,CAAC,SAAS,eAAe,EAAE,UAAU,IAAI;EAoDvH;AAED,eAAe,QAAQ,CAAC;AACxB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,CAAC"}
|
package/definitions/store.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { DepartmentModel, Location, LocationModel, CADVehicleModel, CADVehicle,
|
|
|
2
2
|
import { LocationPayload } from "./types";
|
|
3
3
|
export declare function store(departmentModel: DepartmentModel, locationModel: LocationModel, cadVehicleModel: CADVehicleModel, deviceMappingModel: DeviceMappingModel): {
|
|
4
4
|
getVehicle: (item: LocationPayload, departmentId: string) => Promise<(import("mongoose").FlattenMaps<{
|
|
5
|
+
_id: import("mongoose").Types.ObjectId;
|
|
5
6
|
uuid: string;
|
|
6
7
|
departmentId: string;
|
|
7
8
|
modifiedDate: number;
|
|
@@ -16,9 +17,9 @@ export declare function store(departmentModel: DepartmentModel, locationModel: L
|
|
|
16
17
|
mapHidden: boolean;
|
|
17
18
|
locationToCAD: boolean;
|
|
18
19
|
backupDate: Date;
|
|
19
|
-
}> & {
|
|
20
|
+
}> & Required<{
|
|
20
21
|
_id: import("mongoose").Types.ObjectId;
|
|
21
|
-
} & {
|
|
22
|
+
}> & {
|
|
22
23
|
__v: number;
|
|
23
24
|
}) | null>;
|
|
24
25
|
getDeviceMappingGeotab: (item: LocationPayload, departmentId: string) => Promise<(import("mongoose").FlattenMaps<{
|
|
@@ -45,9 +46,9 @@ export declare function store(departmentModel: DepartmentModel, locationModel: L
|
|
|
45
46
|
}> & {
|
|
46
47
|
__v: number;
|
|
47
48
|
}) | null>;
|
|
48
|
-
updateVehicle: (item: Partial<CADVehicle>, departmentId: string) => Promise<(import("mongoose").Document<unknown, {}, CADVehicle, {}, {}> & CADVehicle & {
|
|
49
|
+
updateVehicle: (item: Partial<CADVehicle>, departmentId: string) => Promise<(import("mongoose").Document<unknown, {}, CADVehicle, {}, {}> & CADVehicle & Required<{
|
|
49
50
|
_id: import("mongoose").Types.ObjectId;
|
|
50
|
-
} & {
|
|
51
|
+
}> & {
|
|
51
52
|
__v: number;
|
|
52
53
|
}) | null>;
|
|
53
54
|
updateLocation: (item: Partial<Location>, atDate: Date) => Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../src/store.ts"],"names":[],"mappings":"AACA,OAAO,EACL,eAAe,EACf,QAAQ,EACR,aAAa,EACb,eAAe,EACf,UAAU,EACV,kBAAkB,EACnB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAAkB,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1D,wBAAgB,KAAK,CACnB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,eAAe,EAChC,kBAAkB,EAAE,kBAAkB;uBAIN,eAAe,gBAAgB,MAAM
|
|
1
|
+
{"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../src/store.ts"],"names":[],"mappings":"AACA,OAAO,EACL,eAAe,EACf,QAAQ,EACR,aAAa,EACb,eAAe,EACf,UAAU,EACV,kBAAkB,EACnB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAAkB,eAAe,EAAE,MAAM,SAAS,CAAC;AAE1D,wBAAgB,KAAK,CACnB,eAAe,EAAE,eAAe,EAChC,aAAa,EAAE,aAAa,EAC5B,eAAe,EAAE,eAAe,EAChC,kBAAkB,EAAE,kBAAkB;uBAIN,eAAe,gBAAgB,MAAM;;;;;;;;;;;;;;;;;;;;;mCAQzB,eAAe,gBAAgB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;0BAS9C,OAAO,CAAC,UAAU,CAAC,gBAAgB,MAAM;;;;;2BAaxC,OAAO,CAAC,QAAQ,CAAC,UAAU,IAAI;EAqGpE;AACD,eAAe,KAAK,CAAC;AACrB,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,CAAC"}
|
|
@@ -7,267 +7,287 @@ export default function (modelsModule: typeof import("tabletcommand-backend-mode
|
|
|
7
7
|
clearTestData: (mods: BackendModels) => Promise<void>;
|
|
8
8
|
prepareTestData: (mods: BackendModels) => Promise<void>;
|
|
9
9
|
before: () => Promise<{
|
|
10
|
-
ActionLog: import("mongoose").Model<import("tabletcommand-backend-models").ActionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ActionLog, {}> & import("tabletcommand-backend-models").ActionLog & Required<{
|
|
10
|
+
ActionLog: import("mongoose").Model<import("tabletcommand-backend-models").ActionLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ActionLog, {}, {}> & import("tabletcommand-backend-models").ActionLog & Required<{
|
|
11
11
|
_id: import("mongoose").Types.ObjectId;
|
|
12
12
|
}> & {
|
|
13
13
|
__v: number;
|
|
14
14
|
}, any>;
|
|
15
|
-
Agency: import("mongoose").Model<import("tabletcommand-backend-models/definitions/models/agency").Agency, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models/definitions/models/agency").Agency, {}> & import("tabletcommand-backend-models/definitions/models/agency").Agency & Required<{
|
|
15
|
+
Agency: import("mongoose").Model<import("tabletcommand-backend-models/definitions/models/agency").Agency, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models/definitions/models/agency").Agency, {}, {}> & import("tabletcommand-backend-models/definitions/models/agency").Agency & Required<{
|
|
16
16
|
_id: import("mongoose").Types.ObjectId;
|
|
17
17
|
}> & {
|
|
18
18
|
__v: number;
|
|
19
19
|
}, any>;
|
|
20
|
-
ArcGISGroup: import("mongoose").Model<import("tabletcommand-backend-models").ArcGISGroup, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ArcGISGroup, {}> & import("tabletcommand-backend-models").ArcGISGroup & {
|
|
20
|
+
ArcGISGroup: import("mongoose").Model<import("tabletcommand-backend-models").ArcGISGroup, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ArcGISGroup, {}, {}> & import("tabletcommand-backend-models").ArcGISGroup & {
|
|
21
21
|
_id: import("mongoose").Types.ObjectId;
|
|
22
22
|
} & {
|
|
23
23
|
__v: number;
|
|
24
24
|
}, any>;
|
|
25
|
-
Assignment: import("mongoose").Model<import("tabletcommand-backend-models").Assignment, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Assignment, {}> & import("tabletcommand-backend-models").Assignment & Required<{
|
|
25
|
+
Assignment: import("mongoose").Model<import("tabletcommand-backend-models").Assignment, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Assignment, {}, {}> & import("tabletcommand-backend-models").Assignment & Required<{
|
|
26
26
|
_id: import("mongoose").Types.ObjectId;
|
|
27
27
|
}> & {
|
|
28
28
|
__v: number;
|
|
29
29
|
}, any>;
|
|
30
|
-
Battalion: import("mongoose").Model<import("tabletcommand-backend-models").Battalion, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Battalion, {}> & import("tabletcommand-backend-models").Battalion & Required<{
|
|
30
|
+
Battalion: import("mongoose").Model<import("tabletcommand-backend-models").Battalion, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Battalion, {}, {}> & import("tabletcommand-backend-models").Battalion & Required<{
|
|
31
31
|
_id: import("mongoose").Types.ObjectId;
|
|
32
32
|
}> & {
|
|
33
33
|
__v: number;
|
|
34
34
|
}, any>;
|
|
35
|
-
BeaconLog: import("mongoose").Model<import("tabletcommand-backend-models").BeaconLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").BeaconLog, {}> & import("tabletcommand-backend-models").BeaconLog & Required<{
|
|
35
|
+
BeaconLog: import("mongoose").Model<import("tabletcommand-backend-models").BeaconLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").BeaconLog, {}, {}> & import("tabletcommand-backend-models").BeaconLog & Required<{
|
|
36
36
|
_id: import("mongoose").Types.ObjectId;
|
|
37
37
|
}> & {
|
|
38
38
|
__v: number;
|
|
39
39
|
}, any>;
|
|
40
|
-
CADIncident: import("mongoose").Model<import("tabletcommand-backend-models").CADIncident, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncident, {}> & import("tabletcommand-backend-models").CADIncident & Required<{
|
|
40
|
+
CADIncident: import("mongoose").Model<import("tabletcommand-backend-models").CADIncident, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncident, {}, {}> & import("tabletcommand-backend-models").CADIncident & Required<{
|
|
41
41
|
_id: import("mongoose").Types.ObjectId;
|
|
42
42
|
}> & {
|
|
43
43
|
__v: number;
|
|
44
44
|
}, any>;
|
|
45
|
-
CADIncidentBlock: import("mongoose").Model<import("tabletcommand-backend-models").CADIncidentBlock, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncidentBlock, {}> & import("tabletcommand-backend-models").CADIncidentBlock & Required<{
|
|
45
|
+
CADIncidentBlock: import("mongoose").Model<import("tabletcommand-backend-models").CADIncidentBlock, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncidentBlock, {}, {}> & import("tabletcommand-backend-models").CADIncidentBlock & Required<{
|
|
46
46
|
_id: import("mongoose").Types.ObjectId;
|
|
47
47
|
}> & {
|
|
48
48
|
__v: number;
|
|
49
49
|
}, any>;
|
|
50
|
-
CADIncidentStream: import("mongoose").Model<import("tabletcommand-backend-models").CADIncidentStream, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncidentStream, {}> & import("tabletcommand-backend-models").CADIncidentStream & Required<{
|
|
50
|
+
CADIncidentStream: import("mongoose").Model<import("tabletcommand-backend-models").CADIncidentStream, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADIncidentStream, {}, {}> & import("tabletcommand-backend-models").CADIncidentStream & Required<{
|
|
51
51
|
_id: import("mongoose").Types.ObjectId;
|
|
52
52
|
}> & {
|
|
53
53
|
__v: number;
|
|
54
54
|
}, any>;
|
|
55
|
-
CADSimulation: import("mongoose").Model<import("tabletcommand-backend-models").CADSimulation, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADSimulation, {}> & import("tabletcommand-backend-models").CADSimulation & {
|
|
55
|
+
CADSimulation: import("mongoose").Model<import("tabletcommand-backend-models").CADSimulation, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADSimulation, {}, {}> & import("tabletcommand-backend-models").CADSimulation & Required<{
|
|
56
56
|
_id: import("mongoose").Types.ObjectId;
|
|
57
|
-
} & {
|
|
57
|
+
}> & {
|
|
58
58
|
__v: number;
|
|
59
59
|
}, any>;
|
|
60
|
-
CADStatus: import("mongoose").Model<import("tabletcommand-backend-models").CADStatus, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADStatus, {}> & import("tabletcommand-backend-models").CADStatus & {
|
|
60
|
+
CADStatus: import("mongoose").Model<import("tabletcommand-backend-models").CADStatus, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADStatus, {}, {}> & import("tabletcommand-backend-models").CADStatus & {
|
|
61
61
|
_id: import("mongoose").Types.ObjectId;
|
|
62
62
|
} & {
|
|
63
63
|
__v: number;
|
|
64
64
|
}, any>;
|
|
65
|
-
CADStatusMap: import("mongoose").Model<import("tabletcommand-backend-models").CADStatusMap, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADStatusMap, {}> & import("tabletcommand-backend-models").CADStatusMap & {
|
|
65
|
+
CADStatusMap: import("mongoose").Model<import("tabletcommand-backend-models").CADStatusMap, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADStatusMap, {}, {}> & import("tabletcommand-backend-models").CADStatusMap & Required<{
|
|
66
66
|
_id: import("mongoose").Types.ObjectId;
|
|
67
|
-
} & {
|
|
67
|
+
}> & {
|
|
68
68
|
__v: number;
|
|
69
69
|
}, any>;
|
|
70
|
-
CADVehicle: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicle, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicle, {}> & import("tabletcommand-backend-models").CADVehicle & {
|
|
70
|
+
CADVehicle: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicle, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicle, {}, {}> & import("tabletcommand-backend-models").CADVehicle & Required<{
|
|
71
71
|
_id: import("mongoose").Types.ObjectId;
|
|
72
|
-
} & {
|
|
72
|
+
}> & {
|
|
73
73
|
__v: number;
|
|
74
74
|
}, any>;
|
|
75
|
-
CADVehicleStatus: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicleStatus, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicleStatus, {}> & import("tabletcommand-backend-models").CADVehicleStatus & {
|
|
75
|
+
CADVehicleStatus: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicleStatus, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicleStatus, {}, {}> & import("tabletcommand-backend-models").CADVehicleStatus & {
|
|
76
76
|
_id: import("mongoose").Types.ObjectId;
|
|
77
77
|
} & {
|
|
78
78
|
__v: number;
|
|
79
79
|
}, any>;
|
|
80
|
-
CADVehicleStatusHistory: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicleStatusHistory, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicleStatusHistory, {}> & import("tabletcommand-backend-models").CADVehicleStatusHistory & {
|
|
80
|
+
CADVehicleStatusHistory: import("mongoose").Model<import("tabletcommand-backend-models").CADVehicleStatusHistory, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CADVehicleStatusHistory, {}, {}> & import("tabletcommand-backend-models").CADVehicleStatusHistory & {
|
|
81
81
|
_id: import("mongoose").Types.ObjectId;
|
|
82
82
|
} & {
|
|
83
83
|
__v: number;
|
|
84
84
|
}, any>;
|
|
85
|
-
ChartDeviceStats: import("mongoose").Model<import("tabletcommand-backend-models").ChartDeviceStats, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChartDeviceStats, {}> & import("tabletcommand-backend-models").ChartDeviceStats & Required<{
|
|
85
|
+
ChartDeviceStats: import("mongoose").Model<import("tabletcommand-backend-models").ChartDeviceStats, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChartDeviceStats, {}, {}> & import("tabletcommand-backend-models").ChartDeviceStats & Required<{
|
|
86
|
+
_id: import("mongoose").Types.ObjectId;
|
|
87
|
+
}> & {
|
|
88
|
+
__v: number;
|
|
89
|
+
}, any>;
|
|
90
|
+
ChartIncident: import("mongoose").Model<import("tabletcommand-backend-models").ChartIncident, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChartIncident, {}, {}> & import("tabletcommand-backend-models").ChartIncident & Required<{
|
|
91
|
+
_id: import("mongoose").Types.ObjectId;
|
|
92
|
+
}> & {
|
|
93
|
+
__v: number;
|
|
94
|
+
}, any>;
|
|
95
|
+
ChartManagedIncident: import("mongoose").Model<import("tabletcommand-backend-models").ChartManagedIncident, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChartManagedIncident, {}, {}> & import("tabletcommand-backend-models").ChartManagedIncident & Required<{
|
|
86
96
|
_id: import("mongoose").Types.ObjectId;
|
|
87
97
|
}> & {
|
|
88
98
|
__v: number;
|
|
89
99
|
}, any>;
|
|
90
|
-
|
|
100
|
+
ChartUser: import("mongoose").Model<import("tabletcommand-backend-models").ChartUser, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChartUser, {}, {}> & import("tabletcommand-backend-models").ChartUser & Required<{
|
|
91
101
|
_id: import("mongoose").Types.ObjectId;
|
|
92
102
|
}> & {
|
|
93
103
|
__v: number;
|
|
94
104
|
}, any>;
|
|
95
|
-
|
|
105
|
+
Checklist: import("mongoose").Model<import("tabletcommand-backend-models").Checklist, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Checklist, {}, {}> & import("tabletcommand-backend-models").Checklist & Required<{
|
|
96
106
|
_id: import("mongoose").Types.ObjectId;
|
|
97
107
|
}> & {
|
|
98
108
|
__v: number;
|
|
99
109
|
}, any>;
|
|
100
|
-
|
|
110
|
+
ChecklistItem: import("mongoose").Model<import("tabletcommand-backend-models").ChecklistItem, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ChecklistItem, {}, {}> & import("tabletcommand-backend-models").ChecklistItem & Required<{
|
|
101
111
|
_id: import("mongoose").Types.ObjectId;
|
|
102
112
|
}> & {
|
|
103
113
|
__v: number;
|
|
104
114
|
}, any>;
|
|
105
|
-
|
|
115
|
+
CSVImport: import("mongoose").Model<import("tabletcommand-backend-models").CSVImport, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").CSVImport, {}, {}> & import("tabletcommand-backend-models").CSVImport & Required<{
|
|
106
116
|
_id: import("mongoose").Types.ObjectId;
|
|
107
117
|
}> & {
|
|
108
118
|
__v: number;
|
|
109
119
|
}, any>;
|
|
110
|
-
|
|
120
|
+
AudioStreamAuthentication: import("mongoose").Model<import("tabletcommand-backend-models").AudioStreamAuthentication, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").AudioStreamAuthentication, {}, {}> & import("tabletcommand-backend-models").AudioStreamAuthentication & Required<{
|
|
111
121
|
_id: import("mongoose").Types.ObjectId;
|
|
112
122
|
}> & {
|
|
113
123
|
__v: number;
|
|
114
124
|
}, any>;
|
|
115
|
-
|
|
125
|
+
Department: import("mongoose").Model<import("tabletcommand-backend-models/definitions/models/department").Department, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models/definitions/models/department").Department, {}, {}> & import("tabletcommand-backend-models/definitions/models/department").Department & Required<{
|
|
116
126
|
_id: import("mongoose").Types.ObjectId;
|
|
117
127
|
}> & {
|
|
118
128
|
__v: number;
|
|
119
129
|
}, any>;
|
|
120
|
-
|
|
130
|
+
DeviceMapping: import("mongoose").Model<import("tabletcommand-backend-models").DeviceMapping, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").DeviceMapping, {}, {}> & import("tabletcommand-backend-models").DeviceMapping & Required<{
|
|
121
131
|
_id: import("mongoose").Types.ObjectId;
|
|
122
132
|
}> & {
|
|
123
133
|
__v: number;
|
|
124
134
|
}, any>;
|
|
125
|
-
|
|
135
|
+
Esri: import("mongoose").Model<import("tabletcommand-backend-models").Esri, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Esri, {}, {}> & import("tabletcommand-backend-models").Esri & Required<{
|
|
126
136
|
_id: import("mongoose").Types.ObjectId;
|
|
127
137
|
}> & {
|
|
128
138
|
__v: number;
|
|
129
139
|
}, any>;
|
|
130
|
-
|
|
140
|
+
GSTMapping: import("mongoose").Model<import("tabletcommand-backend-models").GSTMapping, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").GSTMapping, {}, {}> & import("tabletcommand-backend-models").GSTMapping & Required<{
|
|
131
141
|
_id: import("mongoose").Types.ObjectId;
|
|
132
142
|
}> & {
|
|
133
143
|
__v: number;
|
|
134
144
|
}, any>;
|
|
135
|
-
|
|
145
|
+
GlobalSettings: import("mongoose").Model<import("tabletcommand-backend-models").GlobalSettings, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").GlobalSettings, {}, {}> & import("tabletcommand-backend-models").GlobalSettings & Required<{
|
|
136
146
|
_id: import("mongoose").Types.ObjectId;
|
|
137
147
|
}> & {
|
|
138
148
|
__v: number;
|
|
139
149
|
}, any>;
|
|
140
|
-
IncidentEvent: import("mongoose").Model<import("tabletcommand-backend-models").IncidentEvent, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentEvent, {}> & import("tabletcommand-backend-models").IncidentEvent & Required<{
|
|
150
|
+
IncidentEvent: import("mongoose").Model<import("tabletcommand-backend-models").IncidentEvent, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentEvent, {}, {}> & import("tabletcommand-backend-models").IncidentEvent & Required<{
|
|
141
151
|
_id: import("mongoose").Types.ObjectId;
|
|
142
152
|
}> & {
|
|
143
153
|
__v: number;
|
|
144
154
|
}, any>;
|
|
145
|
-
IncidentFilter: import("mongoose").Model<import("tabletcommand-backend-models").IncidentFilter, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentFilter, {}> & import("tabletcommand-backend-models").IncidentFilter & Required<{
|
|
155
|
+
IncidentFilter: import("mongoose").Model<import("tabletcommand-backend-models").IncidentFilter, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentFilter, {}, {}> & import("tabletcommand-backend-models").IncidentFilter & Required<{
|
|
146
156
|
_id: import("mongoose").Types.ObjectId;
|
|
147
157
|
}> & {
|
|
148
158
|
__v: number;
|
|
149
159
|
}, any>;
|
|
150
|
-
|
|
160
|
+
IncidentFilterGlobal: import("mongoose").Model<import("tabletcommand-backend-models").IncidentFilterGlobal, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentFilterGlobal, {}, {}> & import("tabletcommand-backend-models").IncidentFilterGlobal & Required<{
|
|
151
161
|
_id: import("mongoose").Types.ObjectId;
|
|
152
162
|
}> & {
|
|
153
163
|
__v: number;
|
|
154
164
|
}, any>;
|
|
155
|
-
|
|
165
|
+
IncidentNotified: import("mongoose").Model<import("tabletcommand-backend-models").IncidentNotified, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentNotified, {}, {}> & import("tabletcommand-backend-models").IncidentNotified & Required<{
|
|
156
166
|
_id: import("mongoose").Types.ObjectId;
|
|
157
167
|
}> & {
|
|
158
168
|
__v: number;
|
|
159
169
|
}, any>;
|
|
160
|
-
|
|
170
|
+
IncidentShareCode: import("mongoose").Model<import("tabletcommand-backend-models").IncidentShareCode, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentShareCode, {}, {}> & import("tabletcommand-backend-models").IncidentShareCode & Required<{
|
|
161
171
|
_id: import("mongoose").Types.ObjectId;
|
|
162
172
|
}> & {
|
|
163
173
|
__v: number;
|
|
164
174
|
}, any>;
|
|
165
|
-
|
|
175
|
+
IncidentTakeover: import("mongoose").Model<import("tabletcommand-backend-models").IncidentTakeover, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").IncidentTakeover, {}, {}> & import("tabletcommand-backend-models").IncidentTakeover & Required<{
|
|
166
176
|
_id: import("mongoose").Types.ObjectId;
|
|
167
177
|
}> & {
|
|
168
178
|
__v: number;
|
|
169
179
|
}, any>;
|
|
170
|
-
|
|
180
|
+
JobLog: import("mongoose").Model<import("tabletcommand-backend-models").JobLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").JobLog, {}, {}> & import("tabletcommand-backend-models").JobLog & Required<{
|
|
171
181
|
_id: import("mongoose").Types.ObjectId;
|
|
172
182
|
}> & {
|
|
173
183
|
__v: number;
|
|
174
184
|
}, any>;
|
|
175
|
-
|
|
185
|
+
Location: import("mongoose").Model<import("tabletcommand-backend-models").Location, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Location, {}, {}> & import("tabletcommand-backend-models").Location & Required<{
|
|
176
186
|
_id: import("mongoose").Types.ObjectId;
|
|
177
187
|
}> & {
|
|
178
188
|
__v: number;
|
|
179
189
|
}, any>;
|
|
180
|
-
|
|
190
|
+
MailLog: import("mongoose").Model<import("tabletcommand-backend-models").MailLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").MailLog, {}, {}> & import("tabletcommand-backend-models").MailLog & Required<{
|
|
181
191
|
_id: import("mongoose").Types.ObjectId;
|
|
182
192
|
}> & {
|
|
183
193
|
__v: number;
|
|
184
194
|
}, any>;
|
|
185
|
-
|
|
195
|
+
ManagedIncident: import("mongoose").Model<import("tabletcommand-backend-models").ManagedIncident, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ManagedIncident, {}, {}> & import("tabletcommand-backend-models").ManagedIncident & Required<{
|
|
196
|
+
_id: import("mongoose").Types.ObjectId;
|
|
197
|
+
}> & {
|
|
198
|
+
__v: number;
|
|
199
|
+
}, any>;
|
|
200
|
+
Mark43IncidentRetry: import("mongoose").Model<import("tabletcommand-backend-models").Mark43IncidentRetry, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Mark43IncidentRetry, {}, {}> & import("tabletcommand-backend-models").Mark43IncidentRetry & {
|
|
186
201
|
_id: import("mongoose").Types.ObjectId;
|
|
187
202
|
} & {
|
|
188
203
|
__v: number;
|
|
189
204
|
}, any>;
|
|
190
|
-
Message: import("mongoose").Model<import("tabletcommand-backend-models").Message, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Message, {}> & import("tabletcommand-backend-models").Message & Required<{
|
|
205
|
+
Message: import("mongoose").Model<import("tabletcommand-backend-models").Message, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Message, {}, {}> & import("tabletcommand-backend-models").Message & Required<{
|
|
191
206
|
_id: import("mongoose").Types.ObjectId;
|
|
192
207
|
}> & {
|
|
193
208
|
__v: number;
|
|
194
209
|
}, any>;
|
|
195
|
-
Monitor: import("mongoose").Model<import("tabletcommand-backend-models").Monitor, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Monitor, {}> & import("tabletcommand-backend-models").Monitor & Required<{
|
|
210
|
+
Monitor: import("mongoose").Model<import("tabletcommand-backend-models").Monitor, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Monitor, {}, {}> & import("tabletcommand-backend-models").Monitor & Required<{
|
|
196
211
|
_id: import("mongoose").Types.ObjectId;
|
|
197
212
|
}> & {
|
|
198
213
|
__v: number;
|
|
199
214
|
}, any>;
|
|
200
|
-
PersonnelImport: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelImport, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelImport, {}> & import("tabletcommand-backend-models").PersonnelImport & Required<{
|
|
215
|
+
PersonnelImport: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelImport, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelImport, {}, {}> & import("tabletcommand-backend-models").PersonnelImport & Required<{
|
|
201
216
|
_id: import("mongoose").Types.ObjectId;
|
|
202
217
|
}> & {
|
|
203
218
|
__v: number;
|
|
204
219
|
}, any>;
|
|
205
|
-
PersonnelKnown: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelKnown, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelKnown, {}> & import("tabletcommand-backend-models").PersonnelKnown & Required<{
|
|
220
|
+
PersonnelKnown: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelKnown, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelKnown, {}, {}> & import("tabletcommand-backend-models").PersonnelKnown & Required<{
|
|
206
221
|
_id: import("mongoose").Types.ObjectId;
|
|
207
222
|
}> & {
|
|
208
223
|
__v: number;
|
|
209
224
|
}, any>;
|
|
210
|
-
PersonnelRoster: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelRoster, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelRoster, {}> & import("tabletcommand-backend-models").PersonnelRoster & Required<{
|
|
225
|
+
PersonnelRoster: import("mongoose").Model<import("tabletcommand-backend-models").PersonnelRoster, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").PersonnelRoster, {}, {}> & import("tabletcommand-backend-models").PersonnelRoster & Required<{
|
|
211
226
|
_id: import("mongoose").Types.ObjectId;
|
|
212
227
|
}> & {
|
|
213
228
|
__v: number;
|
|
214
229
|
}, any>;
|
|
215
|
-
RateLimit: import("mongoose").Model<import("tabletcommand-backend-models").RateLimit, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RateLimit, {}> & import("tabletcommand-backend-models").RateLimit & Required<{
|
|
230
|
+
RateLimit: import("mongoose").Model<import("tabletcommand-backend-models").RateLimit, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RateLimit, {}, {}> & import("tabletcommand-backend-models").RateLimit & Required<{
|
|
216
231
|
_id: import("mongoose").Types.ObjectId;
|
|
217
232
|
}> & {
|
|
218
233
|
__v: number;
|
|
219
234
|
}, any>;
|
|
220
|
-
ReleaseNote: import("mongoose").Model<import("tabletcommand-backend-models").ReleaseNote, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ReleaseNote, {}> & import("tabletcommand-backend-models").ReleaseNote & Required<{
|
|
235
|
+
ReleaseNote: import("mongoose").Model<import("tabletcommand-backend-models").ReleaseNote, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ReleaseNote, {}, {}> & import("tabletcommand-backend-models").ReleaseNote & Required<{
|
|
221
236
|
_id: import("mongoose").Types.ObjectId;
|
|
222
237
|
}> & {
|
|
223
238
|
__v: number;
|
|
224
239
|
}, any>;
|
|
225
|
-
RemoteLog: import("mongoose").Model<import("tabletcommand-backend-models").RemoteLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RemoteLog, {}> & import("tabletcommand-backend-models").RemoteLog & Required<{
|
|
240
|
+
RemoteLog: import("mongoose").Model<import("tabletcommand-backend-models").RemoteLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RemoteLog, {}, {}> & import("tabletcommand-backend-models").RemoteLog & Required<{
|
|
226
241
|
_id: import("mongoose").Types.ObjectId;
|
|
227
242
|
}> & {
|
|
228
243
|
__v: number;
|
|
229
244
|
}, any>;
|
|
230
|
-
RemoteLogStream: import("mongoose").Model<import("tabletcommand-backend-models").RemoteLogStream, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RemoteLogStream, {}> & import("tabletcommand-backend-models").RemoteLogStream & Required<{
|
|
245
|
+
RemoteLogStream: import("mongoose").Model<import("tabletcommand-backend-models").RemoteLogStream, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").RemoteLogStream, {}, {}> & import("tabletcommand-backend-models").RemoteLogStream & Required<{
|
|
231
246
|
_id: import("mongoose").Types.ObjectId;
|
|
232
247
|
}> & {
|
|
233
248
|
__v: number;
|
|
234
249
|
}, any>;
|
|
235
|
-
Session: import("mongoose").Model<import("tabletcommand-backend-models").Session, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Session, {}> & import("tabletcommand-backend-models").Session & Required<{
|
|
250
|
+
Session: import("mongoose").Model<import("tabletcommand-backend-models").Session, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Session, {}, {}> & import("tabletcommand-backend-models").Session & Required<{
|
|
236
251
|
_id: string;
|
|
237
252
|
}> & {
|
|
238
253
|
__v: number;
|
|
239
254
|
}, any>;
|
|
240
|
-
|
|
255
|
+
SAML: import("mongoose").Model<import("tabletcommand-backend-models").SAML, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").SAML, {}, {}> & import("tabletcommand-backend-models").SAML & Required<{
|
|
256
|
+
_id: import("mongoose").Types.ObjectId;
|
|
257
|
+
}> & {
|
|
258
|
+
__v: number;
|
|
259
|
+
}, any>;
|
|
260
|
+
SMSLog: import("mongoose").Model<import("tabletcommand-backend-models").SMSLog, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").SMSLog, {}, {}> & import("tabletcommand-backend-models").SMSLog & Required<{
|
|
241
261
|
_id: import("mongoose").Types.ObjectId;
|
|
242
262
|
}> & {
|
|
243
263
|
__v: number;
|
|
244
264
|
}, any>;
|
|
245
|
-
SMTPUnhandled: import("mongoose").Model<import("tabletcommand-backend-models").SMTPUnhandled, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").SMTPUnhandled, {}> & import("tabletcommand-backend-models").SMTPUnhandled & Required<{
|
|
265
|
+
SMTPUnhandled: import("mongoose").Model<import("tabletcommand-backend-models").SMTPUnhandled, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").SMTPUnhandled, {}, {}> & import("tabletcommand-backend-models").SMTPUnhandled & Required<{
|
|
246
266
|
_id: import("mongoose").Types.ObjectId;
|
|
247
267
|
}> & {
|
|
248
268
|
__v: number;
|
|
249
269
|
}, any>;
|
|
250
|
-
Template: import("mongoose").Model<import("tabletcommand-backend-models").Template, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Template, {}> & import("tabletcommand-backend-models").Template & Required<{
|
|
270
|
+
Template: import("mongoose").Model<import("tabletcommand-backend-models").Template, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").Template, {}, {}> & import("tabletcommand-backend-models").Template & Required<{
|
|
251
271
|
_id: import("mongoose").Types.ObjectId;
|
|
252
272
|
}> & {
|
|
253
273
|
__v: number;
|
|
254
274
|
}, any>;
|
|
255
|
-
User: import("mongoose").Model<import("tabletcommand-backend-models").User, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").User, {}> & import("tabletcommand-backend-models").User & Required<{
|
|
275
|
+
User: import("mongoose").Model<import("tabletcommand-backend-models").User, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").User, {}, {}> & import("tabletcommand-backend-models").User & Required<{
|
|
256
276
|
_id: import("mongoose").Types.ObjectId;
|
|
257
277
|
}> & {
|
|
258
278
|
__v: number;
|
|
259
279
|
}, any>;
|
|
260
|
-
UserDevice: import("mongoose").Model<import("tabletcommand-backend-models").UserDevice, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").UserDevice, {}> & import("tabletcommand-backend-models").UserDevice & Required<{
|
|
280
|
+
UserDevice: import("mongoose").Model<import("tabletcommand-backend-models").UserDevice, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").UserDevice, {}, {}> & import("tabletcommand-backend-models").UserDevice & Required<{
|
|
261
281
|
_id: import("mongoose").Types.ObjectId;
|
|
262
282
|
}> & {
|
|
263
283
|
__v: number;
|
|
264
284
|
}, any>;
|
|
265
|
-
UserRegistration: import("mongoose").Model<import("tabletcommand-backend-models").UserRegistration, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").UserRegistration, {}> & import("tabletcommand-backend-models").UserRegistration & {
|
|
285
|
+
UserRegistration: import("mongoose").Model<import("tabletcommand-backend-models").UserRegistration, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").UserRegistration, {}, {}> & import("tabletcommand-backend-models").UserRegistration & {
|
|
266
286
|
_id: import("mongoose").Types.ObjectId;
|
|
267
287
|
} & {
|
|
268
288
|
__v: number;
|
|
269
289
|
}, any>;
|
|
270
|
-
ValidationReport: import("mongoose").Model<import("tabletcommand-backend-models").ValidationReport, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ValidationReport, {}> & import("tabletcommand-backend-models").ValidationReport & Required<{
|
|
290
|
+
ValidationReport: import("mongoose").Model<import("tabletcommand-backend-models").ValidationReport, {}, {}, {}, import("mongoose").Document<unknown, {}, import("tabletcommand-backend-models").ValidationReport, {}, {}> & import("tabletcommand-backend-models").ValidationReport & Required<{
|
|
271
291
|
_id: import("mongoose").Types.ObjectId;
|
|
272
292
|
}> & {
|
|
273
293
|
__v: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mock.d.ts","sourceRoot":"","sources":["../../src/test/mock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,UAAU,CAAC;AACrC,OAAO,OAAO,CAAC;AACf,OAAO,EACL,aAAa,EACb,MAAM,EACN,UAAU,EAEX,MAAM,8BAA8B,CAAC;AAEtC,MAAM,CAAC,OAAO,WAAU,YAAY,EAAE,cAAc,8BAA8B,CAAC;;;0BAwF9C,aAAa;4BASX,aAAa
|
|
1
|
+
{"version":3,"file":"mock.d.ts","sourceRoot":"","sources":["../../src/test/mock.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,UAAU,CAAC;AACrC,OAAO,OAAO,CAAC;AACf,OAAO,EACL,aAAa,EACb,MAAM,EACN,UAAU,EAEX,MAAM,8BAA8B,CAAC;AAEtC,MAAM,CAAC,OAAO,WAAU,YAAY,EAAE,cAAc,8BAA8B,CAAC;;;0BAwF9C,aAAa;4BASX,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAsD5B,aAAa;yBAIT,OAAO,QAAQ;EAgB1C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tabletcommand-location",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Tablet Command Location",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"debug": "^4.4.1",
|
|
16
16
|
"lodash": "~4.17.21",
|
|
17
|
-
"tabletcommand-backend-models": "~7.4.
|
|
17
|
+
"tabletcommand-backend-models": "~7.4.39"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@eslint/eslintrc": "^3.3.1",
|