@captureid/datatypes 1.0.79 → 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 +29 -1
- package/esm2022/lib/model/common/enterprise-object.mjs +22 -0
- 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 +4 -1
- package/fesm2022/captureid-datatypes.mjs +235 -163
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +15 -1
- package/lib/model/common/enterprise-object.d.ts +17 -0
- 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 +3 -0
|
@@ -123,6 +123,9 @@ var DataType;
|
|
|
123
123
|
DataType[DataType["ADDRESSTOMANUFACTURER"] = 105] = "ADDRESSTOMANUFACTURER";
|
|
124
124
|
DataType[DataType["KEYS"] = 106] = "KEYS";
|
|
125
125
|
DataType[DataType["CATALOG"] = 107] = "CATALOG";
|
|
126
|
+
DataType[DataType["ENTERPRISE_STRUCTURE"] = 108] = "ENTERPRISE_STRUCTURE";
|
|
127
|
+
DataType[DataType["BUILDINGS_STRUCTURE"] = 109] = "BUILDINGS_STRUCTURE";
|
|
128
|
+
DataType[DataType["LOCATIONS_STRUCTURE"] = 110] = "LOCATIONS_STRUCTURE";
|
|
126
129
|
})(DataType || (DataType = {}));
|
|
127
130
|
var BookingType;
|
|
128
131
|
(function (BookingType) {
|
|
@@ -789,6 +792,31 @@ var PosEventType;
|
|
|
789
792
|
}
|
|
790
793
|
PosEventType.values = values;
|
|
791
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 = {}));
|
|
792
820
|
|
|
793
821
|
const HEADER_TOKEN = 'x-token';
|
|
794
822
|
const HEADER_SECRET = 'x-secret';
|
|
@@ -837,10 +865,10 @@ class DataVersion {
|
|
|
837
865
|
}
|
|
838
866
|
}
|
|
839
867
|
|
|
840
|
-
const version$
|
|
868
|
+
const version$17 = new DataVersion(1, 0, 0, 0);
|
|
841
869
|
class DataDto {
|
|
842
870
|
constructor(data) {
|
|
843
|
-
this.version = version$
|
|
871
|
+
this.version = version$17;
|
|
844
872
|
if (data === undefined) {
|
|
845
873
|
this.data = [];
|
|
846
874
|
}
|
|
@@ -947,17 +975,17 @@ class VerifyRequest {
|
|
|
947
975
|
}
|
|
948
976
|
}
|
|
949
977
|
|
|
950
|
-
const version$
|
|
978
|
+
const version$16 = new DataVersion(1, 0, 0, 0);
|
|
951
979
|
class AuthenticationData {
|
|
952
980
|
}
|
|
953
981
|
class AuthenticationObject extends DataObject {
|
|
954
982
|
constructor(data) {
|
|
955
|
-
super('', DataType.AUTHENTICATION, version$
|
|
983
|
+
super('', DataType.AUTHENTICATION, version$16);
|
|
956
984
|
this.data = data;
|
|
957
985
|
}
|
|
958
986
|
}
|
|
959
987
|
|
|
960
|
-
const version$
|
|
988
|
+
const version$15 = new DataVersion(1, 0, 0, 0);
|
|
961
989
|
class User {
|
|
962
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) {
|
|
963
991
|
this.id = id;
|
|
@@ -992,7 +1020,7 @@ class User {
|
|
|
992
1020
|
}
|
|
993
1021
|
class UserObject extends DataObject {
|
|
994
1022
|
constructor(data) {
|
|
995
|
-
super('', DataType.USER, version$
|
|
1023
|
+
super('', DataType.USER, version$15);
|
|
996
1024
|
this.data = data;
|
|
997
1025
|
}
|
|
998
1026
|
}
|
|
@@ -1022,7 +1050,7 @@ var Context;
|
|
|
1022
1050
|
Context.values = values;
|
|
1023
1051
|
})(Context || (Context = {}));
|
|
1024
1052
|
|
|
1025
|
-
const version$
|
|
1053
|
+
const version$14 = new DataVersion(1, 0, 0, 0);
|
|
1026
1054
|
class Manufacturer {
|
|
1027
1055
|
constructor(id, name, email, website, addresses, code, ownerid, companyid) {
|
|
1028
1056
|
this.id = id;
|
|
@@ -1037,7 +1065,7 @@ class Manufacturer {
|
|
|
1037
1065
|
}
|
|
1038
1066
|
class ManufacturerObject extends DataObject {
|
|
1039
1067
|
constructor(data) {
|
|
1040
|
-
super('', DataType.MANUFACTURER, version$
|
|
1068
|
+
super('', DataType.MANUFACTURER, version$14);
|
|
1041
1069
|
this.data = data;
|
|
1042
1070
|
}
|
|
1043
1071
|
}
|
|
@@ -1051,12 +1079,12 @@ class Address2Manufacturer {
|
|
|
1051
1079
|
}
|
|
1052
1080
|
class AddressToManufacturerObject extends DataObject {
|
|
1053
1081
|
constructor(data) {
|
|
1054
|
-
super('', DataType.ADDRESSTOMANUFACTURER, version$
|
|
1082
|
+
super('', DataType.ADDRESSTOMANUFACTURER, version$14);
|
|
1055
1083
|
this.data = data;
|
|
1056
1084
|
}
|
|
1057
1085
|
}
|
|
1058
1086
|
|
|
1059
|
-
const version$
|
|
1087
|
+
const version$13 = new DataVersion(1, 0, 0, 0);
|
|
1060
1088
|
class License {
|
|
1061
1089
|
constructor(id, companyid, licensekey, validuntil) {
|
|
1062
1090
|
this.id = id;
|
|
@@ -1067,12 +1095,12 @@ class License {
|
|
|
1067
1095
|
}
|
|
1068
1096
|
class LicenseObject extends DataObject {
|
|
1069
1097
|
constructor(data) {
|
|
1070
|
-
super('', DataType.LICENSE, version$
|
|
1098
|
+
super('', DataType.LICENSE, version$13);
|
|
1071
1099
|
this.data = data;
|
|
1072
1100
|
}
|
|
1073
1101
|
}
|
|
1074
1102
|
|
|
1075
|
-
const version
|
|
1103
|
+
const version$12 = new DataVersion(1, 0, 0, 0);
|
|
1076
1104
|
class AddressType {
|
|
1077
1105
|
constructor(id, name, description) {
|
|
1078
1106
|
this.id = id;
|
|
@@ -1093,23 +1121,23 @@ class Address {
|
|
|
1093
1121
|
}
|
|
1094
1122
|
class AddressObject extends DataObject {
|
|
1095
1123
|
constructor(data) {
|
|
1096
|
-
super('', DataType.ADDRESS, version
|
|
1124
|
+
super('', DataType.ADDRESS, version$12);
|
|
1097
1125
|
this.data = data;
|
|
1098
1126
|
}
|
|
1099
1127
|
}
|
|
1100
1128
|
class AddressTypeObject extends DataObject {
|
|
1101
1129
|
constructor(data) {
|
|
1102
|
-
super('', DataType.ADDRESSTYPE, version
|
|
1130
|
+
super('', DataType.ADDRESSTYPE, version$12);
|
|
1103
1131
|
this.data = data;
|
|
1104
1132
|
}
|
|
1105
1133
|
}
|
|
1106
1134
|
|
|
1107
|
-
const version$
|
|
1135
|
+
const version$11 = new DataVersion(1, 0, 0, 0);
|
|
1108
1136
|
class WebTemplates {
|
|
1109
1137
|
}
|
|
1110
1138
|
class WebTemplatesObject extends DataObject {
|
|
1111
1139
|
constructor(data) {
|
|
1112
|
-
super('', DataType.WEBTEMPLATE, version$
|
|
1140
|
+
super('', DataType.WEBTEMPLATE, version$11);
|
|
1113
1141
|
this.data = data;
|
|
1114
1142
|
}
|
|
1115
1143
|
}
|
|
@@ -1117,7 +1145,7 @@ class EmailTemplates {
|
|
|
1117
1145
|
}
|
|
1118
1146
|
class EmailTemplatesObject extends DataObject {
|
|
1119
1147
|
constructor(data) {
|
|
1120
|
-
super('', DataType.EMAILTEMPLATE, version$
|
|
1148
|
+
super('', DataType.EMAILTEMPLATE, version$11);
|
|
1121
1149
|
this.data = data;
|
|
1122
1150
|
}
|
|
1123
1151
|
}
|
|
@@ -1125,12 +1153,12 @@ class Client {
|
|
|
1125
1153
|
}
|
|
1126
1154
|
class ClientObject extends DataObject {
|
|
1127
1155
|
constructor(data) {
|
|
1128
|
-
super('', DataType.CLIENT, version$
|
|
1156
|
+
super('', DataType.CLIENT, version$11);
|
|
1129
1157
|
this.data = data;
|
|
1130
1158
|
}
|
|
1131
1159
|
}
|
|
1132
1160
|
|
|
1133
|
-
const version$
|
|
1161
|
+
const version$10 = new DataVersion(1, 0, 0, 0);
|
|
1134
1162
|
class Currency {
|
|
1135
1163
|
constructor(id, name, isocode, symbol) {
|
|
1136
1164
|
this.id = id;
|
|
@@ -1141,12 +1169,12 @@ class Currency {
|
|
|
1141
1169
|
}
|
|
1142
1170
|
class CurrencyObject extends DataObject {
|
|
1143
1171
|
constructor(data) {
|
|
1144
|
-
super('', DataType.CURRENCY, version$
|
|
1172
|
+
super('', DataType.CURRENCY, version$10);
|
|
1145
1173
|
this.data = data;
|
|
1146
1174
|
}
|
|
1147
1175
|
}
|
|
1148
1176
|
|
|
1149
|
-
const version
|
|
1177
|
+
const version$$ = new DataVersion(1, 0, 0, 0);
|
|
1150
1178
|
class Country {
|
|
1151
1179
|
constructor(id, name, isocode) {
|
|
1152
1180
|
this.id = id;
|
|
@@ -1156,12 +1184,12 @@ class Country {
|
|
|
1156
1184
|
}
|
|
1157
1185
|
class CountryObject extends DataObject {
|
|
1158
1186
|
constructor(data) {
|
|
1159
|
-
super('', DataType.COUNTRY, version
|
|
1187
|
+
super('', DataType.COUNTRY, version$$);
|
|
1160
1188
|
this.data = data;
|
|
1161
1189
|
}
|
|
1162
1190
|
}
|
|
1163
1191
|
|
|
1164
|
-
const version$
|
|
1192
|
+
const version$_ = new DataVersion(1, 0, 0, 0);
|
|
1165
1193
|
class Image {
|
|
1166
1194
|
constructor(width, height, url, blob) {
|
|
1167
1195
|
this.width = width;
|
|
@@ -1172,7 +1200,7 @@ class Image {
|
|
|
1172
1200
|
}
|
|
1173
1201
|
class ImageObject extends DataObject {
|
|
1174
1202
|
constructor(data) {
|
|
1175
|
-
super('', DataType.IMAGE, version$
|
|
1203
|
+
super('', DataType.IMAGE, version$_);
|
|
1176
1204
|
this.data = data;
|
|
1177
1205
|
}
|
|
1178
1206
|
getEntryCount() {
|
|
@@ -1180,7 +1208,7 @@ class ImageObject extends DataObject {
|
|
|
1180
1208
|
}
|
|
1181
1209
|
}
|
|
1182
1210
|
|
|
1183
|
-
const version$
|
|
1211
|
+
const version$Z = new DataVersion(1, 0, 0, 0);
|
|
1184
1212
|
class Management {
|
|
1185
1213
|
constructor(id, tenantid, companyid, userid, roleid, storeid) {
|
|
1186
1214
|
this.id = id;
|
|
@@ -1193,12 +1221,12 @@ class Management {
|
|
|
1193
1221
|
}
|
|
1194
1222
|
class ManagementObject extends DataObject {
|
|
1195
1223
|
constructor(data) {
|
|
1196
|
-
super('', DataType.MANAGEMENT, version$
|
|
1224
|
+
super('', DataType.MANAGEMENT, version$Z);
|
|
1197
1225
|
this.data = data;
|
|
1198
1226
|
}
|
|
1199
1227
|
}
|
|
1200
1228
|
|
|
1201
|
-
const version$
|
|
1229
|
+
const version$Y = new DataVersion(1, 0, 0, 0);
|
|
1202
1230
|
class VAT {
|
|
1203
1231
|
constructor(id, name, value, description) {
|
|
1204
1232
|
this.id = id;
|
|
@@ -1209,7 +1237,7 @@ class VAT {
|
|
|
1209
1237
|
}
|
|
1210
1238
|
class VATObject extends DataObject {
|
|
1211
1239
|
constructor(data) {
|
|
1212
|
-
super('', DataType.VAT, version$
|
|
1240
|
+
super('', DataType.VAT, version$Y);
|
|
1213
1241
|
this.data = data;
|
|
1214
1242
|
}
|
|
1215
1243
|
}
|
|
@@ -1223,12 +1251,12 @@ class VATHistory {
|
|
|
1223
1251
|
}
|
|
1224
1252
|
}
|
|
1225
1253
|
|
|
1226
|
-
const version$
|
|
1254
|
+
const version$X = new DataVersion(1, 0, 0, 0);
|
|
1227
1255
|
class Module {
|
|
1228
1256
|
}
|
|
1229
1257
|
class ModuleObject extends DataObject {
|
|
1230
1258
|
constructor(data) {
|
|
1231
|
-
super('', DataType.MODULE, version$
|
|
1259
|
+
super('', DataType.MODULE, version$X);
|
|
1232
1260
|
this.data = data;
|
|
1233
1261
|
}
|
|
1234
1262
|
}
|
|
@@ -1241,12 +1269,12 @@ class Keys {
|
|
|
1241
1269
|
}
|
|
1242
1270
|
class KeysObject extends DataObject {
|
|
1243
1271
|
constructor(data) {
|
|
1244
|
-
super('', DataType.KEYS, version$
|
|
1272
|
+
super('', DataType.KEYS, version$X);
|
|
1245
1273
|
this.data = data;
|
|
1246
1274
|
}
|
|
1247
1275
|
}
|
|
1248
1276
|
|
|
1249
|
-
const version$
|
|
1277
|
+
const version$W = new DataVersion(1, 0, 0, 0);
|
|
1250
1278
|
class Location {
|
|
1251
1279
|
constructor(id, name, description, company, address, building) {
|
|
1252
1280
|
this.id = id;
|
|
@@ -1283,30 +1311,30 @@ class Room {
|
|
|
1283
1311
|
}
|
|
1284
1312
|
class LocationObject extends DataObject {
|
|
1285
1313
|
constructor(data) {
|
|
1286
|
-
super('', DataType.LOCATION, version$
|
|
1314
|
+
super('', DataType.LOCATION, version$W);
|
|
1287
1315
|
this.data = data;
|
|
1288
1316
|
}
|
|
1289
1317
|
}
|
|
1290
1318
|
class BuildingObject extends DataObject {
|
|
1291
1319
|
constructor(data) {
|
|
1292
|
-
super('', DataType.BUILDING, version$
|
|
1320
|
+
super('', DataType.BUILDING, version$W);
|
|
1293
1321
|
this.data = data;
|
|
1294
1322
|
}
|
|
1295
1323
|
}
|
|
1296
1324
|
class FloorObject extends DataObject {
|
|
1297
1325
|
constructor(data) {
|
|
1298
|
-
super('', DataType.FLOOR, version$
|
|
1326
|
+
super('', DataType.FLOOR, version$W);
|
|
1299
1327
|
this.data = data;
|
|
1300
1328
|
}
|
|
1301
1329
|
}
|
|
1302
1330
|
class RoomObject extends DataObject {
|
|
1303
1331
|
constructor(data) {
|
|
1304
|
-
super('', DataType.ROOM, version$
|
|
1332
|
+
super('', DataType.ROOM, version$W);
|
|
1305
1333
|
this.data = data;
|
|
1306
1334
|
}
|
|
1307
1335
|
}
|
|
1308
1336
|
|
|
1309
|
-
const version$
|
|
1337
|
+
const version$V = new DataVersion(1, 0, 0, 0);
|
|
1310
1338
|
class Company {
|
|
1311
1339
|
constructor(id, name, form, taxno, taxid, address, website, registerno, ownerid, companyid) {
|
|
1312
1340
|
this.id = id;
|
|
@@ -1331,18 +1359,18 @@ class AddressToCompany {
|
|
|
1331
1359
|
}
|
|
1332
1360
|
class CompanyObject extends DataObject {
|
|
1333
1361
|
constructor(data) {
|
|
1334
|
-
super('', DataType.COMPANY, version$
|
|
1362
|
+
super('', DataType.COMPANY, version$V);
|
|
1335
1363
|
this.data = data;
|
|
1336
1364
|
}
|
|
1337
1365
|
}
|
|
1338
1366
|
class AddressToCompanyObject extends DataObject {
|
|
1339
1367
|
constructor(data) {
|
|
1340
|
-
super('', DataType.ADDRESSTOCOMPANY, version$
|
|
1368
|
+
super('', DataType.ADDRESSTOCOMPANY, version$V);
|
|
1341
1369
|
this.data = data;
|
|
1342
1370
|
}
|
|
1343
1371
|
}
|
|
1344
1372
|
|
|
1345
|
-
const version$
|
|
1373
|
+
const version$U = new DataVersion(1, 0, 0, 0);
|
|
1346
1374
|
class Vendor {
|
|
1347
1375
|
constructor(id, name, website, description, ownerid, companyid) {
|
|
1348
1376
|
this.id = id;
|
|
@@ -1355,7 +1383,7 @@ class Vendor {
|
|
|
1355
1383
|
}
|
|
1356
1384
|
class VendorObject extends DataObject {
|
|
1357
1385
|
constructor(data) {
|
|
1358
|
-
super('', DataType.VENDOR, version$
|
|
1386
|
+
super('', DataType.VENDOR, version$U);
|
|
1359
1387
|
this.data = data;
|
|
1360
1388
|
}
|
|
1361
1389
|
getEntryCount() {
|
|
@@ -1363,7 +1391,7 @@ class VendorObject extends DataObject {
|
|
|
1363
1391
|
}
|
|
1364
1392
|
}
|
|
1365
1393
|
|
|
1366
|
-
const version$
|
|
1394
|
+
const version$T = new DataVersion(1, 0, 0, 0);
|
|
1367
1395
|
class AccessPoint {
|
|
1368
1396
|
constructor(id, ipaddress, wifiaddress, btaddress, macaddress, serial, model, softwareversion, hardwareversion, vendor) {
|
|
1369
1397
|
this.id = id;
|
|
@@ -1380,7 +1408,7 @@ class AccessPoint {
|
|
|
1380
1408
|
}
|
|
1381
1409
|
class AccessPointObject extends DataObject {
|
|
1382
1410
|
constructor(data) {
|
|
1383
|
-
super('', DataType.ACCESSPOINT, version$
|
|
1411
|
+
super('', DataType.ACCESSPOINT, version$T);
|
|
1384
1412
|
this.data = data;
|
|
1385
1413
|
}
|
|
1386
1414
|
getEntryCount() {
|
|
@@ -1388,7 +1416,7 @@ class AccessPointObject extends DataObject {
|
|
|
1388
1416
|
}
|
|
1389
1417
|
}
|
|
1390
1418
|
|
|
1391
|
-
const version$
|
|
1419
|
+
const version$S = new DataVersion(1, 0, 0, 0);
|
|
1392
1420
|
class Message {
|
|
1393
1421
|
constructor(messagetype, code, name, message) {
|
|
1394
1422
|
this.messagetype = messagetype;
|
|
@@ -1399,7 +1427,7 @@ class Message {
|
|
|
1399
1427
|
}
|
|
1400
1428
|
class MessageObject extends DataObject {
|
|
1401
1429
|
constructor(data) {
|
|
1402
|
-
super('', DataType.MESSAGE, version$
|
|
1430
|
+
super('', DataType.MESSAGE, version$S);
|
|
1403
1431
|
this.data = data;
|
|
1404
1432
|
}
|
|
1405
1433
|
getEntryCount() {
|
|
@@ -1407,7 +1435,7 @@ class MessageObject extends DataObject {
|
|
|
1407
1435
|
}
|
|
1408
1436
|
}
|
|
1409
1437
|
|
|
1410
|
-
const version$
|
|
1438
|
+
const version$R = new DataVersion(1, 0, 0, 0);
|
|
1411
1439
|
class CartItem {
|
|
1412
1440
|
constructor(item, amount, space, price, booked) {
|
|
1413
1441
|
this.item = item;
|
|
@@ -1431,7 +1459,7 @@ class Cart {
|
|
|
1431
1459
|
}
|
|
1432
1460
|
class CartObject extends DataObject {
|
|
1433
1461
|
constructor(data) {
|
|
1434
|
-
super('', DataType.CART, version$
|
|
1462
|
+
super('', DataType.CART, version$R);
|
|
1435
1463
|
this.data = data;
|
|
1436
1464
|
}
|
|
1437
1465
|
getEntryCount() {
|
|
@@ -1439,7 +1467,7 @@ class CartObject extends DataObject {
|
|
|
1439
1467
|
}
|
|
1440
1468
|
}
|
|
1441
1469
|
|
|
1442
|
-
const version$
|
|
1470
|
+
const version$Q = new DataVersion(1, 0, 0, 0);
|
|
1443
1471
|
class Role {
|
|
1444
1472
|
constructor(id, name, description) {
|
|
1445
1473
|
this.id = id;
|
|
@@ -1465,7 +1493,7 @@ class UserAccess {
|
|
|
1465
1493
|
}
|
|
1466
1494
|
class RoleObject extends DataObject {
|
|
1467
1495
|
constructor(data) {
|
|
1468
|
-
super('', DataType.ROLE, version$
|
|
1496
|
+
super('', DataType.ROLE, version$Q);
|
|
1469
1497
|
this.data = data;
|
|
1470
1498
|
}
|
|
1471
1499
|
getEntryCount() {
|
|
@@ -1474,7 +1502,7 @@ class RoleObject extends DataObject {
|
|
|
1474
1502
|
}
|
|
1475
1503
|
class UserAccessObject extends DataObject {
|
|
1476
1504
|
constructor(data) {
|
|
1477
|
-
super('', DataType.USERACCESS, version$
|
|
1505
|
+
super('', DataType.USERACCESS, version$Q);
|
|
1478
1506
|
this.data = data;
|
|
1479
1507
|
}
|
|
1480
1508
|
getEntryCount() {
|
|
@@ -1482,7 +1510,7 @@ class UserAccessObject extends DataObject {
|
|
|
1482
1510
|
}
|
|
1483
1511
|
}
|
|
1484
1512
|
|
|
1485
|
-
const version$
|
|
1513
|
+
const version$P = new DataVersion(1, 0, 0, 0);
|
|
1486
1514
|
class Supplier {
|
|
1487
1515
|
constructor(id, name, email, phone, website, addresses, code, ownerid, companyid) {
|
|
1488
1516
|
this.id = id;
|
|
@@ -1498,12 +1526,12 @@ class Supplier {
|
|
|
1498
1526
|
}
|
|
1499
1527
|
class SupplierObject extends DataObject {
|
|
1500
1528
|
constructor(data) {
|
|
1501
|
-
super('', DataType.SUPPLIER, version$
|
|
1529
|
+
super('', DataType.SUPPLIER, version$P);
|
|
1502
1530
|
this.data = data;
|
|
1503
1531
|
}
|
|
1504
1532
|
}
|
|
1505
1533
|
|
|
1506
|
-
const version$
|
|
1534
|
+
const version$O = new DataVersion(1, 0, 0, 0);
|
|
1507
1535
|
class Issue {
|
|
1508
1536
|
constructor(id, question, answer) {
|
|
1509
1537
|
this.id = id;
|
|
@@ -1520,12 +1548,12 @@ class FAQ {
|
|
|
1520
1548
|
}
|
|
1521
1549
|
class FAQObject extends DataObject {
|
|
1522
1550
|
constructor(data) {
|
|
1523
|
-
super('', DataType.FAQ, version$
|
|
1551
|
+
super('', DataType.FAQ, version$O);
|
|
1524
1552
|
this.data = data;
|
|
1525
1553
|
}
|
|
1526
1554
|
}
|
|
1527
1555
|
|
|
1528
|
-
const version$
|
|
1556
|
+
const version$N = new DataVersion(1, 0, 0, 0);
|
|
1529
1557
|
class FarmingMethod {
|
|
1530
1558
|
constructor(id, method) {
|
|
1531
1559
|
this.id = id;
|
|
@@ -1534,12 +1562,12 @@ class FarmingMethod {
|
|
|
1534
1562
|
}
|
|
1535
1563
|
class FarmingMethodObject extends DataObject {
|
|
1536
1564
|
constructor(data) {
|
|
1537
|
-
super('', DataType.FARMINGMETHOD, version$
|
|
1565
|
+
super('', DataType.FARMINGMETHOD, version$N);
|
|
1538
1566
|
this.data = data;
|
|
1539
1567
|
}
|
|
1540
1568
|
}
|
|
1541
1569
|
|
|
1542
|
-
const version$
|
|
1570
|
+
const version$M = new DataVersion(1, 0, 0, 0);
|
|
1543
1571
|
class Chat {
|
|
1544
1572
|
constructor(id, senderid, sendername, receiverid, receivername, message, timestamp) {
|
|
1545
1573
|
this.id = id;
|
|
@@ -1553,12 +1581,12 @@ class Chat {
|
|
|
1553
1581
|
}
|
|
1554
1582
|
class ChatObject extends DataObject {
|
|
1555
1583
|
constructor(data) {
|
|
1556
|
-
super('', DataType.CHAT, version$
|
|
1584
|
+
super('', DataType.CHAT, version$M);
|
|
1557
1585
|
this.data = data;
|
|
1558
1586
|
}
|
|
1559
1587
|
}
|
|
1560
1588
|
|
|
1561
|
-
const version$
|
|
1589
|
+
const version$L = new DataVersion(1, 0, 0, 0);
|
|
1562
1590
|
class TicketMessage {
|
|
1563
1591
|
constructor(id, ticketid, senderid, sendertype, attachmenttype, message, attachment, created) {
|
|
1564
1592
|
this.id = id;
|
|
@@ -1585,7 +1613,7 @@ class Ticket {
|
|
|
1585
1613
|
}
|
|
1586
1614
|
class TicketMessageObject extends DataObject {
|
|
1587
1615
|
constructor(data) {
|
|
1588
|
-
super('', DataType.TICKETMESSAGE, version$
|
|
1616
|
+
super('', DataType.TICKETMESSAGE, version$L);
|
|
1589
1617
|
this.data = data;
|
|
1590
1618
|
}
|
|
1591
1619
|
getEntryCount() {
|
|
@@ -1594,7 +1622,7 @@ class TicketMessageObject extends DataObject {
|
|
|
1594
1622
|
}
|
|
1595
1623
|
class TicketObject extends DataObject {
|
|
1596
1624
|
constructor(data) {
|
|
1597
|
-
super('', DataType.TICKET, version$
|
|
1625
|
+
super('', DataType.TICKET, version$L);
|
|
1598
1626
|
this.data = data;
|
|
1599
1627
|
}
|
|
1600
1628
|
getEntryCount() {
|
|
@@ -1602,17 +1630,17 @@ class TicketObject extends DataObject {
|
|
|
1602
1630
|
}
|
|
1603
1631
|
}
|
|
1604
1632
|
|
|
1605
|
-
const version$
|
|
1633
|
+
const version$K = new DataVersion(1, 0, 0, 0);
|
|
1606
1634
|
class Tenant {
|
|
1607
1635
|
}
|
|
1608
1636
|
class TenantObject extends DataObject {
|
|
1609
1637
|
constructor(data) {
|
|
1610
|
-
super('', DataType.TENANT, version$
|
|
1638
|
+
super('', DataType.TENANT, version$K);
|
|
1611
1639
|
this.data = data;
|
|
1612
1640
|
}
|
|
1613
1641
|
}
|
|
1614
1642
|
|
|
1615
|
-
const version$
|
|
1643
|
+
const version$J = new DataVersion(1, 0, 0, 0);
|
|
1616
1644
|
class FileImport {
|
|
1617
1645
|
constructor(id, filename, filetype, importtype, content) {
|
|
1618
1646
|
this.id = id;
|
|
@@ -1624,12 +1652,12 @@ class FileImport {
|
|
|
1624
1652
|
}
|
|
1625
1653
|
class FileImportObject extends DataObject {
|
|
1626
1654
|
constructor(data) {
|
|
1627
|
-
super('', DataType.FILEIMPORT, version$
|
|
1655
|
+
super('', DataType.FILEIMPORT, version$J);
|
|
1628
1656
|
this.data = data;
|
|
1629
1657
|
}
|
|
1630
1658
|
}
|
|
1631
1659
|
|
|
1632
|
-
const version$
|
|
1660
|
+
const version$I = new DataVersion(1, 0, 0, 0);
|
|
1633
1661
|
class BuildingAccess {
|
|
1634
1662
|
constructor(id, userid, buildingid) {
|
|
1635
1663
|
this.id = id;
|
|
@@ -1639,7 +1667,7 @@ class BuildingAccess {
|
|
|
1639
1667
|
}
|
|
1640
1668
|
class BuildingAccessObject extends DataObject {
|
|
1641
1669
|
constructor(data) {
|
|
1642
|
-
super('', DataType.BUILDINGACCESS, version$
|
|
1670
|
+
super('', DataType.BUILDINGACCESS, version$I);
|
|
1643
1671
|
this.data = data;
|
|
1644
1672
|
}
|
|
1645
1673
|
getEntryCount() {
|
|
@@ -1647,7 +1675,7 @@ class BuildingAccessObject extends DataObject {
|
|
|
1647
1675
|
}
|
|
1648
1676
|
}
|
|
1649
1677
|
|
|
1650
|
-
const version$
|
|
1678
|
+
const version$H = new DataVersion(1, 0, 0, 0);
|
|
1651
1679
|
class StoreTask {
|
|
1652
1680
|
constructor(id, type, name, description, active, duedate) {
|
|
1653
1681
|
this.id = id;
|
|
@@ -1675,7 +1703,7 @@ class Store {
|
|
|
1675
1703
|
}
|
|
1676
1704
|
class StoreObject extends DataObject {
|
|
1677
1705
|
constructor(data) {
|
|
1678
|
-
super('', DataType.STORE, version$
|
|
1706
|
+
super('', DataType.STORE, version$H);
|
|
1679
1707
|
this.data = data;
|
|
1680
1708
|
}
|
|
1681
1709
|
getEntryCount() {
|
|
@@ -1694,7 +1722,7 @@ class StoreInformation {
|
|
|
1694
1722
|
}
|
|
1695
1723
|
class StoreInformationObject extends DataObject {
|
|
1696
1724
|
constructor(data) {
|
|
1697
|
-
super('', DataType.STOREINFORMATION, version$
|
|
1725
|
+
super('', DataType.STOREINFORMATION, version$H);
|
|
1698
1726
|
this.data = data;
|
|
1699
1727
|
}
|
|
1700
1728
|
getEntryCount() {
|
|
@@ -1702,7 +1730,7 @@ class StoreInformationObject extends DataObject {
|
|
|
1702
1730
|
}
|
|
1703
1731
|
}
|
|
1704
1732
|
|
|
1705
|
-
const version$
|
|
1733
|
+
const version$G = new DataVersion(1, 0, 0, 0);
|
|
1706
1734
|
class CalendarEntry {
|
|
1707
1735
|
constructor(id, title, type, description, startdate, enddate) {
|
|
1708
1736
|
this.id = id;
|
|
@@ -1715,7 +1743,7 @@ class CalendarEntry {
|
|
|
1715
1743
|
}
|
|
1716
1744
|
class CalendarObject extends DataObject {
|
|
1717
1745
|
constructor(data) {
|
|
1718
|
-
super('', DataType.CALENDAR, version$
|
|
1746
|
+
super('', DataType.CALENDAR, version$G);
|
|
1719
1747
|
this.data = data;
|
|
1720
1748
|
}
|
|
1721
1749
|
getEntryCount() {
|
|
@@ -1723,7 +1751,7 @@ class CalendarObject extends DataObject {
|
|
|
1723
1751
|
}
|
|
1724
1752
|
}
|
|
1725
1753
|
|
|
1726
|
-
const version$
|
|
1754
|
+
const version$F = new DataVersion(1, 0, 0, 0);
|
|
1727
1755
|
class PosTerminal {
|
|
1728
1756
|
constructor(id, name, description, terminalid, wifiAddress, btAddress, ipAddress, serialnumber, manufacturer, paymentterminalid) {
|
|
1729
1757
|
this.id = id;
|
|
@@ -1740,7 +1768,7 @@ class PosTerminal {
|
|
|
1740
1768
|
}
|
|
1741
1769
|
class PosTerminalObject extends DataObject {
|
|
1742
1770
|
constructor(data) {
|
|
1743
|
-
super('', DataType.POSTERMINAL, version$
|
|
1771
|
+
super('', DataType.POSTERMINAL, version$F);
|
|
1744
1772
|
this.data = data;
|
|
1745
1773
|
}
|
|
1746
1774
|
getEntryCount() {
|
|
@@ -1748,7 +1776,7 @@ class PosTerminalObject extends DataObject {
|
|
|
1748
1776
|
}
|
|
1749
1777
|
}
|
|
1750
1778
|
|
|
1751
|
-
const version$
|
|
1779
|
+
const version$E = new DataVersion(1, 0, 0, 0);
|
|
1752
1780
|
class WidgetConfiguration {
|
|
1753
1781
|
constructor(id, name, value) {
|
|
1754
1782
|
this.id = id;
|
|
@@ -1772,12 +1800,31 @@ class DashboardProfile {
|
|
|
1772
1800
|
}
|
|
1773
1801
|
class UserprofileObject extends DataObject {
|
|
1774
1802
|
constructor(data) {
|
|
1775
|
-
super('', DataType.USERPROFILE, version$
|
|
1803
|
+
super('', DataType.USERPROFILE, version$E);
|
|
1776
1804
|
this.data = data;
|
|
1777
1805
|
}
|
|
1778
1806
|
}
|
|
1779
1807
|
|
|
1780
|
-
const version$
|
|
1808
|
+
const version$D = new DataVersion(1, 0, 0, 0);
|
|
1809
|
+
class EnterpriseNode {
|
|
1810
|
+
constructor(label, expanded, data, children) {
|
|
1811
|
+
this.label = label;
|
|
1812
|
+
this.expanded = expanded;
|
|
1813
|
+
this.data = data;
|
|
1814
|
+
this.children = children || [];
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
class EnterpriseObject extends DataObject {
|
|
1818
|
+
constructor(data) {
|
|
1819
|
+
super('', DataType.ENTERPRISE_STRUCTURE, version$D);
|
|
1820
|
+
this.data = data;
|
|
1821
|
+
}
|
|
1822
|
+
getEntryCount() {
|
|
1823
|
+
return this.data.length;
|
|
1824
|
+
}
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
const version$C = new DataVersion(1, 0, 0, 0);
|
|
1781
1828
|
class StorePermissions {
|
|
1782
1829
|
constructor(canRead = false, canWrite = false, canOperate = false) {
|
|
1783
1830
|
this.canRead = canRead;
|
|
@@ -1804,12 +1851,12 @@ class SecurityProfile {
|
|
|
1804
1851
|
}
|
|
1805
1852
|
class SecurityProfileObject extends DataObject {
|
|
1806
1853
|
constructor(data) {
|
|
1807
|
-
super('', DataType.SECURITYPROFILE, version$
|
|
1854
|
+
super('', DataType.SECURITYPROFILE, version$C);
|
|
1808
1855
|
this.data = data;
|
|
1809
1856
|
}
|
|
1810
1857
|
}
|
|
1811
1858
|
|
|
1812
|
-
const version$
|
|
1859
|
+
const version$B = new DataVersion(1, 0, 0, 0);
|
|
1813
1860
|
class menuitem {
|
|
1814
1861
|
constructor(id, name, resource, children, icon, link) {
|
|
1815
1862
|
this.id = id;
|
|
@@ -1834,7 +1881,7 @@ class Menu {
|
|
|
1834
1881
|
}
|
|
1835
1882
|
class MenuObject extends DataObject {
|
|
1836
1883
|
constructor(data) {
|
|
1837
|
-
super('', DataType.MENU, version$
|
|
1884
|
+
super('', DataType.MENU, version$B);
|
|
1838
1885
|
this.data = data;
|
|
1839
1886
|
}
|
|
1840
1887
|
getEntryCount() {
|
|
@@ -1842,7 +1889,7 @@ class MenuObject extends DataObject {
|
|
|
1842
1889
|
}
|
|
1843
1890
|
}
|
|
1844
1891
|
|
|
1845
|
-
const version$
|
|
1892
|
+
const version$A = new DataVersion(1, 0, 0, 0);
|
|
1846
1893
|
class Topic {
|
|
1847
1894
|
constructor(id, name, description, active) {
|
|
1848
1895
|
this.id = id;
|
|
@@ -1853,7 +1900,7 @@ class Topic {
|
|
|
1853
1900
|
}
|
|
1854
1901
|
class TopicObject extends DataObject {
|
|
1855
1902
|
constructor(data) {
|
|
1856
|
-
super('', DataType.TOPIC, version$
|
|
1903
|
+
super('', DataType.TOPIC, version$A);
|
|
1857
1904
|
this.data = data;
|
|
1858
1905
|
}
|
|
1859
1906
|
getEntryCount() {
|
|
@@ -1861,7 +1908,7 @@ class TopicObject extends DataObject {
|
|
|
1861
1908
|
}
|
|
1862
1909
|
}
|
|
1863
1910
|
|
|
1864
|
-
const version$
|
|
1911
|
+
const version$z = new DataVersion(1, 0, 0, 0);
|
|
1865
1912
|
class Subscription {
|
|
1866
1913
|
constructor(id, user, token, topics) {
|
|
1867
1914
|
this.id = id;
|
|
@@ -1872,7 +1919,7 @@ class Subscription {
|
|
|
1872
1919
|
}
|
|
1873
1920
|
class SubscriptionObject extends DataObject {
|
|
1874
1921
|
constructor(data) {
|
|
1875
|
-
super('', DataType.SUBSCRIPTION, version$
|
|
1922
|
+
super('', DataType.SUBSCRIPTION, version$z);
|
|
1876
1923
|
this.data = data;
|
|
1877
1924
|
}
|
|
1878
1925
|
getEntryCount() {
|
|
@@ -1880,7 +1927,7 @@ class SubscriptionObject extends DataObject {
|
|
|
1880
1927
|
}
|
|
1881
1928
|
}
|
|
1882
1929
|
|
|
1883
|
-
const version$
|
|
1930
|
+
const version$y = new DataVersion(1, 0, 0, 0);
|
|
1884
1931
|
class Notification {
|
|
1885
1932
|
constructor(id, name, description, icon, image, action, topics, title, text, startdate, starttime, endtime) {
|
|
1886
1933
|
this.id = id;
|
|
@@ -1899,7 +1946,7 @@ class Notification {
|
|
|
1899
1946
|
}
|
|
1900
1947
|
class NotificationObject extends DataObject {
|
|
1901
1948
|
constructor(data) {
|
|
1902
|
-
super('', DataType.NOTIFICATION, version$
|
|
1949
|
+
super('', DataType.NOTIFICATION, version$y);
|
|
1903
1950
|
this.data = data;
|
|
1904
1951
|
}
|
|
1905
1952
|
getEntryCount() {
|
|
@@ -1907,7 +1954,7 @@ class NotificationObject extends DataObject {
|
|
|
1907
1954
|
}
|
|
1908
1955
|
}
|
|
1909
1956
|
|
|
1910
|
-
const version$
|
|
1957
|
+
const version$x = new DataVersion(1, 0, 0, 0);
|
|
1911
1958
|
class AdvertisementImageType {
|
|
1912
1959
|
constructor(id, name) {
|
|
1913
1960
|
this.id = id;
|
|
@@ -1916,7 +1963,7 @@ class AdvertisementImageType {
|
|
|
1916
1963
|
}
|
|
1917
1964
|
class AdvertisementImageTypeObject extends DataObject {
|
|
1918
1965
|
constructor(data) {
|
|
1919
|
-
super('', DataType.ADVERTISEMENT_IMAGE_TYPE, version$
|
|
1966
|
+
super('', DataType.ADVERTISEMENT_IMAGE_TYPE, version$x);
|
|
1920
1967
|
this.data = data;
|
|
1921
1968
|
}
|
|
1922
1969
|
getEntryCount() {
|
|
@@ -1933,7 +1980,7 @@ class Image2Advertisement {
|
|
|
1933
1980
|
}
|
|
1934
1981
|
class Image2AdvertisementObject extends DataObject {
|
|
1935
1982
|
constructor(data) {
|
|
1936
|
-
super('', DataType.IMAGETOADVERTISEMENT, version$
|
|
1983
|
+
super('', DataType.IMAGETOADVERTISEMENT, version$x);
|
|
1937
1984
|
this.data = data;
|
|
1938
1985
|
}
|
|
1939
1986
|
getEntryCount() {
|
|
@@ -1954,7 +2001,7 @@ class Advertisement {
|
|
|
1954
2001
|
}
|
|
1955
2002
|
class AdvertisementObject extends DataObject {
|
|
1956
2003
|
constructor(data) {
|
|
1957
|
-
super('', DataType.ADVERTISEMENT, version$
|
|
2004
|
+
super('', DataType.ADVERTISEMENT, version$x);
|
|
1958
2005
|
this.data = data;
|
|
1959
2006
|
}
|
|
1960
2007
|
getEntryCount() {
|
|
@@ -1962,7 +2009,7 @@ class AdvertisementObject extends DataObject {
|
|
|
1962
2009
|
}
|
|
1963
2010
|
}
|
|
1964
2011
|
|
|
1965
|
-
const version$
|
|
2012
|
+
const version$w = new DataVersion(1, 0, 0, 0);
|
|
1966
2013
|
class Campaign {
|
|
1967
2014
|
constructor(id, name, description, tenant, company, promotiondate, startdate, enddate, advertisements) {
|
|
1968
2015
|
this.id = id;
|
|
@@ -1978,7 +2025,7 @@ class Campaign {
|
|
|
1978
2025
|
}
|
|
1979
2026
|
class CampaignObject extends DataObject {
|
|
1980
2027
|
constructor(data) {
|
|
1981
|
-
super('', DataType.CAMPAIGN, version$
|
|
2028
|
+
super('', DataType.CAMPAIGN, version$w);
|
|
1982
2029
|
this.data = data;
|
|
1983
2030
|
}
|
|
1984
2031
|
getEntryCount() {
|
|
@@ -1986,7 +2033,7 @@ class CampaignObject extends DataObject {
|
|
|
1986
2033
|
}
|
|
1987
2034
|
}
|
|
1988
2035
|
|
|
1989
|
-
const version$
|
|
2036
|
+
const version$v = new DataVersion(1, 0, 0, 0);
|
|
1990
2037
|
class Dimension {
|
|
1991
2038
|
constructor(width, height, depth) {
|
|
1992
2039
|
this.width = width;
|
|
@@ -1996,7 +2043,7 @@ class Dimension {
|
|
|
1996
2043
|
}
|
|
1997
2044
|
class DimensionObject extends DataObject {
|
|
1998
2045
|
constructor(data) {
|
|
1999
|
-
super('', DataType.DIMENSION, version$
|
|
2046
|
+
super('', DataType.DIMENSION, version$v);
|
|
2000
2047
|
this.data = data;
|
|
2001
2048
|
}
|
|
2002
2049
|
getEntryCount() {
|
|
@@ -2004,7 +2051,7 @@ class DimensionObject extends DataObject {
|
|
|
2004
2051
|
}
|
|
2005
2052
|
}
|
|
2006
2053
|
|
|
2007
|
-
const version$
|
|
2054
|
+
const version$u = new DataVersion(1, 0, 0, 0);
|
|
2008
2055
|
class Inventory {
|
|
2009
2056
|
constructor(id, amount, unit, weight, space, item) {
|
|
2010
2057
|
this.id = id;
|
|
@@ -2020,7 +2067,7 @@ class Inventory {
|
|
|
2020
2067
|
}
|
|
2021
2068
|
class InventoryObject extends DataObject {
|
|
2022
2069
|
constructor(data) {
|
|
2023
|
-
super('', DataType.INVENTORY, version$
|
|
2070
|
+
super('', DataType.INVENTORY, version$u);
|
|
2024
2071
|
this.data = data;
|
|
2025
2072
|
}
|
|
2026
2073
|
getEntryCount() {
|
|
@@ -2028,7 +2075,7 @@ class InventoryObject extends DataObject {
|
|
|
2028
2075
|
}
|
|
2029
2076
|
}
|
|
2030
2077
|
|
|
2031
|
-
const version$
|
|
2078
|
+
const version$t = new DataVersion(1, 0, 0, 0);
|
|
2032
2079
|
class ItemGroup {
|
|
2033
2080
|
constructor(id, name, description, code) {
|
|
2034
2081
|
this.id = id;
|
|
@@ -2039,7 +2086,7 @@ class ItemGroup {
|
|
|
2039
2086
|
}
|
|
2040
2087
|
class ItemGroupObject extends DataObject {
|
|
2041
2088
|
constructor(data) {
|
|
2042
|
-
super('', DataType.ITEMGROUP, version$
|
|
2089
|
+
super('', DataType.ITEMGROUP, version$t);
|
|
2043
2090
|
this.data = data;
|
|
2044
2091
|
}
|
|
2045
2092
|
}
|
|
@@ -2050,12 +2097,12 @@ class Item {
|
|
|
2050
2097
|
}
|
|
2051
2098
|
class ItemObject extends DataObject {
|
|
2052
2099
|
constructor(data) {
|
|
2053
|
-
super('', DataType.ITEM, version$
|
|
2100
|
+
super('', DataType.ITEM, version$t);
|
|
2054
2101
|
this.data = data;
|
|
2055
2102
|
}
|
|
2056
2103
|
}
|
|
2057
2104
|
|
|
2058
|
-
const version$
|
|
2105
|
+
const version$s = new DataVersion(1, 0, 0, 0);
|
|
2059
2106
|
class PropertyNames {
|
|
2060
2107
|
constructor(id, name) {
|
|
2061
2108
|
this.id = id;
|
|
@@ -2064,7 +2111,7 @@ class PropertyNames {
|
|
|
2064
2111
|
}
|
|
2065
2112
|
class PropertyNamesObject extends DataObject {
|
|
2066
2113
|
constructor(data) {
|
|
2067
|
-
super('', DataType.PROPERTYNAMES, version$
|
|
2114
|
+
super('', DataType.PROPERTYNAMES, version$s);
|
|
2068
2115
|
this.data = data;
|
|
2069
2116
|
}
|
|
2070
2117
|
}
|
|
@@ -2078,7 +2125,7 @@ class CategoryNames {
|
|
|
2078
2125
|
}
|
|
2079
2126
|
class CategoryNamesObject extends DataObject {
|
|
2080
2127
|
constructor(data) {
|
|
2081
|
-
super('', DataType.CATEGORYNAMES, version$
|
|
2128
|
+
super('', DataType.CATEGORYNAMES, version$s);
|
|
2082
2129
|
this.data = data;
|
|
2083
2130
|
}
|
|
2084
2131
|
}
|
|
@@ -2093,7 +2140,7 @@ class ItemProperty {
|
|
|
2093
2140
|
}
|
|
2094
2141
|
class ItemPropertyObject extends DataObject {
|
|
2095
2142
|
constructor(data) {
|
|
2096
|
-
super('', DataType.ITEMPROPERTY, version$
|
|
2143
|
+
super('', DataType.ITEMPROPERTY, version$s);
|
|
2097
2144
|
this.data = data;
|
|
2098
2145
|
}
|
|
2099
2146
|
}
|
|
@@ -2107,12 +2154,12 @@ class ItemProperties {
|
|
|
2107
2154
|
}
|
|
2108
2155
|
class ItemPropertiesObject extends DataObject {
|
|
2109
2156
|
constructor(data) {
|
|
2110
|
-
super('', DataType.ITEMPROPERTIES, version$
|
|
2157
|
+
super('', DataType.ITEMPROPERTIES, version$s);
|
|
2111
2158
|
this.data = data;
|
|
2112
2159
|
}
|
|
2113
2160
|
}
|
|
2114
2161
|
|
|
2115
|
-
const version$
|
|
2162
|
+
const version$r = new DataVersion(1, 0, 0, 0);
|
|
2116
2163
|
class ItemDetail {
|
|
2117
2164
|
constructor(item, stock, sellingprice, inventory) {
|
|
2118
2165
|
this.item = item;
|
|
@@ -2123,12 +2170,12 @@ class ItemDetail {
|
|
|
2123
2170
|
}
|
|
2124
2171
|
class ItemDetailObject extends DataObject {
|
|
2125
2172
|
constructor(data) {
|
|
2126
|
-
super('', DataType.ITEMDETAIL, version$
|
|
2173
|
+
super('', DataType.ITEMDETAIL, version$r);
|
|
2127
2174
|
this.data = data;
|
|
2128
2175
|
}
|
|
2129
2176
|
}
|
|
2130
2177
|
|
|
2131
|
-
const version$
|
|
2178
|
+
const version$q = new DataVersion(1, 0, 0, 0);
|
|
2132
2179
|
class Packaging {
|
|
2133
2180
|
constructor(id, name, dimensions, code) {
|
|
2134
2181
|
this.id = id;
|
|
@@ -2139,12 +2186,12 @@ class Packaging {
|
|
|
2139
2186
|
}
|
|
2140
2187
|
class PackagingObject extends DataObject {
|
|
2141
2188
|
constructor(data) {
|
|
2142
|
-
super('', DataType.PACKAGING, version$
|
|
2189
|
+
super('', DataType.PACKAGING, version$q);
|
|
2143
2190
|
this.data = data;
|
|
2144
2191
|
}
|
|
2145
2192
|
}
|
|
2146
2193
|
|
|
2147
|
-
const version$
|
|
2194
|
+
const version$p = new DataVersion(1, 0, 0, 0);
|
|
2148
2195
|
class Rating {
|
|
2149
2196
|
constructor(id, value, comment) {
|
|
2150
2197
|
this.id = id;
|
|
@@ -2154,12 +2201,12 @@ class Rating {
|
|
|
2154
2201
|
}
|
|
2155
2202
|
class RatingObject extends DataObject {
|
|
2156
2203
|
constructor(data) {
|
|
2157
|
-
super('', DataType.RATING, version$
|
|
2204
|
+
super('', DataType.RATING, version$p);
|
|
2158
2205
|
this.data = data;
|
|
2159
2206
|
}
|
|
2160
2207
|
}
|
|
2161
2208
|
|
|
2162
|
-
const version$
|
|
2209
|
+
const version$o = new DataVersion(1, 0, 0, 0);
|
|
2163
2210
|
class Space {
|
|
2164
2211
|
constructor(id, name, description, dimension) {
|
|
2165
2212
|
this.id = id;
|
|
@@ -2186,7 +2233,7 @@ class Shelf {
|
|
|
2186
2233
|
}
|
|
2187
2234
|
class ShelfObject extends DataObject {
|
|
2188
2235
|
constructor(data) {
|
|
2189
|
-
super('', DataType.SHELF, version$
|
|
2236
|
+
super('', DataType.SHELF, version$o);
|
|
2190
2237
|
this.data = data;
|
|
2191
2238
|
}
|
|
2192
2239
|
getEntryCount() {
|
|
@@ -2195,7 +2242,7 @@ class ShelfObject extends DataObject {
|
|
|
2195
2242
|
}
|
|
2196
2243
|
class SpaceObject extends DataObject {
|
|
2197
2244
|
constructor(data) {
|
|
2198
|
-
super('', DataType.SPACE, version$
|
|
2245
|
+
super('', DataType.SPACE, version$o);
|
|
2199
2246
|
this.data = data;
|
|
2200
2247
|
}
|
|
2201
2248
|
getEntryCount() {
|
|
@@ -2204,7 +2251,7 @@ class SpaceObject extends DataObject {
|
|
|
2204
2251
|
}
|
|
2205
2252
|
class LevelObject extends DataObject {
|
|
2206
2253
|
constructor(data) {
|
|
2207
|
-
super('', DataType.LEVEL, version$
|
|
2254
|
+
super('', DataType.LEVEL, version$o);
|
|
2208
2255
|
this.data = data;
|
|
2209
2256
|
}
|
|
2210
2257
|
getEntryCount() {
|
|
@@ -2230,7 +2277,7 @@ function isShelf(value) {
|
|
|
2230
2277
|
return value && value.levels !== undefined;
|
|
2231
2278
|
}
|
|
2232
2279
|
|
|
2233
|
-
const version$
|
|
2280
|
+
const version$n = new DataVersion(1, 0, 0, 0);
|
|
2234
2281
|
class Stock {
|
|
2235
2282
|
constructor(id, name, room, shelf, row, ownerid, companyid) {
|
|
2236
2283
|
this.id = id;
|
|
@@ -2244,7 +2291,7 @@ class Stock {
|
|
|
2244
2291
|
}
|
|
2245
2292
|
class StockObject extends DataObject {
|
|
2246
2293
|
constructor(data) {
|
|
2247
|
-
super('', DataType.STOCK, version$
|
|
2294
|
+
super('', DataType.STOCK, version$n);
|
|
2248
2295
|
this.data = data;
|
|
2249
2296
|
}
|
|
2250
2297
|
getEntryCount() {
|
|
@@ -2252,7 +2299,7 @@ class StockObject extends DataObject {
|
|
|
2252
2299
|
}
|
|
2253
2300
|
}
|
|
2254
2301
|
|
|
2255
|
-
const version$
|
|
2302
|
+
const version$m = new DataVersion(1, 0, 0, 0);
|
|
2256
2303
|
class Booking {
|
|
2257
2304
|
constructor(id, amount, unit, space, userid, item, bookingtype, purchaseprice, sellingprice, created) {
|
|
2258
2305
|
this.id = id;
|
|
@@ -2269,7 +2316,7 @@ class Booking {
|
|
|
2269
2316
|
}
|
|
2270
2317
|
class BookingObject extends DataObject {
|
|
2271
2318
|
constructor(data) {
|
|
2272
|
-
super('', DataType.BOOKING, version$
|
|
2319
|
+
super('', DataType.BOOKING, version$m);
|
|
2273
2320
|
this.data = data;
|
|
2274
2321
|
}
|
|
2275
2322
|
getEntryCount() {
|
|
@@ -2277,7 +2324,7 @@ class BookingObject extends DataObject {
|
|
|
2277
2324
|
}
|
|
2278
2325
|
}
|
|
2279
2326
|
|
|
2280
|
-
const version$
|
|
2327
|
+
const version$l = new DataVersion(1, 0, 0, 0);
|
|
2281
2328
|
class PurchasePrice {
|
|
2282
2329
|
constructor(id, startdate, enddate, item, space, unit, price) {
|
|
2283
2330
|
this.id = id;
|
|
@@ -2302,18 +2349,18 @@ class SellingPrice {
|
|
|
2302
2349
|
}
|
|
2303
2350
|
class PurchasePriceObject extends DataObject {
|
|
2304
2351
|
constructor(data) {
|
|
2305
|
-
super('', DataType.PURCHASEPRICE, version$
|
|
2352
|
+
super('', DataType.PURCHASEPRICE, version$l);
|
|
2306
2353
|
this.data = data;
|
|
2307
2354
|
}
|
|
2308
2355
|
}
|
|
2309
2356
|
class SellingPriceObject extends DataObject {
|
|
2310
2357
|
constructor(data) {
|
|
2311
|
-
super('', DataType.SELLINGPRICE, version$
|
|
2358
|
+
super('', DataType.SELLINGPRICE, version$l);
|
|
2312
2359
|
this.data = data;
|
|
2313
2360
|
}
|
|
2314
2361
|
}
|
|
2315
2362
|
|
|
2316
|
-
const version$
|
|
2363
|
+
const version$k = new DataVersion(1, 0, 0, 0);
|
|
2317
2364
|
class ItemShort {
|
|
2318
2365
|
constructor(id, name, description, itemno, ean) {
|
|
2319
2366
|
this.id = id;
|
|
@@ -2325,7 +2372,7 @@ class ItemShort {
|
|
|
2325
2372
|
}
|
|
2326
2373
|
class ItemShortObject extends DataObject {
|
|
2327
2374
|
constructor(data) {
|
|
2328
|
-
super('', DataType.ITEMSHORT, version$
|
|
2375
|
+
super('', DataType.ITEMSHORT, version$k);
|
|
2329
2376
|
this.data = data;
|
|
2330
2377
|
}
|
|
2331
2378
|
getEntryCount() {
|
|
@@ -2333,7 +2380,7 @@ class ItemShortObject extends DataObject {
|
|
|
2333
2380
|
}
|
|
2334
2381
|
}
|
|
2335
2382
|
|
|
2336
|
-
const version$
|
|
2383
|
+
const version$j = new DataVersion(1, 0, 0, 0);
|
|
2337
2384
|
class Coupon {
|
|
2338
2385
|
constructor(id, type, created, activationcode, buyer, beneficiary, activated, activatedby, startdate, enddate, value, generatecount, itemno) {
|
|
2339
2386
|
this.id = id;
|
|
@@ -2353,12 +2400,12 @@ class Coupon {
|
|
|
2353
2400
|
}
|
|
2354
2401
|
class CouponObject extends DataObject {
|
|
2355
2402
|
constructor(data) {
|
|
2356
|
-
super('', DataType.COUPON, version$
|
|
2403
|
+
super('', DataType.COUPON, version$j);
|
|
2357
2404
|
this.data = data;
|
|
2358
2405
|
}
|
|
2359
2406
|
}
|
|
2360
2407
|
|
|
2361
|
-
const version$
|
|
2408
|
+
const version$i = new DataVersion(1, 0, 0, 0);
|
|
2362
2409
|
class BonData {
|
|
2363
2410
|
constructor(id, terminalid, additionaltext, errormessage, amount, cardtechnology, cardname, cardnumber, cardsequencenumber, cardholderauthentication, printoutneeded, tracenumber, tracenumberlongformat, vunumber, aidauthorisationattribute, receiptnumber, currencycode, dateday, datemonth, time) {
|
|
2364
2411
|
this.id = id;
|
|
@@ -2408,18 +2455,18 @@ class EndOfDayBon {
|
|
|
2408
2455
|
}
|
|
2409
2456
|
class BonObject extends DataObject {
|
|
2410
2457
|
constructor(data) {
|
|
2411
|
-
super('', DataType.BON, version$
|
|
2458
|
+
super('', DataType.BON, version$i);
|
|
2412
2459
|
this.data = data;
|
|
2413
2460
|
}
|
|
2414
2461
|
}
|
|
2415
2462
|
class EndOfDayBonObject extends DataObject {
|
|
2416
2463
|
constructor(data) {
|
|
2417
|
-
super('', DataType.ENDOFDAYBON, version$
|
|
2464
|
+
super('', DataType.ENDOFDAYBON, version$i);
|
|
2418
2465
|
this.data = data;
|
|
2419
2466
|
}
|
|
2420
2467
|
}
|
|
2421
2468
|
|
|
2422
|
-
const version$
|
|
2469
|
+
const version$h = new DataVersion(1, 0, 0, 0);
|
|
2423
2470
|
class ItemJournalEntry {
|
|
2424
2471
|
constructor(id, name, description, itemno, itemgroup, ean, coo, manufacturer, manufactureritemno, manufacturerean, proddetail, packaging, vat, currency, defaultunit, farmingmethod, producttype, price, quantity, total, tax) {
|
|
2425
2472
|
this.id = id;
|
|
@@ -2459,12 +2506,12 @@ class JournalEntry {
|
|
|
2459
2506
|
}
|
|
2460
2507
|
class JournalObject extends DataObject {
|
|
2461
2508
|
constructor(data) {
|
|
2462
|
-
super('', DataType.JOURNAL, version$
|
|
2509
|
+
super('', DataType.JOURNAL, version$h);
|
|
2463
2510
|
this.data = data;
|
|
2464
2511
|
}
|
|
2465
2512
|
}
|
|
2466
2513
|
|
|
2467
|
-
const version$
|
|
2514
|
+
const version$g = new DataVersion(1, 0, 0, 0);
|
|
2468
2515
|
class PreOrder {
|
|
2469
2516
|
constructor(id, stores, type, item, price, startdate, enddate, active, dayofweek, additionaltext, confirmationtext) {
|
|
2470
2517
|
this.id = id;
|
|
@@ -2496,18 +2543,18 @@ class PreOrderToCustomer {
|
|
|
2496
2543
|
}
|
|
2497
2544
|
class PreOrderToCustomerObject extends DataObject {
|
|
2498
2545
|
constructor(data) {
|
|
2499
|
-
super('', DataType.PREORDERTOCUSTOMER, version$
|
|
2546
|
+
super('', DataType.PREORDERTOCUSTOMER, version$g);
|
|
2500
2547
|
this.data = data;
|
|
2501
2548
|
}
|
|
2502
2549
|
}
|
|
2503
2550
|
class PreOrderObject extends DataObject {
|
|
2504
2551
|
constructor(data) {
|
|
2505
|
-
super('', DataType.PREORDER, version$
|
|
2552
|
+
super('', DataType.PREORDER, version$g);
|
|
2506
2553
|
this.data = data;
|
|
2507
2554
|
}
|
|
2508
2555
|
}
|
|
2509
2556
|
|
|
2510
|
-
const version$
|
|
2557
|
+
const version$f = new DataVersion(1, 0, 0, 0);
|
|
2511
2558
|
class CatalogGroup {
|
|
2512
2559
|
constructor(id, name, groups, inventory) {
|
|
2513
2560
|
this.id = id;
|
|
@@ -2524,7 +2571,7 @@ class Catalog {
|
|
|
2524
2571
|
}
|
|
2525
2572
|
class CatalogObject extends DataObject {
|
|
2526
2573
|
constructor(data) {
|
|
2527
|
-
super('', DataType.CATALOG, version$
|
|
2574
|
+
super('', DataType.CATALOG, version$f);
|
|
2528
2575
|
this.data = data;
|
|
2529
2576
|
}
|
|
2530
2577
|
getEntryCount() {
|
|
@@ -2532,31 +2579,31 @@ class CatalogObject extends DataObject {
|
|
|
2532
2579
|
}
|
|
2533
2580
|
}
|
|
2534
2581
|
|
|
2535
|
-
const version$
|
|
2582
|
+
const version$e = new DataVersion(1, 0, 0, 0);
|
|
2536
2583
|
class ShelfLabel {
|
|
2537
2584
|
constructor() {
|
|
2538
2585
|
}
|
|
2539
2586
|
}
|
|
2540
2587
|
class ESLObject extends DataObject {
|
|
2541
2588
|
constructor(data) {
|
|
2542
|
-
super('', DataType.SHELFLABEL, version$
|
|
2589
|
+
super('', DataType.SHELFLABEL, version$e);
|
|
2543
2590
|
this.data = data;
|
|
2544
2591
|
}
|
|
2545
2592
|
}
|
|
2546
2593
|
|
|
2547
|
-
const version$
|
|
2594
|
+
const version$d = new DataVersion(1, 0, 0, 0);
|
|
2548
2595
|
class ESLPool {
|
|
2549
2596
|
constructor() {
|
|
2550
2597
|
}
|
|
2551
2598
|
}
|
|
2552
2599
|
class ESLPoolObject extends DataObject {
|
|
2553
2600
|
constructor(data) {
|
|
2554
|
-
super('', DataType.ESLPOOL, version$
|
|
2601
|
+
super('', DataType.ESLPOOL, version$d);
|
|
2555
2602
|
this.data = data;
|
|
2556
2603
|
}
|
|
2557
2604
|
}
|
|
2558
2605
|
|
|
2559
|
-
const version$
|
|
2606
|
+
const version$c = new DataVersion(1, 0, 0, 0);
|
|
2560
2607
|
class ESLAssociation {
|
|
2561
2608
|
constructor(id, label, item, space) {
|
|
2562
2609
|
this.id = id;
|
|
@@ -2567,12 +2614,12 @@ class ESLAssociation {
|
|
|
2567
2614
|
}
|
|
2568
2615
|
class ESLAssociationObject extends DataObject {
|
|
2569
2616
|
constructor(data) {
|
|
2570
|
-
super('', DataType.ESLASSOCIATION, version$
|
|
2617
|
+
super('', DataType.ESLASSOCIATION, version$c);
|
|
2571
2618
|
this.data = data;
|
|
2572
2619
|
}
|
|
2573
2620
|
}
|
|
2574
2621
|
|
|
2575
|
-
const version$
|
|
2622
|
+
const version$b = new DataVersion(1, 0, 0, 0);
|
|
2576
2623
|
class EslTemplate {
|
|
2577
2624
|
constructor(id, name, mimetype, standard, width, height, data) {
|
|
2578
2625
|
this.id = id;
|
|
@@ -2586,7 +2633,7 @@ class EslTemplate {
|
|
|
2586
2633
|
}
|
|
2587
2634
|
class EslTemplateObject extends DataObject {
|
|
2588
2635
|
constructor(data) {
|
|
2589
|
-
super('', DataType.ESLTEMPLATE, version$
|
|
2636
|
+
super('', DataType.ESLTEMPLATE, version$b);
|
|
2590
2637
|
this.data = data;
|
|
2591
2638
|
}
|
|
2592
2639
|
getEntryCount() {
|
|
@@ -2594,7 +2641,7 @@ class EslTemplateObject extends DataObject {
|
|
|
2594
2641
|
}
|
|
2595
2642
|
}
|
|
2596
2643
|
|
|
2597
|
-
const version$
|
|
2644
|
+
const version$a = new DataVersion(1, 0, 0, 0);
|
|
2598
2645
|
class EslUpdate {
|
|
2599
2646
|
constructor(shelflabel, template, accessPoint) {
|
|
2600
2647
|
this.shelflabel = shelflabel;
|
|
@@ -2604,7 +2651,7 @@ class EslUpdate {
|
|
|
2604
2651
|
}
|
|
2605
2652
|
class EslUpdateObject extends DataObject {
|
|
2606
2653
|
constructor(data) {
|
|
2607
|
-
super('', DataType.ESLUPDATE, version$
|
|
2654
|
+
super('', DataType.ESLUPDATE, version$a);
|
|
2608
2655
|
this.data = data;
|
|
2609
2656
|
}
|
|
2610
2657
|
getEntryCount() {
|
|
@@ -2655,7 +2702,7 @@ var FieldType;
|
|
|
2655
2702
|
FieldType["text"] = "text";
|
|
2656
2703
|
})(FieldType || (FieldType = {}));
|
|
2657
2704
|
|
|
2658
|
-
const version$
|
|
2705
|
+
const version$9 = new DataVersion(1, 0, 0, 0);
|
|
2659
2706
|
class PaymentTerminal {
|
|
2660
2707
|
constructor(id, name, terminalID, wifiAddress, btAddress, ipAddress, port, manufacturer) {
|
|
2661
2708
|
this.id = id;
|
|
@@ -2670,7 +2717,7 @@ class PaymentTerminal {
|
|
|
2670
2717
|
}
|
|
2671
2718
|
class PaymentTerminalObject extends DataObject {
|
|
2672
2719
|
constructor(data) {
|
|
2673
|
-
super('', DataType.PAYMENTTERMINAL, version$
|
|
2720
|
+
super('', DataType.PAYMENTTERMINAL, version$9);
|
|
2674
2721
|
this.data = data;
|
|
2675
2722
|
}
|
|
2676
2723
|
getEntryCount() {
|
|
@@ -2685,7 +2732,7 @@ class PaymentTerminalShort {
|
|
|
2685
2732
|
}
|
|
2686
2733
|
class PaymentTerminalShortObject extends DataObject {
|
|
2687
2734
|
constructor(data) {
|
|
2688
|
-
super('', DataType.PAYMENTTERMINALSHORT, version$
|
|
2735
|
+
super('', DataType.PAYMENTTERMINALSHORT, version$9);
|
|
2689
2736
|
this.data = data;
|
|
2690
2737
|
}
|
|
2691
2738
|
getEntryCount() {
|
|
@@ -2693,7 +2740,7 @@ class PaymentTerminalShortObject extends DataObject {
|
|
|
2693
2740
|
}
|
|
2694
2741
|
}
|
|
2695
2742
|
|
|
2696
|
-
const version$
|
|
2743
|
+
const version$8 = new DataVersion(1, 0, 0, 0);
|
|
2697
2744
|
class Payment {
|
|
2698
2745
|
constructor(id, cartid, terminalid, created, state) {
|
|
2699
2746
|
this.id = id;
|
|
@@ -2705,7 +2752,7 @@ class Payment {
|
|
|
2705
2752
|
}
|
|
2706
2753
|
class PaymentObject extends DataObject {
|
|
2707
2754
|
constructor(data) {
|
|
2708
|
-
super('', DataType.PAYMENT, version$
|
|
2755
|
+
super('', DataType.PAYMENT, version$8);
|
|
2709
2756
|
this.data = data;
|
|
2710
2757
|
}
|
|
2711
2758
|
getEntryCount() {
|
|
@@ -2713,19 +2760,19 @@ class PaymentObject extends DataObject {
|
|
|
2713
2760
|
}
|
|
2714
2761
|
}
|
|
2715
2762
|
|
|
2716
|
-
const version$
|
|
2763
|
+
const version$7 = new DataVersion(1, 0, 0, 0);
|
|
2717
2764
|
class Label {
|
|
2718
2765
|
constructor() {
|
|
2719
2766
|
}
|
|
2720
2767
|
}
|
|
2721
2768
|
class LabelObject extends DataObject {
|
|
2722
2769
|
constructor(data) {
|
|
2723
|
-
super('', DataType.LABEL, version$
|
|
2770
|
+
super('', DataType.LABEL, version$7);
|
|
2724
2771
|
this.data = data;
|
|
2725
2772
|
}
|
|
2726
2773
|
}
|
|
2727
2774
|
|
|
2728
|
-
const version$
|
|
2775
|
+
const version$6 = new DataVersion(1, 0, 0, 0);
|
|
2729
2776
|
class Variables {
|
|
2730
2777
|
constructor(key, value) {
|
|
2731
2778
|
}
|
|
@@ -2736,12 +2783,12 @@ class PrintData {
|
|
|
2736
2783
|
}
|
|
2737
2784
|
class PrintLabelObject extends DataObject {
|
|
2738
2785
|
constructor(data) {
|
|
2739
|
-
super('', DataType.LABELPRINT, version$
|
|
2786
|
+
super('', DataType.LABELPRINT, version$6);
|
|
2740
2787
|
this.data = data;
|
|
2741
2788
|
}
|
|
2742
2789
|
}
|
|
2743
2790
|
|
|
2744
|
-
const version$
|
|
2791
|
+
const version$5 = new DataVersion(1, 0, 0, 0);
|
|
2745
2792
|
class PrinterProperties {
|
|
2746
2793
|
constructor() {
|
|
2747
2794
|
}
|
|
@@ -2752,24 +2799,24 @@ class Printer {
|
|
|
2752
2799
|
}
|
|
2753
2800
|
class PrinterObject extends DataObject {
|
|
2754
2801
|
constructor(data) {
|
|
2755
|
-
super('', DataType.PRINTER, version$
|
|
2802
|
+
super('', DataType.PRINTER, version$5);
|
|
2756
2803
|
this.data = data;
|
|
2757
2804
|
}
|
|
2758
2805
|
}
|
|
2759
2806
|
|
|
2760
|
-
const version$
|
|
2807
|
+
const version$4 = new DataVersion(1, 0, 0, 0);
|
|
2761
2808
|
class Queue {
|
|
2762
2809
|
constructor() {
|
|
2763
2810
|
}
|
|
2764
2811
|
}
|
|
2765
2812
|
class QueueObject extends DataObject {
|
|
2766
2813
|
constructor(data) {
|
|
2767
|
-
super('', DataType.QUEUE, version$
|
|
2814
|
+
super('', DataType.QUEUE, version$4);
|
|
2768
2815
|
this.data = data;
|
|
2769
2816
|
}
|
|
2770
2817
|
}
|
|
2771
2818
|
|
|
2772
|
-
const version$
|
|
2819
|
+
const version$3 = new DataVersion(1, 0, 0, 0);
|
|
2773
2820
|
class StatisticData {
|
|
2774
2821
|
constructor(id, name, value) {
|
|
2775
2822
|
this.id = id;
|
|
@@ -2779,7 +2826,7 @@ class StatisticData {
|
|
|
2779
2826
|
}
|
|
2780
2827
|
class StatisticObject extends DataObject {
|
|
2781
2828
|
constructor(data) {
|
|
2782
|
-
super('', DataType.STATISTIC, version$
|
|
2829
|
+
super('', DataType.STATISTIC, version$3);
|
|
2783
2830
|
this.data = data;
|
|
2784
2831
|
}
|
|
2785
2832
|
getEntryCount() {
|
|
@@ -2787,7 +2834,7 @@ class StatisticObject extends DataObject {
|
|
|
2787
2834
|
}
|
|
2788
2835
|
}
|
|
2789
2836
|
|
|
2790
|
-
const version = new DataVersion(1, 0, 0, 0);
|
|
2837
|
+
const version$2 = new DataVersion(1, 0, 0, 0);
|
|
2791
2838
|
class RTStateTopic {
|
|
2792
2839
|
constructor(id, name, topic) {
|
|
2793
2840
|
this.id = id;
|
|
@@ -2808,7 +2855,7 @@ class RTStateSubscription {
|
|
|
2808
2855
|
}
|
|
2809
2856
|
class RTStateObject extends DataObject {
|
|
2810
2857
|
constructor(subscriptions) {
|
|
2811
|
-
super('', DataType.REALTIMESUBSCRIPTION, version);
|
|
2858
|
+
super('', DataType.REALTIMESUBSCRIPTION, version$2);
|
|
2812
2859
|
this.subscriptions = subscriptions;
|
|
2813
2860
|
}
|
|
2814
2861
|
getEntryCount() {
|
|
@@ -2816,6 +2863,31 @@ class RTStateObject extends DataObject {
|
|
|
2816
2863
|
}
|
|
2817
2864
|
}
|
|
2818
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
|
+
|
|
2819
2891
|
/*
|
|
2820
2892
|
* Public API Surface of captureid-datatypes
|
|
2821
2893
|
*/
|
|
@@ -2824,5 +2896,5 @@ class RTStateObject extends DataObject {
|
|
|
2824
2896
|
* Generated bundle index. Do not edit.
|
|
2825
2897
|
*/
|
|
2826
2898
|
|
|
2827
|
-
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, 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 };
|
|
2828
2900
|
//# sourceMappingURL=captureid-datatypes.mjs.map
|