@captureid/datatypes 0.0.57 → 0.0.59
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 +3 -1
- package/esm2022/lib/model/common/accesspoint-object.mjs +28 -0
- package/esm2022/lib/model/common/vendor-object.mjs +22 -0
- package/esm2022/lib/model/esl/esl-template-object.mjs +25 -0
- package/esm2022/lib/model/esl/esl-update-object.mjs +21 -0
- package/esm2022/public-api.mjs +5 -1
- package/fesm2022/captureid-datatypes.mjs +148 -62
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +3 -1
- package/lib/model/common/accesspoint-object.d.ts +24 -0
- package/lib/model/common/vendor-object.d.ts +17 -0
- package/lib/model/esl/esl-template-object.d.ts +20 -0
- package/lib/model/esl/esl-update-object.d.ts +21 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -0
|
@@ -69,6 +69,8 @@ var DataType;
|
|
|
69
69
|
DataType[DataType["GPIO"] = 51] = "GPIO";
|
|
70
70
|
DataType[DataType["ITEMDETAIL"] = 52] = "ITEMDETAIL";
|
|
71
71
|
DataType[DataType["ESLASSOCIATION"] = 53] = "ESLASSOCIATION";
|
|
72
|
+
DataType[DataType["ESLUPDATE"] = 54] = "ESLUPDATE";
|
|
73
|
+
DataType[DataType["ESLTEMPLATE"] = 55] = "ESLTEMPLATE";
|
|
72
74
|
})(DataType || (DataType = {}));
|
|
73
75
|
var BookingType;
|
|
74
76
|
(function (BookingType) {
|
|
@@ -317,10 +319,10 @@ class DataVersion {
|
|
|
317
319
|
}
|
|
318
320
|
}
|
|
319
321
|
|
|
320
|
-
const version$
|
|
322
|
+
const version$y = new DataVersion(1, 0, 0, 0);
|
|
321
323
|
class DataDto {
|
|
322
324
|
constructor(data) {
|
|
323
|
-
this.version = version$
|
|
325
|
+
this.version = version$y;
|
|
324
326
|
if (data === undefined) {
|
|
325
327
|
this.data = [];
|
|
326
328
|
}
|
|
@@ -404,17 +406,17 @@ class VerifyRequest {
|
|
|
404
406
|
}
|
|
405
407
|
}
|
|
406
408
|
|
|
407
|
-
const version$
|
|
409
|
+
const version$x = new DataVersion(1, 0, 0, 0);
|
|
408
410
|
class AuthenticationData {
|
|
409
411
|
}
|
|
410
412
|
class AuthenticationObject extends DataObject {
|
|
411
413
|
constructor(data) {
|
|
412
|
-
super('', DataType.AUTHENTICATION, version$
|
|
414
|
+
super('', DataType.AUTHENTICATION, version$x);
|
|
413
415
|
this.data = data;
|
|
414
416
|
}
|
|
415
417
|
}
|
|
416
418
|
|
|
417
|
-
const version$
|
|
419
|
+
const version$w = new DataVersion(1, 0, 0, 0);
|
|
418
420
|
class User {
|
|
419
421
|
constructor(id, firstname, lastname, email, role, phone, mobile, city, zipcode, street, no, country, state, dateOfBirth, avatarImg, context, credentialsNonExpired) {
|
|
420
422
|
this.firstname = firstname;
|
|
@@ -437,7 +439,7 @@ class User {
|
|
|
437
439
|
}
|
|
438
440
|
class UserObject extends DataObject {
|
|
439
441
|
constructor(data) {
|
|
440
|
-
super('', DataType.USER, version$
|
|
442
|
+
super('', DataType.USER, version$w);
|
|
441
443
|
this.data = data;
|
|
442
444
|
}
|
|
443
445
|
}
|
|
@@ -467,7 +469,7 @@ var Context;
|
|
|
467
469
|
Context.values = values;
|
|
468
470
|
})(Context || (Context = {}));
|
|
469
471
|
|
|
470
|
-
const version$
|
|
472
|
+
const version$v = new DataVersion(1, 0, 0, 0);
|
|
471
473
|
class Manufacturer {
|
|
472
474
|
constructor(id, name, addresses) {
|
|
473
475
|
this.id = id;
|
|
@@ -477,12 +479,12 @@ class Manufacturer {
|
|
|
477
479
|
}
|
|
478
480
|
class ManufacturerObject extends DataObject {
|
|
479
481
|
constructor(data) {
|
|
480
|
-
super('', DataType.MANUFACTURER, version$
|
|
482
|
+
super('', DataType.MANUFACTURER, version$v);
|
|
481
483
|
this.data = data;
|
|
482
484
|
}
|
|
483
485
|
}
|
|
484
486
|
|
|
485
|
-
const version$
|
|
487
|
+
const version$u = new DataVersion(1, 0, 0, 0);
|
|
486
488
|
class License {
|
|
487
489
|
constructor(id, companyid, licensekey, validuntil) {
|
|
488
490
|
this.id = id;
|
|
@@ -493,12 +495,12 @@ class License {
|
|
|
493
495
|
}
|
|
494
496
|
class LicenseObject extends DataObject {
|
|
495
497
|
constructor(data) {
|
|
496
|
-
super('', DataType.LICENSE, version$
|
|
498
|
+
super('', DataType.LICENSE, version$u);
|
|
497
499
|
this.data = data;
|
|
498
500
|
}
|
|
499
501
|
}
|
|
500
502
|
|
|
501
|
-
const version$
|
|
503
|
+
const version$t = new DataVersion(1, 0, 0, 0);
|
|
502
504
|
class AddressType {
|
|
503
505
|
}
|
|
504
506
|
class AddressToCompany {
|
|
@@ -516,12 +518,12 @@ class Address {
|
|
|
516
518
|
}
|
|
517
519
|
class AddressObject extends DataObject {
|
|
518
520
|
constructor(data) {
|
|
519
|
-
super('', DataType.ADDRESS, version$
|
|
521
|
+
super('', DataType.ADDRESS, version$t);
|
|
520
522
|
this.data = data;
|
|
521
523
|
}
|
|
522
524
|
}
|
|
523
525
|
|
|
524
|
-
const version$
|
|
526
|
+
const version$s = new DataVersion(1, 0, 0, 0);
|
|
525
527
|
class WebTemplates {
|
|
526
528
|
}
|
|
527
529
|
class EmailTemplates {
|
|
@@ -530,12 +532,12 @@ class Client {
|
|
|
530
532
|
}
|
|
531
533
|
class ClientObject extends DataObject {
|
|
532
534
|
constructor(data) {
|
|
533
|
-
super('', DataType.CLIENT, version$
|
|
535
|
+
super('', DataType.CLIENT, version$s);
|
|
534
536
|
this.data = data;
|
|
535
537
|
}
|
|
536
538
|
}
|
|
537
539
|
|
|
538
|
-
const version$
|
|
540
|
+
const version$r = new DataVersion(1, 0, 0, 0);
|
|
539
541
|
class Currency {
|
|
540
542
|
constructor(id, name, isocode, symbol) {
|
|
541
543
|
this.id = id;
|
|
@@ -546,12 +548,12 @@ class Currency {
|
|
|
546
548
|
}
|
|
547
549
|
class CurrencyObject extends DataObject {
|
|
548
550
|
constructor(data) {
|
|
549
|
-
super('', DataType.CURRENCY, version$
|
|
551
|
+
super('', DataType.CURRENCY, version$r);
|
|
550
552
|
this.data = data;
|
|
551
553
|
}
|
|
552
554
|
}
|
|
553
555
|
|
|
554
|
-
const version$
|
|
556
|
+
const version$q = new DataVersion(1, 0, 0, 0);
|
|
555
557
|
class Country {
|
|
556
558
|
constructor(id, name) {
|
|
557
559
|
this.id = id;
|
|
@@ -560,12 +562,12 @@ class Country {
|
|
|
560
562
|
}
|
|
561
563
|
class CountryObject extends DataObject {
|
|
562
564
|
constructor(data) {
|
|
563
|
-
super('', DataType.COUNTRY, version$
|
|
565
|
+
super('', DataType.COUNTRY, version$q);
|
|
564
566
|
this.data = data;
|
|
565
567
|
}
|
|
566
568
|
}
|
|
567
569
|
|
|
568
|
-
const version$
|
|
570
|
+
const version$p = new DataVersion(1, 0, 0, 0);
|
|
569
571
|
class Image {
|
|
570
572
|
constructor(width, height, url, blob) {
|
|
571
573
|
this.width = width;
|
|
@@ -576,7 +578,7 @@ class Image {
|
|
|
576
578
|
}
|
|
577
579
|
class ImageObject extends DataObject {
|
|
578
580
|
constructor(data) {
|
|
579
|
-
super('', DataType.IMAGE, version$
|
|
581
|
+
super('', DataType.IMAGE, version$p);
|
|
580
582
|
this.data = data;
|
|
581
583
|
}
|
|
582
584
|
getEntryCount() {
|
|
@@ -593,17 +595,17 @@ class VATHistory {
|
|
|
593
595
|
}
|
|
594
596
|
}
|
|
595
597
|
|
|
596
|
-
const version$
|
|
598
|
+
const version$o = new DataVersion(1, 0, 0, 0);
|
|
597
599
|
class Module {
|
|
598
600
|
}
|
|
599
601
|
class ModuleObject extends DataObject {
|
|
600
602
|
constructor(data) {
|
|
601
|
-
super('', DataType.MODULE, version$
|
|
603
|
+
super('', DataType.MODULE, version$o);
|
|
602
604
|
this.data = data;
|
|
603
605
|
}
|
|
604
606
|
}
|
|
605
607
|
|
|
606
|
-
const version$
|
|
608
|
+
const version$n = new DataVersion(1, 0, 0, 0);
|
|
607
609
|
class Location {
|
|
608
610
|
constructor(id, name, description, company, address, building) {
|
|
609
611
|
this.id = id;
|
|
@@ -639,30 +641,30 @@ class Room {
|
|
|
639
641
|
}
|
|
640
642
|
class LocationObject extends DataObject {
|
|
641
643
|
constructor(data) {
|
|
642
|
-
super('', DataType.LOCATION, version$
|
|
644
|
+
super('', DataType.LOCATION, version$n);
|
|
643
645
|
this.data = data;
|
|
644
646
|
}
|
|
645
647
|
}
|
|
646
648
|
class BuildingObject extends DataObject {
|
|
647
649
|
constructor(data) {
|
|
648
|
-
super('', DataType.BUILDING, version$
|
|
650
|
+
super('', DataType.BUILDING, version$n);
|
|
649
651
|
this.data = data;
|
|
650
652
|
}
|
|
651
653
|
}
|
|
652
654
|
class FloorObject extends DataObject {
|
|
653
655
|
constructor(data) {
|
|
654
|
-
super('', DataType.FLOOR, version$
|
|
656
|
+
super('', DataType.FLOOR, version$n);
|
|
655
657
|
this.data = data;
|
|
656
658
|
}
|
|
657
659
|
}
|
|
658
660
|
class RoomObject extends DataObject {
|
|
659
661
|
constructor(data) {
|
|
660
|
-
super('', DataType.ROOM, version$
|
|
662
|
+
super('', DataType.ROOM, version$n);
|
|
661
663
|
this.data = data;
|
|
662
664
|
}
|
|
663
665
|
}
|
|
664
666
|
|
|
665
|
-
const version$
|
|
667
|
+
const version$m = new DataVersion(1, 0, 0, 0);
|
|
666
668
|
class Company {
|
|
667
669
|
constructor(id, name, form, taxno, taxid, addresses, website, registerno) {
|
|
668
670
|
this.id = id;
|
|
@@ -677,12 +679,56 @@ class Company {
|
|
|
677
679
|
}
|
|
678
680
|
class CompanyObject extends DataObject {
|
|
679
681
|
constructor(data) {
|
|
680
|
-
super('', DataType.COMPANY, version$
|
|
682
|
+
super('', DataType.COMPANY, version$m);
|
|
681
683
|
this.data = data;
|
|
682
684
|
}
|
|
683
685
|
}
|
|
684
686
|
|
|
685
|
-
const version$
|
|
687
|
+
const version$l = new DataVersion(1, 0, 0, 0);
|
|
688
|
+
class Vendor {
|
|
689
|
+
constructor(id, name, website, description) {
|
|
690
|
+
this.id = id;
|
|
691
|
+
this.name = name;
|
|
692
|
+
this.website = website;
|
|
693
|
+
this.description = description;
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
class VendorObject extends DataObject {
|
|
697
|
+
constructor(data) {
|
|
698
|
+
super('', DataType.VENDOR, version$l);
|
|
699
|
+
this.data = data;
|
|
700
|
+
}
|
|
701
|
+
getEntryCount() {
|
|
702
|
+
return this.data.length;
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
const version$k = new DataVersion(1, 0, 0, 0);
|
|
707
|
+
class AccessPoint {
|
|
708
|
+
constructor(id, ipaddress, wifiaddress, btaddress, macaddress, serial, model, softwareversion, hardwareversion, vendor) {
|
|
709
|
+
this.id = id;
|
|
710
|
+
this.ipaddress = ipaddress;
|
|
711
|
+
this.wifiaddress = wifiaddress;
|
|
712
|
+
this.btaddress = btaddress;
|
|
713
|
+
this.macaddress = macaddress;
|
|
714
|
+
this.serial = serial;
|
|
715
|
+
this.model = model;
|
|
716
|
+
this.softwareversion = softwareversion;
|
|
717
|
+
this.hardwareversion = hardwareversion;
|
|
718
|
+
this.vendor = vendor;
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
class AccessPointObject extends DataObject {
|
|
722
|
+
constructor(data) {
|
|
723
|
+
super('', DataType.ACCESSPOINT, version$k);
|
|
724
|
+
this.data = data;
|
|
725
|
+
}
|
|
726
|
+
getEntryCount() {
|
|
727
|
+
return this.data.length;
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
const version$j = new DataVersion(1, 0, 0, 0);
|
|
686
732
|
class Dimension {
|
|
687
733
|
constructor(width, height, depth) {
|
|
688
734
|
this.width = width;
|
|
@@ -692,7 +738,7 @@ class Dimension {
|
|
|
692
738
|
}
|
|
693
739
|
class DimensionObject extends DataObject {
|
|
694
740
|
constructor(data) {
|
|
695
|
-
super('', DataType.DIMENSION, version$
|
|
741
|
+
super('', DataType.DIMENSION, version$j);
|
|
696
742
|
this.data = data;
|
|
697
743
|
}
|
|
698
744
|
getEntryCount() {
|
|
@@ -700,7 +746,7 @@ class DimensionObject extends DataObject {
|
|
|
700
746
|
}
|
|
701
747
|
}
|
|
702
748
|
|
|
703
|
-
const version$
|
|
749
|
+
const version$i = new DataVersion(1, 0, 0, 0);
|
|
704
750
|
class Inventory {
|
|
705
751
|
constructor(id, amount, unit, weight, space, item) {
|
|
706
752
|
this.id = id;
|
|
@@ -716,7 +762,7 @@ class Inventory {
|
|
|
716
762
|
}
|
|
717
763
|
class InventoryObject extends DataObject {
|
|
718
764
|
constructor(data) {
|
|
719
|
-
super('', DataType.INVENTORY, version$
|
|
765
|
+
super('', DataType.INVENTORY, version$i);
|
|
720
766
|
this.data = data;
|
|
721
767
|
}
|
|
722
768
|
getEntryCount() {
|
|
@@ -724,24 +770,24 @@ class InventoryObject extends DataObject {
|
|
|
724
770
|
}
|
|
725
771
|
}
|
|
726
772
|
|
|
727
|
-
const version$
|
|
773
|
+
const version$h = new DataVersion(1, 0, 0, 0);
|
|
728
774
|
class Item {
|
|
729
775
|
constructor() {
|
|
730
776
|
}
|
|
731
777
|
}
|
|
732
778
|
class ItemObject extends DataObject {
|
|
733
779
|
constructor(data) {
|
|
734
|
-
super('', DataType.ITEM, version$
|
|
780
|
+
super('', DataType.ITEM, version$h);
|
|
735
781
|
this.data = data;
|
|
736
782
|
}
|
|
737
783
|
}
|
|
738
784
|
|
|
739
|
-
const version$
|
|
785
|
+
const version$g = new DataVersion(1, 0, 0, 0);
|
|
740
786
|
class ItemProperty {
|
|
741
787
|
}
|
|
742
788
|
class ItemPropertyObject extends DataObject {
|
|
743
789
|
constructor(data) {
|
|
744
|
-
super('', DataType.ITEMPROPERTY, version$
|
|
790
|
+
super('', DataType.ITEMPROPERTY, version$g);
|
|
745
791
|
this.data = data;
|
|
746
792
|
}
|
|
747
793
|
}
|
|
@@ -751,12 +797,12 @@ class ItemProperties {
|
|
|
751
797
|
}
|
|
752
798
|
class ItemPropertiesObject extends DataObject {
|
|
753
799
|
constructor(data) {
|
|
754
|
-
super('', DataType.ITEMPROPERTIES, version$
|
|
800
|
+
super('', DataType.ITEMPROPERTIES, version$g);
|
|
755
801
|
this.data = data;
|
|
756
802
|
}
|
|
757
803
|
}
|
|
758
804
|
|
|
759
|
-
const version$
|
|
805
|
+
const version$f = new DataVersion(1, 0, 0, 0);
|
|
760
806
|
class ItemDetail {
|
|
761
807
|
constructor(item, stock, sellingprice, inventory) {
|
|
762
808
|
this.item = item;
|
|
@@ -767,12 +813,12 @@ class ItemDetail {
|
|
|
767
813
|
}
|
|
768
814
|
class ItemDetailObject extends DataObject {
|
|
769
815
|
constructor(data) {
|
|
770
|
-
super('', DataType.ITEMDETAIL, version$
|
|
816
|
+
super('', DataType.ITEMDETAIL, version$f);
|
|
771
817
|
this.data = data;
|
|
772
818
|
}
|
|
773
819
|
}
|
|
774
820
|
|
|
775
|
-
const version$
|
|
821
|
+
const version$e = new DataVersion(1, 0, 0, 0);
|
|
776
822
|
class Packaging {
|
|
777
823
|
constructor(id, name, dimensions) {
|
|
778
824
|
this.id = id;
|
|
@@ -782,12 +828,12 @@ class Packaging {
|
|
|
782
828
|
}
|
|
783
829
|
class PackagingObject extends DataObject {
|
|
784
830
|
constructor(data) {
|
|
785
|
-
super('', DataType.PACKAGING, version$
|
|
831
|
+
super('', DataType.PACKAGING, version$e);
|
|
786
832
|
this.data = data;
|
|
787
833
|
}
|
|
788
834
|
}
|
|
789
835
|
|
|
790
|
-
const version$
|
|
836
|
+
const version$d = new DataVersion(1, 0, 0, 0);
|
|
791
837
|
class Rating {
|
|
792
838
|
constructor(id, value, comment) {
|
|
793
839
|
this.id = id;
|
|
@@ -797,12 +843,12 @@ class Rating {
|
|
|
797
843
|
}
|
|
798
844
|
class RatingObject extends DataObject {
|
|
799
845
|
constructor(data) {
|
|
800
|
-
super('', DataType.RATING, version$
|
|
846
|
+
super('', DataType.RATING, version$d);
|
|
801
847
|
this.data = data;
|
|
802
848
|
}
|
|
803
849
|
}
|
|
804
850
|
|
|
805
|
-
const version$
|
|
851
|
+
const version$c = new DataVersion(1, 0, 0, 0);
|
|
806
852
|
class Space {
|
|
807
853
|
constructor(id, name, description, dimension) {
|
|
808
854
|
this.id = id;
|
|
@@ -829,7 +875,7 @@ class Shelf {
|
|
|
829
875
|
}
|
|
830
876
|
class ShelfObject extends DataObject {
|
|
831
877
|
constructor(data) {
|
|
832
|
-
super('', DataType.SHELF, version$
|
|
878
|
+
super('', DataType.SHELF, version$c);
|
|
833
879
|
this.data = data;
|
|
834
880
|
}
|
|
835
881
|
getEntryCount() {
|
|
@@ -838,7 +884,7 @@ class ShelfObject extends DataObject {
|
|
|
838
884
|
}
|
|
839
885
|
class SpaceObject extends DataObject {
|
|
840
886
|
constructor(data) {
|
|
841
|
-
super('', DataType.SPACE, version$
|
|
887
|
+
super('', DataType.SPACE, version$c);
|
|
842
888
|
this.data = data;
|
|
843
889
|
}
|
|
844
890
|
getEntryCount() {
|
|
@@ -847,7 +893,7 @@ class SpaceObject extends DataObject {
|
|
|
847
893
|
}
|
|
848
894
|
class LevelObject extends DataObject {
|
|
849
895
|
constructor(data) {
|
|
850
|
-
super('', DataType.LEVEL, version$
|
|
896
|
+
super('', DataType.LEVEL, version$c);
|
|
851
897
|
this.data = data;
|
|
852
898
|
}
|
|
853
899
|
getEntryCount() {
|
|
@@ -855,7 +901,7 @@ class LevelObject extends DataObject {
|
|
|
855
901
|
}
|
|
856
902
|
}
|
|
857
903
|
|
|
858
|
-
const version$
|
|
904
|
+
const version$b = new DataVersion(1, 0, 0, 0);
|
|
859
905
|
class Stock {
|
|
860
906
|
constructor(id, name, room, shelf, row) {
|
|
861
907
|
this.id = id;
|
|
@@ -867,7 +913,7 @@ class Stock {
|
|
|
867
913
|
}
|
|
868
914
|
class StockObject extends DataObject {
|
|
869
915
|
constructor(data) {
|
|
870
|
-
super('', DataType.STOCK, version$
|
|
916
|
+
super('', DataType.STOCK, version$b);
|
|
871
917
|
this.data = data;
|
|
872
918
|
}
|
|
873
919
|
getEntryCount() {
|
|
@@ -875,7 +921,7 @@ class StockObject extends DataObject {
|
|
|
875
921
|
}
|
|
876
922
|
}
|
|
877
923
|
|
|
878
|
-
const version$
|
|
924
|
+
const version$a = new DataVersion(1, 0, 0, 0);
|
|
879
925
|
class Booking {
|
|
880
926
|
constructor(id, amount, unit, space, item, bookingtype, purchaseprice, sellingprice, created) {
|
|
881
927
|
this.id = id;
|
|
@@ -891,7 +937,7 @@ class Booking {
|
|
|
891
937
|
}
|
|
892
938
|
class BookingObject extends DataObject {
|
|
893
939
|
constructor(data) {
|
|
894
|
-
super('', DataType.BOOKING, version$
|
|
940
|
+
super('', DataType.BOOKING, version$a);
|
|
895
941
|
this.data = data;
|
|
896
942
|
}
|
|
897
943
|
getEntryCount() {
|
|
@@ -899,7 +945,7 @@ class BookingObject extends DataObject {
|
|
|
899
945
|
}
|
|
900
946
|
}
|
|
901
947
|
|
|
902
|
-
const version$
|
|
948
|
+
const version$9 = new DataVersion(1, 0, 0, 0);
|
|
903
949
|
class PurchasePrice {
|
|
904
950
|
constructor(id, startdate, enddate, item, space, unit, price) {
|
|
905
951
|
this.id = id;
|
|
@@ -924,53 +970,93 @@ class SellingPrice {
|
|
|
924
970
|
}
|
|
925
971
|
class PurchasePriceObject extends DataObject {
|
|
926
972
|
constructor(data) {
|
|
927
|
-
super('', DataType.PURCHASEPRICE, version$
|
|
973
|
+
super('', DataType.PURCHASEPRICE, version$9);
|
|
928
974
|
this.data = data;
|
|
929
975
|
}
|
|
930
976
|
}
|
|
931
977
|
class SellingPriceObject extends DataObject {
|
|
932
978
|
constructor(data) {
|
|
933
|
-
super('', DataType.SELLINGPRICE, version$
|
|
979
|
+
super('', DataType.SELLINGPRICE, version$9);
|
|
934
980
|
this.data = data;
|
|
935
981
|
}
|
|
936
982
|
}
|
|
937
983
|
|
|
938
|
-
const version$
|
|
984
|
+
const version$8 = new DataVersion(1, 0, 0, 0);
|
|
939
985
|
class ShelfLabel {
|
|
940
986
|
constructor() {
|
|
941
987
|
}
|
|
942
988
|
}
|
|
943
989
|
class ESLObject extends DataObject {
|
|
944
990
|
constructor(data) {
|
|
945
|
-
super('', DataType.SHELFLABEL, version$
|
|
991
|
+
super('', DataType.SHELFLABEL, version$8);
|
|
946
992
|
this.data = data;
|
|
947
993
|
}
|
|
948
994
|
}
|
|
949
995
|
|
|
950
|
-
const version$
|
|
996
|
+
const version$7 = new DataVersion(1, 0, 0, 0);
|
|
951
997
|
class ESLPool {
|
|
952
998
|
constructor() {
|
|
953
999
|
}
|
|
954
1000
|
}
|
|
955
1001
|
class ESLPoolObject extends DataObject {
|
|
956
1002
|
constructor(data) {
|
|
957
|
-
super('', DataType.ESLPOOL, version$
|
|
1003
|
+
super('', DataType.ESLPOOL, version$7);
|
|
958
1004
|
this.data = data;
|
|
959
1005
|
}
|
|
960
1006
|
}
|
|
961
1007
|
|
|
962
|
-
const version$
|
|
1008
|
+
const version$6 = new DataVersion(1, 0, 0, 0);
|
|
963
1009
|
class ESLAssociation {
|
|
964
1010
|
constructor() {
|
|
965
1011
|
}
|
|
966
1012
|
}
|
|
967
1013
|
class ESLAssociationObject extends DataObject {
|
|
968
1014
|
constructor(data) {
|
|
969
|
-
super('', DataType.ESLASSOCIATION, version$
|
|
1015
|
+
super('', DataType.ESLASSOCIATION, version$6);
|
|
970
1016
|
this.data = data;
|
|
971
1017
|
}
|
|
972
1018
|
}
|
|
973
1019
|
|
|
1020
|
+
const version$5 = new DataVersion(1, 0, 0, 0);
|
|
1021
|
+
class EslTemplate {
|
|
1022
|
+
constructor(id, name, mimetype, standard, width, height, data) {
|
|
1023
|
+
this.id = id;
|
|
1024
|
+
this.name = name;
|
|
1025
|
+
this.mimetype = mimetype;
|
|
1026
|
+
this.standard = standard;
|
|
1027
|
+
this.width = width;
|
|
1028
|
+
this.height = height;
|
|
1029
|
+
this.data = data;
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
class EslTemplateObject extends DataObject {
|
|
1033
|
+
constructor(data) {
|
|
1034
|
+
super('', DataType.ESLTEMPLATE, version$5);
|
|
1035
|
+
this.data = data;
|
|
1036
|
+
}
|
|
1037
|
+
getEntryCount() {
|
|
1038
|
+
return this.data.length;
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
const version$4 = new DataVersion(1, 0, 0, 0);
|
|
1043
|
+
class EslUpdate {
|
|
1044
|
+
constructor(shelflabel, template, accessPoint) {
|
|
1045
|
+
this.shelflabel = shelflabel;
|
|
1046
|
+
this.template = template;
|
|
1047
|
+
this.accessPoint = accessPoint;
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
class EslUpdateObject extends DataObject {
|
|
1051
|
+
constructor(data) {
|
|
1052
|
+
super('', DataType.ESLUPDATE, version$4);
|
|
1053
|
+
this.data = data;
|
|
1054
|
+
}
|
|
1055
|
+
getEntryCount() {
|
|
1056
|
+
return this.data.length;
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
|
|
974
1060
|
const version$3 = new DataVersion(1, 0, 0, 0);
|
|
975
1061
|
class Label {
|
|
976
1062
|
constructor() {
|
|
@@ -1035,5 +1121,5 @@ class QueueObject extends DataObject {
|
|
|
1035
1121
|
* Generated bundle index. Do not edit.
|
|
1036
1122
|
*/
|
|
1037
1123
|
|
|
1038
|
-
export { 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, 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, VerifyRequest, WebTemplateType, WebTemplates };
|
|
1124
|
+
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 };
|
|
1039
1125
|
//# sourceMappingURL=captureid-datatypes.mjs.map
|