@things-factory/operato-mms 4.3.784 → 4.3.789
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 +34 -6
- package/package.json +7 -7
package/config.development.js
CHANGED
|
@@ -2,16 +2,28 @@ module.exports = {
|
|
|
2
2
|
domainType: 'company',
|
|
3
3
|
domainExtType: 'company',
|
|
4
4
|
subdomainOffset: 2,
|
|
5
|
-
port:
|
|
5
|
+
port: 5000,
|
|
6
|
+
// ormconfig: {
|
|
7
|
+
// name: 'default',
|
|
8
|
+
// type: 'postgres',
|
|
9
|
+
// database: 'postgres',
|
|
10
|
+
// username: 'postgres',
|
|
11
|
+
// password: 'hatio',
|
|
12
|
+
// host: '192.168.0.161',
|
|
13
|
+
// port: 15432,
|
|
14
|
+
// synchronize: true,
|
|
15
|
+
// logging: true
|
|
16
|
+
// },
|
|
17
|
+
//db izzah
|
|
6
18
|
ormconfig: {
|
|
7
19
|
name: 'default',
|
|
8
20
|
type: 'postgres',
|
|
9
|
-
database: '
|
|
21
|
+
database: '06072023',
|
|
10
22
|
username: 'postgres',
|
|
11
23
|
password: 'hatio',
|
|
12
24
|
host: '192.168.0.153',
|
|
13
25
|
port: 15432,
|
|
14
|
-
synchronize:
|
|
26
|
+
synchronize: false,
|
|
15
27
|
logging: true
|
|
16
28
|
},
|
|
17
29
|
sftpFileStorage: {
|
|
@@ -104,13 +116,13 @@ module.exports = {
|
|
|
104
116
|
}
|
|
105
117
|
},
|
|
106
118
|
fulfillmentIntegrationOperato: {
|
|
107
|
-
host: '192.168.0.161:
|
|
119
|
+
host: '192.168.0.161:3000',
|
|
108
120
|
protocol: 'http',
|
|
109
121
|
platform: 'operato',
|
|
110
122
|
application: 'Operato MMS',
|
|
111
123
|
appKey: 'a9bf751e622bf146662b240d58971051',
|
|
112
124
|
appSecret: '1c385935dc131c4b902b9bbf6a4798af',
|
|
113
|
-
callback: 'http://192.168.0.161:
|
|
125
|
+
callback: 'http://192.168.0.161:5000/callback-operato'
|
|
114
126
|
},
|
|
115
127
|
sellercraftChannelIntegrationConfig: {
|
|
116
128
|
apiKey: 'eqDVmIp0kxakM4sNnzqTkySBM73UGMS1nOPDN5Z1',
|
|
@@ -121,7 +133,8 @@ module.exports = {
|
|
|
121
133
|
isUAT: false,
|
|
122
134
|
application: 'Operato MMS',
|
|
123
135
|
partnerId: 846025,
|
|
124
|
-
partnerKey: 'd34cfd85a603f196a0d74ebe08043280c1a27788bb36bdffd61e7e0bb1c90b64'
|
|
136
|
+
partnerKey: 'd34cfd85a603f196a0d74ebe08043280c1a27788bb36bdffd61e7e0bb1c90b64',
|
|
137
|
+
v2: true
|
|
125
138
|
},
|
|
126
139
|
marketplaceIntegrationLazada: {
|
|
127
140
|
platform: 'lazada',
|
|
@@ -130,6 +143,16 @@ module.exports = {
|
|
|
130
143
|
appSecret: 'HB3RTNEXHlVSlBr9SmWF8AjbSUT7a825',
|
|
131
144
|
callback: 'https://maybank.operato-m.com/lazada-callback'
|
|
132
145
|
},
|
|
146
|
+
|
|
147
|
+
//testinglazada
|
|
148
|
+
// marketplaceIntegrationLazada: {
|
|
149
|
+
// platform: 'lazada',
|
|
150
|
+
// application: 'powrup_bi',
|
|
151
|
+
// appKey: '117890',
|
|
152
|
+
// appSecret: 'tQVllnUa7irAHoNxAwXEVxoP1we1bUjE',
|
|
153
|
+
// callback: 'https://73c5-175-141-30-142.ngrok-free.app/lazada-callback'
|
|
154
|
+
// },
|
|
155
|
+
|
|
133
156
|
marketplaceIntegrationShopify: {
|
|
134
157
|
platform: 'shopify',
|
|
135
158
|
application: 'Operato',
|
|
@@ -154,5 +177,10 @@ module.exports = {
|
|
|
154
177
|
oauth_verifier: '',
|
|
155
178
|
oauth_consumer_key: '',
|
|
156
179
|
oauth_consumer_secret: ''
|
|
180
|
+
},
|
|
181
|
+
lambda: {
|
|
182
|
+
region: 'ap-southeast-1',
|
|
183
|
+
accessKeyId: 'AKIAUQEOPWEJKL43OMZA',
|
|
184
|
+
secretAccessKey: 'OG2qS0Usg4wyjPWbfv1ahPZzP80/w8z4i8MYHl+e'
|
|
157
185
|
}
|
|
158
186
|
}
|
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.789",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -77,15 +77,15 @@
|
|
|
77
77
|
"@things-factory/i18n-base": "^4.3.767",
|
|
78
78
|
"@things-factory/import-ui": "^4.3.770",
|
|
79
79
|
"@things-factory/import-ui-excel": "^4.3.776",
|
|
80
|
-
"@things-factory/integration-fulfillment": "^4.3.
|
|
81
|
-
"@things-factory/integration-lmd": "^4.3.
|
|
80
|
+
"@things-factory/integration-fulfillment": "^4.3.788",
|
|
81
|
+
"@things-factory/integration-lmd": "^4.3.788",
|
|
82
82
|
"@things-factory/lite-menu": "^4.3.770",
|
|
83
|
-
"@things-factory/marketplace-base": "^4.3.
|
|
83
|
+
"@things-factory/marketplace-base": "^4.3.788",
|
|
84
84
|
"@things-factory/more-ui": "^4.3.767",
|
|
85
85
|
"@things-factory/notification": "^4.3.767",
|
|
86
86
|
"@things-factory/oauth2-client": "^4.3.767",
|
|
87
87
|
"@things-factory/pdf": "^4.3.767",
|
|
88
|
-
"@things-factory/product-base": "^4.3.
|
|
88
|
+
"@things-factory/product-base": "^4.3.788",
|
|
89
89
|
"@things-factory/resource-ui": "^4.3.770",
|
|
90
90
|
"@things-factory/scene-data-transform": "^4.3.767",
|
|
91
91
|
"@things-factory/scene-excel": "^4.3.767",
|
|
@@ -100,11 +100,11 @@
|
|
|
100
100
|
"@things-factory/scene-visualizer": "^4.3.767",
|
|
101
101
|
"@things-factory/setting-ui": "^4.3.770",
|
|
102
102
|
"@things-factory/system-ui": "^4.3.767",
|
|
103
|
-
"@things-factory/warehouse-base": "^4.3.
|
|
103
|
+
"@things-factory/warehouse-base": "^4.3.789"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
106
|
"@things-factory/builder": "^4.3.767",
|
|
107
107
|
"@types/node-fetch": "^2.5.7"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "f2c0983c5b5bae151d242f2d0267e800d6be318e"
|
|
110
110
|
}
|