@captureid/datatypes 1.0.80 → 1.0.81
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/esm2022/lib/enums.mjs +28 -1
- package/esm2022/lib/model/views/ap-device-object.mjs +16 -0
- package/esm2022/lib/model/views/network-device-object.mjs +13 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/captureid-datatypes.mjs +217 -165
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +14 -1
- package/lib/model/views/ap-device-object.d.ts +12 -0
- package/lib/model/views/network-device-object.d.ts +12 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -124,6 +124,8 @@ var DataType;
|
|
|
124
124
|
DataType[DataType["KEYS"] = 106] = "KEYS";
|
|
125
125
|
DataType[DataType["CATALOG"] = 107] = "CATALOG";
|
|
126
126
|
DataType[DataType["ENTERPRISE_STRUCTURE"] = 108] = "ENTERPRISE_STRUCTURE";
|
|
127
|
+
DataType[DataType["BUILDINGS_STRUCTURE"] = 109] = "BUILDINGS_STRUCTURE";
|
|
128
|
+
DataType[DataType["LOCATIONS_STRUCTURE"] = 110] = "LOCATIONS_STRUCTURE";
|
|
127
129
|
})(DataType || (DataType = {}));
|
|
128
130
|
var BookingType;
|
|
129
131
|
(function (BookingType) {
|
|
@@ -790,6 +792,31 @@ var PosEventType;
|
|
|
790
792
|
}
|
|
791
793
|
PosEventType.values = values;
|
|
792
794
|
})(PosEventType || (PosEventType = {}));
|
|
795
|
+
var NetworkDeviceType;
|
|
796
|
+
(function (NetworkDeviceType) {
|
|
797
|
+
NetworkDeviceType[NetworkDeviceType["UNKNOWN"] = 0] = "UNKNOWN";
|
|
798
|
+
NetworkDeviceType[NetworkDeviceType["SHELFLABEL"] = 1] = "SHELFLABEL";
|
|
799
|
+
NetworkDeviceType[NetworkDeviceType["ACCESSPOINT"] = 2] = "ACCESSPOINT";
|
|
800
|
+
NetworkDeviceType[NetworkDeviceType["ESL_ACCESSPOINT"] = 3] = "ESL_ACCESSPOINT";
|
|
801
|
+
NetworkDeviceType[NetworkDeviceType["WIFI_ACCESSPOINT"] = 4] = "WIFI_ACCESSPOINT";
|
|
802
|
+
})(NetworkDeviceType || (NetworkDeviceType = {}));
|
|
803
|
+
(function (NetworkDeviceType) {
|
|
804
|
+
function valueOf(str) {
|
|
805
|
+
return NetworkDeviceType[str];
|
|
806
|
+
}
|
|
807
|
+
NetworkDeviceType.valueOf = valueOf;
|
|
808
|
+
function values() {
|
|
809
|
+
let res = [];
|
|
810
|
+
for (const value in Object.values(NetworkDeviceType)) {
|
|
811
|
+
if (isNaN(Object.values(NetworkDeviceType)[value]) &&
|
|
812
|
+
typeof Object.values(NetworkDeviceType)[value] !== 'function') {
|
|
813
|
+
res.push(Object.values(NetworkDeviceType)[value]);
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
return res;
|
|
817
|
+
}
|
|
818
|
+
NetworkDeviceType.values = values;
|
|
819
|
+
})(NetworkDeviceType || (NetworkDeviceType = {}));
|
|
793
820
|
|
|
794
821
|
const HEADER_TOKEN = 'x-token';
|
|
795
822
|
const HEADER_SECRET = 'x-secret';
|
|
@@ -838,10 +865,10 @@ class DataVersion {
|
|
|
838
865
|
}
|
|
839
866
|
}
|
|
840
867
|
|
|
841
|
-
const version$
|
|
868
|
+
const version$17 = new DataVersion(1, 0, 0, 0);
|
|
842
869
|
class DataDto {
|
|
843
870
|
constructor(data) {
|
|
844
|
-
this.version = version$
|
|
871
|
+
this.version = version$17;
|
|
845
872
|
if (data === undefined) {
|
|
846
873
|
this.data = [];
|
|
847
874
|
}
|
|
@@ -948,17 +975,17 @@ class VerifyRequest {
|
|
|
948
975
|
}
|
|
949
976
|
}
|
|
950
977
|
|
|
951
|
-
const version$
|
|
978
|
+
const version$16 = new DataVersion(1, 0, 0, 0);
|
|
952
979
|
class AuthenticationData {
|
|
953
980
|
}
|
|
954
981
|
class AuthenticationObject extends DataObject {
|
|
955
982
|
constructor(data) {
|
|
956
|
-
super('', DataType.AUTHENTICATION, version$
|
|
983
|
+
super('', DataType.AUTHENTICATION, version$16);
|
|
957
984
|
this.data = data;
|
|
958
985
|
}
|
|
959
986
|
}
|
|
960
987
|
|
|
961
|
-
const version$
|
|
988
|
+
const version$15 = new DataVersion(1, 0, 0, 0);
|
|
962
989
|
class User {
|
|
963
990
|
constructor(id, use2FA, created, regstate, creator, changed, changedBy, firstname, lastname, email, role, phone, mobile, city, zipcode, street, no, country, state, dateOfBirth, context, avatarImg, credentialsNonExpired, accountNonLocked, accountNonExpired, username, enabled, tenantid) {
|
|
964
991
|
this.id = id;
|
|
@@ -993,7 +1020,7 @@ class User {
|
|
|
993
1020
|
}
|
|
994
1021
|
class UserObject extends DataObject {
|
|
995
1022
|
constructor(data) {
|
|
996
|
-
super('', DataType.USER, version$
|
|
1023
|
+
super('', DataType.USER, version$15);
|
|
997
1024
|
this.data = data;
|
|
998
1025
|
}
|
|
999
1026
|
}
|
|
@@ -1023,7 +1050,7 @@ var Context;
|
|
|
1023
1050
|
Context.values = values;
|
|
1024
1051
|
})(Context || (Context = {}));
|
|
1025
1052
|
|
|
1026
|
-
const version$
|
|
1053
|
+
const version$14 = new DataVersion(1, 0, 0, 0);
|
|
1027
1054
|
class Manufacturer {
|
|
1028
1055
|
constructor(id, name, email, website, addresses, code, ownerid, companyid) {
|
|
1029
1056
|
this.id = id;
|
|
@@ -1038,7 +1065,7 @@ class Manufacturer {
|
|
|
1038
1065
|
}
|
|
1039
1066
|
class ManufacturerObject extends DataObject {
|
|
1040
1067
|
constructor(data) {
|
|
1041
|
-
super('', DataType.MANUFACTURER, version$
|
|
1068
|
+
super('', DataType.MANUFACTURER, version$14);
|
|
1042
1069
|
this.data = data;
|
|
1043
1070
|
}
|
|
1044
1071
|
}
|
|
@@ -1052,12 +1079,12 @@ class Address2Manufacturer {
|
|
|
1052
1079
|
}
|
|
1053
1080
|
class AddressToManufacturerObject extends DataObject {
|
|
1054
1081
|
constructor(data) {
|
|
1055
|
-
super('', DataType.ADDRESSTOMANUFACTURER, version$
|
|
1082
|
+
super('', DataType.ADDRESSTOMANUFACTURER, version$14);
|
|
1056
1083
|
this.data = data;
|
|
1057
1084
|
}
|
|
1058
1085
|
}
|
|
1059
1086
|
|
|
1060
|
-
const version$
|
|
1087
|
+
const version$13 = new DataVersion(1, 0, 0, 0);
|
|
1061
1088
|
class License {
|
|
1062
1089
|
constructor(id, companyid, licensekey, validuntil) {
|
|
1063
1090
|
this.id = id;
|
|
@@ -1068,12 +1095,12 @@ class License {
|
|
|
1068
1095
|
}
|
|
1069
1096
|
class LicenseObject extends DataObject {
|
|
1070
1097
|
constructor(data) {
|
|
1071
|
-
super('', DataType.LICENSE, version$
|
|
1098
|
+
super('', DataType.LICENSE, version$13);
|
|
1072
1099
|
this.data = data;
|
|
1073
1100
|
}
|
|
1074
1101
|
}
|
|
1075
1102
|
|
|
1076
|
-
const version$
|
|
1103
|
+
const version$12 = new DataVersion(1, 0, 0, 0);
|
|
1077
1104
|
class AddressType {
|
|
1078
1105
|
constructor(id, name, description) {
|
|
1079
1106
|
this.id = id;
|
|
@@ -1094,23 +1121,23 @@ class Address {
|
|
|
1094
1121
|
}
|
|
1095
1122
|
class AddressObject extends DataObject {
|
|
1096
1123
|
constructor(data) {
|
|
1097
|
-
super('', DataType.ADDRESS, version$
|
|
1124
|
+
super('', DataType.ADDRESS, version$12);
|
|
1098
1125
|
this.data = data;
|
|
1099
1126
|
}
|
|
1100
1127
|
}
|
|
1101
1128
|
class AddressTypeObject extends DataObject {
|
|
1102
1129
|
constructor(data) {
|
|
1103
|
-
super('', DataType.ADDRESSTYPE, version$
|
|
1130
|
+
super('', DataType.ADDRESSTYPE, version$12);
|
|
1104
1131
|
this.data = data;
|
|
1105
1132
|
}
|
|
1106
1133
|
}
|
|
1107
1134
|
|
|
1108
|
-
const version
|
|
1135
|
+
const version$11 = new DataVersion(1, 0, 0, 0);
|
|
1109
1136
|
class WebTemplates {
|
|
1110
1137
|
}
|
|
1111
1138
|
class WebTemplatesObject extends DataObject {
|
|
1112
1139
|
constructor(data) {
|
|
1113
|
-
super('', DataType.WEBTEMPLATE, version
|
|
1140
|
+
super('', DataType.WEBTEMPLATE, version$11);
|
|
1114
1141
|
this.data = data;
|
|
1115
1142
|
}
|
|
1116
1143
|
}
|
|
@@ -1118,7 +1145,7 @@ class EmailTemplates {
|
|
|
1118
1145
|
}
|
|
1119
1146
|
class EmailTemplatesObject extends DataObject {
|
|
1120
1147
|
constructor(data) {
|
|
1121
|
-
super('', DataType.EMAILTEMPLATE, version
|
|
1148
|
+
super('', DataType.EMAILTEMPLATE, version$11);
|
|
1122
1149
|
this.data = data;
|
|
1123
1150
|
}
|
|
1124
1151
|
}
|
|
@@ -1126,12 +1153,12 @@ class Client {
|
|
|
1126
1153
|
}
|
|
1127
1154
|
class ClientObject extends DataObject {
|
|
1128
1155
|
constructor(data) {
|
|
1129
|
-
super('', DataType.CLIENT, version
|
|
1156
|
+
super('', DataType.CLIENT, version$11);
|
|
1130
1157
|
this.data = data;
|
|
1131
1158
|
}
|
|
1132
1159
|
}
|
|
1133
1160
|
|
|
1134
|
-
const version$
|
|
1161
|
+
const version$10 = new DataVersion(1, 0, 0, 0);
|
|
1135
1162
|
class Currency {
|
|
1136
1163
|
constructor(id, name, isocode, symbol) {
|
|
1137
1164
|
this.id = id;
|
|
@@ -1142,12 +1169,12 @@ class Currency {
|
|
|
1142
1169
|
}
|
|
1143
1170
|
class CurrencyObject extends DataObject {
|
|
1144
1171
|
constructor(data) {
|
|
1145
|
-
super('', DataType.CURRENCY, version$
|
|
1172
|
+
super('', DataType.CURRENCY, version$10);
|
|
1146
1173
|
this.data = data;
|
|
1147
1174
|
}
|
|
1148
1175
|
}
|
|
1149
1176
|
|
|
1150
|
-
const version
|
|
1177
|
+
const version$$ = new DataVersion(1, 0, 0, 0);
|
|
1151
1178
|
class Country {
|
|
1152
1179
|
constructor(id, name, isocode) {
|
|
1153
1180
|
this.id = id;
|
|
@@ -1157,12 +1184,12 @@ class Country {
|
|
|
1157
1184
|
}
|
|
1158
1185
|
class CountryObject extends DataObject {
|
|
1159
1186
|
constructor(data) {
|
|
1160
|
-
super('', DataType.COUNTRY, version
|
|
1187
|
+
super('', DataType.COUNTRY, version$$);
|
|
1161
1188
|
this.data = data;
|
|
1162
1189
|
}
|
|
1163
1190
|
}
|
|
1164
1191
|
|
|
1165
|
-
const version$
|
|
1192
|
+
const version$_ = new DataVersion(1, 0, 0, 0);
|
|
1166
1193
|
class Image {
|
|
1167
1194
|
constructor(width, height, url, blob) {
|
|
1168
1195
|
this.width = width;
|
|
@@ -1173,7 +1200,7 @@ class Image {
|
|
|
1173
1200
|
}
|
|
1174
1201
|
class ImageObject extends DataObject {
|
|
1175
1202
|
constructor(data) {
|
|
1176
|
-
super('', DataType.IMAGE, version$
|
|
1203
|
+
super('', DataType.IMAGE, version$_);
|
|
1177
1204
|
this.data = data;
|
|
1178
1205
|
}
|
|
1179
1206
|
getEntryCount() {
|
|
@@ -1181,7 +1208,7 @@ class ImageObject extends DataObject {
|
|
|
1181
1208
|
}
|
|
1182
1209
|
}
|
|
1183
1210
|
|
|
1184
|
-
const version$
|
|
1211
|
+
const version$Z = new DataVersion(1, 0, 0, 0);
|
|
1185
1212
|
class Management {
|
|
1186
1213
|
constructor(id, tenantid, companyid, userid, roleid, storeid) {
|
|
1187
1214
|
this.id = id;
|
|
@@ -1194,12 +1221,12 @@ class Management {
|
|
|
1194
1221
|
}
|
|
1195
1222
|
class ManagementObject extends DataObject {
|
|
1196
1223
|
constructor(data) {
|
|
1197
|
-
super('', DataType.MANAGEMENT, version$
|
|
1224
|
+
super('', DataType.MANAGEMENT, version$Z);
|
|
1198
1225
|
this.data = data;
|
|
1199
1226
|
}
|
|
1200
1227
|
}
|
|
1201
1228
|
|
|
1202
|
-
const version$
|
|
1229
|
+
const version$Y = new DataVersion(1, 0, 0, 0);
|
|
1203
1230
|
class VAT {
|
|
1204
1231
|
constructor(id, name, value, description) {
|
|
1205
1232
|
this.id = id;
|
|
@@ -1210,7 +1237,7 @@ class VAT {
|
|
|
1210
1237
|
}
|
|
1211
1238
|
class VATObject extends DataObject {
|
|
1212
1239
|
constructor(data) {
|
|
1213
|
-
super('', DataType.VAT, version$
|
|
1240
|
+
super('', DataType.VAT, version$Y);
|
|
1214
1241
|
this.data = data;
|
|
1215
1242
|
}
|
|
1216
1243
|
}
|
|
@@ -1224,12 +1251,12 @@ class VATHistory {
|
|
|
1224
1251
|
}
|
|
1225
1252
|
}
|
|
1226
1253
|
|
|
1227
|
-
const version$
|
|
1254
|
+
const version$X = new DataVersion(1, 0, 0, 0);
|
|
1228
1255
|
class Module {
|
|
1229
1256
|
}
|
|
1230
1257
|
class ModuleObject extends DataObject {
|
|
1231
1258
|
constructor(data) {
|
|
1232
|
-
super('', DataType.MODULE, version$
|
|
1259
|
+
super('', DataType.MODULE, version$X);
|
|
1233
1260
|
this.data = data;
|
|
1234
1261
|
}
|
|
1235
1262
|
}
|
|
@@ -1242,12 +1269,12 @@ class Keys {
|
|
|
1242
1269
|
}
|
|
1243
1270
|
class KeysObject extends DataObject {
|
|
1244
1271
|
constructor(data) {
|
|
1245
|
-
super('', DataType.KEYS, version$
|
|
1272
|
+
super('', DataType.KEYS, version$X);
|
|
1246
1273
|
this.data = data;
|
|
1247
1274
|
}
|
|
1248
1275
|
}
|
|
1249
1276
|
|
|
1250
|
-
const version$
|
|
1277
|
+
const version$W = new DataVersion(1, 0, 0, 0);
|
|
1251
1278
|
class Location {
|
|
1252
1279
|
constructor(id, name, description, company, address, building) {
|
|
1253
1280
|
this.id = id;
|
|
@@ -1284,30 +1311,30 @@ class Room {
|
|
|
1284
1311
|
}
|
|
1285
1312
|
class LocationObject extends DataObject {
|
|
1286
1313
|
constructor(data) {
|
|
1287
|
-
super('', DataType.LOCATION, version$
|
|
1314
|
+
super('', DataType.LOCATION, version$W);
|
|
1288
1315
|
this.data = data;
|
|
1289
1316
|
}
|
|
1290
1317
|
}
|
|
1291
1318
|
class BuildingObject extends DataObject {
|
|
1292
1319
|
constructor(data) {
|
|
1293
|
-
super('', DataType.BUILDING, version$
|
|
1320
|
+
super('', DataType.BUILDING, version$W);
|
|
1294
1321
|
this.data = data;
|
|
1295
1322
|
}
|
|
1296
1323
|
}
|
|
1297
1324
|
class FloorObject extends DataObject {
|
|
1298
1325
|
constructor(data) {
|
|
1299
|
-
super('', DataType.FLOOR, version$
|
|
1326
|
+
super('', DataType.FLOOR, version$W);
|
|
1300
1327
|
this.data = data;
|
|
1301
1328
|
}
|
|
1302
1329
|
}
|
|
1303
1330
|
class RoomObject extends DataObject {
|
|
1304
1331
|
constructor(data) {
|
|
1305
|
-
super('', DataType.ROOM, version$
|
|
1332
|
+
super('', DataType.ROOM, version$W);
|
|
1306
1333
|
this.data = data;
|
|
1307
1334
|
}
|
|
1308
1335
|
}
|
|
1309
1336
|
|
|
1310
|
-
const version$
|
|
1337
|
+
const version$V = new DataVersion(1, 0, 0, 0);
|
|
1311
1338
|
class Company {
|
|
1312
1339
|
constructor(id, name, form, taxno, taxid, address, website, registerno, ownerid, companyid) {
|
|
1313
1340
|
this.id = id;
|
|
@@ -1332,18 +1359,18 @@ class AddressToCompany {
|
|
|
1332
1359
|
}
|
|
1333
1360
|
class CompanyObject extends DataObject {
|
|
1334
1361
|
constructor(data) {
|
|
1335
|
-
super('', DataType.COMPANY, version$
|
|
1362
|
+
super('', DataType.COMPANY, version$V);
|
|
1336
1363
|
this.data = data;
|
|
1337
1364
|
}
|
|
1338
1365
|
}
|
|
1339
1366
|
class AddressToCompanyObject extends DataObject {
|
|
1340
1367
|
constructor(data) {
|
|
1341
|
-
super('', DataType.ADDRESSTOCOMPANY, version$
|
|
1368
|
+
super('', DataType.ADDRESSTOCOMPANY, version$V);
|
|
1342
1369
|
this.data = data;
|
|
1343
1370
|
}
|
|
1344
1371
|
}
|
|
1345
1372
|
|
|
1346
|
-
const version$
|
|
1373
|
+
const version$U = new DataVersion(1, 0, 0, 0);
|
|
1347
1374
|
class Vendor {
|
|
1348
1375
|
constructor(id, name, website, description, ownerid, companyid) {
|
|
1349
1376
|
this.id = id;
|
|
@@ -1356,7 +1383,7 @@ class Vendor {
|
|
|
1356
1383
|
}
|
|
1357
1384
|
class VendorObject extends DataObject {
|
|
1358
1385
|
constructor(data) {
|
|
1359
|
-
super('', DataType.VENDOR, version$
|
|
1386
|
+
super('', DataType.VENDOR, version$U);
|
|
1360
1387
|
this.data = data;
|
|
1361
1388
|
}
|
|
1362
1389
|
getEntryCount() {
|
|
@@ -1364,7 +1391,7 @@ class VendorObject extends DataObject {
|
|
|
1364
1391
|
}
|
|
1365
1392
|
}
|
|
1366
1393
|
|
|
1367
|
-
const version$
|
|
1394
|
+
const version$T = new DataVersion(1, 0, 0, 0);
|
|
1368
1395
|
class AccessPoint {
|
|
1369
1396
|
constructor(id, ipaddress, wifiaddress, btaddress, macaddress, serial, model, softwareversion, hardwareversion, vendor) {
|
|
1370
1397
|
this.id = id;
|
|
@@ -1381,7 +1408,7 @@ class AccessPoint {
|
|
|
1381
1408
|
}
|
|
1382
1409
|
class AccessPointObject extends DataObject {
|
|
1383
1410
|
constructor(data) {
|
|
1384
|
-
super('', DataType.ACCESSPOINT, version$
|
|
1411
|
+
super('', DataType.ACCESSPOINT, version$T);
|
|
1385
1412
|
this.data = data;
|
|
1386
1413
|
}
|
|
1387
1414
|
getEntryCount() {
|
|
@@ -1389,7 +1416,7 @@ class AccessPointObject extends DataObject {
|
|
|
1389
1416
|
}
|
|
1390
1417
|
}
|
|
1391
1418
|
|
|
1392
|
-
const version$
|
|
1419
|
+
const version$S = new DataVersion(1, 0, 0, 0);
|
|
1393
1420
|
class Message {
|
|
1394
1421
|
constructor(messagetype, code, name, message) {
|
|
1395
1422
|
this.messagetype = messagetype;
|
|
@@ -1400,7 +1427,7 @@ class Message {
|
|
|
1400
1427
|
}
|
|
1401
1428
|
class MessageObject extends DataObject {
|
|
1402
1429
|
constructor(data) {
|
|
1403
|
-
super('', DataType.MESSAGE, version$
|
|
1430
|
+
super('', DataType.MESSAGE, version$S);
|
|
1404
1431
|
this.data = data;
|
|
1405
1432
|
}
|
|
1406
1433
|
getEntryCount() {
|
|
@@ -1408,7 +1435,7 @@ class MessageObject extends DataObject {
|
|
|
1408
1435
|
}
|
|
1409
1436
|
}
|
|
1410
1437
|
|
|
1411
|
-
const version$
|
|
1438
|
+
const version$R = new DataVersion(1, 0, 0, 0);
|
|
1412
1439
|
class CartItem {
|
|
1413
1440
|
constructor(item, amount, space, price, booked) {
|
|
1414
1441
|
this.item = item;
|
|
@@ -1432,7 +1459,7 @@ class Cart {
|
|
|
1432
1459
|
}
|
|
1433
1460
|
class CartObject extends DataObject {
|
|
1434
1461
|
constructor(data) {
|
|
1435
|
-
super('', DataType.CART, version$
|
|
1462
|
+
super('', DataType.CART, version$R);
|
|
1436
1463
|
this.data = data;
|
|
1437
1464
|
}
|
|
1438
1465
|
getEntryCount() {
|
|
@@ -1440,7 +1467,7 @@ class CartObject extends DataObject {
|
|
|
1440
1467
|
}
|
|
1441
1468
|
}
|
|
1442
1469
|
|
|
1443
|
-
const version$
|
|
1470
|
+
const version$Q = new DataVersion(1, 0, 0, 0);
|
|
1444
1471
|
class Role {
|
|
1445
1472
|
constructor(id, name, description) {
|
|
1446
1473
|
this.id = id;
|
|
@@ -1466,7 +1493,7 @@ class UserAccess {
|
|
|
1466
1493
|
}
|
|
1467
1494
|
class RoleObject extends DataObject {
|
|
1468
1495
|
constructor(data) {
|
|
1469
|
-
super('', DataType.ROLE, version$
|
|
1496
|
+
super('', DataType.ROLE, version$Q);
|
|
1470
1497
|
this.data = data;
|
|
1471
1498
|
}
|
|
1472
1499
|
getEntryCount() {
|
|
@@ -1475,7 +1502,7 @@ class RoleObject extends DataObject {
|
|
|
1475
1502
|
}
|
|
1476
1503
|
class UserAccessObject extends DataObject {
|
|
1477
1504
|
constructor(data) {
|
|
1478
|
-
super('', DataType.USERACCESS, version$
|
|
1505
|
+
super('', DataType.USERACCESS, version$Q);
|
|
1479
1506
|
this.data = data;
|
|
1480
1507
|
}
|
|
1481
1508
|
getEntryCount() {
|
|
@@ -1483,7 +1510,7 @@ class UserAccessObject extends DataObject {
|
|
|
1483
1510
|
}
|
|
1484
1511
|
}
|
|
1485
1512
|
|
|
1486
|
-
const version$
|
|
1513
|
+
const version$P = new DataVersion(1, 0, 0, 0);
|
|
1487
1514
|
class Supplier {
|
|
1488
1515
|
constructor(id, name, email, phone, website, addresses, code, ownerid, companyid) {
|
|
1489
1516
|
this.id = id;
|
|
@@ -1499,12 +1526,12 @@ class Supplier {
|
|
|
1499
1526
|
}
|
|
1500
1527
|
class SupplierObject extends DataObject {
|
|
1501
1528
|
constructor(data) {
|
|
1502
|
-
super('', DataType.SUPPLIER, version$
|
|
1529
|
+
super('', DataType.SUPPLIER, version$P);
|
|
1503
1530
|
this.data = data;
|
|
1504
1531
|
}
|
|
1505
1532
|
}
|
|
1506
1533
|
|
|
1507
|
-
const version$
|
|
1534
|
+
const version$O = new DataVersion(1, 0, 0, 0);
|
|
1508
1535
|
class Issue {
|
|
1509
1536
|
constructor(id, question, answer) {
|
|
1510
1537
|
this.id = id;
|
|
@@ -1521,12 +1548,12 @@ class FAQ {
|
|
|
1521
1548
|
}
|
|
1522
1549
|
class FAQObject extends DataObject {
|
|
1523
1550
|
constructor(data) {
|
|
1524
|
-
super('', DataType.FAQ, version$
|
|
1551
|
+
super('', DataType.FAQ, version$O);
|
|
1525
1552
|
this.data = data;
|
|
1526
1553
|
}
|
|
1527
1554
|
}
|
|
1528
1555
|
|
|
1529
|
-
const version$
|
|
1556
|
+
const version$N = new DataVersion(1, 0, 0, 0);
|
|
1530
1557
|
class FarmingMethod {
|
|
1531
1558
|
constructor(id, method) {
|
|
1532
1559
|
this.id = id;
|
|
@@ -1535,12 +1562,12 @@ class FarmingMethod {
|
|
|
1535
1562
|
}
|
|
1536
1563
|
class FarmingMethodObject extends DataObject {
|
|
1537
1564
|
constructor(data) {
|
|
1538
|
-
super('', DataType.FARMINGMETHOD, version$
|
|
1565
|
+
super('', DataType.FARMINGMETHOD, version$N);
|
|
1539
1566
|
this.data = data;
|
|
1540
1567
|
}
|
|
1541
1568
|
}
|
|
1542
1569
|
|
|
1543
|
-
const version$
|
|
1570
|
+
const version$M = new DataVersion(1, 0, 0, 0);
|
|
1544
1571
|
class Chat {
|
|
1545
1572
|
constructor(id, senderid, sendername, receiverid, receivername, message, timestamp) {
|
|
1546
1573
|
this.id = id;
|
|
@@ -1554,12 +1581,12 @@ class Chat {
|
|
|
1554
1581
|
}
|
|
1555
1582
|
class ChatObject extends DataObject {
|
|
1556
1583
|
constructor(data) {
|
|
1557
|
-
super('', DataType.CHAT, version$
|
|
1584
|
+
super('', DataType.CHAT, version$M);
|
|
1558
1585
|
this.data = data;
|
|
1559
1586
|
}
|
|
1560
1587
|
}
|
|
1561
1588
|
|
|
1562
|
-
const version$
|
|
1589
|
+
const version$L = new DataVersion(1, 0, 0, 0);
|
|
1563
1590
|
class TicketMessage {
|
|
1564
1591
|
constructor(id, ticketid, senderid, sendertype, attachmenttype, message, attachment, created) {
|
|
1565
1592
|
this.id = id;
|
|
@@ -1586,7 +1613,7 @@ class Ticket {
|
|
|
1586
1613
|
}
|
|
1587
1614
|
class TicketMessageObject extends DataObject {
|
|
1588
1615
|
constructor(data) {
|
|
1589
|
-
super('', DataType.TICKETMESSAGE, version$
|
|
1616
|
+
super('', DataType.TICKETMESSAGE, version$L);
|
|
1590
1617
|
this.data = data;
|
|
1591
1618
|
}
|
|
1592
1619
|
getEntryCount() {
|
|
@@ -1595,7 +1622,7 @@ class TicketMessageObject extends DataObject {
|
|
|
1595
1622
|
}
|
|
1596
1623
|
class TicketObject extends DataObject {
|
|
1597
1624
|
constructor(data) {
|
|
1598
|
-
super('', DataType.TICKET, version$
|
|
1625
|
+
super('', DataType.TICKET, version$L);
|
|
1599
1626
|
this.data = data;
|
|
1600
1627
|
}
|
|
1601
1628
|
getEntryCount() {
|
|
@@ -1603,17 +1630,17 @@ class TicketObject extends DataObject {
|
|
|
1603
1630
|
}
|
|
1604
1631
|
}
|
|
1605
1632
|
|
|
1606
|
-
const version$
|
|
1633
|
+
const version$K = new DataVersion(1, 0, 0, 0);
|
|
1607
1634
|
class Tenant {
|
|
1608
1635
|
}
|
|
1609
1636
|
class TenantObject extends DataObject {
|
|
1610
1637
|
constructor(data) {
|
|
1611
|
-
super('', DataType.TENANT, version$
|
|
1638
|
+
super('', DataType.TENANT, version$K);
|
|
1612
1639
|
this.data = data;
|
|
1613
1640
|
}
|
|
1614
1641
|
}
|
|
1615
1642
|
|
|
1616
|
-
const version$
|
|
1643
|
+
const version$J = new DataVersion(1, 0, 0, 0);
|
|
1617
1644
|
class FileImport {
|
|
1618
1645
|
constructor(id, filename, filetype, importtype, content) {
|
|
1619
1646
|
this.id = id;
|
|
@@ -1625,12 +1652,12 @@ class FileImport {
|
|
|
1625
1652
|
}
|
|
1626
1653
|
class FileImportObject extends DataObject {
|
|
1627
1654
|
constructor(data) {
|
|
1628
|
-
super('', DataType.FILEIMPORT, version$
|
|
1655
|
+
super('', DataType.FILEIMPORT, version$J);
|
|
1629
1656
|
this.data = data;
|
|
1630
1657
|
}
|
|
1631
1658
|
}
|
|
1632
1659
|
|
|
1633
|
-
const version$
|
|
1660
|
+
const version$I = new DataVersion(1, 0, 0, 0);
|
|
1634
1661
|
class BuildingAccess {
|
|
1635
1662
|
constructor(id, userid, buildingid) {
|
|
1636
1663
|
this.id = id;
|
|
@@ -1640,7 +1667,7 @@ class BuildingAccess {
|
|
|
1640
1667
|
}
|
|
1641
1668
|
class BuildingAccessObject extends DataObject {
|
|
1642
1669
|
constructor(data) {
|
|
1643
|
-
super('', DataType.BUILDINGACCESS, version$
|
|
1670
|
+
super('', DataType.BUILDINGACCESS, version$I);
|
|
1644
1671
|
this.data = data;
|
|
1645
1672
|
}
|
|
1646
1673
|
getEntryCount() {
|
|
@@ -1648,7 +1675,7 @@ class BuildingAccessObject extends DataObject {
|
|
|
1648
1675
|
}
|
|
1649
1676
|
}
|
|
1650
1677
|
|
|
1651
|
-
const version$
|
|
1678
|
+
const version$H = new DataVersion(1, 0, 0, 0);
|
|
1652
1679
|
class StoreTask {
|
|
1653
1680
|
constructor(id, type, name, description, active, duedate) {
|
|
1654
1681
|
this.id = id;
|
|
@@ -1676,7 +1703,7 @@ class Store {
|
|
|
1676
1703
|
}
|
|
1677
1704
|
class StoreObject extends DataObject {
|
|
1678
1705
|
constructor(data) {
|
|
1679
|
-
super('', DataType.STORE, version$
|
|
1706
|
+
super('', DataType.STORE, version$H);
|
|
1680
1707
|
this.data = data;
|
|
1681
1708
|
}
|
|
1682
1709
|
getEntryCount() {
|
|
@@ -1695,7 +1722,7 @@ class StoreInformation {
|
|
|
1695
1722
|
}
|
|
1696
1723
|
class StoreInformationObject extends DataObject {
|
|
1697
1724
|
constructor(data) {
|
|
1698
|
-
super('', DataType.STOREINFORMATION, version$
|
|
1725
|
+
super('', DataType.STOREINFORMATION, version$H);
|
|
1699
1726
|
this.data = data;
|
|
1700
1727
|
}
|
|
1701
1728
|
getEntryCount() {
|
|
@@ -1703,7 +1730,7 @@ class StoreInformationObject extends DataObject {
|
|
|
1703
1730
|
}
|
|
1704
1731
|
}
|
|
1705
1732
|
|
|
1706
|
-
const version$
|
|
1733
|
+
const version$G = new DataVersion(1, 0, 0, 0);
|
|
1707
1734
|
class CalendarEntry {
|
|
1708
1735
|
constructor(id, title, type, description, startdate, enddate) {
|
|
1709
1736
|
this.id = id;
|
|
@@ -1716,7 +1743,7 @@ class CalendarEntry {
|
|
|
1716
1743
|
}
|
|
1717
1744
|
class CalendarObject extends DataObject {
|
|
1718
1745
|
constructor(data) {
|
|
1719
|
-
super('', DataType.CALENDAR, version$
|
|
1746
|
+
super('', DataType.CALENDAR, version$G);
|
|
1720
1747
|
this.data = data;
|
|
1721
1748
|
}
|
|
1722
1749
|
getEntryCount() {
|
|
@@ -1724,7 +1751,7 @@ class CalendarObject extends DataObject {
|
|
|
1724
1751
|
}
|
|
1725
1752
|
}
|
|
1726
1753
|
|
|
1727
|
-
const version$
|
|
1754
|
+
const version$F = new DataVersion(1, 0, 0, 0);
|
|
1728
1755
|
class PosTerminal {
|
|
1729
1756
|
constructor(id, name, description, terminalid, wifiAddress, btAddress, ipAddress, serialnumber, manufacturer, paymentterminalid) {
|
|
1730
1757
|
this.id = id;
|
|
@@ -1741,7 +1768,7 @@ class PosTerminal {
|
|
|
1741
1768
|
}
|
|
1742
1769
|
class PosTerminalObject extends DataObject {
|
|
1743
1770
|
constructor(data) {
|
|
1744
|
-
super('', DataType.POSTERMINAL, version$
|
|
1771
|
+
super('', DataType.POSTERMINAL, version$F);
|
|
1745
1772
|
this.data = data;
|
|
1746
1773
|
}
|
|
1747
1774
|
getEntryCount() {
|
|
@@ -1749,7 +1776,7 @@ class PosTerminalObject extends DataObject {
|
|
|
1749
1776
|
}
|
|
1750
1777
|
}
|
|
1751
1778
|
|
|
1752
|
-
const version$
|
|
1779
|
+
const version$E = new DataVersion(1, 0, 0, 0);
|
|
1753
1780
|
class WidgetConfiguration {
|
|
1754
1781
|
constructor(id, name, value) {
|
|
1755
1782
|
this.id = id;
|
|
@@ -1773,12 +1800,12 @@ class DashboardProfile {
|
|
|
1773
1800
|
}
|
|
1774
1801
|
class UserprofileObject extends DataObject {
|
|
1775
1802
|
constructor(data) {
|
|
1776
|
-
super('', DataType.USERPROFILE, version$
|
|
1803
|
+
super('', DataType.USERPROFILE, version$E);
|
|
1777
1804
|
this.data = data;
|
|
1778
1805
|
}
|
|
1779
1806
|
}
|
|
1780
1807
|
|
|
1781
|
-
const version$
|
|
1808
|
+
const version$D = new DataVersion(1, 0, 0, 0);
|
|
1782
1809
|
class EnterpriseNode {
|
|
1783
1810
|
constructor(label, expanded, data, children) {
|
|
1784
1811
|
this.label = label;
|
|
@@ -1789,7 +1816,7 @@ class EnterpriseNode {
|
|
|
1789
1816
|
}
|
|
1790
1817
|
class EnterpriseObject extends DataObject {
|
|
1791
1818
|
constructor(data) {
|
|
1792
|
-
super('', DataType.ENTERPRISE_STRUCTURE, version$
|
|
1819
|
+
super('', DataType.ENTERPRISE_STRUCTURE, version$D);
|
|
1793
1820
|
this.data = data;
|
|
1794
1821
|
}
|
|
1795
1822
|
getEntryCount() {
|
|
@@ -1797,7 +1824,7 @@ class EnterpriseObject extends DataObject {
|
|
|
1797
1824
|
}
|
|
1798
1825
|
}
|
|
1799
1826
|
|
|
1800
|
-
const version$
|
|
1827
|
+
const version$C = new DataVersion(1, 0, 0, 0);
|
|
1801
1828
|
class StorePermissions {
|
|
1802
1829
|
constructor(canRead = false, canWrite = false, canOperate = false) {
|
|
1803
1830
|
this.canRead = canRead;
|
|
@@ -1824,12 +1851,12 @@ class SecurityProfile {
|
|
|
1824
1851
|
}
|
|
1825
1852
|
class SecurityProfileObject extends DataObject {
|
|
1826
1853
|
constructor(data) {
|
|
1827
|
-
super('', DataType.SECURITYPROFILE, version$
|
|
1854
|
+
super('', DataType.SECURITYPROFILE, version$C);
|
|
1828
1855
|
this.data = data;
|
|
1829
1856
|
}
|
|
1830
1857
|
}
|
|
1831
1858
|
|
|
1832
|
-
const version$
|
|
1859
|
+
const version$B = new DataVersion(1, 0, 0, 0);
|
|
1833
1860
|
class menuitem {
|
|
1834
1861
|
constructor(id, name, resource, children, icon, link) {
|
|
1835
1862
|
this.id = id;
|
|
@@ -1854,7 +1881,7 @@ class Menu {
|
|
|
1854
1881
|
}
|
|
1855
1882
|
class MenuObject extends DataObject {
|
|
1856
1883
|
constructor(data) {
|
|
1857
|
-
super('', DataType.MENU, version$
|
|
1884
|
+
super('', DataType.MENU, version$B);
|
|
1858
1885
|
this.data = data;
|
|
1859
1886
|
}
|
|
1860
1887
|
getEntryCount() {
|
|
@@ -1862,7 +1889,7 @@ class MenuObject extends DataObject {
|
|
|
1862
1889
|
}
|
|
1863
1890
|
}
|
|
1864
1891
|
|
|
1865
|
-
const version$
|
|
1892
|
+
const version$A = new DataVersion(1, 0, 0, 0);
|
|
1866
1893
|
class Topic {
|
|
1867
1894
|
constructor(id, name, description, active) {
|
|
1868
1895
|
this.id = id;
|
|
@@ -1873,7 +1900,7 @@ class Topic {
|
|
|
1873
1900
|
}
|
|
1874
1901
|
class TopicObject extends DataObject {
|
|
1875
1902
|
constructor(data) {
|
|
1876
|
-
super('', DataType.TOPIC, version$
|
|
1903
|
+
super('', DataType.TOPIC, version$A);
|
|
1877
1904
|
this.data = data;
|
|
1878
1905
|
}
|
|
1879
1906
|
getEntryCount() {
|
|
@@ -1881,7 +1908,7 @@ class TopicObject extends DataObject {
|
|
|
1881
1908
|
}
|
|
1882
1909
|
}
|
|
1883
1910
|
|
|
1884
|
-
const version$
|
|
1911
|
+
const version$z = new DataVersion(1, 0, 0, 0);
|
|
1885
1912
|
class Subscription {
|
|
1886
1913
|
constructor(id, user, token, topics) {
|
|
1887
1914
|
this.id = id;
|
|
@@ -1892,7 +1919,7 @@ class Subscription {
|
|
|
1892
1919
|
}
|
|
1893
1920
|
class SubscriptionObject extends DataObject {
|
|
1894
1921
|
constructor(data) {
|
|
1895
|
-
super('', DataType.SUBSCRIPTION, version$
|
|
1922
|
+
super('', DataType.SUBSCRIPTION, version$z);
|
|
1896
1923
|
this.data = data;
|
|
1897
1924
|
}
|
|
1898
1925
|
getEntryCount() {
|
|
@@ -1900,7 +1927,7 @@ class SubscriptionObject extends DataObject {
|
|
|
1900
1927
|
}
|
|
1901
1928
|
}
|
|
1902
1929
|
|
|
1903
|
-
const version$
|
|
1930
|
+
const version$y = new DataVersion(1, 0, 0, 0);
|
|
1904
1931
|
class Notification {
|
|
1905
1932
|
constructor(id, name, description, icon, image, action, topics, title, text, startdate, starttime, endtime) {
|
|
1906
1933
|
this.id = id;
|
|
@@ -1919,7 +1946,7 @@ class Notification {
|
|
|
1919
1946
|
}
|
|
1920
1947
|
class NotificationObject extends DataObject {
|
|
1921
1948
|
constructor(data) {
|
|
1922
|
-
super('', DataType.NOTIFICATION, version$
|
|
1949
|
+
super('', DataType.NOTIFICATION, version$y);
|
|
1923
1950
|
this.data = data;
|
|
1924
1951
|
}
|
|
1925
1952
|
getEntryCount() {
|
|
@@ -1927,7 +1954,7 @@ class NotificationObject extends DataObject {
|
|
|
1927
1954
|
}
|
|
1928
1955
|
}
|
|
1929
1956
|
|
|
1930
|
-
const version$
|
|
1957
|
+
const version$x = new DataVersion(1, 0, 0, 0);
|
|
1931
1958
|
class AdvertisementImageType {
|
|
1932
1959
|
constructor(id, name) {
|
|
1933
1960
|
this.id = id;
|
|
@@ -1936,7 +1963,7 @@ class AdvertisementImageType {
|
|
|
1936
1963
|
}
|
|
1937
1964
|
class AdvertisementImageTypeObject extends DataObject {
|
|
1938
1965
|
constructor(data) {
|
|
1939
|
-
super('', DataType.ADVERTISEMENT_IMAGE_TYPE, version$
|
|
1966
|
+
super('', DataType.ADVERTISEMENT_IMAGE_TYPE, version$x);
|
|
1940
1967
|
this.data = data;
|
|
1941
1968
|
}
|
|
1942
1969
|
getEntryCount() {
|
|
@@ -1953,7 +1980,7 @@ class Image2Advertisement {
|
|
|
1953
1980
|
}
|
|
1954
1981
|
class Image2AdvertisementObject extends DataObject {
|
|
1955
1982
|
constructor(data) {
|
|
1956
|
-
super('', DataType.IMAGETOADVERTISEMENT, version$
|
|
1983
|
+
super('', DataType.IMAGETOADVERTISEMENT, version$x);
|
|
1957
1984
|
this.data = data;
|
|
1958
1985
|
}
|
|
1959
1986
|
getEntryCount() {
|
|
@@ -1974,7 +2001,7 @@ class Advertisement {
|
|
|
1974
2001
|
}
|
|
1975
2002
|
class AdvertisementObject extends DataObject {
|
|
1976
2003
|
constructor(data) {
|
|
1977
|
-
super('', DataType.ADVERTISEMENT, version$
|
|
2004
|
+
super('', DataType.ADVERTISEMENT, version$x);
|
|
1978
2005
|
this.data = data;
|
|
1979
2006
|
}
|
|
1980
2007
|
getEntryCount() {
|
|
@@ -1982,7 +2009,7 @@ class AdvertisementObject extends DataObject {
|
|
|
1982
2009
|
}
|
|
1983
2010
|
}
|
|
1984
2011
|
|
|
1985
|
-
const version$
|
|
2012
|
+
const version$w = new DataVersion(1, 0, 0, 0);
|
|
1986
2013
|
class Campaign {
|
|
1987
2014
|
constructor(id, name, description, tenant, company, promotiondate, startdate, enddate, advertisements) {
|
|
1988
2015
|
this.id = id;
|
|
@@ -1998,7 +2025,7 @@ class Campaign {
|
|
|
1998
2025
|
}
|
|
1999
2026
|
class CampaignObject extends DataObject {
|
|
2000
2027
|
constructor(data) {
|
|
2001
|
-
super('', DataType.CAMPAIGN, version$
|
|
2028
|
+
super('', DataType.CAMPAIGN, version$w);
|
|
2002
2029
|
this.data = data;
|
|
2003
2030
|
}
|
|
2004
2031
|
getEntryCount() {
|
|
@@ -2006,7 +2033,7 @@ class CampaignObject extends DataObject {
|
|
|
2006
2033
|
}
|
|
2007
2034
|
}
|
|
2008
2035
|
|
|
2009
|
-
const version$
|
|
2036
|
+
const version$v = new DataVersion(1, 0, 0, 0);
|
|
2010
2037
|
class Dimension {
|
|
2011
2038
|
constructor(width, height, depth) {
|
|
2012
2039
|
this.width = width;
|
|
@@ -2016,7 +2043,7 @@ class Dimension {
|
|
|
2016
2043
|
}
|
|
2017
2044
|
class DimensionObject extends DataObject {
|
|
2018
2045
|
constructor(data) {
|
|
2019
|
-
super('', DataType.DIMENSION, version$
|
|
2046
|
+
super('', DataType.DIMENSION, version$v);
|
|
2020
2047
|
this.data = data;
|
|
2021
2048
|
}
|
|
2022
2049
|
getEntryCount() {
|
|
@@ -2024,7 +2051,7 @@ class DimensionObject extends DataObject {
|
|
|
2024
2051
|
}
|
|
2025
2052
|
}
|
|
2026
2053
|
|
|
2027
|
-
const version$
|
|
2054
|
+
const version$u = new DataVersion(1, 0, 0, 0);
|
|
2028
2055
|
class Inventory {
|
|
2029
2056
|
constructor(id, amount, unit, weight, space, item) {
|
|
2030
2057
|
this.id = id;
|
|
@@ -2040,7 +2067,7 @@ class Inventory {
|
|
|
2040
2067
|
}
|
|
2041
2068
|
class InventoryObject extends DataObject {
|
|
2042
2069
|
constructor(data) {
|
|
2043
|
-
super('', DataType.INVENTORY, version$
|
|
2070
|
+
super('', DataType.INVENTORY, version$u);
|
|
2044
2071
|
this.data = data;
|
|
2045
2072
|
}
|
|
2046
2073
|
getEntryCount() {
|
|
@@ -2048,7 +2075,7 @@ class InventoryObject extends DataObject {
|
|
|
2048
2075
|
}
|
|
2049
2076
|
}
|
|
2050
2077
|
|
|
2051
|
-
const version$
|
|
2078
|
+
const version$t = new DataVersion(1, 0, 0, 0);
|
|
2052
2079
|
class ItemGroup {
|
|
2053
2080
|
constructor(id, name, description, code) {
|
|
2054
2081
|
this.id = id;
|
|
@@ -2059,7 +2086,7 @@ class ItemGroup {
|
|
|
2059
2086
|
}
|
|
2060
2087
|
class ItemGroupObject extends DataObject {
|
|
2061
2088
|
constructor(data) {
|
|
2062
|
-
super('', DataType.ITEMGROUP, version$
|
|
2089
|
+
super('', DataType.ITEMGROUP, version$t);
|
|
2063
2090
|
this.data = data;
|
|
2064
2091
|
}
|
|
2065
2092
|
}
|
|
@@ -2070,12 +2097,12 @@ class Item {
|
|
|
2070
2097
|
}
|
|
2071
2098
|
class ItemObject extends DataObject {
|
|
2072
2099
|
constructor(data) {
|
|
2073
|
-
super('', DataType.ITEM, version$
|
|
2100
|
+
super('', DataType.ITEM, version$t);
|
|
2074
2101
|
this.data = data;
|
|
2075
2102
|
}
|
|
2076
2103
|
}
|
|
2077
2104
|
|
|
2078
|
-
const version$
|
|
2105
|
+
const version$s = new DataVersion(1, 0, 0, 0);
|
|
2079
2106
|
class PropertyNames {
|
|
2080
2107
|
constructor(id, name) {
|
|
2081
2108
|
this.id = id;
|
|
@@ -2084,7 +2111,7 @@ class PropertyNames {
|
|
|
2084
2111
|
}
|
|
2085
2112
|
class PropertyNamesObject extends DataObject {
|
|
2086
2113
|
constructor(data) {
|
|
2087
|
-
super('', DataType.PROPERTYNAMES, version$
|
|
2114
|
+
super('', DataType.PROPERTYNAMES, version$s);
|
|
2088
2115
|
this.data = data;
|
|
2089
2116
|
}
|
|
2090
2117
|
}
|
|
@@ -2098,7 +2125,7 @@ class CategoryNames {
|
|
|
2098
2125
|
}
|
|
2099
2126
|
class CategoryNamesObject extends DataObject {
|
|
2100
2127
|
constructor(data) {
|
|
2101
|
-
super('', DataType.CATEGORYNAMES, version$
|
|
2128
|
+
super('', DataType.CATEGORYNAMES, version$s);
|
|
2102
2129
|
this.data = data;
|
|
2103
2130
|
}
|
|
2104
2131
|
}
|
|
@@ -2113,7 +2140,7 @@ class ItemProperty {
|
|
|
2113
2140
|
}
|
|
2114
2141
|
class ItemPropertyObject extends DataObject {
|
|
2115
2142
|
constructor(data) {
|
|
2116
|
-
super('', DataType.ITEMPROPERTY, version$
|
|
2143
|
+
super('', DataType.ITEMPROPERTY, version$s);
|
|
2117
2144
|
this.data = data;
|
|
2118
2145
|
}
|
|
2119
2146
|
}
|
|
@@ -2127,12 +2154,12 @@ class ItemProperties {
|
|
|
2127
2154
|
}
|
|
2128
2155
|
class ItemPropertiesObject extends DataObject {
|
|
2129
2156
|
constructor(data) {
|
|
2130
|
-
super('', DataType.ITEMPROPERTIES, version$
|
|
2157
|
+
super('', DataType.ITEMPROPERTIES, version$s);
|
|
2131
2158
|
this.data = data;
|
|
2132
2159
|
}
|
|
2133
2160
|
}
|
|
2134
2161
|
|
|
2135
|
-
const version$
|
|
2162
|
+
const version$r = new DataVersion(1, 0, 0, 0);
|
|
2136
2163
|
class ItemDetail {
|
|
2137
2164
|
constructor(item, stock, sellingprice, inventory) {
|
|
2138
2165
|
this.item = item;
|
|
@@ -2143,12 +2170,12 @@ class ItemDetail {
|
|
|
2143
2170
|
}
|
|
2144
2171
|
class ItemDetailObject extends DataObject {
|
|
2145
2172
|
constructor(data) {
|
|
2146
|
-
super('', DataType.ITEMDETAIL, version$
|
|
2173
|
+
super('', DataType.ITEMDETAIL, version$r);
|
|
2147
2174
|
this.data = data;
|
|
2148
2175
|
}
|
|
2149
2176
|
}
|
|
2150
2177
|
|
|
2151
|
-
const version$
|
|
2178
|
+
const version$q = new DataVersion(1, 0, 0, 0);
|
|
2152
2179
|
class Packaging {
|
|
2153
2180
|
constructor(id, name, dimensions, code) {
|
|
2154
2181
|
this.id = id;
|
|
@@ -2159,12 +2186,12 @@ class Packaging {
|
|
|
2159
2186
|
}
|
|
2160
2187
|
class PackagingObject extends DataObject {
|
|
2161
2188
|
constructor(data) {
|
|
2162
|
-
super('', DataType.PACKAGING, version$
|
|
2189
|
+
super('', DataType.PACKAGING, version$q);
|
|
2163
2190
|
this.data = data;
|
|
2164
2191
|
}
|
|
2165
2192
|
}
|
|
2166
2193
|
|
|
2167
|
-
const version$
|
|
2194
|
+
const version$p = new DataVersion(1, 0, 0, 0);
|
|
2168
2195
|
class Rating {
|
|
2169
2196
|
constructor(id, value, comment) {
|
|
2170
2197
|
this.id = id;
|
|
@@ -2174,12 +2201,12 @@ class Rating {
|
|
|
2174
2201
|
}
|
|
2175
2202
|
class RatingObject extends DataObject {
|
|
2176
2203
|
constructor(data) {
|
|
2177
|
-
super('', DataType.RATING, version$
|
|
2204
|
+
super('', DataType.RATING, version$p);
|
|
2178
2205
|
this.data = data;
|
|
2179
2206
|
}
|
|
2180
2207
|
}
|
|
2181
2208
|
|
|
2182
|
-
const version$
|
|
2209
|
+
const version$o = new DataVersion(1, 0, 0, 0);
|
|
2183
2210
|
class Space {
|
|
2184
2211
|
constructor(id, name, description, dimension) {
|
|
2185
2212
|
this.id = id;
|
|
@@ -2206,7 +2233,7 @@ class Shelf {
|
|
|
2206
2233
|
}
|
|
2207
2234
|
class ShelfObject extends DataObject {
|
|
2208
2235
|
constructor(data) {
|
|
2209
|
-
super('', DataType.SHELF, version$
|
|
2236
|
+
super('', DataType.SHELF, version$o);
|
|
2210
2237
|
this.data = data;
|
|
2211
2238
|
}
|
|
2212
2239
|
getEntryCount() {
|
|
@@ -2215,7 +2242,7 @@ class ShelfObject extends DataObject {
|
|
|
2215
2242
|
}
|
|
2216
2243
|
class SpaceObject extends DataObject {
|
|
2217
2244
|
constructor(data) {
|
|
2218
|
-
super('', DataType.SPACE, version$
|
|
2245
|
+
super('', DataType.SPACE, version$o);
|
|
2219
2246
|
this.data = data;
|
|
2220
2247
|
}
|
|
2221
2248
|
getEntryCount() {
|
|
@@ -2224,7 +2251,7 @@ class SpaceObject extends DataObject {
|
|
|
2224
2251
|
}
|
|
2225
2252
|
class LevelObject extends DataObject {
|
|
2226
2253
|
constructor(data) {
|
|
2227
|
-
super('', DataType.LEVEL, version$
|
|
2254
|
+
super('', DataType.LEVEL, version$o);
|
|
2228
2255
|
this.data = data;
|
|
2229
2256
|
}
|
|
2230
2257
|
getEntryCount() {
|
|
@@ -2250,7 +2277,7 @@ function isShelf(value) {
|
|
|
2250
2277
|
return value && value.levels !== undefined;
|
|
2251
2278
|
}
|
|
2252
2279
|
|
|
2253
|
-
const version$
|
|
2280
|
+
const version$n = new DataVersion(1, 0, 0, 0);
|
|
2254
2281
|
class Stock {
|
|
2255
2282
|
constructor(id, name, room, shelf, row, ownerid, companyid) {
|
|
2256
2283
|
this.id = id;
|
|
@@ -2264,7 +2291,7 @@ class Stock {
|
|
|
2264
2291
|
}
|
|
2265
2292
|
class StockObject extends DataObject {
|
|
2266
2293
|
constructor(data) {
|
|
2267
|
-
super('', DataType.STOCK, version$
|
|
2294
|
+
super('', DataType.STOCK, version$n);
|
|
2268
2295
|
this.data = data;
|
|
2269
2296
|
}
|
|
2270
2297
|
getEntryCount() {
|
|
@@ -2272,7 +2299,7 @@ class StockObject extends DataObject {
|
|
|
2272
2299
|
}
|
|
2273
2300
|
}
|
|
2274
2301
|
|
|
2275
|
-
const version$
|
|
2302
|
+
const version$m = new DataVersion(1, 0, 0, 0);
|
|
2276
2303
|
class Booking {
|
|
2277
2304
|
constructor(id, amount, unit, space, userid, item, bookingtype, purchaseprice, sellingprice, created) {
|
|
2278
2305
|
this.id = id;
|
|
@@ -2289,7 +2316,7 @@ class Booking {
|
|
|
2289
2316
|
}
|
|
2290
2317
|
class BookingObject extends DataObject {
|
|
2291
2318
|
constructor(data) {
|
|
2292
|
-
super('', DataType.BOOKING, version$
|
|
2319
|
+
super('', DataType.BOOKING, version$m);
|
|
2293
2320
|
this.data = data;
|
|
2294
2321
|
}
|
|
2295
2322
|
getEntryCount() {
|
|
@@ -2297,7 +2324,7 @@ class BookingObject extends DataObject {
|
|
|
2297
2324
|
}
|
|
2298
2325
|
}
|
|
2299
2326
|
|
|
2300
|
-
const version$
|
|
2327
|
+
const version$l = new DataVersion(1, 0, 0, 0);
|
|
2301
2328
|
class PurchasePrice {
|
|
2302
2329
|
constructor(id, startdate, enddate, item, space, unit, price) {
|
|
2303
2330
|
this.id = id;
|
|
@@ -2322,18 +2349,18 @@ class SellingPrice {
|
|
|
2322
2349
|
}
|
|
2323
2350
|
class PurchasePriceObject extends DataObject {
|
|
2324
2351
|
constructor(data) {
|
|
2325
|
-
super('', DataType.PURCHASEPRICE, version$
|
|
2352
|
+
super('', DataType.PURCHASEPRICE, version$l);
|
|
2326
2353
|
this.data = data;
|
|
2327
2354
|
}
|
|
2328
2355
|
}
|
|
2329
2356
|
class SellingPriceObject extends DataObject {
|
|
2330
2357
|
constructor(data) {
|
|
2331
|
-
super('', DataType.SELLINGPRICE, version$
|
|
2358
|
+
super('', DataType.SELLINGPRICE, version$l);
|
|
2332
2359
|
this.data = data;
|
|
2333
2360
|
}
|
|
2334
2361
|
}
|
|
2335
2362
|
|
|
2336
|
-
const version$
|
|
2363
|
+
const version$k = new DataVersion(1, 0, 0, 0);
|
|
2337
2364
|
class ItemShort {
|
|
2338
2365
|
constructor(id, name, description, itemno, ean) {
|
|
2339
2366
|
this.id = id;
|
|
@@ -2345,7 +2372,7 @@ class ItemShort {
|
|
|
2345
2372
|
}
|
|
2346
2373
|
class ItemShortObject extends DataObject {
|
|
2347
2374
|
constructor(data) {
|
|
2348
|
-
super('', DataType.ITEMSHORT, version$
|
|
2375
|
+
super('', DataType.ITEMSHORT, version$k);
|
|
2349
2376
|
this.data = data;
|
|
2350
2377
|
}
|
|
2351
2378
|
getEntryCount() {
|
|
@@ -2353,7 +2380,7 @@ class ItemShortObject extends DataObject {
|
|
|
2353
2380
|
}
|
|
2354
2381
|
}
|
|
2355
2382
|
|
|
2356
|
-
const version$
|
|
2383
|
+
const version$j = new DataVersion(1, 0, 0, 0);
|
|
2357
2384
|
class Coupon {
|
|
2358
2385
|
constructor(id, type, created, activationcode, buyer, beneficiary, activated, activatedby, startdate, enddate, value, generatecount, itemno) {
|
|
2359
2386
|
this.id = id;
|
|
@@ -2373,12 +2400,12 @@ class Coupon {
|
|
|
2373
2400
|
}
|
|
2374
2401
|
class CouponObject extends DataObject {
|
|
2375
2402
|
constructor(data) {
|
|
2376
|
-
super('', DataType.COUPON, version$
|
|
2403
|
+
super('', DataType.COUPON, version$j);
|
|
2377
2404
|
this.data = data;
|
|
2378
2405
|
}
|
|
2379
2406
|
}
|
|
2380
2407
|
|
|
2381
|
-
const version$
|
|
2408
|
+
const version$i = new DataVersion(1, 0, 0, 0);
|
|
2382
2409
|
class BonData {
|
|
2383
2410
|
constructor(id, terminalid, additionaltext, errormessage, amount, cardtechnology, cardname, cardnumber, cardsequencenumber, cardholderauthentication, printoutneeded, tracenumber, tracenumberlongformat, vunumber, aidauthorisationattribute, receiptnumber, currencycode, dateday, datemonth, time) {
|
|
2384
2411
|
this.id = id;
|
|
@@ -2428,18 +2455,18 @@ class EndOfDayBon {
|
|
|
2428
2455
|
}
|
|
2429
2456
|
class BonObject extends DataObject {
|
|
2430
2457
|
constructor(data) {
|
|
2431
|
-
super('', DataType.BON, version$
|
|
2458
|
+
super('', DataType.BON, version$i);
|
|
2432
2459
|
this.data = data;
|
|
2433
2460
|
}
|
|
2434
2461
|
}
|
|
2435
2462
|
class EndOfDayBonObject extends DataObject {
|
|
2436
2463
|
constructor(data) {
|
|
2437
|
-
super('', DataType.ENDOFDAYBON, version$
|
|
2464
|
+
super('', DataType.ENDOFDAYBON, version$i);
|
|
2438
2465
|
this.data = data;
|
|
2439
2466
|
}
|
|
2440
2467
|
}
|
|
2441
2468
|
|
|
2442
|
-
const version$
|
|
2469
|
+
const version$h = new DataVersion(1, 0, 0, 0);
|
|
2443
2470
|
class ItemJournalEntry {
|
|
2444
2471
|
constructor(id, name, description, itemno, itemgroup, ean, coo, manufacturer, manufactureritemno, manufacturerean, proddetail, packaging, vat, currency, defaultunit, farmingmethod, producttype, price, quantity, total, tax) {
|
|
2445
2472
|
this.id = id;
|
|
@@ -2479,12 +2506,12 @@ class JournalEntry {
|
|
|
2479
2506
|
}
|
|
2480
2507
|
class JournalObject extends DataObject {
|
|
2481
2508
|
constructor(data) {
|
|
2482
|
-
super('', DataType.JOURNAL, version$
|
|
2509
|
+
super('', DataType.JOURNAL, version$h);
|
|
2483
2510
|
this.data = data;
|
|
2484
2511
|
}
|
|
2485
2512
|
}
|
|
2486
2513
|
|
|
2487
|
-
const version$
|
|
2514
|
+
const version$g = new DataVersion(1, 0, 0, 0);
|
|
2488
2515
|
class PreOrder {
|
|
2489
2516
|
constructor(id, stores, type, item, price, startdate, enddate, active, dayofweek, additionaltext, confirmationtext) {
|
|
2490
2517
|
this.id = id;
|
|
@@ -2516,18 +2543,18 @@ class PreOrderToCustomer {
|
|
|
2516
2543
|
}
|
|
2517
2544
|
class PreOrderToCustomerObject extends DataObject {
|
|
2518
2545
|
constructor(data) {
|
|
2519
|
-
super('', DataType.PREORDERTOCUSTOMER, version$
|
|
2546
|
+
super('', DataType.PREORDERTOCUSTOMER, version$g);
|
|
2520
2547
|
this.data = data;
|
|
2521
2548
|
}
|
|
2522
2549
|
}
|
|
2523
2550
|
class PreOrderObject extends DataObject {
|
|
2524
2551
|
constructor(data) {
|
|
2525
|
-
super('', DataType.PREORDER, version$
|
|
2552
|
+
super('', DataType.PREORDER, version$g);
|
|
2526
2553
|
this.data = data;
|
|
2527
2554
|
}
|
|
2528
2555
|
}
|
|
2529
2556
|
|
|
2530
|
-
const version$
|
|
2557
|
+
const version$f = new DataVersion(1, 0, 0, 0);
|
|
2531
2558
|
class CatalogGroup {
|
|
2532
2559
|
constructor(id, name, groups, inventory) {
|
|
2533
2560
|
this.id = id;
|
|
@@ -2544,7 +2571,7 @@ class Catalog {
|
|
|
2544
2571
|
}
|
|
2545
2572
|
class CatalogObject extends DataObject {
|
|
2546
2573
|
constructor(data) {
|
|
2547
|
-
super('', DataType.CATALOG, version$
|
|
2574
|
+
super('', DataType.CATALOG, version$f);
|
|
2548
2575
|
this.data = data;
|
|
2549
2576
|
}
|
|
2550
2577
|
getEntryCount() {
|
|
@@ -2552,31 +2579,31 @@ class CatalogObject extends DataObject {
|
|
|
2552
2579
|
}
|
|
2553
2580
|
}
|
|
2554
2581
|
|
|
2555
|
-
const version$
|
|
2582
|
+
const version$e = new DataVersion(1, 0, 0, 0);
|
|
2556
2583
|
class ShelfLabel {
|
|
2557
2584
|
constructor() {
|
|
2558
2585
|
}
|
|
2559
2586
|
}
|
|
2560
2587
|
class ESLObject extends DataObject {
|
|
2561
2588
|
constructor(data) {
|
|
2562
|
-
super('', DataType.SHELFLABEL, version$
|
|
2589
|
+
super('', DataType.SHELFLABEL, version$e);
|
|
2563
2590
|
this.data = data;
|
|
2564
2591
|
}
|
|
2565
2592
|
}
|
|
2566
2593
|
|
|
2567
|
-
const version$
|
|
2594
|
+
const version$d = new DataVersion(1, 0, 0, 0);
|
|
2568
2595
|
class ESLPool {
|
|
2569
2596
|
constructor() {
|
|
2570
2597
|
}
|
|
2571
2598
|
}
|
|
2572
2599
|
class ESLPoolObject extends DataObject {
|
|
2573
2600
|
constructor(data) {
|
|
2574
|
-
super('', DataType.ESLPOOL, version$
|
|
2601
|
+
super('', DataType.ESLPOOL, version$d);
|
|
2575
2602
|
this.data = data;
|
|
2576
2603
|
}
|
|
2577
2604
|
}
|
|
2578
2605
|
|
|
2579
|
-
const version$
|
|
2606
|
+
const version$c = new DataVersion(1, 0, 0, 0);
|
|
2580
2607
|
class ESLAssociation {
|
|
2581
2608
|
constructor(id, label, item, space) {
|
|
2582
2609
|
this.id = id;
|
|
@@ -2587,12 +2614,12 @@ class ESLAssociation {
|
|
|
2587
2614
|
}
|
|
2588
2615
|
class ESLAssociationObject extends DataObject {
|
|
2589
2616
|
constructor(data) {
|
|
2590
|
-
super('', DataType.ESLASSOCIATION, version$
|
|
2617
|
+
super('', DataType.ESLASSOCIATION, version$c);
|
|
2591
2618
|
this.data = data;
|
|
2592
2619
|
}
|
|
2593
2620
|
}
|
|
2594
2621
|
|
|
2595
|
-
const version$
|
|
2622
|
+
const version$b = new DataVersion(1, 0, 0, 0);
|
|
2596
2623
|
class EslTemplate {
|
|
2597
2624
|
constructor(id, name, mimetype, standard, width, height, data) {
|
|
2598
2625
|
this.id = id;
|
|
@@ -2606,7 +2633,7 @@ class EslTemplate {
|
|
|
2606
2633
|
}
|
|
2607
2634
|
class EslTemplateObject extends DataObject {
|
|
2608
2635
|
constructor(data) {
|
|
2609
|
-
super('', DataType.ESLTEMPLATE, version$
|
|
2636
|
+
super('', DataType.ESLTEMPLATE, version$b);
|
|
2610
2637
|
this.data = data;
|
|
2611
2638
|
}
|
|
2612
2639
|
getEntryCount() {
|
|
@@ -2614,7 +2641,7 @@ class EslTemplateObject extends DataObject {
|
|
|
2614
2641
|
}
|
|
2615
2642
|
}
|
|
2616
2643
|
|
|
2617
|
-
const version$
|
|
2644
|
+
const version$a = new DataVersion(1, 0, 0, 0);
|
|
2618
2645
|
class EslUpdate {
|
|
2619
2646
|
constructor(shelflabel, template, accessPoint) {
|
|
2620
2647
|
this.shelflabel = shelflabel;
|
|
@@ -2624,7 +2651,7 @@ class EslUpdate {
|
|
|
2624
2651
|
}
|
|
2625
2652
|
class EslUpdateObject extends DataObject {
|
|
2626
2653
|
constructor(data) {
|
|
2627
|
-
super('', DataType.ESLUPDATE, version$
|
|
2654
|
+
super('', DataType.ESLUPDATE, version$a);
|
|
2628
2655
|
this.data = data;
|
|
2629
2656
|
}
|
|
2630
2657
|
getEntryCount() {
|
|
@@ -2675,7 +2702,7 @@ var FieldType;
|
|
|
2675
2702
|
FieldType["text"] = "text";
|
|
2676
2703
|
})(FieldType || (FieldType = {}));
|
|
2677
2704
|
|
|
2678
|
-
const version$
|
|
2705
|
+
const version$9 = new DataVersion(1, 0, 0, 0);
|
|
2679
2706
|
class PaymentTerminal {
|
|
2680
2707
|
constructor(id, name, terminalID, wifiAddress, btAddress, ipAddress, port, manufacturer) {
|
|
2681
2708
|
this.id = id;
|
|
@@ -2690,7 +2717,7 @@ class PaymentTerminal {
|
|
|
2690
2717
|
}
|
|
2691
2718
|
class PaymentTerminalObject extends DataObject {
|
|
2692
2719
|
constructor(data) {
|
|
2693
|
-
super('', DataType.PAYMENTTERMINAL, version$
|
|
2720
|
+
super('', DataType.PAYMENTTERMINAL, version$9);
|
|
2694
2721
|
this.data = data;
|
|
2695
2722
|
}
|
|
2696
2723
|
getEntryCount() {
|
|
@@ -2705,7 +2732,7 @@ class PaymentTerminalShort {
|
|
|
2705
2732
|
}
|
|
2706
2733
|
class PaymentTerminalShortObject extends DataObject {
|
|
2707
2734
|
constructor(data) {
|
|
2708
|
-
super('', DataType.PAYMENTTERMINALSHORT, version$
|
|
2735
|
+
super('', DataType.PAYMENTTERMINALSHORT, version$9);
|
|
2709
2736
|
this.data = data;
|
|
2710
2737
|
}
|
|
2711
2738
|
getEntryCount() {
|
|
@@ -2713,7 +2740,7 @@ class PaymentTerminalShortObject extends DataObject {
|
|
|
2713
2740
|
}
|
|
2714
2741
|
}
|
|
2715
2742
|
|
|
2716
|
-
const version$
|
|
2743
|
+
const version$8 = new DataVersion(1, 0, 0, 0);
|
|
2717
2744
|
class Payment {
|
|
2718
2745
|
constructor(id, cartid, terminalid, created, state) {
|
|
2719
2746
|
this.id = id;
|
|
@@ -2725,7 +2752,7 @@ class Payment {
|
|
|
2725
2752
|
}
|
|
2726
2753
|
class PaymentObject extends DataObject {
|
|
2727
2754
|
constructor(data) {
|
|
2728
|
-
super('', DataType.PAYMENT, version$
|
|
2755
|
+
super('', DataType.PAYMENT, version$8);
|
|
2729
2756
|
this.data = data;
|
|
2730
2757
|
}
|
|
2731
2758
|
getEntryCount() {
|
|
@@ -2733,19 +2760,19 @@ class PaymentObject extends DataObject {
|
|
|
2733
2760
|
}
|
|
2734
2761
|
}
|
|
2735
2762
|
|
|
2736
|
-
const version$
|
|
2763
|
+
const version$7 = new DataVersion(1, 0, 0, 0);
|
|
2737
2764
|
class Label {
|
|
2738
2765
|
constructor() {
|
|
2739
2766
|
}
|
|
2740
2767
|
}
|
|
2741
2768
|
class LabelObject extends DataObject {
|
|
2742
2769
|
constructor(data) {
|
|
2743
|
-
super('', DataType.LABEL, version$
|
|
2770
|
+
super('', DataType.LABEL, version$7);
|
|
2744
2771
|
this.data = data;
|
|
2745
2772
|
}
|
|
2746
2773
|
}
|
|
2747
2774
|
|
|
2748
|
-
const version$
|
|
2775
|
+
const version$6 = new DataVersion(1, 0, 0, 0);
|
|
2749
2776
|
class Variables {
|
|
2750
2777
|
constructor(key, value) {
|
|
2751
2778
|
}
|
|
@@ -2756,12 +2783,12 @@ class PrintData {
|
|
|
2756
2783
|
}
|
|
2757
2784
|
class PrintLabelObject extends DataObject {
|
|
2758
2785
|
constructor(data) {
|
|
2759
|
-
super('', DataType.LABELPRINT, version$
|
|
2786
|
+
super('', DataType.LABELPRINT, version$6);
|
|
2760
2787
|
this.data = data;
|
|
2761
2788
|
}
|
|
2762
2789
|
}
|
|
2763
2790
|
|
|
2764
|
-
const version$
|
|
2791
|
+
const version$5 = new DataVersion(1, 0, 0, 0);
|
|
2765
2792
|
class PrinterProperties {
|
|
2766
2793
|
constructor() {
|
|
2767
2794
|
}
|
|
@@ -2772,24 +2799,24 @@ class Printer {
|
|
|
2772
2799
|
}
|
|
2773
2800
|
class PrinterObject extends DataObject {
|
|
2774
2801
|
constructor(data) {
|
|
2775
|
-
super('', DataType.PRINTER, version$
|
|
2802
|
+
super('', DataType.PRINTER, version$5);
|
|
2776
2803
|
this.data = data;
|
|
2777
2804
|
}
|
|
2778
2805
|
}
|
|
2779
2806
|
|
|
2780
|
-
const version$
|
|
2807
|
+
const version$4 = new DataVersion(1, 0, 0, 0);
|
|
2781
2808
|
class Queue {
|
|
2782
2809
|
constructor() {
|
|
2783
2810
|
}
|
|
2784
2811
|
}
|
|
2785
2812
|
class QueueObject extends DataObject {
|
|
2786
2813
|
constructor(data) {
|
|
2787
|
-
super('', DataType.QUEUE, version$
|
|
2814
|
+
super('', DataType.QUEUE, version$4);
|
|
2788
2815
|
this.data = data;
|
|
2789
2816
|
}
|
|
2790
2817
|
}
|
|
2791
2818
|
|
|
2792
|
-
const version$
|
|
2819
|
+
const version$3 = new DataVersion(1, 0, 0, 0);
|
|
2793
2820
|
class StatisticData {
|
|
2794
2821
|
constructor(id, name, value) {
|
|
2795
2822
|
this.id = id;
|
|
@@ -2799,7 +2826,7 @@ class StatisticData {
|
|
|
2799
2826
|
}
|
|
2800
2827
|
class StatisticObject extends DataObject {
|
|
2801
2828
|
constructor(data) {
|
|
2802
|
-
super('', DataType.STATISTIC, version$
|
|
2829
|
+
super('', DataType.STATISTIC, version$3);
|
|
2803
2830
|
this.data = data;
|
|
2804
2831
|
}
|
|
2805
2832
|
getEntryCount() {
|
|
@@ -2807,7 +2834,7 @@ class StatisticObject extends DataObject {
|
|
|
2807
2834
|
}
|
|
2808
2835
|
}
|
|
2809
2836
|
|
|
2810
|
-
const version = new DataVersion(1, 0, 0, 0);
|
|
2837
|
+
const version$2 = new DataVersion(1, 0, 0, 0);
|
|
2811
2838
|
class RTStateTopic {
|
|
2812
2839
|
constructor(id, name, topic) {
|
|
2813
2840
|
this.id = id;
|
|
@@ -2828,7 +2855,7 @@ class RTStateSubscription {
|
|
|
2828
2855
|
}
|
|
2829
2856
|
class RTStateObject extends DataObject {
|
|
2830
2857
|
constructor(subscriptions) {
|
|
2831
|
-
super('', DataType.REALTIMESUBSCRIPTION, version);
|
|
2858
|
+
super('', DataType.REALTIMESUBSCRIPTION, version$2);
|
|
2832
2859
|
this.subscriptions = subscriptions;
|
|
2833
2860
|
}
|
|
2834
2861
|
getEntryCount() {
|
|
@@ -2836,6 +2863,31 @@ class RTStateObject extends DataObject {
|
|
|
2836
2863
|
}
|
|
2837
2864
|
}
|
|
2838
2865
|
|
|
2866
|
+
const version$1 = new DataVersion(1, 0, 0, 0);
|
|
2867
|
+
class NetworkDevice {
|
|
2868
|
+
constructor(ipAddress, macAddress, manufacturer, type, subtype, firmwareVersion) {
|
|
2869
|
+
this.ipAddress = ipAddress;
|
|
2870
|
+
this.macAddress = macAddress;
|
|
2871
|
+
this.manufacturer = manufacturer;
|
|
2872
|
+
this.type = type;
|
|
2873
|
+
this.subtype = subtype;
|
|
2874
|
+
this.firmwareVersion = firmwareVersion;
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
const version = new DataVersion(1, 0, 0, 0);
|
|
2879
|
+
class ApDevice extends NetworkDevice {
|
|
2880
|
+
constructor(ipAddress, macAddress, manufacturer, model, firmwareVersion, ssid, bssid, channel, frequency, signalStrength, connectedClients) {
|
|
2881
|
+
super(ipAddress, macAddress, manufacturer, NetworkDeviceType.ACCESSPOINT, NetworkDeviceType.WIFI_ACCESSPOINT, firmwareVersion);
|
|
2882
|
+
this.ssid = ssid;
|
|
2883
|
+
this.bssid = bssid;
|
|
2884
|
+
this.channel = channel;
|
|
2885
|
+
this.frequency = frequency;
|
|
2886
|
+
this.signalStrength = signalStrength;
|
|
2887
|
+
this.connectedClients = connectedClients;
|
|
2888
|
+
}
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2839
2891
|
/*
|
|
2840
2892
|
* Public API Surface of captureid-datatypes
|
|
2841
2893
|
*/
|
|
@@ -2844,5 +2896,5 @@ class RTStateObject extends DataObject {
|
|
|
2844
2896
|
* Generated bundle index. Do not edit.
|
|
2845
2897
|
*/
|
|
2846
2898
|
|
|
2847
|
-
export { AccessPoint, AccessPointObject, Address, Address2Manufacturer, AddressObject, AddressToCompany, AddressToCompanyObject, AddressToManufacturerObject, AddressType, AddressTypeObject, Advertisement, AdvertisementImageType, AdvertisementImageTypeObject, AdvertisementObject, AttachmentType, AuthRequest, AuthResponse, AuthenticationData, AuthenticationObject, Bon, BonData, BonObject, Booking, BookingObject, BookingType, Building, BuildingAccess, BuildingAccessObject, BuildingObject, CalendarEntry, CalendarObject, CalendarType, Campaign, CampaignObject, CaptureidDatatypesService, Cart, CartItem, CartObject, Catalog, CatalogGroup, CatalogObject, CategoryNames, CategoryNamesObject, Chat, ChatObject, Client, ClientObject, Company, CompanyObject, CompanyPermissions, Context, Country, CountryObject, Coupon, CouponObject, CouponType, Currency, CurrencyObject, DashboardProfile, DashboardWidget, DataDto, DataObject, DataType, DataVersion, DatabaseEventType, Dimension, DimensionObject, EMailTemplateType, ESLAssociation, ESLAssociationObject, ESLObject, ESLPool, ESLPoolObject, EmailTemplates, EmailTemplatesObject, EndOfDayBon, EndOfDayBonObject, EnterpriseNode, EnterpriseObject, EslTemplate, EslTemplateObject, EslUpdate, EslUpdateObject, FAQ, FAQObject, FarmingMethod, FarmingMethodObject, FieldType, FileImport, FileImportObject, FileType, Filter, FilterEntries, FilterEntry, Floor, FloorObject, HEADER_ACCEPT_LANGUAGE, HEADER_APP_ID, HEADER_AUTHORIZATION, HEADER_CONFIG_TYPE, HEADER_CONTENT_TYPE, HEADER_CORRELATION_ID, HEADER_COUNT, HEADER_INTERNAL, HEADER_IPADDRESS, HEADER_LABEL_ID, HEADER_PAGE, HEADER_PRINTERNAME, HEADER_PRINTERNAMES, HEADER_PROCESS_ID, HEADER_REFRESH_TOKEN, HEADER_REQUEST_ID, HEADER_RESET_TOKEN, HEADER_SECRET, HEADER_TOKEN, Image, Image2Advertisement, Image2AdvertisementObject, ImageObject, ImageType, ImportType, Inventory, InventoryObject, Issue, Item, ItemDetail, ItemDetailObject, ItemGroup, ItemGroupObject, ItemJournalEntry, ItemObject, ItemProperties, ItemPropertiesObject, ItemProperty, ItemPropertyObject, ItemShort, ItemShortObject, JournalEntry, JournalObject, Keys, KeysObject, Label, LabelObject, Level, LevelObject, License, LicenseObject, Location, LocationObject, Logging, Management, ManagementObject, Manufacturer, ManufacturerObject, Menu, MenuObject, Message, MessageObject, MessageType, Module, ModuleObject, ModuleType, Notification, NotificationObject, Operators, PARAM_BOX_ID, PARAM_CART_ID, PARAM_COMPANY_ID, PARAM_CONTROLLER_ID, PARAM_STOCK_ID, PARAM_TERMINAL_ID, PARAM_USER_ID, Packaging, PackagingObject, Paging, PamentDTO, Payment, PaymentCommand, PaymentEvent, PaymentEventType, PaymentObject, PaymentState, PaymentStatus, PaymentTerminal, PaymentTerminalObject, PaymentTerminalShort, PaymentTerminalShortObject, PinState, PosEvent, PosEventType, PosTerminal, PosTerminalObject, PreOrder, PreOrderObject, PreOrderToCustomer, PreOrderToCustomerObject, PreOrderType, PrintData, PrintLabelObject, Printer, PrinterLanguage, PrinterManufacturer, PrinterObject, PrinterProperties, PropertyNames, PropertyNamesObject, PurchasePrice, PurchasePriceObject, QRCodeErrorCorrectionLevel, Queue, QueueObject, RTStateEventType, RTStateObject, RTStateSubscription, RTStateTopic, Rating, RatingObject, RegisterRequest, RegistrationState, Resource, Role, RoleObject, Room, RoomObject, SecurityProfile, SecurityProfileObject, SellingPrice, SellingPriceObject, Severity, Shelf, ShelfLabel, ShelfObject, Sorting, Sortings, Space, SpaceObject, StatisticData, StatisticObject, Status, Stock, StockObject, Store, StoreInformation, StoreInformationObject, StoreObject, StorePermissions, StoreTask, Subscription, SubscriptionObject, Supplier, SupplierObject, TaskType, Tenant, TenantObject, Ticket, TicketMessage, TicketMessageObject, TicketObject, TicketSenderType, TicketStatus, Topic, TopicObject, Unit, User, UserAccess, UserAccessObject, UserObject, UserprofileObject, VAT, VATHistory, VATObject, Variables, Vendor, VendorObject, VerifyRequest, WebTemplateType, WebTemplates, WebTemplatesObject, WidgetConfiguration, isLevel, isLevelArray, isShelf, isShelfArray, isSpace, isSpaceArray, menuitem };
|
|
2899
|
+
export { AccessPoint, AccessPointObject, Address, Address2Manufacturer, AddressObject, AddressToCompany, AddressToCompanyObject, AddressToManufacturerObject, AddressType, AddressTypeObject, Advertisement, AdvertisementImageType, AdvertisementImageTypeObject, AdvertisementObject, ApDevice, AttachmentType, AuthRequest, AuthResponse, AuthenticationData, AuthenticationObject, Bon, BonData, BonObject, Booking, BookingObject, BookingType, Building, BuildingAccess, BuildingAccessObject, BuildingObject, CalendarEntry, CalendarObject, CalendarType, Campaign, CampaignObject, CaptureidDatatypesService, Cart, CartItem, CartObject, Catalog, CatalogGroup, CatalogObject, CategoryNames, CategoryNamesObject, Chat, ChatObject, Client, ClientObject, Company, CompanyObject, CompanyPermissions, Context, Country, CountryObject, Coupon, CouponObject, CouponType, Currency, CurrencyObject, DashboardProfile, DashboardWidget, DataDto, DataObject, DataType, DataVersion, DatabaseEventType, Dimension, DimensionObject, EMailTemplateType, ESLAssociation, ESLAssociationObject, ESLObject, ESLPool, ESLPoolObject, EmailTemplates, EmailTemplatesObject, EndOfDayBon, EndOfDayBonObject, EnterpriseNode, EnterpriseObject, EslTemplate, EslTemplateObject, EslUpdate, EslUpdateObject, FAQ, FAQObject, FarmingMethod, FarmingMethodObject, FieldType, FileImport, FileImportObject, FileType, Filter, FilterEntries, FilterEntry, Floor, FloorObject, HEADER_ACCEPT_LANGUAGE, HEADER_APP_ID, HEADER_AUTHORIZATION, HEADER_CONFIG_TYPE, HEADER_CONTENT_TYPE, HEADER_CORRELATION_ID, HEADER_COUNT, HEADER_INTERNAL, HEADER_IPADDRESS, HEADER_LABEL_ID, HEADER_PAGE, HEADER_PRINTERNAME, HEADER_PRINTERNAMES, HEADER_PROCESS_ID, HEADER_REFRESH_TOKEN, HEADER_REQUEST_ID, HEADER_RESET_TOKEN, HEADER_SECRET, HEADER_TOKEN, Image, Image2Advertisement, Image2AdvertisementObject, ImageObject, ImageType, ImportType, Inventory, InventoryObject, Issue, Item, ItemDetail, ItemDetailObject, ItemGroup, ItemGroupObject, ItemJournalEntry, ItemObject, ItemProperties, ItemPropertiesObject, ItemProperty, ItemPropertyObject, ItemShort, ItemShortObject, JournalEntry, JournalObject, Keys, KeysObject, Label, LabelObject, Level, LevelObject, License, LicenseObject, Location, LocationObject, Logging, Management, ManagementObject, Manufacturer, ManufacturerObject, Menu, MenuObject, Message, MessageObject, MessageType, Module, ModuleObject, ModuleType, NetworkDevice, NetworkDeviceType, Notification, NotificationObject, Operators, PARAM_BOX_ID, PARAM_CART_ID, PARAM_COMPANY_ID, PARAM_CONTROLLER_ID, PARAM_STOCK_ID, PARAM_TERMINAL_ID, PARAM_USER_ID, Packaging, PackagingObject, Paging, PamentDTO, Payment, PaymentCommand, PaymentEvent, PaymentEventType, PaymentObject, PaymentState, PaymentStatus, PaymentTerminal, PaymentTerminalObject, PaymentTerminalShort, PaymentTerminalShortObject, PinState, PosEvent, PosEventType, PosTerminal, PosTerminalObject, PreOrder, PreOrderObject, PreOrderToCustomer, PreOrderToCustomerObject, PreOrderType, PrintData, PrintLabelObject, Printer, PrinterLanguage, PrinterManufacturer, PrinterObject, PrinterProperties, PropertyNames, PropertyNamesObject, PurchasePrice, PurchasePriceObject, QRCodeErrorCorrectionLevel, Queue, QueueObject, RTStateEventType, RTStateObject, RTStateSubscription, RTStateTopic, Rating, RatingObject, RegisterRequest, RegistrationState, Resource, Role, RoleObject, Room, RoomObject, SecurityProfile, SecurityProfileObject, SellingPrice, SellingPriceObject, Severity, Shelf, ShelfLabel, ShelfObject, Sorting, Sortings, Space, SpaceObject, StatisticData, StatisticObject, Status, Stock, StockObject, Store, StoreInformation, StoreInformationObject, StoreObject, StorePermissions, StoreTask, Subscription, SubscriptionObject, Supplier, SupplierObject, TaskType, Tenant, TenantObject, Ticket, TicketMessage, TicketMessageObject, TicketObject, TicketSenderType, TicketStatus, Topic, TopicObject, Unit, User, UserAccess, UserAccessObject, UserObject, UserprofileObject, VAT, VATHistory, VATObject, Variables, Vendor, VendorObject, VerifyRequest, WebTemplateType, WebTemplates, WebTemplatesObject, WidgetConfiguration, isLevel, isLevelArray, isShelf, isShelfArray, isSpace, isSpaceArray, menuitem };
|
|
2848
2900
|
//# sourceMappingURL=captureid-datatypes.mjs.map
|