@captureid/datatypes 1.0.49 → 1.0.51
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/address-object.mjs +7 -1
- package/esm2022/lib/model/common/management-object.mjs +21 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/captureid-datatypes.mjs +49 -23
- package/fesm2022/captureid-datatypes.mjs.map +1 -1
- package/lib/enums.d.ts +3 -1
- package/lib/model/common/address-object.d.ts +6 -0
- package/lib/model/common/management-object.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/enums.d.ts
CHANGED
|
@@ -32,3 +32,9 @@ export interface AddressObject extends DataObject {
|
|
|
32
32
|
export declare class AddressObject extends DataObject implements AddressObject {
|
|
33
33
|
constructor(data: Address[]);
|
|
34
34
|
}
|
|
35
|
+
export interface AddressTypeObject extends DataObject {
|
|
36
|
+
data: AddressType[];
|
|
37
|
+
}
|
|
38
|
+
export declare class AddressTypeObject extends DataObject implements AddressTypeObject {
|
|
39
|
+
constructor(data: AddressType[]);
|
|
40
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DataObject } from "../data-object";
|
|
2
|
+
export interface Management {
|
|
3
|
+
id: string;
|
|
4
|
+
tenantid: string;
|
|
5
|
+
companyid: string;
|
|
6
|
+
userid: string;
|
|
7
|
+
roleid: string;
|
|
8
|
+
storeid: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class Management implements Management {
|
|
11
|
+
constructor(id?: string, tenantid?: string, companyid?: string, userid?: string, roleid?: string, storeid?: string);
|
|
12
|
+
}
|
|
13
|
+
export interface ManagementObject extends DataObject {
|
|
14
|
+
data: Management[];
|
|
15
|
+
}
|
|
16
|
+
export declare class ManagementObject extends DataObject implements ManagementObject {
|
|
17
|
+
constructor(data: Management[]);
|
|
18
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './lib/model/common/client-object';
|
|
|
22
22
|
export * from './lib/model/common/currency-object';
|
|
23
23
|
export * from './lib/model/common/country-object';
|
|
24
24
|
export * from './lib/model/common/image-object';
|
|
25
|
+
export * from './lib/model/common/management-object';
|
|
25
26
|
export * from './lib/model/common/taxes';
|
|
26
27
|
export * from './lib/model/common/module-object';
|
|
27
28
|
export * from './lib/model/common/location-object';
|