@things-factory/operato-mms 4.0.39 → 4.0.40
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/client/pages/order/logistics/request-ro-popup.js +1 -1
- package/client/pages/order/order-by-store.js +1 -1
- package/client/pages/reports/sales-by-platform/lazada-sales-report.js +108 -17
- package/client/pages/reports/sales-by-platform/shopee-sales-report.js +66 -8
- package/dist-server/graphql/resolvers/interface-with-hub/add-release-order.js +134 -61
- package/dist-server/graphql/resolvers/interface-with-hub/add-release-order.js.map +1 -1
- package/dist-server/graphql/resolvers/interface-with-hub/auto-add-release-order.js +68 -62
- package/dist-server/graphql/resolvers/interface-with-hub/auto-add-release-order.js.map +1 -1
- package/dist-server/routers/etrax-router.js +31 -9
- package/dist-server/routers/etrax-router.js.map +1 -1
- package/package.json +61 -61
- package/server/graphql/resolvers/interface-with-hub/add-release-order.ts +148 -64
- package/server/graphql/resolvers/interface-with-hub/auto-add-release-order.ts +70 -63
- package/server/routers/etrax-router.ts +41 -12
- package/translations/en.json +6 -6
- package/translations/ko.json +6 -6
- package/translations/ms.json +6 -6
- package/translations/zh.json +6 -6
|
@@ -30,71 +30,77 @@ exports.autoAddReleaseOrderResolver = {
|
|
|
30
30
|
for (var i = 0; i < marketplaceOrders.length; i++) {
|
|
31
31
|
const marketplaceOrder = marketplaceOrders[i];
|
|
32
32
|
const marketplaceOrderShippings = await (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrderShipping).find({
|
|
33
|
-
where: { orderNoRef: marketplaceOrder.orderNo, domain }
|
|
33
|
+
where: { orderNoRef: marketplaceOrder.orderNo, domain },
|
|
34
|
+
order: { subOrderNoRef: 'ASC' }
|
|
34
35
|
});
|
|
35
36
|
for (var j = 0; j < marketplaceOrderShippings.length; j++) {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
? marketplaceOrderShipping.ownTrackingNo
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
:
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
37
|
+
let marketplaceOrderShipping = marketplaceOrderShippings[j];
|
|
38
|
+
if (!(marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.releaseOrderId)) {
|
|
39
|
+
const date = new Date();
|
|
40
|
+
const releaseDate = `${date.getFullYear()}-${(date.getMonth() + 1)
|
|
41
|
+
.toString()
|
|
42
|
+
.padStart(2, '0')}-${date.getDate().toString().padStart(2, '0')}`;
|
|
43
|
+
const newMarketplaceOrder = {
|
|
44
|
+
releaseDate,
|
|
45
|
+
type: 'b2c',
|
|
46
|
+
transporter: marketplaceOrder.shippingProvider,
|
|
47
|
+
trackingNo: (marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.ownTrackingNo)
|
|
48
|
+
? marketplaceOrderShipping.ownTrackingNo
|
|
49
|
+
: marketplaceOrderShipping.trackingNo,
|
|
50
|
+
packingOption: true,
|
|
51
|
+
exportOption: false,
|
|
52
|
+
ownTransport: true,
|
|
53
|
+
courierOption: true,
|
|
54
|
+
collectionOrderNo: marketplaceOrder.orderNo,
|
|
55
|
+
refNo: marketplaceOrder.orderNo,
|
|
56
|
+
refNo2: marketplaceOrderShippings.length > 1 ? marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.subOrderNoRef : marketplaceOrder.orderNo,
|
|
57
|
+
deliverTo: {
|
|
58
|
+
deliveryAddress1: marketplaceOrderShipping.address1,
|
|
59
|
+
deliveryAddress2: marketplaceOrderShipping.address2,
|
|
60
|
+
deliveryAddress3: marketplaceOrderShipping.address3,
|
|
61
|
+
deliveryAddress4: marketplaceOrderShipping.address4,
|
|
62
|
+
deliveryAddress5: marketplaceOrderShipping.address5,
|
|
63
|
+
attentionTo: marketplaceOrderShipping.attentionTo,
|
|
64
|
+
city: marketplaceOrderShipping.city,
|
|
65
|
+
postalCode: marketplaceOrderShipping.postCode,
|
|
66
|
+
country: marketplaceOrderShipping.country,
|
|
67
|
+
state: marketplaceOrderShipping.state,
|
|
68
|
+
phone1: marketplaceOrderShipping.phone1,
|
|
69
|
+
phone2: (marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.phone2) ? marketplaceOrderShipping.phone2 : null
|
|
70
|
+
},
|
|
71
|
+
marketplaceOrderStatus: marketplaceOrder.status,
|
|
72
|
+
airwayBill: (marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.airwayBill) ? marketplaceOrderShipping.airwayBill : null,
|
|
73
|
+
invoice: (marketplaceOrderShipping === null || marketplaceOrderShipping === void 0 ? void 0 : marketplaceOrderShipping.invoice) ? marketplaceOrderShipping.invoice : null,
|
|
74
|
+
orderInventories: marketplaceOrder.marketplaceOrderItems
|
|
75
|
+
.filter(item => {
|
|
76
|
+
if (item.marketplaceOrderShipping.id === marketplaceOrderShipping.id) {
|
|
77
|
+
return item;
|
|
78
|
+
}
|
|
79
|
+
})
|
|
80
|
+
.map((orderItem) => {
|
|
81
|
+
const { marketplaceProductVariation: productVariation } = orderItem;
|
|
82
|
+
return {
|
|
83
|
+
product: {
|
|
84
|
+
sku: productVariation.sku
|
|
85
|
+
},
|
|
86
|
+
releaseQty: orderItem.qty
|
|
87
|
+
};
|
|
88
|
+
})
|
|
89
|
+
};
|
|
90
|
+
var releaseOrder = await integration_fulfillment_1.FulfillmentAPI.createOutboundOrder(fulfilmentCenter, {
|
|
91
|
+
customerBizplaceId,
|
|
92
|
+
releaseOrder: newMarketplaceOrder
|
|
93
|
+
});
|
|
94
|
+
marketplaceOrderShipping.releaseOrderId = releaseOrder.id;
|
|
95
|
+
marketplaceOrderShipping.fulfillmentCenter = fulfilmentCenter;
|
|
96
|
+
await (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrderShipping).save(marketplaceOrderShipping);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
if (releaseOrder && (releaseOrder === null || releaseOrder === void 0 ? void 0 : releaseOrder.id)) {
|
|
100
|
+
marketplaceOrder.releaseOrderId = releaseOrder.id;
|
|
101
|
+
marketplaceOrder.fulfillmentCenter = fulfilmentCenter;
|
|
102
|
+
await (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrder).save(marketplaceOrder);
|
|
94
103
|
}
|
|
95
|
-
marketplaceOrder.releaseOrderId = releaseOrder.id;
|
|
96
|
-
marketplaceOrder.fulfillmentCenter = fulfilmentCenter;
|
|
97
|
-
await (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrder).save(marketplaceOrder);
|
|
98
104
|
}
|
|
99
105
|
}
|
|
100
106
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auto-add-release-order.js","sourceRoot":"","sources":["../../../../server/graphql/resolvers/interface-with-hub/auto-add-release-order.ts"],"names":[],"mappings":";;;AAAA,qCAA+E;AAE/E,uDAAyE;AACzE,qFAAwE;AACxE,uEAA6F;AAC7F,iDAA8C;AAEjC,QAAA,2BAA2B,GAAG;IACzC,KAAK,CAAC,mBAAmB,CAAC,CAAO,EAAE,EAAE,WAAW,EAA2B,EAAE,OAAY;QACvF,MAAM,EAAE,MAAM,EAAE,GAAuB,OAAO,CAAC,KAAK,CAAA;QAEpD,MAAM,EAAE,GAAyC,IAAA,4BAAkB,EAAC,mCAAgB,EAAE,IAAI,CAAC,CAAA;QAC3F,MAAM,iBAAiB,GAAuB,MAAM,EAAE;aACnD,iBAAiB,CAAC,0BAA0B,EAAE,KAAK,CAAC;aACpD,iBAAiB,CAAC,8BAA8B,EAAE,KAAK,CAAC;aACxD,iBAAiB,CAAC,iCAAiC,EAAE,KAAK,CAAC;aAC3D,iBAAiB,CAAC,qBAAqB,EAAE,KAAK,CAAC;aAC/C,KAAK,CAAC,uBAAuB,EAAE,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC;aACvD,QAAQ,CAAC,2BAA2B,CAAC;aACrC,QAAQ,CAAC,2BAA2B,EAAE;YACrC,MAAM,EAAE,CAAC,eAAe,EAAE,aAAa,EAAE,QAAQ,EAAE,YAAY,CAAC;SACjE,CAAC;aACD,QAAQ,CAAC,iCAAiC,EAAE,EAAE,iBAAiB,EAAE,QAAQ,EAAE,CAAC;aAC5E,OAAO,EAAE,CAAA;QAEZ,IAAI,gBAAgB,GAAG,MAAM,wCAAc,CAAC,oBAAoB,CAAC,WAAW,CAAC,CAAA;QAC7E,IAAI,QAAQ,GAAW,gBAAgB,CAAC,QAAQ,CAAA;QAEhD,IAAI,eAAe,GAAW,MAAM,IAAA,uBAAa,EAAC,cAAM,CAAC,CAAC,OAAO,CAAC,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,QAAQ,EAAE,EAAE,CAAC,CAAA;QACrG,IAAI,iBAAiB,GAAe,MAAM,IAAA,+BAAoB,EAAC,eAAe,CAAC,CAAA;QAC/E,MAAM,kBAAkB,GAAW,iBAAiB,CAAC,IAAI,CACvD,gBAAgB,CAAC,EAAE,CAAC,gBAAgB,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,MAAM,CAAC,EAAE,CACrE,CAAC,EAAE,CAAA;QAEJ,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,iBAAiB,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACjD,MAAM,gBAAgB,GAAG,iBAAiB,CAAC,CAAC,CAAC,CAAA;YAE7C,MAAM,yBAAyB,GAA+B,MAAM,IAAA,uBAAa,EAAC,2CAAwB,CAAC,CAAC,IAAI,CAAC;gBAC/G,KAAK,EAAE,EAAE,UAAU,EAAE,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE;
|
|
1
|
+
{"version":3,"file":"auto-add-release-order.js","sourceRoot":"","sources":["../../../../server/graphql/resolvers/interface-with-hub/auto-add-release-order.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,14 +6,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.etraxRouter = void 0;
|
|
7
7
|
const koa_router_1 = __importDefault(require("koa-router"));
|
|
8
8
|
const typeorm_1 = require("typeorm");
|
|
9
|
+
const biz_base_1 = require("@things-factory/biz-base");
|
|
10
|
+
const integration_fulfillment_1 = require("@things-factory/integration-fulfillment");
|
|
9
11
|
const integration_lmd_1 = require("@things-factory/integration-lmd");
|
|
10
12
|
const integration_marketplace_1 = require("@things-factory/integration-marketplace");
|
|
11
13
|
const marketplace_base_1 = require("@things-factory/marketplace-base");
|
|
12
|
-
|
|
14
|
+
const shell_1 = require("@things-factory/shell");
|
|
13
15
|
const debug = require('debug')('things-factory:jest.config');
|
|
14
16
|
exports.etraxRouter = new koa_router_1.default();
|
|
15
17
|
exports.etraxRouter.post(`/lmd/etrax/status_update`, async (context, next) => {
|
|
16
|
-
const { domain, user } = context.state;
|
|
17
18
|
const repo = (0, typeorm_1.getRepository)(integration_lmd_1.LastMileDelivery);
|
|
18
19
|
const requestBody = context.request.body;
|
|
19
20
|
debug('etrax_status_update/context: ', context);
|
|
@@ -23,7 +24,6 @@ exports.etraxRouter.post(`/lmd/etrax/status_update`, async (context, next) => {
|
|
|
23
24
|
const extOrderNo = requestBody.ExtOrderNo;
|
|
24
25
|
const trackingNo = requestBody.TrackingNo;
|
|
25
26
|
const status = requestBody.Status;
|
|
26
|
-
const trackingDate = requestBody.TrackingDate; //yyyyMMddHHmmss
|
|
27
27
|
const awbUrl = requestBody.AWBurl;
|
|
28
28
|
const customerCode = bodySourceID;
|
|
29
29
|
const lmd = await repo.findOne({
|
|
@@ -58,17 +58,42 @@ exports.etraxRouter.post(`/lmd/etrax/status_update`, async (context, next) => {
|
|
|
58
58
|
if (status === 'TAS') {
|
|
59
59
|
//Update DB if Validate Success
|
|
60
60
|
const orderRepo = (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrder);
|
|
61
|
-
const orderItemRepo = (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrderItem);
|
|
62
61
|
const orderShippingRepo = (0, typeorm_1.getRepository)(marketplace_base_1.MarketplaceOrderShipping);
|
|
63
62
|
let order = await orderRepo.findOne({
|
|
64
63
|
where: { orderNo: extOrderNo },
|
|
65
|
-
relations: [
|
|
64
|
+
relations: [
|
|
65
|
+
'domain',
|
|
66
|
+
'marketplaceStore',
|
|
67
|
+
'marketplaceOrderItems',
|
|
68
|
+
'marketplaceOrderItems.marketplaceOrderShipping',
|
|
69
|
+
'marketplaceOrderItems.marketplaceOrderShipping.fulfillmentCenter'
|
|
70
|
+
]
|
|
66
71
|
});
|
|
67
72
|
let orderItems = order.marketplaceOrderItems;
|
|
68
73
|
for (const orderItem of orderItems) {
|
|
69
74
|
if (orderItem.marketplaceOrderShipping !== null) {
|
|
70
75
|
const orderShipping = orderItem.marketplaceOrderShipping;
|
|
76
|
+
const fulfillmentCenter = orderShipping === null || orderShipping === void 0 ? void 0 : orderShipping.fulfillmentCenter;
|
|
77
|
+
const marketplaceStore = order.marketplaceStore;
|
|
71
78
|
const currentDate = new Date();
|
|
79
|
+
const centerId = fulfillmentCenter.centerId;
|
|
80
|
+
const warehouseDomain = await (0, typeorm_1.getRepository)(shell_1.Domain).findOne({ where: { subdomain: centerId } });
|
|
81
|
+
const customerBizplaces = await (0, biz_base_1.getCustomerBizplaces)(warehouseDomain);
|
|
82
|
+
const customerBizplaceId = customerBizplaces.find(customerBizplace => customerBizplace.company.domain.id == (order === null || order === void 0 ? void 0 : order.domain.id)).id;
|
|
83
|
+
const marketplaceTransporter = await (0, typeorm_1.getRepository)(integration_marketplace_1.MarketplaceTransporter).findOne({
|
|
84
|
+
where: { marketplaceStore },
|
|
85
|
+
relations: ['pickupTransporter']
|
|
86
|
+
});
|
|
87
|
+
let patch = {
|
|
88
|
+
id: orderShipping.releaseOrderId,
|
|
89
|
+
trackingNo: trackingNo,
|
|
90
|
+
transporter: marketplaceTransporter === null || marketplaceTransporter === void 0 ? void 0 : marketplaceTransporter.pickupTransporter.name
|
|
91
|
+
};
|
|
92
|
+
integration_fulfillment_1.FulfillmentAPI.updateReleaseGoodDetails(fulfillmentCenter, {
|
|
93
|
+
customerBizplaceId,
|
|
94
|
+
releaseOrder: Object.assign({}, patch),
|
|
95
|
+
shippingOrder: null
|
|
96
|
+
});
|
|
72
97
|
await orderShippingRepo.update({ id: orderShipping.id }, { trackingNo: trackingNo, airwayBill: awbUrl, updatedAt: currentDate });
|
|
73
98
|
}
|
|
74
99
|
}
|
|
@@ -77,7 +102,7 @@ exports.etraxRouter.post(`/lmd/etrax/status_update`, async (context, next) => {
|
|
|
77
102
|
// to-do update tracking no to every marketplaces
|
|
78
103
|
if (marketplaceStore.platform === 'woocommerce') {
|
|
79
104
|
const note = 'http://ets.sntglobal.com/?mod=tracking&action=index&orders=' + trackingNo;
|
|
80
|
-
|
|
105
|
+
await integration_marketplace_1.StoreAPI.createOrderNote(marketplaceStore, { orderId: order.name, note });
|
|
81
106
|
}
|
|
82
107
|
const resp = {
|
|
83
108
|
Status: 'SUCCESS',
|
|
@@ -89,9 +114,6 @@ exports.etraxRouter.post(`/lmd/etrax/status_update`, async (context, next) => {
|
|
|
89
114
|
};
|
|
90
115
|
context.type = 'application/json';
|
|
91
116
|
context.body = JSON.stringify(resp);
|
|
92
|
-
//let orderShipping: MarketplaceOrderShipping = orderItemRepo.find({})
|
|
93
|
-
//await orderItemRepo.save(orderItem)
|
|
94
|
-
//await orderShippingRepo.save(orderShipping)
|
|
95
117
|
}
|
|
96
118
|
});
|
|
97
119
|
//# sourceMappingURL=etrax-router.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"etrax-router.js","sourceRoot":"","sources":["../../server/routers/etrax-router.ts"],"names":[],"mappings":";;;;;;AAAA,4DAA+B;AAC/B,qCAAuC;AAEvC,qEAAyE;AACzE,
|
|
1
|
+
{"version":3,"file":"etrax-router.js","sourceRoot":"","sources":["../../server/routers/etrax-router.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-mms",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.40",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -41,69 +41,69 @@
|
|
|
41
41
|
"@material/mwc-formfield": "^0.25.3",
|
|
42
42
|
"@material/mwc-linear-progress": "^0.25.3",
|
|
43
43
|
"@material/mwc-radio": "^0.25.3",
|
|
44
|
-
"@operato/ghost-print": "^0.3.
|
|
45
|
-
"@operato/scene-chartjs": "^0.1.
|
|
46
|
-
"@operato/scene-clock": "^0.1.
|
|
47
|
-
"@operato/scene-clone": "^0.1.
|
|
48
|
-
"@operato/scene-compass": "^0.1.
|
|
49
|
-
"@operato/scene-gauge": "^0.1.
|
|
50
|
-
"@operato/scene-grist": "^0.1.
|
|
51
|
-
"@operato/scene-indoor-map": "^0.1.
|
|
52
|
-
"@operato/scene-integration": "^0.1.
|
|
53
|
-
"@operato/scene-legend": "^0.1.
|
|
54
|
-
"@operato/scene-progressbar": "^0.1.
|
|
55
|
-
"@operato/scene-random": "^0.1.
|
|
56
|
-
"@operato/scene-switch": "^0.1.
|
|
57
|
-
"@operato/scene-tab": "^0.1.
|
|
58
|
-
"@operato/scene-table": "^0.1.
|
|
59
|
-
"@operato/scene-timer": "^0.1.
|
|
60
|
-
"@operato/scene-wheel-sorter": "^0.1.
|
|
61
|
-
"@things-factory/apptool-ui": "^4.0.
|
|
62
|
-
"@things-factory/attachment-base": "^4.0.
|
|
63
|
-
"@things-factory/auth-ui": "^4.0.
|
|
64
|
-
"@things-factory/biz-base": "^4.0.
|
|
65
|
-
"@things-factory/board-service": "^4.0.
|
|
66
|
-
"@things-factory/board-ui": "^4.0.
|
|
67
|
-
"@things-factory/code-ui": "^4.0.
|
|
68
|
-
"@things-factory/context-ui": "^4.0.
|
|
69
|
-
"@things-factory/dashboard": "^4.0.
|
|
70
|
-
"@things-factory/export-ui": "^4.0.
|
|
71
|
-
"@things-factory/export-ui-csv": "^4.0.
|
|
72
|
-
"@things-factory/export-ui-excel": "^4.0.
|
|
73
|
-
"@things-factory/geography": "^4.0.
|
|
74
|
-
"@things-factory/grist-ui": "^4.0.
|
|
75
|
-
"@things-factory/help": "^4.0.
|
|
76
|
-
"@things-factory/i18n-ui": "^4.0.
|
|
77
|
-
"@things-factory/integration-fulfillment": "^4.0.
|
|
78
|
-
"@things-factory/integration-lmd": "^4.0.
|
|
79
|
-
"@things-factory/lite-menu": "^4.0.
|
|
80
|
-
"@things-factory/marketplace-base": "^4.0.
|
|
81
|
-
"@things-factory/more-ui": "^4.0.
|
|
82
|
-
"@things-factory/notification": "^4.0.
|
|
83
|
-
"@things-factory/oauth2-client": "^4.0.
|
|
84
|
-
"@things-factory/pdf": "^4.0.
|
|
85
|
-
"@things-factory/product-base": "^4.0.
|
|
86
|
-
"@things-factory/resource-ui": "^4.0.
|
|
87
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
88
|
-
"@things-factory/scene-excel": "^4.0.
|
|
89
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
90
|
-
"@things-factory/scene-form": "^4.0.
|
|
91
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
92
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
44
|
+
"@operato/ghost-print": "^0.3.20",
|
|
45
|
+
"@operato/scene-chartjs": "^0.1.3",
|
|
46
|
+
"@operato/scene-clock": "^0.1.3",
|
|
47
|
+
"@operato/scene-clone": "^0.1.3",
|
|
48
|
+
"@operato/scene-compass": "^0.1.3",
|
|
49
|
+
"@operato/scene-gauge": "^0.1.3",
|
|
50
|
+
"@operato/scene-grist": "^0.1.3",
|
|
51
|
+
"@operato/scene-indoor-map": "^0.1.3",
|
|
52
|
+
"@operato/scene-integration": "^0.1.3",
|
|
53
|
+
"@operato/scene-legend": "^0.1.3",
|
|
54
|
+
"@operato/scene-progressbar": "^0.1.3",
|
|
55
|
+
"@operato/scene-random": "^0.1.3",
|
|
56
|
+
"@operato/scene-switch": "^0.1.3",
|
|
57
|
+
"@operato/scene-tab": "^0.1.3",
|
|
58
|
+
"@operato/scene-table": "^0.1.3",
|
|
59
|
+
"@operato/scene-timer": "^0.1.3",
|
|
60
|
+
"@operato/scene-wheel-sorter": "^0.1.3",
|
|
61
|
+
"@things-factory/apptool-ui": "^4.0.40",
|
|
62
|
+
"@things-factory/attachment-base": "^4.0.40",
|
|
63
|
+
"@things-factory/auth-ui": "^4.0.40",
|
|
64
|
+
"@things-factory/biz-base": "^4.0.40",
|
|
65
|
+
"@things-factory/board-service": "^4.0.40",
|
|
66
|
+
"@things-factory/board-ui": "^4.0.40",
|
|
67
|
+
"@things-factory/code-ui": "^4.0.40",
|
|
68
|
+
"@things-factory/context-ui": "^4.0.40",
|
|
69
|
+
"@things-factory/dashboard": "^4.0.40",
|
|
70
|
+
"@things-factory/export-ui": "^4.0.40",
|
|
71
|
+
"@things-factory/export-ui-csv": "^4.0.40",
|
|
72
|
+
"@things-factory/export-ui-excel": "^4.0.40",
|
|
73
|
+
"@things-factory/geography": "^4.0.40",
|
|
74
|
+
"@things-factory/grist-ui": "^4.0.40",
|
|
75
|
+
"@things-factory/help": "^4.0.40",
|
|
76
|
+
"@things-factory/i18n-ui": "^4.0.40",
|
|
77
|
+
"@things-factory/integration-fulfillment": "^4.0.40",
|
|
78
|
+
"@things-factory/integration-lmd": "^4.0.40",
|
|
79
|
+
"@things-factory/lite-menu": "^4.0.40",
|
|
80
|
+
"@things-factory/marketplace-base": "^4.0.40",
|
|
81
|
+
"@things-factory/more-ui": "^4.0.40",
|
|
82
|
+
"@things-factory/notification": "^4.0.40",
|
|
83
|
+
"@things-factory/oauth2-client": "^4.0.40",
|
|
84
|
+
"@things-factory/pdf": "^4.0.40",
|
|
85
|
+
"@things-factory/product-base": "^4.0.40",
|
|
86
|
+
"@things-factory/resource-ui": "^4.0.40",
|
|
87
|
+
"@things-factory/scene-data-transform": "^4.0.40",
|
|
88
|
+
"@things-factory/scene-excel": "^4.0.40",
|
|
89
|
+
"@things-factory/scene-firebase": "^4.0.40",
|
|
90
|
+
"@things-factory/scene-form": "^4.0.40",
|
|
91
|
+
"@things-factory/scene-google-map": "^4.0.40",
|
|
92
|
+
"@things-factory/scene-graphql": "^4.0.40",
|
|
93
93
|
"@things-factory/scene-half-roundrect": "^4.0.9",
|
|
94
|
-
"@things-factory/scene-label": "^4.0.
|
|
95
|
-
"@things-factory/scene-marker": "^4.0.
|
|
96
|
-
"@things-factory/scene-mqtt": "^4.0.
|
|
97
|
-
"@things-factory/scene-news-ticker": "^4.0.
|
|
98
|
-
"@things-factory/scene-restful": "^4.0.
|
|
99
|
-
"@things-factory/scene-visualizer": "^4.0.
|
|
100
|
-
"@things-factory/setting-ui": "^4.0.
|
|
101
|
-
"@things-factory/system-ui": "^4.0.
|
|
102
|
-
"@things-factory/warehouse-base": "^4.0.
|
|
94
|
+
"@things-factory/scene-label": "^4.0.40",
|
|
95
|
+
"@things-factory/scene-marker": "^4.0.40",
|
|
96
|
+
"@things-factory/scene-mqtt": "^4.0.40",
|
|
97
|
+
"@things-factory/scene-news-ticker": "^4.0.40",
|
|
98
|
+
"@things-factory/scene-restful": "^4.0.40",
|
|
99
|
+
"@things-factory/scene-visualizer": "^4.0.40",
|
|
100
|
+
"@things-factory/setting-ui": "^4.0.40",
|
|
101
|
+
"@things-factory/system-ui": "^4.0.40",
|
|
102
|
+
"@things-factory/warehouse-base": "^4.0.40"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
|
-
"@things-factory/builder": "^4.0.
|
|
105
|
+
"@things-factory/builder": "^4.0.40",
|
|
106
106
|
"@types/node-fetch": "^2.5.7"
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "f0697b5ab411e4aa1a52de19a6c135f39686eca1"
|
|
109
109
|
}
|