mobicloud-core 1.0.233 → 1.0.235
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/all.enum.d.ts +4 -0
- package/api/types/customer.d.ts +2 -0
- package/api/types/index.d.ts +1 -0
- package/api/types/sales-order.d.ts +3 -0
- package/api/types/webshop.d.ts +14 -0
- package/bundles/mobicloud-core-api.umd.js +14 -0
- package/bundles/mobicloud-core-api.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/all.enum.js +6 -1
- package/esm2015/api/types/customer.js +1 -1
- package/esm2015/api/types/index.js +2 -1
- package/esm2015/api/types/sales-order.js +1 -1
- package/esm2015/api/types/webshop.js +4 -0
- package/esm2015/icons/mobicloud-icons.module.js +3 -2
- package/fesm2015/mobicloud-core-api.js +9 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/fesm2015/mobicloud-core-icons.js +2 -1
- package/fesm2015/mobicloud-core-icons.js.map +1 -1
- package/icons/assets/svg/settings.svg +15 -0
- package/icons/assets/svg/zoom_in.svg +10 -0
- package/icons/assets/svg/zoom_out.svg +9 -0
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -154,6 +154,10 @@ export declare enum PayrollProviderType {
|
|
|
154
154
|
Dataløn = "Datal\u00F8n",
|
|
155
155
|
Danløn = "Danl\u00F8n"
|
|
156
156
|
}
|
|
157
|
+
export declare enum WebshopProviderType {
|
|
158
|
+
Custom = "Custom",
|
|
159
|
+
Shopify = "Shopify"
|
|
160
|
+
}
|
|
157
161
|
export declare enum DeliveryModeType {
|
|
158
162
|
None = "None",
|
|
159
163
|
Pickup = "Pickup",
|
package/api/types/customer.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ import { DeliveryMode } from "./delivery-mode";
|
|
|
11
11
|
import { DeliveryTerm } from "./delivery-term";
|
|
12
12
|
import { CustomerUser } from "./customer-user";
|
|
13
13
|
import { InventLocation } from './invent-location';
|
|
14
|
+
import { Webshop } from './webshop';
|
|
14
15
|
export declare class Customer extends DomainObject {
|
|
15
16
|
CustomerId?: string | undefined;
|
|
16
17
|
AccountNumber?: string | undefined;
|
|
@@ -65,6 +66,7 @@ export declare class Customer extends DomainObject {
|
|
|
65
66
|
Users?: CustomerUser[];
|
|
66
67
|
InventLocationId?: string | undefined;
|
|
67
68
|
InventLocation?: InventLocation | undefined;
|
|
69
|
+
Webshops?: Webshop[] | undefined;
|
|
68
70
|
get DataFields(): Array<any> | null;
|
|
69
71
|
static DATA_FIELDS: Array<any>;
|
|
70
72
|
}
|
package/api/types/index.d.ts
CHANGED
|
@@ -149,6 +149,7 @@ export * from './service-object';
|
|
|
149
149
|
export * from './service-object-line';
|
|
150
150
|
export * from './schema-type';
|
|
151
151
|
export * from './schema-instance';
|
|
152
|
+
export * from './webshop';
|
|
152
153
|
export * from './gateway-info';
|
|
153
154
|
export * from './gateway-printer-info';
|
|
154
155
|
export * from './gateway-file-response';
|
|
@@ -8,6 +8,7 @@ import { DeliveryTerm } from "./delivery-term";
|
|
|
8
8
|
import { SalesLine } from "./sales-line";
|
|
9
9
|
import { SalesPaymentLine } from "./sales-payment-line";
|
|
10
10
|
import { Currency } from "./currency";
|
|
11
|
+
import { Webshop } from "./webshop";
|
|
11
12
|
export declare class SalesOrder extends DomainObject {
|
|
12
13
|
SalesId?: string | undefined;
|
|
13
14
|
OrderDate?: Date | undefined;
|
|
@@ -26,6 +27,8 @@ export declare class SalesOrder extends DomainObject {
|
|
|
26
27
|
DeliveryMode?: DeliveryMode | undefined;
|
|
27
28
|
DeliveryTermId?: string | undefined;
|
|
28
29
|
DeliveryTerm?: DeliveryTerm | undefined;
|
|
30
|
+
WebshopId?: string | undefined;
|
|
31
|
+
Webshop?: Webshop | undefined;
|
|
29
32
|
Note?: string | undefined;
|
|
30
33
|
DeliveryName?: string | undefined;
|
|
31
34
|
DeliveryContact?: string | undefined;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DomainObject } from "./domain-object";
|
|
2
|
+
import { WebshopProviderType } from "./all.enum";
|
|
3
|
+
import { Customer } from "./customer";
|
|
4
|
+
export declare class Webshop extends DomainObject {
|
|
5
|
+
WebshopId?: string | undefined;
|
|
6
|
+
Active?: boolean | undefined;
|
|
7
|
+
SignatureKey?: string | undefined;
|
|
8
|
+
ShopDomain?: string | undefined;
|
|
9
|
+
Type?: WebshopProviderType | undefined;
|
|
10
|
+
API_ClientId?: string | undefined;
|
|
11
|
+
API_ClientSecret?: string | undefined;
|
|
12
|
+
API_ShopUrl?: string | undefined;
|
|
13
|
+
Customers?: Customer[] | undefined;
|
|
14
|
+
}
|
|
@@ -1111,6 +1111,11 @@
|
|
|
1111
1111
|
PayrollProviderType["Datal\u00F8n"] = "Datal\u00F8n";
|
|
1112
1112
|
PayrollProviderType["Danl\u00F8n"] = "Danl\u00F8n";
|
|
1113
1113
|
})(exports.PayrollProviderType || (exports.PayrollProviderType = {}));
|
|
1114
|
+
exports.WebshopProviderType = void 0;
|
|
1115
|
+
(function (WebshopProviderType) {
|
|
1116
|
+
WebshopProviderType["Custom"] = "Custom";
|
|
1117
|
+
WebshopProviderType["Shopify"] = "Shopify";
|
|
1118
|
+
})(exports.WebshopProviderType || (exports.WebshopProviderType = {}));
|
|
1114
1119
|
exports.DeliveryModeType = void 0;
|
|
1115
1120
|
(function (DeliveryModeType) {
|
|
1116
1121
|
DeliveryModeType["None"] = "None";
|
|
@@ -3590,6 +3595,14 @@
|
|
|
3590
3595
|
return SchemaInstance;
|
|
3591
3596
|
}(DomainObject));
|
|
3592
3597
|
|
|
3598
|
+
var Webshop = /** @class */ (function (_super) {
|
|
3599
|
+
__extends(Webshop, _super);
|
|
3600
|
+
function Webshop() {
|
|
3601
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3602
|
+
}
|
|
3603
|
+
return Webshop;
|
|
3604
|
+
}(DomainObject));
|
|
3605
|
+
|
|
3593
3606
|
var GatewayInfo = /** @class */ (function () {
|
|
3594
3607
|
function GatewayInfo() {
|
|
3595
3608
|
}
|
|
@@ -3880,6 +3893,7 @@
|
|
|
3880
3893
|
exports.WMSPallet = WMSPallet;
|
|
3881
3894
|
exports.WMSPalletType = WMSPalletType;
|
|
3882
3895
|
exports.WMSZone = WMSZone;
|
|
3896
|
+
exports.Webshop = Webshop;
|
|
3883
3897
|
exports.WorkBreak = WorkBreak;
|
|
3884
3898
|
exports.WorkCenter = WorkCenter;
|
|
3885
3899
|
exports.WorkCenterSetting = WorkCenterSetting;
|