mobicloud-core 1.0.324 → 1.0.326

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.
@@ -1,8 +1,10 @@
1
1
  export * from './all.enum';
2
2
  export * from './barcode-config-type';
3
3
  export * from './barcode-config';
4
+ export * from './positional-barcode-config';
4
5
  export * from './barcode-segment-type';
5
6
  export * from './barcode-segment';
7
+ export * from './positional-barcode-segment';
6
8
  export * from './barcode-type';
7
9
  export * from './barcode';
8
10
  export * from './beacon-group';
@@ -0,0 +1,17 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { Customer } from "./customer";
3
+ import { Vendor } from "./vendor";
4
+ import { BarcodeConfigType } from "./barcode-config-type";
5
+ import { BarcodeSegment } from "./barcode-segment";
6
+ export declare class PositionalBarcodeConfig extends DomainObject {
7
+ ConfigId?: string | undefined;
8
+ ConfigTypeId?: string | undefined;
9
+ ConfigType?: BarcodeConfigType | undefined;
10
+ CustomerId?: string | undefined;
11
+ Customer?: Customer | undefined;
12
+ VendorId?: string | undefined;
13
+ Vendor?: Vendor | undefined;
14
+ StartTag?: string | undefined;
15
+ EndTag?: string | undefined;
16
+ Segments?: BarcodeSegment[] | undefined;
17
+ }
@@ -0,0 +1,11 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { BarcodeSegmentType } from "./barcode-segment-type";
3
+ export declare class PositionalBarcodeSegment extends DomainObject {
4
+ SegmentId?: string | undefined;
5
+ StartPosition?: number | undefined;
6
+ Length?: number | undefined;
7
+ Value?: string | undefined;
8
+ SegmentTypeId?: string | undefined;
9
+ SegmentType?: BarcodeSegmentType | undefined;
10
+ ConfigId?: string | undefined;
11
+ }
@@ -1565,6 +1565,14 @@
1565
1565
  return BarcodeConfig;
1566
1566
  }(DomainObject));
1567
1567
 
1568
+ var PositionalBarcodeConfig = /** @class */ (function (_super) {
1569
+ __extends(PositionalBarcodeConfig, _super);
1570
+ function PositionalBarcodeConfig() {
1571
+ return _super !== null && _super.apply(this, arguments) || this;
1572
+ }
1573
+ return PositionalBarcodeConfig;
1574
+ }(DomainObject));
1575
+
1568
1576
  var BarcodeSegmentType = /** @class */ (function (_super) {
1569
1577
  __extends(BarcodeSegmentType, _super);
1570
1578
  function BarcodeSegmentType() {
@@ -1581,6 +1589,14 @@
1581
1589
  return BarcodeSegment;
1582
1590
  }(DomainObject));
1583
1591
 
1592
+ var PositionalBarcodeSegment = /** @class */ (function (_super) {
1593
+ __extends(PositionalBarcodeSegment, _super);
1594
+ function PositionalBarcodeSegment() {
1595
+ return _super !== null && _super.apply(this, arguments) || this;
1596
+ }
1597
+ return PositionalBarcodeSegment;
1598
+ }(DomainObject));
1599
+
1584
1600
  var BarcodeType = /** @class */ (function (_super) {
1585
1601
  __extends(BarcodeType, _super);
1586
1602
  function BarcodeType() {
@@ -4039,6 +4055,8 @@
4039
4055
  exports.PlanningMapSlideShow = PlanningMapSlideShow;
4040
4056
  exports.PlanningMapSlideShowEntry = PlanningMapSlideShowEntry;
4041
4057
  exports.PlanningSetting = PlanningSetting;
4058
+ exports.PositionalBarcodeConfig = PositionalBarcodeConfig;
4059
+ exports.PositionalBarcodeSegment = PositionalBarcodeSegment;
4042
4060
  exports.PriceList = PriceList;
4043
4061
  exports.PriceListLine = PriceListLine;
4044
4062
  exports.Product = Product;