@captureid/datatypes 0.0.64 → 0.0.66
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 +4 -1
- package/esm2022/lib/model/common/cart-object.mjs +25 -0
- package/esm2022/lib/model/erp/items/booking-object.mjs +3 -2
- package/esm2022/lib/model/erp/items/item-short-list-object.mjs +23 -0
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/captureid-datatypes.mjs +109 -63
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +5 -2
- package/lib/model/common/cart-object.d.ts +22 -0
- package/lib/model/erp/items/booking-object.d.ts +2 -1
- package/lib/model/erp/items/item-short-list-object.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DataObject } from "../../data-object";
|
|
2
|
+
export interface ItemShort {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
itemno: string;
|
|
7
|
+
ean: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class ItemShort implements ItemShort {
|
|
10
|
+
constructor(id?: string, name?: string, description?: string, itemno?: string, ean?: string);
|
|
11
|
+
}
|
|
12
|
+
export interface ItemShortObject {
|
|
13
|
+
data: ItemShort[];
|
|
14
|
+
}
|
|
15
|
+
export declare class ItemShortObject extends DataObject implements ItemShortObject {
|
|
16
|
+
constructor(data: ItemShort[]);
|
|
17
|
+
getEntryCount(): number;
|
|
18
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './lib/model/common/company-object';
|
|
|
28
28
|
export * from './lib/model/common/vendor-object';
|
|
29
29
|
export * from './lib/model/common/accesspoint-object';
|
|
30
30
|
export * from './lib/model/common/message-object';
|
|
31
|
+
export * from './lib/model/common/cart-object';
|
|
31
32
|
export * from './lib/model/erp/items/dimension-object';
|
|
32
33
|
export * from './lib/model/erp/items/gtin';
|
|
33
34
|
export * from './lib/model/erp/items/inventory-object';
|
|
@@ -40,6 +41,7 @@ export * from './lib/model/erp/items/shelf-object';
|
|
|
40
41
|
export * from './lib/model/erp/items/stock-object';
|
|
41
42
|
export * from './lib/model/erp/items/booking-object';
|
|
42
43
|
export * from './lib/model/erp/items/price-object';
|
|
44
|
+
export * from './lib/model/erp/items/item-short-list-object';
|
|
43
45
|
export * from './lib/model/esl/esl-object';
|
|
44
46
|
export * from './lib/model/esl/esl-pool-object';
|
|
45
47
|
export * from './lib/model/esl/esl-association-object';
|