mobicloud-core 1.0.308 → 1.0.310
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/document-reference.d.ts +2 -0
- package/api/types/storage-account-document.d.ts +1 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/bundles/mobicloud-core-components.umd.js +29 -29
- package/bundles/mobicloud-core-components.umd.js.map +1 -1
- package/esm2015/api/types/document-reference.js +1 -1
- package/esm2015/api/types/storage-account-document.js +1 -1
- package/esm2015/components/customer-user/customer-user-address/customer-user-address.component.js +1 -1
- package/esm2015/components/customer-user/customer-user-details/customer-user-details.component.js +1 -1
- package/esm2015/components/customer-user/customer-user-general/customer-user-general.component.js +1 -1
- package/esm2015/components/dimension/dimension-group-box/dimension-group-box.component.js +1 -1
- package/esm2015/components/document/document-catalog/document-catalog.component.js +1 -1
- package/esm2015/components/employee/employee-address/employee-address.component.js +1 -1
- package/esm2015/components/employee/employee-checkin-info/employee-checkin-info.component.js +1 -1
- package/esm2015/components/employee/employee-profile/employee-profile.component.js +1 -1
- package/esm2015/components/employee/employee-user-info/employee-user-info.component.js +1 -1
- package/esm2015/components/main-nav/main-nav.component.js +1 -1
- package/esm2015/components/pickinglist/pickinglist-add-new-shipment/pickinglist-add-new-shipment.component.js +1 -1
- package/esm2015/components/profile/profile-page-customer-user/profile-page-customer-user.component.js +1 -1
- package/esm2015/components/profile/profile-page-employee/profile-page-employee.component.js +1 -1
- package/esm2015/components/profile/profile-page-system-user/profile-page-system-user.component.js +1 -1
- package/esm2015/components/project/project-description/project-description.component.js +1 -1
- package/esm2015/components/project/project-finance/project-finance.component.js +1 -1
- package/esm2015/components/project/project-general/project-general.component.js +1 -1
- package/esm2015/components/project/project-location/project-location.component.js +1 -1
- package/esm2015/components/project/project-time/project-time.component.js +1 -1
- package/esm2015/components/project/project-variant-config/project-variant-config.component.js +1 -1
- package/esm2015/components/service-object/service-object-general/service-object-general.component.js +1 -1
- package/esm2015/components/service-object/service-object-inventory/service-object-inventory.component.js +1 -1
- package/esm2015/components/service-object/service-object-location/service-object-location.component.js +1 -1
- package/esm2015/components/service-object/service-object-model/service-object-model.component.js +1 -1
- package/esm2015/components/service-object/service-object-service/service-object-service.component.js +1 -1
- package/esm2015/components/system-user/system-user-profile/system-user-profile.component.js +1 -1
- package/esm2015/components/vendor-user/vendor-user-address/vendor-user-address.component.js +1 -1
- package/esm2015/components/vendor-user/vendor-user-details/vendor-user-details.component.js +1 -1
- package/esm2015/components/vendor-user/vendor-user-general/vendor-user-general.component.js +1 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/fesm2015/mobicloud-core-components.js +29 -29
- package/fesm2015/mobicloud-core-components.js.map +1 -1
- package/package.json +3 -3
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DomainObject } from "./domain-object";
|
|
2
2
|
import { Document } from "./document";
|
|
3
|
+
import { StorageAccountDocument } from "./storage-account-document";
|
|
3
4
|
export declare class DocumentReference extends DomainObject {
|
|
4
5
|
Text?: string | undefined;
|
|
5
6
|
Position?: number | undefined;
|
|
@@ -7,6 +8,7 @@ export declare class DocumentReference extends DomainObject {
|
|
|
7
8
|
Active?: number | undefined;
|
|
8
9
|
DocumentId?: string | undefined;
|
|
9
10
|
Document?: Document | undefined;
|
|
11
|
+
StorageAccountDocument?: StorageAccountDocument | undefined;
|
|
10
12
|
X_CoordinateReference?: number | undefined;
|
|
11
13
|
Y_CoordinateReference?: number | undefined;
|
|
12
14
|
}
|