mobicloud-core 1.0.200 → 1.0.202
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/api/types/beacon.d.ts +0 -4
- package/api/types/domain-object.d.ts +37 -3
- package/api/types/index.d.ts +0 -1
- package/api/types/product-dimension.d.ts +3 -0
- package/api/types/product.d.ts +0 -1
- package/bundles/mobicloud-core-api.umd.js +4 -11
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/bundles/mobicloud-core-components.umd.js +11 -14
- package/bundles/mobicloud-core-components.umd.js.map +1 -1
- package/bundles/mobicloud-core-icons.umd.js +2 -1
- package/bundles/mobicloud-core-icons.umd.js.map +1 -1
- package/esm2015/api/types/beacon.js +1 -1
- package/esm2015/api/types/domain-object.js +1 -1
- package/esm2015/api/types/filter-channel.js +5 -5
- package/esm2015/api/types/index.js +1 -2
- package/esm2015/api/types/product-dimension.js +1 -1
- package/esm2015/api/types/product.js +1 -1
- package/esm2015/components/project/project-general/project-general.component.js +2 -3
- package/esm2015/components/project/project-variant-config/project-variant-config.component.js +6 -8
- package/esm2015/components/service-object/service-object-general/service-object-general.component.js +3 -3
- package/esm2015/icons/mobicloud-icons.module.js +3 -2
- package/fesm2015/mobicloud-core-api.js +5 -8
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/fesm2015/mobicloud-core-components.js +8 -11
- package/fesm2015/mobicloud-core-components.js.map +1 -1
- package/fesm2015/mobicloud-core-icons.js +2 -1
- package/fesm2015/mobicloud-core-icons.js.map +1 -1
- package/icons/assets/fonts/mobicloud_iconfont.eot +0 -0
- package/icons/assets/fonts/mobicloud_iconfont.svg +2 -0
- package/icons/assets/fonts/mobicloud_iconfont.ttf +0 -0
- package/icons/assets/fonts/mobicloud_iconfont.woff +0 -0
- package/icons/assets/mobicloud_iconfont.css +11 -5
- package/icons/assets/svg/report.svg +15 -0
- package/icons/assets/svg/report_multi.svg +17 -0
- package/package.json +1 -1
- package/api/types/domain-object-meta-data.d.ts +0 -21
- package/esm2015/api/types/domain-object-meta-data.js +0 -3
package/api/types/beacon.d.ts
CHANGED
|
@@ -3,9 +3,7 @@ import { ProjectLocation } from "./project-location";
|
|
|
3
3
|
import { StorageAccountImage } from "./storage-account-image";
|
|
4
4
|
import { BeaconGroup } from "./beacon-group";
|
|
5
5
|
import { BeaconMetaData } from "./beacon-meta-data";
|
|
6
|
-
import { PlanableTask } from "./planable-task";
|
|
7
6
|
import { SchemaType } from "./schema-type";
|
|
8
|
-
import { SchemaInstance } from "./schema-instance";
|
|
9
7
|
export declare class Beacon extends DomainObject {
|
|
10
8
|
BeaconId?: string | undefined;
|
|
11
9
|
Major?: string | undefined;
|
|
@@ -34,8 +32,6 @@ export declare class Beacon extends DomainObject {
|
|
|
34
32
|
GroupId?: string | undefined;
|
|
35
33
|
Group?: BeaconGroup | undefined;
|
|
36
34
|
MetaDataList?: BeaconMetaData[] | undefined;
|
|
37
|
-
Tasks?: PlanableTask[] | undefined;
|
|
38
35
|
SchemaTypeId?: string | undefined;
|
|
39
36
|
SchemaType?: SchemaType | undefined;
|
|
40
|
-
SchemaInstances?: SchemaInstance[] | undefined;
|
|
41
37
|
}
|
|
@@ -1,20 +1,54 @@
|
|
|
1
|
-
import { DomainObjectMetaData } from "./domain-object-meta-data";
|
|
2
1
|
import { DocumentReference } from "./document-reference";
|
|
3
2
|
import { DimensionField } from "./dimension-field";
|
|
3
|
+
import { UserType } from "./all.enum";
|
|
4
4
|
export declare class DomainObject {
|
|
5
5
|
Id?: string | undefined;
|
|
6
6
|
Name?: string | undefined;
|
|
7
7
|
Description?: string | undefined;
|
|
8
|
-
MetaData?: DomainObjectMetaData | undefined;
|
|
9
8
|
ExtensionId?: string | undefined;
|
|
10
9
|
Extension?: DomainObjectExtension | undefined;
|
|
10
|
+
Created?: Date | undefined;
|
|
11
|
+
CreatedByUser?: string | undefined;
|
|
12
|
+
CreatedByUserType?: UserType | undefined;
|
|
13
|
+
LastUpdated?: Date | undefined;
|
|
14
|
+
UpdatedByUser?: string | undefined;
|
|
15
|
+
UpdatedByUserType?: UserType | undefined;
|
|
16
|
+
ExternalId?: string | undefined;
|
|
17
|
+
Index?: number | undefined;
|
|
18
|
+
VariantConfig1?: string | undefined;
|
|
19
|
+
VariantConfig2?: string | undefined;
|
|
20
|
+
VariantConfig3?: string | undefined;
|
|
21
|
+
VariantConfig4?: string | undefined;
|
|
22
|
+
VariantConfig5?: string | undefined;
|
|
23
|
+
VariantConfig1_Enabled?: boolean | undefined;
|
|
24
|
+
VariantConfig2_Enabled?: boolean | undefined;
|
|
25
|
+
VariantConfig3_Enabled?: boolean | undefined;
|
|
26
|
+
VariantConfig4_Enabled?: boolean | undefined;
|
|
27
|
+
VariantConfig5_Enabled?: boolean | undefined;
|
|
11
28
|
get DataFields(): Array<any> | null;
|
|
12
29
|
}
|
|
13
30
|
export declare class DomainObjectExtension {
|
|
14
31
|
Id?: string | undefined;
|
|
15
32
|
Name?: string | undefined;
|
|
16
33
|
Description?: string | undefined;
|
|
17
|
-
MetaData?: DomainObjectMetaData | undefined;
|
|
18
34
|
Documents?: DocumentReference[] | undefined;
|
|
19
35
|
DimensionFields?: DimensionField[] | undefined;
|
|
36
|
+
Created?: Date | undefined;
|
|
37
|
+
CreatedByUser?: string | undefined;
|
|
38
|
+
CreatedByUserType?: UserType | undefined;
|
|
39
|
+
LastUpdated?: Date | undefined;
|
|
40
|
+
UpdatedByUser?: string | undefined;
|
|
41
|
+
UpdatedByUserType?: UserType | undefined;
|
|
42
|
+
ExternalId?: string | undefined;
|
|
43
|
+
Index?: number | undefined;
|
|
44
|
+
VariantConfig1?: string | undefined;
|
|
45
|
+
VariantConfig2?: string | undefined;
|
|
46
|
+
VariantConfig3?: string | undefined;
|
|
47
|
+
VariantConfig4?: string | undefined;
|
|
48
|
+
VariantConfig5?: string | undefined;
|
|
49
|
+
VariantConfig1_Enabled?: boolean | undefined;
|
|
50
|
+
VariantConfig2_Enabled?: boolean | undefined;
|
|
51
|
+
VariantConfig3_Enabled?: boolean | undefined;
|
|
52
|
+
VariantConfig4_Enabled?: boolean | undefined;
|
|
53
|
+
VariantConfig5_Enabled?: boolean | undefined;
|
|
20
54
|
}
|
package/api/types/index.d.ts
CHANGED
|
@@ -22,7 +22,6 @@ export * from './delivery-mode';
|
|
|
22
22
|
export * from './delivery-term';
|
|
23
23
|
export * from './department';
|
|
24
24
|
export * from './discount-group';
|
|
25
|
-
export * from './domain-object-meta-data';
|
|
26
25
|
export * from './domain-object';
|
|
27
26
|
export * from './employee-checkin-info';
|
|
28
27
|
export * from './employee-group';
|
package/api/types/product.d.ts
CHANGED
|
@@ -34,7 +34,6 @@ export declare class Product extends DomainObject {
|
|
|
34
34
|
Weight?: number | undefined;
|
|
35
35
|
Volume?: number | undefined;
|
|
36
36
|
Blocked?: boolean | undefined;
|
|
37
|
-
Workstation?: string | undefined;
|
|
38
37
|
Printer?: string | undefined;
|
|
39
38
|
OnRequest?: boolean | undefined;
|
|
40
39
|
VendorId?: string | undefined;
|
|
@@ -1628,12 +1628,6 @@
|
|
|
1628
1628
|
return DiscountGroup;
|
|
1629
1629
|
}(DomainObject));
|
|
1630
1630
|
|
|
1631
|
-
var DomainObjectMetaData = /** @class */ (function () {
|
|
1632
|
-
function DomainObjectMetaData() {
|
|
1633
|
-
}
|
|
1634
|
-
return DomainObjectMetaData;
|
|
1635
|
-
}());
|
|
1636
|
-
|
|
1637
1631
|
var EmployeeCheckinInfo = /** @class */ (function () {
|
|
1638
1632
|
function EmployeeCheckinInfo() {
|
|
1639
1633
|
}
|
|
@@ -3273,8 +3267,8 @@
|
|
|
3273
3267
|
}
|
|
3274
3268
|
Object.defineProperty(FilterChannel.prototype, "InputFields", {
|
|
3275
3269
|
get: function () {
|
|
3276
|
-
var _a
|
|
3277
|
-
switch ((
|
|
3270
|
+
var _a;
|
|
3271
|
+
switch ((_a = this.VariantConfig1) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase()) {
|
|
3278
3272
|
case "customer":
|
|
3279
3273
|
return Customer.DATA_FIELDS;
|
|
3280
3274
|
case "employee":
|
|
@@ -3290,8 +3284,8 @@
|
|
|
3290
3284
|
});
|
|
3291
3285
|
Object.defineProperty(FilterChannel.prototype, "OutputFields", {
|
|
3292
3286
|
get: function () {
|
|
3293
|
-
var _a
|
|
3294
|
-
switch ((
|
|
3287
|
+
var _a;
|
|
3288
|
+
switch ((_a = this.VariantConfig2) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase()) {
|
|
3295
3289
|
case "customer":
|
|
3296
3290
|
return Customer.DATA_FIELDS;
|
|
3297
3291
|
case "employee":
|
|
@@ -3620,7 +3614,6 @@
|
|
|
3620
3614
|
exports.DocumentType = DocumentType;
|
|
3621
3615
|
exports.DomainObject = DomainObject;
|
|
3622
3616
|
exports.DomainObjectExtension = DomainObjectExtension;
|
|
3623
|
-
exports.DomainObjectMetaData = DomainObjectMetaData;
|
|
3624
3617
|
exports.EmailTemplate = EmailTemplate;
|
|
3625
3618
|
exports.Employee = Employee;
|
|
3626
3619
|
exports.EmployeeCheckinInfo = EmployeeCheckinInfo;
|