@things-factory/operato-mms 4.3.752 → 4.3.764
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/config.development.js +223 -77
- package/package.json +45 -45
package/config.development.js
CHANGED
|
@@ -1,37 +1,142 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
domainType: 'company',
|
|
3
3
|
domainExtType: 'company',
|
|
4
|
+
useVirtualHostBasedDomain: false,
|
|
5
|
+
fallbackRoute: '/',
|
|
4
6
|
subdomainOffset: 2,
|
|
5
|
-
port:
|
|
7
|
+
port: 4000,
|
|
8
|
+
inspect: '9260',
|
|
9
|
+
//postgres
|
|
6
10
|
ormconfig: {
|
|
7
11
|
name: 'default',
|
|
8
12
|
type: 'postgres',
|
|
9
|
-
database: '
|
|
13
|
+
database: 'postgres',
|
|
10
14
|
username: 'postgres',
|
|
11
|
-
password: '
|
|
12
|
-
host: '
|
|
13
|
-
port:
|
|
14
|
-
synchronize:
|
|
15
|
+
password: 't62dgT#Ns*GerhuZ9wnzm^',
|
|
16
|
+
host: 'my-operato-pg.cjcso4qmeuq0.ap-southeast-5.rds.amazonaws.com',
|
|
17
|
+
port: 55432,
|
|
18
|
+
synchronize: false,
|
|
15
19
|
logging: true
|
|
16
20
|
},
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
oauth2: {
|
|
22
|
+
platforms: [
|
|
23
|
+
{
|
|
24
|
+
name: 'Operato Hub',
|
|
25
|
+
apiURL: 'http://localhost:3000/api'
|
|
26
|
+
}
|
|
27
|
+
]
|
|
22
28
|
},
|
|
29
|
+
//operato
|
|
30
|
+
// ormconfig: {
|
|
31
|
+
// name: 'default',
|
|
32
|
+
// type: 'postgres',
|
|
33
|
+
// database: 'operato',
|
|
34
|
+
// username: 'postgres',
|
|
35
|
+
// password: 'hatio',
|
|
36
|
+
// host: '192.168.0.151',
|
|
37
|
+
// port: 15432,
|
|
38
|
+
// synchronize: false,
|
|
39
|
+
// logging: true
|
|
40
|
+
// },
|
|
41
|
+
//eric2
|
|
42
|
+
// ormconfig: {
|
|
43
|
+
// name: 'default',
|
|
44
|
+
// type: 'postgres',
|
|
45
|
+
// database: 'eric2',
|
|
46
|
+
// username: 'postgres',
|
|
47
|
+
// password: 'hatio',
|
|
48
|
+
// host: '192.168.0.153',
|
|
49
|
+
// port: 15432,
|
|
50
|
+
// synchronize: false,
|
|
51
|
+
// logging: true
|
|
52
|
+
// },
|
|
53
|
+
// arif's
|
|
54
|
+
// ormconfig: {
|
|
55
|
+
// name: 'default',
|
|
56
|
+
// type: 'postgres',
|
|
57
|
+
// database: 'arif',
|
|
58
|
+
// username: 'postgres',
|
|
59
|
+
// password: 'hatio',
|
|
60
|
+
// host: '10.254.29.189',
|
|
61
|
+
// port: 15432,
|
|
62
|
+
// synchronize: false,
|
|
63
|
+
// logging: true
|
|
64
|
+
// },
|
|
65
|
+
//EMS
|
|
66
|
+
// ormconfig: {
|
|
67
|
+
// name: 'default',
|
|
68
|
+
// type: 'postgres',
|
|
69
|
+
// database: 'EMS',
|
|
70
|
+
// username: 'postgres',
|
|
71
|
+
// password: 'hatio',
|
|
72
|
+
// host: '192.168.0.161',
|
|
73
|
+
// port: 15432,
|
|
74
|
+
// synchronize: false,
|
|
75
|
+
// logging: true
|
|
76
|
+
// },
|
|
77
|
+
//db nora
|
|
23
78
|
// ormconfig: {
|
|
24
79
|
// name: 'default',
|
|
25
80
|
// type: 'postgres',
|
|
26
81
|
// database: 'postgres',
|
|
27
82
|
// username: 'postgres',
|
|
28
83
|
// password: 'hatio',
|
|
29
|
-
// host: '
|
|
30
|
-
// port:
|
|
84
|
+
// host: '192.168.0.36',
|
|
85
|
+
// port: 15432,
|
|
86
|
+
// synchronize: true,
|
|
87
|
+
// logging: true
|
|
88
|
+
// },
|
|
89
|
+
// ormconfig: {
|
|
90
|
+
// name: 'default',
|
|
91
|
+
// type: 'postgres',
|
|
92
|
+
// database: 'eric',
|
|
93
|
+
// username: 'postgres',
|
|
94
|
+
// password: 'hatio',
|
|
95
|
+
// host: '192.168.0.153',
|
|
96
|
+
// port: 15432,
|
|
97
|
+
// synchronize: true,
|
|
98
|
+
// logging: true
|
|
99
|
+
// },
|
|
100
|
+
//db izzah
|
|
101
|
+
// ormconfig: {
|
|
102
|
+
// name: 'default',
|
|
103
|
+
// type: 'postgres',
|
|
104
|
+
// database: '06072023',
|
|
105
|
+
// username: 'postgres',
|
|
106
|
+
// password: 'hatio',
|
|
107
|
+
// host: '192.168.0.153',
|
|
108
|
+
// port: 15432,
|
|
31
109
|
// synchronize: true,
|
|
32
110
|
// logging: true
|
|
33
111
|
// },
|
|
34
|
-
|
|
112
|
+
// ormconfig: {
|
|
113
|
+
// name: 'default',
|
|
114
|
+
// type: 'postgres',
|
|
115
|
+
// database: 'dev2', // dev2
|
|
116
|
+
// username: 'postgres',
|
|
117
|
+
// password: 'abcd1234',
|
|
118
|
+
// host: 'operatov3.cluster-cijhm4n1hbst.ap-southeast-1.rds.amazonaws.com',
|
|
119
|
+
// port: 55432,
|
|
120
|
+
// synchronize:false,
|
|
121
|
+
// logging: false,
|
|
122
|
+
// connectTimeoutMS: 30000,
|
|
123
|
+
// extra: { poolSize: 30 }
|
|
124
|
+
// },
|
|
125
|
+
|
|
126
|
+
// ormconfig: {
|
|
127
|
+
// name: 'default',
|
|
128
|
+
// type: 'postgres',
|
|
129
|
+
// host: 'localhost',
|
|
130
|
+
// port: 15432,
|
|
131
|
+
// database: 'postgres',
|
|
132
|
+
// username: 'postgres',
|
|
133
|
+
// password: 'hatio',
|
|
134
|
+
// synchronize: false,
|
|
135
|
+
// logging: true,
|
|
136
|
+
// connectTimeoutMS: 30000,
|
|
137
|
+
// extra: { poolSize: 30 }
|
|
138
|
+
// },
|
|
139
|
+
|
|
35
140
|
password: {
|
|
36
141
|
lowerCase: true,
|
|
37
142
|
upperCase: false,
|
|
@@ -44,15 +149,32 @@ module.exports = {
|
|
|
44
149
|
looseCharacterLength: 4,
|
|
45
150
|
history: 2
|
|
46
151
|
},
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
]
|
|
152
|
+
sftpFileStorage: {
|
|
153
|
+
type: 's3',
|
|
154
|
+
accessKeyId: 'AKIAUQEOPWEJAMXCXGB4',
|
|
155
|
+
secretAccessKey: 'NUHZocUnWoRtOD5LI06OX6l+TCFq7Xs4FnzPGSkX',
|
|
156
|
+
bucketName: 'operato-sftp',
|
|
157
|
+
region: 'ap-southeast-1'
|
|
54
158
|
},
|
|
55
|
-
|
|
159
|
+
|
|
160
|
+
// SFTP Configuration for external server
|
|
161
|
+
// sftpExternal: {
|
|
162
|
+
// type: 'sftp',
|
|
163
|
+
// host: '103.4.6.168',
|
|
164
|
+
// port: 2211,
|
|
165
|
+
// username: 'hatio_admin',
|
|
166
|
+
// password: 'Yltc@2025!',
|
|
167
|
+
// basePath: '/Staging',
|
|
168
|
+
// timeout: 30000,
|
|
169
|
+
// retries: 3
|
|
170
|
+
// },
|
|
171
|
+
// storage: {
|
|
172
|
+
// type: 's3',
|
|
173
|
+
// accessKeyId: 'AKIAUQEOPWEJCDH6AR5H',
|
|
174
|
+
// secretAccessKey: 'AuDAgmODf9EJNB24OveRhTSLV/OJy6IFFoRxe8k2',
|
|
175
|
+
// bucketName: 'opa-one',
|
|
176
|
+
// region: 'ap-southeast-1'
|
|
177
|
+
// },
|
|
56
178
|
uploads: 'uploads',
|
|
57
179
|
attachmentsPath: 'attachments',
|
|
58
180
|
SECRET: '0xD58F835B69D207A76CC5F84a70a1D0d4C79dfC95',
|
|
@@ -71,7 +193,7 @@ module.exports = {
|
|
|
71
193
|
port: 587,
|
|
72
194
|
secure: false, // true for 465, false for other ports
|
|
73
195
|
auth: {
|
|
74
|
-
user: '
|
|
196
|
+
user: 'noreply@hatiolab.com', // generated ethereal user
|
|
75
197
|
pass: 'h@ti0LAB1008' // generated ethereal password
|
|
76
198
|
},
|
|
77
199
|
secureConnection: false,
|
|
@@ -79,49 +201,46 @@ module.exports = {
|
|
|
79
201
|
ciphers: 'SSLv3'
|
|
80
202
|
}
|
|
81
203
|
},
|
|
82
|
-
sender: '
|
|
204
|
+
sender: 'noreply@hatiolab.com',
|
|
83
205
|
notification: {
|
|
84
|
-
fcm: {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
},
|
|
100
|
-
vapidKey: {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
206
|
+
// fcm: {
|
|
207
|
+
// serviceAccount: {
|
|
208
|
+
// project_id: 'operato',
|
|
209
|
+
// private_key:
|
|
210
|
+
// '-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDYNOfyNjPMSeG9\nzU1qs0cpVK5cVfadcUaw5g+hkQZMOMlAA7uqW2eX4vkayj7MzbYUayH+sei8044Q\nJIyl6f26dNX1VT3UgTmSmCS0v48EBEZHCgusrUGFjduLRN6OS6uvrXW1xKA18k9q\nai1C2EHCXF2AE4PTvf239RC1UIOnVePcMtT7rMTdHRO4s8OKVuSDbzIt8k1cV3Zt\nES0YsJlkELqBisYpV//2/ZSILTt39J9JzrVef03X9kkoo9p+YnNyy6tWsfQPfgJO\nybiRGBNxiyJ/E2pxRo/WqU0go9OzYJlGaSUrUx09heNiRD1b0MAOmyPDJz/6AaTk\nkU/A+kLzAgMBAAECggEADQ5s2gtR53VSujk1V/Xe8e0Di99DwaWUj5w6YhcK7/wX\nPdQRN4Fw6RLeLjL7xeG/rCNSwzm6hKSrQJL5zLnWW7XbMdyQRk6jdmnVAEv3zACi\nFH9+eFK3e+Q214XfgWz/v4p/FZdRLCYni5VBNHcwyWxLLS/V1ynzB3KM1sDiTRmI\npcT7+uTtwrKgJq64sXtFE2pYrFxDdCiyqzkhv/2ed4YIowAjpKBbbcCDKeVxVkoz\nC1P4PAzs9EeUuKSWYrWaUjN17lqtRlYeT1ylR1PIJuWqd4cKfgoEgz+lHwRPDCEX\nAYbk3nofiJIPBhSfCHrXS755wK48mY8vMwFdfCPJeQKBgQDsz4tjYTHdat5A25n5\nekwMxZwFQ5OvMV4eulwZUDMypTAYSz1iB6sDlgwKDm5omZIfuneqCEIvrqxV/kx3\n5wV/DANHO3hYxdp/NV7rM23xmqlaKZhHQbDono1Fm/LP6DEmJiD7N2eFKsXYcPpR\nSAIdCv0X3zkDQ4zRi51yJlCXzQKBgQDpufJBxCoXngiQJ2j14lWVAeOOdQ6zh5Ip\nBcDwF0X67cNSN3Wl40bS4yLFdolhEAyj5m0WPuYYXpjzhHhZ0W3V3ItdBkrmwIvy\nWOWu26qN0ZbwxVS2qVpHuj6iHWJKHuDZZUkFtJg3BeeBSOUHSA8TvjnA0xd83xeb\n8ZJasWoFvwKBgQDFs/gQ/gIdcq0exLfluh5nw0qgcmyHpNWJHdjqITS9IX/nqFkU\n0IYLtmdStf2jQiLmbkydHcvz9wZVvLqml67VBHhwLcwpgPULoskd34/4V0Dvzy4c\nv1Esw8H5zVqIDLeLu+VpFjZMzQrjyl6RIWbyTExEc84rVWfpQYAu3qIGOQKBgAFr\nXatEk7TdAtRNSPflTfu/rTAaSeKROjQBkvBiU8x4US1YpOBDBxUUyAtG8wKh5FHC\nfnsaGq+fM3KXJVv2R6J62mXQOfg4xyDLpWlwcBK4aSBBMoiBcsjouqSlZQlqMpdf\nZBgixqHe6U8BsFJg/6ZxC0y+e3AIss4Bo4/lb+1lAoGAFOexvaBh21K6W3inmRW4\nLlkVYJaBJ20OwokXg5aXjBiHxqmk7VLAuFbkpb5LOKH2xPILRQ0OEkn51yVymS3T\n9lLpHOFTQXt5tF2/F7NW7kaQJNlLr/h5jPi3O9XHeFmuaN2z150ZB6zzgjeGKzr8\ni+1fgTsRfDtNw8xkSH9qL1Y=\n-----END PRIVATE KEY-----\n',
|
|
211
|
+
// client_email: 'firebase-adminsdk-xmm2e@operato.iam.gserviceaccount.com'
|
|
212
|
+
// },
|
|
213
|
+
// appConfig: {
|
|
214
|
+
// apiKey: 'AIzaSyDdTM2BTLHSt2LNS0G5QB8G0i4KBXFiG7U',
|
|
215
|
+
// projectId: 'operato',
|
|
216
|
+
// messagingSenderId: 79537064975,
|
|
217
|
+
// appId: '1:79537064975:web:32f53119e9c8c6ee2a277a'
|
|
218
|
+
// },
|
|
219
|
+
// serverKey:
|
|
220
|
+
// 'AAAAEoTHTA8:APA91bGwt-4HT82Dfwf_VwbQaKT0_qHd0Y3tuW41udjWz5Lz0Ko0mEMD6WbHHSILvQpa6yuoGGKCMsrU7VW2qWRrUm3CYpyG9oSwshNm1tIhljAnOuUfwHCoawbVLwf9qlWpHt4dwCoc'
|
|
221
|
+
// },
|
|
222
|
+
// vapidKey: {
|
|
223
|
+
// subject: 'mailto:heartyoh@hatiolab.com',
|
|
224
|
+
// publicKey: 'BAkVkITsCXBIsYL1yeaBmx5_dn57we-ZXMjirPPHzC2dan82cdEnAio_53PQ-1_w3ykWCBPrrFAWQ_d9N4cFF0o',
|
|
225
|
+
// privateKey: '4pmlt3Wk019u7nqU3Q_oGZE6LbUDjjf8DpmAcn9-iss'
|
|
226
|
+
// }
|
|
105
227
|
},
|
|
106
228
|
fulfillmentIntegrationOperato: {
|
|
107
|
-
host: '
|
|
229
|
+
host: 'localhost:3000',
|
|
108
230
|
protocol: 'http',
|
|
109
231
|
platform: 'operato',
|
|
110
232
|
application: 'Operato MMS',
|
|
111
233
|
appKey: 'a9bf751e622bf146662b240d58971051',
|
|
112
234
|
appSecret: '1c385935dc131c4b902b9bbf6a4798af',
|
|
113
|
-
callback: 'http://
|
|
114
|
-
},
|
|
115
|
-
sellercraftChannelIntegrationConfig: {
|
|
116
|
-
apiKey: 'eqDVmIp0kxakM4sNnzqTkySBM73UGMS1nOPDN5Z1',
|
|
117
|
-
tokenCraftUrl: 'https://staging-tokencraft.sellercraft.co/v1/get-shop'
|
|
235
|
+
callback: 'http://locahost:3000/callback-operato'
|
|
118
236
|
},
|
|
119
237
|
marketplaceIntegrationShopee: {
|
|
120
238
|
platform: 'shopee',
|
|
121
239
|
isUAT: false,
|
|
122
240
|
application: 'Operato MMS',
|
|
123
241
|
partnerId: 846025,
|
|
124
|
-
partnerKey: 'd34cfd85a603f196a0d74ebe08043280c1a27788bb36bdffd61e7e0bb1c90b64'
|
|
242
|
+
partnerKey: 'd34cfd85a603f196a0d74ebe08043280c1a27788bb36bdffd61e7e0bb1c90b64',
|
|
243
|
+
v2: true
|
|
125
244
|
},
|
|
126
245
|
marketplaceIntegrationLazada: {
|
|
127
246
|
platform: 'lazada',
|
|
@@ -130,29 +249,56 @@ module.exports = {
|
|
|
130
249
|
appSecret: 'HB3RTNEXHlVSlBr9SmWF8AjbSUT7a825',
|
|
131
250
|
callback: 'https://maybank.operato-m.com/lazada-callback'
|
|
132
251
|
},
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
252
|
+
|
|
253
|
+
//testinglazada
|
|
254
|
+
// marketplaceIntegrationLazada: {
|
|
255
|
+
// platform: 'lazada',
|
|
256
|
+
// application: 'powrup_bi',
|
|
257
|
+
// appKey: '117890',
|
|
258
|
+
// appSecret: 'tQVllnUa7irAHoNxAwXEVxoP1we1bUjE',
|
|
259
|
+
// callback: 'https://73c5-175-141-30-142.ngrok-free.app/lazada-callback'
|
|
260
|
+
// },
|
|
261
|
+
|
|
262
|
+
accountingIntegrationXero: {
|
|
263
|
+
platform: 'xero',
|
|
264
|
+
application: 'Operato WMS',
|
|
265
|
+
apiKey: '6B12D1AAC05347DC92159C2AEC812859',
|
|
266
|
+
apiSecret: 'T139_ItMjObC82mmy7iwnNflhd2iV0kUvDBj0P_201EmA7Sj',
|
|
267
|
+
callback: 'http://operato-h.com:3000/callback-xero',
|
|
268
|
+
hostname: 'http://operato-h.com:3000/'
|
|
269
|
+
},
|
|
270
|
+
lmdIntegrationNinjavan: {
|
|
271
|
+
clientId: 'P8WCEwMo0FHNlPECwTLetwN3diAmt5KF',
|
|
272
|
+
secretKey: '1D0yNZGseOjhxnwri29xmuZiiuRp131L',
|
|
273
|
+
refreshThreshold: 43200
|
|
274
|
+
},
|
|
275
|
+
|
|
276
|
+
lmdIntegrationEms: { refreshThreshold: 43200 },
|
|
277
|
+
|
|
278
|
+
lmdIntegrationCitylink: { refreshThreshold: 172800000 },
|
|
279
|
+
awbFileStorage: {
|
|
280
|
+
type: 's3',
|
|
281
|
+
accessKeyId: 'AKIAUQEOPWEJPXIVER74',
|
|
282
|
+
secretAccessKey: 'I6uuS+6CMzIQlqBS9i+G8AYIeYj5RR7wb4fxjbLq',
|
|
283
|
+
bucketName: 'operato-awb',
|
|
284
|
+
region: 'ap-southeast-1'
|
|
285
|
+
},
|
|
286
|
+
lambda: {
|
|
287
|
+
region: 'ap-southeast-1',
|
|
288
|
+
accessKeyId: 'AKIAUQEOPWEJPXIVER74',
|
|
289
|
+
secretAccessKey: 'I6uuS+6CMzIQlqBS9i+G8AYIeYj5RR7wb4fxjbLq'
|
|
290
|
+
},
|
|
291
|
+
lmdIntegrationConfig: {
|
|
292
|
+
version: {
|
|
293
|
+
v1: 'lmdMiddleware',
|
|
294
|
+
v2: 'lmdMiddlewareV2'
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
awsSesEmail: {
|
|
298
|
+
accessKeyId: 'AKIAUQEOPWEJPXIVER74',
|
|
299
|
+
secretAccessKey: 'I6uuS+6CMzIQlqBS9i+G8AYIeYj5RR7wb4fxjbLq',
|
|
300
|
+
email: 'support@hatio.asia'
|
|
301
|
+
},
|
|
302
|
+
reportApiUrl:
|
|
303
|
+
'http://k8s-default-operator-2fd6178d98-66c66a0f76c09575.elb.ap-southeast-1.amazonaws.com/rest/report/show_html'
|
|
158
304
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-mms",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.764",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -59,52 +59,52 @@
|
|
|
59
59
|
"@operato/scene-table": "^0.1.8",
|
|
60
60
|
"@operato/scene-timer": "^0.1.8",
|
|
61
61
|
"@operato/scene-wheel-sorter": "^0.1.8",
|
|
62
|
-
"@things-factory/apptool-ui": "^4.3.
|
|
63
|
-
"@things-factory/attachment-base": "^4.3.
|
|
64
|
-
"@things-factory/auth-ui": "^4.3.
|
|
65
|
-
"@things-factory/biz-base": "^4.3.
|
|
66
|
-
"@things-factory/board-service": "^4.3.
|
|
67
|
-
"@things-factory/board-ui": "^4.3.
|
|
68
|
-
"@things-factory/code-ui": "^4.3.
|
|
69
|
-
"@things-factory/context-ui": "^4.3.
|
|
70
|
-
"@things-factory/dashboard": "^4.3.
|
|
71
|
-
"@things-factory/export-ui": "^4.3.
|
|
72
|
-
"@things-factory/export-ui-csv": "^4.3.
|
|
73
|
-
"@things-factory/export-ui-excel": "^4.3.
|
|
74
|
-
"@things-factory/geography": "^4.3.
|
|
75
|
-
"@things-factory/grist-ui": "^4.3.
|
|
76
|
-
"@things-factory/help": "^4.3.
|
|
77
|
-
"@things-factory/i18n-base": "^4.3.
|
|
78
|
-
"@things-factory/import-ui": "^4.3.
|
|
79
|
-
"@things-factory/import-ui-excel": "^4.3.
|
|
80
|
-
"@things-factory/integration-fulfillment": "^4.3.
|
|
81
|
-
"@things-factory/integration-lmd": "^4.3.
|
|
82
|
-
"@things-factory/lite-menu": "^4.3.
|
|
83
|
-
"@things-factory/marketplace-base": "^4.3.
|
|
84
|
-
"@things-factory/more-ui": "^4.3.
|
|
85
|
-
"@things-factory/notification": "^4.3.
|
|
86
|
-
"@things-factory/oauth2-client": "^4.3.
|
|
87
|
-
"@things-factory/pdf": "^4.3.
|
|
88
|
-
"@things-factory/product-base": "^4.3.
|
|
89
|
-
"@things-factory/resource-ui": "^4.3.
|
|
90
|
-
"@things-factory/scene-data-transform": "^4.3.
|
|
91
|
-
"@things-factory/scene-excel": "^4.3.
|
|
92
|
-
"@things-factory/scene-firebase": "^4.3.
|
|
93
|
-
"@things-factory/scene-form": "^4.3.
|
|
94
|
-
"@things-factory/scene-google-map": "^4.3.
|
|
95
|
-
"@things-factory/scene-graphql": "^4.3.
|
|
96
|
-
"@things-factory/scene-label": "^4.3.
|
|
97
|
-
"@things-factory/scene-marker": "^4.3.
|
|
98
|
-
"@things-factory/scene-mqtt": "^4.3.
|
|
99
|
-
"@things-factory/scene-restful": "^4.3.
|
|
100
|
-
"@things-factory/scene-visualizer": "^4.3.
|
|
101
|
-
"@things-factory/setting-ui": "^4.3.
|
|
102
|
-
"@things-factory/system-ui": "^4.3.
|
|
103
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
62
|
+
"@things-factory/apptool-ui": "^4.3.764",
|
|
63
|
+
"@things-factory/attachment-base": "^4.3.764",
|
|
64
|
+
"@things-factory/auth-ui": "^4.3.764",
|
|
65
|
+
"@things-factory/biz-base": "^4.3.764",
|
|
66
|
+
"@things-factory/board-service": "^4.3.764",
|
|
67
|
+
"@things-factory/board-ui": "^4.3.764",
|
|
68
|
+
"@things-factory/code-ui": "^4.3.764",
|
|
69
|
+
"@things-factory/context-ui": "^4.3.764",
|
|
70
|
+
"@things-factory/dashboard": "^4.3.764",
|
|
71
|
+
"@things-factory/export-ui": "^4.3.764",
|
|
72
|
+
"@things-factory/export-ui-csv": "^4.3.764",
|
|
73
|
+
"@things-factory/export-ui-excel": "^4.3.764",
|
|
74
|
+
"@things-factory/geography": "^4.3.764",
|
|
75
|
+
"@things-factory/grist-ui": "^4.3.764",
|
|
76
|
+
"@things-factory/help": "^4.3.764",
|
|
77
|
+
"@things-factory/i18n-base": "^4.3.764",
|
|
78
|
+
"@things-factory/import-ui": "^4.3.764",
|
|
79
|
+
"@things-factory/import-ui-excel": "^4.3.764",
|
|
80
|
+
"@things-factory/integration-fulfillment": "^4.3.764",
|
|
81
|
+
"@things-factory/integration-lmd": "^4.3.764",
|
|
82
|
+
"@things-factory/lite-menu": "^4.3.764",
|
|
83
|
+
"@things-factory/marketplace-base": "^4.3.764",
|
|
84
|
+
"@things-factory/more-ui": "^4.3.764",
|
|
85
|
+
"@things-factory/notification": "^4.3.764",
|
|
86
|
+
"@things-factory/oauth2-client": "^4.3.764",
|
|
87
|
+
"@things-factory/pdf": "^4.3.764",
|
|
88
|
+
"@things-factory/product-base": "^4.3.764",
|
|
89
|
+
"@things-factory/resource-ui": "^4.3.764",
|
|
90
|
+
"@things-factory/scene-data-transform": "^4.3.764",
|
|
91
|
+
"@things-factory/scene-excel": "^4.3.764",
|
|
92
|
+
"@things-factory/scene-firebase": "^4.3.764",
|
|
93
|
+
"@things-factory/scene-form": "^4.3.764",
|
|
94
|
+
"@things-factory/scene-google-map": "^4.3.764",
|
|
95
|
+
"@things-factory/scene-graphql": "^4.3.764",
|
|
96
|
+
"@things-factory/scene-label": "^4.3.764",
|
|
97
|
+
"@things-factory/scene-marker": "^4.3.764",
|
|
98
|
+
"@things-factory/scene-mqtt": "^4.3.764",
|
|
99
|
+
"@things-factory/scene-restful": "^4.3.764",
|
|
100
|
+
"@things-factory/scene-visualizer": "^4.3.764",
|
|
101
|
+
"@things-factory/setting-ui": "^4.3.764",
|
|
102
|
+
"@things-factory/system-ui": "^4.3.764",
|
|
103
|
+
"@things-factory/warehouse-base": "^4.3.764"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
|
-
"@things-factory/builder": "^4.3.
|
|
106
|
+
"@things-factory/builder": "^4.3.764",
|
|
107
107
|
"@types/node-fetch": "^2.5.7"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "4dd8055a25e773814603c4be21fc70930d0cfb13"
|
|
110
110
|
}
|