@captureid/datatypes 0.0.63 → 0.0.65

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.
@@ -70,7 +70,9 @@ var DataType;
70
70
  DataType[DataType["ITEMDETAIL"] = 52] = "ITEMDETAIL";
71
71
  DataType[DataType["ESLASSOCIATION"] = 53] = "ESLASSOCIATION";
72
72
  DataType[DataType["ESLUPDATE"] = 54] = "ESLUPDATE";
73
- DataType[DataType["ESLTEMPLATE"] = 55] = "ESLTEMPLATE";
73
+ DataType[DataType["MESSAGE"] = 55] = "MESSAGE";
74
+ DataType[DataType["ESLTEMPLATE"] = 56] = "ESLTEMPLATE";
75
+ DataType[DataType["ITEMSHORT"] = 57] = "ITEMSHORT";
74
76
  })(DataType || (DataType = {}));
75
77
  var BookingType;
76
78
  (function (BookingType) {
@@ -300,6 +302,28 @@ var LoggingLevel;
300
302
  }
301
303
  LoggingLevel.values = values;
302
304
  })(LoggingLevel || (LoggingLevel = {}));
305
+ var MessageType;
306
+ (function (MessageType) {
307
+ MessageType[MessageType["ERROR"] = 1] = "ERROR";
308
+ MessageType[MessageType["NOTIFICATION"] = 2] = "NOTIFICATION";
309
+ MessageType[MessageType["EXCEPTION"] = 3] = "EXCEPTION";
310
+ })(MessageType || (MessageType = {}));
311
+ (function (MessageType) {
312
+ function valueOf(str) {
313
+ return MessageType[str];
314
+ }
315
+ MessageType.valueOf = valueOf;
316
+ function values() {
317
+ let res = [];
318
+ for (const value in Object.values(MessageType)) {
319
+ if (isNaN(Object.values(MessageType)[value]) && typeof (Object.values(MessageType)[value]) !== 'function') {
320
+ res.push(Object.values(MessageType)[value]);
321
+ }
322
+ }
323
+ return res;
324
+ }
325
+ MessageType.values = values;
326
+ })(MessageType || (MessageType = {}));
303
327
 
304
328
  class Logging {
305
329
  constructor(level, message, exception, timestamp) {
@@ -320,10 +344,10 @@ class DataVersion {
320
344
  }
321
345
  }
322
346
 
323
- const version$y = new DataVersion(1, 0, 0, 0);
347
+ const version$A = new DataVersion(1, 0, 0, 0);
324
348
  class DataDto {
325
349
  constructor(data) {
326
- this.version = version$y;
350
+ this.version = version$A;
327
351
  if (data === undefined) {
328
352
  this.data = [];
329
353
  }
@@ -407,17 +431,17 @@ class VerifyRequest {
407
431
  }
408
432
  }
409
433
 
410
- const version$x = new DataVersion(1, 0, 0, 0);
434
+ const version$z = new DataVersion(1, 0, 0, 0);
411
435
  class AuthenticationData {
412
436
  }
413
437
  class AuthenticationObject extends DataObject {
414
438
  constructor(data) {
415
- super('', DataType.AUTHENTICATION, version$x);
439
+ super('', DataType.AUTHENTICATION, version$z);
416
440
  this.data = data;
417
441
  }
418
442
  }
419
443
 
420
- const version$w = new DataVersion(1, 0, 0, 0);
444
+ const version$y = new DataVersion(1, 0, 0, 0);
421
445
  class User {
422
446
  constructor(id, firstname, lastname, email, role, phone, mobile, city, zipcode, street, no, country, state, dateOfBirth, avatarImg, context, credentialsNonExpired) {
423
447
  this.firstname = firstname;
@@ -440,7 +464,7 @@ class User {
440
464
  }
441
465
  class UserObject extends DataObject {
442
466
  constructor(data) {
443
- super('', DataType.USER, version$w);
467
+ super('', DataType.USER, version$y);
444
468
  this.data = data;
445
469
  }
446
470
  }
@@ -470,7 +494,7 @@ var Context;
470
494
  Context.values = values;
471
495
  })(Context || (Context = {}));
472
496
 
473
- const version$v = new DataVersion(1, 0, 0, 0);
497
+ const version$x = new DataVersion(1, 0, 0, 0);
474
498
  class Manufacturer {
475
499
  constructor(id, name, addresses) {
476
500
  this.id = id;
@@ -480,12 +504,12 @@ class Manufacturer {
480
504
  }
481
505
  class ManufacturerObject extends DataObject {
482
506
  constructor(data) {
483
- super('', DataType.MANUFACTURER, version$v);
507
+ super('', DataType.MANUFACTURER, version$x);
484
508
  this.data = data;
485
509
  }
486
510
  }
487
511
 
488
- const version$u = new DataVersion(1, 0, 0, 0);
512
+ const version$w = new DataVersion(1, 0, 0, 0);
489
513
  class License {
490
514
  constructor(id, companyid, licensekey, validuntil) {
491
515
  this.id = id;
@@ -496,12 +520,12 @@ class License {
496
520
  }
497
521
  class LicenseObject extends DataObject {
498
522
  constructor(data) {
499
- super('', DataType.LICENSE, version$u);
523
+ super('', DataType.LICENSE, version$w);
500
524
  this.data = data;
501
525
  }
502
526
  }
503
527
 
504
- const version$t = new DataVersion(1, 0, 0, 0);
528
+ const version$v = new DataVersion(1, 0, 0, 0);
505
529
  class AddressType {
506
530
  }
507
531
  class AddressToCompany {
@@ -519,12 +543,12 @@ class Address {
519
543
  }
520
544
  class AddressObject extends DataObject {
521
545
  constructor(data) {
522
- super('', DataType.ADDRESS, version$t);
546
+ super('', DataType.ADDRESS, version$v);
523
547
  this.data = data;
524
548
  }
525
549
  }
526
550
 
527
- const version$s = new DataVersion(1, 0, 0, 0);
551
+ const version$u = new DataVersion(1, 0, 0, 0);
528
552
  class WebTemplates {
529
553
  }
530
554
  class EmailTemplates {
@@ -533,12 +557,12 @@ class Client {
533
557
  }
534
558
  class ClientObject extends DataObject {
535
559
  constructor(data) {
536
- super('', DataType.CLIENT, version$s);
560
+ super('', DataType.CLIENT, version$u);
537
561
  this.data = data;
538
562
  }
539
563
  }
540
564
 
541
- const version$r = new DataVersion(1, 0, 0, 0);
565
+ const version$t = new DataVersion(1, 0, 0, 0);
542
566
  class Currency {
543
567
  constructor(id, name, isocode, symbol) {
544
568
  this.id = id;
@@ -549,12 +573,12 @@ class Currency {
549
573
  }
550
574
  class CurrencyObject extends DataObject {
551
575
  constructor(data) {
552
- super('', DataType.CURRENCY, version$r);
576
+ super('', DataType.CURRENCY, version$t);
553
577
  this.data = data;
554
578
  }
555
579
  }
556
580
 
557
- const version$q = new DataVersion(1, 0, 0, 0);
581
+ const version$s = new DataVersion(1, 0, 0, 0);
558
582
  class Country {
559
583
  constructor(id, name) {
560
584
  this.id = id;
@@ -563,12 +587,12 @@ class Country {
563
587
  }
564
588
  class CountryObject extends DataObject {
565
589
  constructor(data) {
566
- super('', DataType.COUNTRY, version$q);
590
+ super('', DataType.COUNTRY, version$s);
567
591
  this.data = data;
568
592
  }
569
593
  }
570
594
 
571
- const version$p = new DataVersion(1, 0, 0, 0);
595
+ const version$r = new DataVersion(1, 0, 0, 0);
572
596
  class Image {
573
597
  constructor(width, height, url, blob) {
574
598
  this.width = width;
@@ -579,7 +603,7 @@ class Image {
579
603
  }
580
604
  class ImageObject extends DataObject {
581
605
  constructor(data) {
582
- super('', DataType.IMAGE, version$p);
606
+ super('', DataType.IMAGE, version$r);
583
607
  this.data = data;
584
608
  }
585
609
  getEntryCount() {
@@ -596,17 +620,17 @@ class VATHistory {
596
620
  }
597
621
  }
598
622
 
599
- const version$o = new DataVersion(1, 0, 0, 0);
623
+ const version$q = new DataVersion(1, 0, 0, 0);
600
624
  class Module {
601
625
  }
602
626
  class ModuleObject extends DataObject {
603
627
  constructor(data) {
604
- super('', DataType.MODULE, version$o);
628
+ super('', DataType.MODULE, version$q);
605
629
  this.data = data;
606
630
  }
607
631
  }
608
632
 
609
- const version$n = new DataVersion(1, 0, 0, 0);
633
+ const version$p = new DataVersion(1, 0, 0, 0);
610
634
  class Location {
611
635
  constructor(id, name, description, company, address, building) {
612
636
  this.id = id;
@@ -642,30 +666,30 @@ class Room {
642
666
  }
643
667
  class LocationObject extends DataObject {
644
668
  constructor(data) {
645
- super('', DataType.LOCATION, version$n);
669
+ super('', DataType.LOCATION, version$p);
646
670
  this.data = data;
647
671
  }
648
672
  }
649
673
  class BuildingObject extends DataObject {
650
674
  constructor(data) {
651
- super('', DataType.BUILDING, version$n);
675
+ super('', DataType.BUILDING, version$p);
652
676
  this.data = data;
653
677
  }
654
678
  }
655
679
  class FloorObject extends DataObject {
656
680
  constructor(data) {
657
- super('', DataType.FLOOR, version$n);
681
+ super('', DataType.FLOOR, version$p);
658
682
  this.data = data;
659
683
  }
660
684
  }
661
685
  class RoomObject extends DataObject {
662
686
  constructor(data) {
663
- super('', DataType.ROOM, version$n);
687
+ super('', DataType.ROOM, version$p);
664
688
  this.data = data;
665
689
  }
666
690
  }
667
691
 
668
- const version$m = new DataVersion(1, 0, 0, 0);
692
+ const version$o = new DataVersion(1, 0, 0, 0);
669
693
  class Company {
670
694
  constructor(id, name, form, taxno, taxid, addresses, website, registerno) {
671
695
  this.id = id;
@@ -680,12 +704,12 @@ class Company {
680
704
  }
681
705
  class CompanyObject extends DataObject {
682
706
  constructor(data) {
683
- super('', DataType.COMPANY, version$m);
707
+ super('', DataType.COMPANY, version$o);
684
708
  this.data = data;
685
709
  }
686
710
  }
687
711
 
688
- const version$l = new DataVersion(1, 0, 0, 0);
712
+ const version$n = new DataVersion(1, 0, 0, 0);
689
713
  class Vendor {
690
714
  constructor(id, name, website, description) {
691
715
  this.id = id;
@@ -696,7 +720,7 @@ class Vendor {
696
720
  }
697
721
  class VendorObject extends DataObject {
698
722
  constructor(data) {
699
- super('', DataType.VENDOR, version$l);
723
+ super('', DataType.VENDOR, version$n);
700
724
  this.data = data;
701
725
  }
702
726
  getEntryCount() {
@@ -704,7 +728,7 @@ class VendorObject extends DataObject {
704
728
  }
705
729
  }
706
730
 
707
- const version$k = new DataVersion(1, 0, 0, 0);
731
+ const version$m = new DataVersion(1, 0, 0, 0);
708
732
  class AccessPoint {
709
733
  constructor(id, ipaddress, wifiaddress, btaddress, macaddress, serial, model, softwareversion, hardwareversion, vendor) {
710
734
  this.id = id;
@@ -721,7 +745,7 @@ class AccessPoint {
721
745
  }
722
746
  class AccessPointObject extends DataObject {
723
747
  constructor(data) {
724
- super('', DataType.ACCESSPOINT, version$k);
748
+ super('', DataType.ACCESSPOINT, version$m);
725
749
  this.data = data;
726
750
  }
727
751
  getEntryCount() {
@@ -729,7 +753,26 @@ class AccessPointObject extends DataObject {
729
753
  }
730
754
  }
731
755
 
732
- const version$j = new DataVersion(1, 0, 0, 0);
756
+ const version$l = new DataVersion(1, 0, 0, 0);
757
+ class Message {
758
+ constructor(messagetype, code, name, message) {
759
+ this.messagetype = messagetype;
760
+ this.code = code;
761
+ this.name = name;
762
+ this.message = message;
763
+ }
764
+ }
765
+ class MessageObject extends DataObject {
766
+ constructor(data) {
767
+ super('', DataType.MESSAGE, version$l);
768
+ this.data = data;
769
+ }
770
+ getEntryCount() {
771
+ return this.data.length;
772
+ }
773
+ }
774
+
775
+ const version$k = new DataVersion(1, 0, 0, 0);
733
776
  class Dimension {
734
777
  constructor(width, height, depth) {
735
778
  this.width = width;
@@ -739,7 +782,7 @@ class Dimension {
739
782
  }
740
783
  class DimensionObject extends DataObject {
741
784
  constructor(data) {
742
- super('', DataType.DIMENSION, version$j);
785
+ super('', DataType.DIMENSION, version$k);
743
786
  this.data = data;
744
787
  }
745
788
  getEntryCount() {
@@ -747,7 +790,7 @@ class DimensionObject extends DataObject {
747
790
  }
748
791
  }
749
792
 
750
- const version$i = new DataVersion(1, 0, 0, 0);
793
+ const version$j = new DataVersion(1, 0, 0, 0);
751
794
  class Inventory {
752
795
  constructor(id, amount, unit, weight, space, item) {
753
796
  this.id = id;
@@ -763,7 +806,7 @@ class Inventory {
763
806
  }
764
807
  class InventoryObject extends DataObject {
765
808
  constructor(data) {
766
- super('', DataType.INVENTORY, version$i);
809
+ super('', DataType.INVENTORY, version$j);
767
810
  this.data = data;
768
811
  }
769
812
  getEntryCount() {
@@ -771,24 +814,24 @@ class InventoryObject extends DataObject {
771
814
  }
772
815
  }
773
816
 
774
- const version$h = new DataVersion(1, 0, 0, 0);
817
+ const version$i = new DataVersion(1, 0, 0, 0);
775
818
  class Item {
776
819
  constructor() {
777
820
  }
778
821
  }
779
822
  class ItemObject extends DataObject {
780
823
  constructor(data) {
781
- super('', DataType.ITEM, version$h);
824
+ super('', DataType.ITEM, version$i);
782
825
  this.data = data;
783
826
  }
784
827
  }
785
828
 
786
- const version$g = new DataVersion(1, 0, 0, 0);
829
+ const version$h = new DataVersion(1, 0, 0, 0);
787
830
  class ItemProperty {
788
831
  }
789
832
  class ItemPropertyObject extends DataObject {
790
833
  constructor(data) {
791
- super('', DataType.ITEMPROPERTY, version$g);
834
+ super('', DataType.ITEMPROPERTY, version$h);
792
835
  this.data = data;
793
836
  }
794
837
  }
@@ -798,12 +841,12 @@ class ItemProperties {
798
841
  }
799
842
  class ItemPropertiesObject extends DataObject {
800
843
  constructor(data) {
801
- super('', DataType.ITEMPROPERTIES, version$g);
844
+ super('', DataType.ITEMPROPERTIES, version$h);
802
845
  this.data = data;
803
846
  }
804
847
  }
805
848
 
806
- const version$f = new DataVersion(1, 0, 0, 0);
849
+ const version$g = new DataVersion(1, 0, 0, 0);
807
850
  class ItemDetail {
808
851
  constructor(item, stock, sellingprice, inventory) {
809
852
  this.item = item;
@@ -814,12 +857,12 @@ class ItemDetail {
814
857
  }
815
858
  class ItemDetailObject extends DataObject {
816
859
  constructor(data) {
817
- super('', DataType.ITEMDETAIL, version$f);
860
+ super('', DataType.ITEMDETAIL, version$g);
818
861
  this.data = data;
819
862
  }
820
863
  }
821
864
 
822
- const version$e = new DataVersion(1, 0, 0, 0);
865
+ const version$f = new DataVersion(1, 0, 0, 0);
823
866
  class Packaging {
824
867
  constructor(id, name, dimensions) {
825
868
  this.id = id;
@@ -829,12 +872,12 @@ class Packaging {
829
872
  }
830
873
  class PackagingObject extends DataObject {
831
874
  constructor(data) {
832
- super('', DataType.PACKAGING, version$e);
875
+ super('', DataType.PACKAGING, version$f);
833
876
  this.data = data;
834
877
  }
835
878
  }
836
879
 
837
- const version$d = new DataVersion(1, 0, 0, 0);
880
+ const version$e = new DataVersion(1, 0, 0, 0);
838
881
  class Rating {
839
882
  constructor(id, value, comment) {
840
883
  this.id = id;
@@ -844,12 +887,12 @@ class Rating {
844
887
  }
845
888
  class RatingObject extends DataObject {
846
889
  constructor(data) {
847
- super('', DataType.RATING, version$d);
890
+ super('', DataType.RATING, version$e);
848
891
  this.data = data;
849
892
  }
850
893
  }
851
894
 
852
- const version$c = new DataVersion(1, 0, 0, 0);
895
+ const version$d = new DataVersion(1, 0, 0, 0);
853
896
  class Space {
854
897
  constructor(id, name, description, dimension) {
855
898
  this.id = id;
@@ -876,7 +919,7 @@ class Shelf {
876
919
  }
877
920
  class ShelfObject extends DataObject {
878
921
  constructor(data) {
879
- super('', DataType.SHELF, version$c);
922
+ super('', DataType.SHELF, version$d);
880
923
  this.data = data;
881
924
  }
882
925
  getEntryCount() {
@@ -885,7 +928,7 @@ class ShelfObject extends DataObject {
885
928
  }
886
929
  class SpaceObject extends DataObject {
887
930
  constructor(data) {
888
- super('', DataType.SPACE, version$c);
931
+ super('', DataType.SPACE, version$d);
889
932
  this.data = data;
890
933
  }
891
934
  getEntryCount() {
@@ -894,7 +937,7 @@ class SpaceObject extends DataObject {
894
937
  }
895
938
  class LevelObject extends DataObject {
896
939
  constructor(data) {
897
- super('', DataType.LEVEL, version$c);
940
+ super('', DataType.LEVEL, version$d);
898
941
  this.data = data;
899
942
  }
900
943
  getEntryCount() {
@@ -902,7 +945,7 @@ class LevelObject extends DataObject {
902
945
  }
903
946
  }
904
947
 
905
- const version$b = new DataVersion(1, 0, 0, 0);
948
+ const version$c = new DataVersion(1, 0, 0, 0);
906
949
  class Stock {
907
950
  constructor(id, name, room, shelf, row) {
908
951
  this.id = id;
@@ -914,7 +957,7 @@ class Stock {
914
957
  }
915
958
  class StockObject extends DataObject {
916
959
  constructor(data) {
917
- super('', DataType.STOCK, version$b);
960
+ super('', DataType.STOCK, version$c);
918
961
  this.data = data;
919
962
  }
920
963
  getEntryCount() {
@@ -922,7 +965,7 @@ class StockObject extends DataObject {
922
965
  }
923
966
  }
924
967
 
925
- const version$a = new DataVersion(1, 0, 0, 0);
968
+ const version$b = new DataVersion(1, 0, 0, 0);
926
969
  class Booking {
927
970
  constructor(id, amount, unit, space, item, bookingtype, purchaseprice, sellingprice, created) {
928
971
  this.id = id;
@@ -938,7 +981,7 @@ class Booking {
938
981
  }
939
982
  class BookingObject extends DataObject {
940
983
  constructor(data) {
941
- super('', DataType.BOOKING, version$a);
984
+ super('', DataType.BOOKING, version$b);
942
985
  this.data = data;
943
986
  }
944
987
  getEntryCount() {
@@ -946,7 +989,7 @@ class BookingObject extends DataObject {
946
989
  }
947
990
  }
948
991
 
949
- const version$9 = new DataVersion(1, 0, 0, 0);
992
+ const version$a = new DataVersion(1, 0, 0, 0);
950
993
  class PurchasePrice {
951
994
  constructor(id, startdate, enddate, item, space, unit, price) {
952
995
  this.id = id;
@@ -971,17 +1014,37 @@ class SellingPrice {
971
1014
  }
972
1015
  class PurchasePriceObject extends DataObject {
973
1016
  constructor(data) {
974
- super('', DataType.PURCHASEPRICE, version$9);
1017
+ super('', DataType.PURCHASEPRICE, version$a);
975
1018
  this.data = data;
976
1019
  }
977
1020
  }
978
1021
  class SellingPriceObject extends DataObject {
979
1022
  constructor(data) {
980
- super('', DataType.SELLINGPRICE, version$9);
1023
+ super('', DataType.SELLINGPRICE, version$a);
981
1024
  this.data = data;
982
1025
  }
983
1026
  }
984
1027
 
1028
+ const version$9 = new DataVersion(1, 0, 0, 0);
1029
+ class ItemShort {
1030
+ constructor(id, name, description, itemno, ean) {
1031
+ this.id = id;
1032
+ this.name = name;
1033
+ this.description = description;
1034
+ this.itemno = itemno;
1035
+ this.ean = ean;
1036
+ }
1037
+ }
1038
+ class ItemShortObject extends DataObject {
1039
+ constructor(data) {
1040
+ super('', DataType.ITEMSHORT, version$9);
1041
+ this.data = data;
1042
+ }
1043
+ getEntryCount() {
1044
+ return this.data.length;
1045
+ }
1046
+ }
1047
+
985
1048
  const version$8 = new DataVersion(1, 0, 0, 0);
986
1049
  class ShelfLabel {
987
1050
  constructor() {
@@ -1126,5 +1189,5 @@ class QueueObject extends DataObject {
1126
1189
  * Generated bundle index. Do not edit.
1127
1190
  */
1128
1191
 
1129
- export { AccessPoint, AccessPointObject, Address, AddressObject, AddressToCompany, AddressType, AuthRequest, AuthResponse, AuthenticationData, AuthenticationObject, Booking, BookingObject, BookingType, Building, BuildingObject, CaptureidDatatypesService, Client, ClientObject, Company, CompanyObject, Context, Country, CountryObject, Currency, CurrencyObject, DataDto, DataObject, DataType, DataVersion, DatabaseEventType, Dimension, DimensionObject, EMailTemplateType, ESLAssociation, ESLAssociationObject, ESLObject, ESLPool, ESLPoolObject, EmailTemplates, EslTemplate, EslTemplateObject, EslUpdate, EslUpdateObject, Filter, FilterEntries, FilterEntry, Floor, FloorObject, Image, ImageObject, Inventory, InventoryObject, Item, ItemDetail, ItemDetailObject, ItemObject, ItemProperties, ItemPropertiesObject, ItemProperty, ItemPropertyObject, Label, LabelObject, Level, LevelObject, License, LicenseObject, Location, LocationObject, Logging, LoggingLevel, Manufacturer, ManufacturerObject, Module, ModuleObject, ModuleType, Operators, Packaging, PackagingObject, PinState, PrintData, PrintLabelObject, Printer, PrinterLanguage, PrinterManufacturer, PrinterObject, PrinterProperties, PurchasePrice, PurchasePriceObject, Queue, QueueObject, Rating, RatingObject, RegisterRequest, RegistrationState, Room, RoomObject, SellingPrice, SellingPriceObject, Shelf, ShelfLabel, ShelfObject, Space, SpaceObject, Stock, StockObject, Unit, User, UserObject, VAT, VATHistory, Variables, Vendor, VendorObject, VerifyRequest, WebTemplateType, WebTemplates };
1192
+ export { AccessPoint, AccessPointObject, Address, AddressObject, AddressToCompany, AddressType, AuthRequest, AuthResponse, AuthenticationData, AuthenticationObject, Booking, BookingObject, BookingType, Building, BuildingObject, CaptureidDatatypesService, Client, ClientObject, Company, CompanyObject, Context, Country, CountryObject, Currency, CurrencyObject, DataDto, DataObject, DataType, DataVersion, DatabaseEventType, Dimension, DimensionObject, EMailTemplateType, ESLAssociation, ESLAssociationObject, ESLObject, ESLPool, ESLPoolObject, EmailTemplates, EslTemplate, EslTemplateObject, EslUpdate, EslUpdateObject, Filter, FilterEntries, FilterEntry, Floor, FloorObject, Image, ImageObject, Inventory, InventoryObject, Item, ItemDetail, ItemDetailObject, ItemObject, ItemProperties, ItemPropertiesObject, ItemProperty, ItemPropertyObject, ItemShort, ItemShortObject, Label, LabelObject, Level, LevelObject, License, LicenseObject, Location, LocationObject, Logging, LoggingLevel, Manufacturer, ManufacturerObject, Message, MessageObject, MessageType, Module, ModuleObject, ModuleType, Operators, Packaging, PackagingObject, PinState, PrintData, PrintLabelObject, Printer, PrinterLanguage, PrinterManufacturer, PrinterObject, PrinterProperties, PurchasePrice, PurchasePriceObject, Queue, QueueObject, Rating, RatingObject, RegisterRequest, RegistrationState, Room, RoomObject, SellingPrice, SellingPriceObject, Shelf, ShelfLabel, ShelfObject, Space, SpaceObject, Stock, StockObject, Unit, User, UserObject, VAT, VATHistory, Variables, Vendor, VendorObject, VerifyRequest, WebTemplateType, WebTemplates };
1130
1193
  //# sourceMappingURL=captureid-datatypes.mjs.map