@things-factory/worksheet-base 6.0.18 → 6.0.21
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/dist-server/graphql/types/worksheet/batch-pick-worksheet-info.js +3 -2
- package/dist-server/graphql/types/worksheet/batch-pick-worksheet-info.js.map +1 -1
- package/dist-server/graphql/types/worksheet/delivery-order-ro.js +4 -3
- package/dist-server/graphql/types/worksheet/delivery-order-ro.js.map +1 -1
- package/dist-server/graphql/types/worksheet/multiple-release-good-worksheet.js +3 -2
- package/dist-server/graphql/types/worksheet/multiple-release-good-worksheet.js.map +1 -1
- package/dist-server/graphql/types/worksheet/sellercraft-document.js +4 -3
- package/dist-server/graphql/types/worksheet/sellercraft-document.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +17 -17
- package/server/graphql/types/worksheet/batch-pick-worksheet-info.ts +2 -2
- package/server/graphql/types/worksheet/delivery-order-ro.ts +2 -2
- package/server/graphql/types/worksheet/multiple-release-good-worksheet.ts +1 -1
- package/server/graphql/types/worksheet/sellercraft-document.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/worksheet-base",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.21",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -23,21 +23,21 @@
|
|
|
23
23
|
"migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@things-factory/auth-base": "^6.0.
|
|
27
|
-
"@things-factory/biz-base": "^6.0.
|
|
28
|
-
"@things-factory/document-template-base": "^6.0.
|
|
29
|
-
"@things-factory/id-rule-base": "^6.0.
|
|
30
|
-
"@things-factory/integration-lmd": "^6.0.
|
|
31
|
-
"@things-factory/integration-marketplace": "^6.0.
|
|
32
|
-
"@things-factory/integration-sellercraft": "^6.0.
|
|
33
|
-
"@things-factory/integration-sftp": "^6.0.
|
|
34
|
-
"@things-factory/marketplace-base": "^6.0.
|
|
35
|
-
"@things-factory/notification": "^6.0.
|
|
36
|
-
"@things-factory/sales-base": "^6.0.
|
|
37
|
-
"@things-factory/setting-base": "^6.0.
|
|
38
|
-
"@things-factory/shell": "^6.0.
|
|
39
|
-
"@things-factory/transport-base": "^6.0.
|
|
40
|
-
"@things-factory/warehouse-base": "^6.0.
|
|
26
|
+
"@things-factory/auth-base": "^6.0.21",
|
|
27
|
+
"@things-factory/biz-base": "^6.0.21",
|
|
28
|
+
"@things-factory/document-template-base": "^6.0.21",
|
|
29
|
+
"@things-factory/id-rule-base": "^6.0.21",
|
|
30
|
+
"@things-factory/integration-lmd": "^6.0.21",
|
|
31
|
+
"@things-factory/integration-marketplace": "^6.0.21",
|
|
32
|
+
"@things-factory/integration-sellercraft": "^6.0.21",
|
|
33
|
+
"@things-factory/integration-sftp": "^6.0.21",
|
|
34
|
+
"@things-factory/marketplace-base": "^6.0.21",
|
|
35
|
+
"@things-factory/notification": "^6.0.21",
|
|
36
|
+
"@things-factory/sales-base": "^6.0.21",
|
|
37
|
+
"@things-factory/setting-base": "^6.0.21",
|
|
38
|
+
"@things-factory/shell": "^6.0.21",
|
|
39
|
+
"@things-factory/transport-base": "^6.0.21",
|
|
40
|
+
"@things-factory/warehouse-base": "^6.0.21"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "074a4f460d08fed4bc7e9882aa57f4c120cf0f11"
|
|
43
43
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import gql from 'graphql-tag'
|
|
2
2
|
|
|
3
3
|
export const GenerateBatchPickInfo = gql`
|
|
4
4
|
input GenerateBatchPickInfo {
|
|
@@ -6,4 +6,4 @@ export const GenerateBatchPickInfo = gql`
|
|
|
6
6
|
bizplaceId: String
|
|
7
7
|
bizplaceName: String
|
|
8
8
|
}
|
|
9
|
-
`
|
|
9
|
+
`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import gql from 'graphql-tag'
|
|
2
2
|
|
|
3
3
|
export const DeliveryOrderRO = gql`
|
|
4
4
|
type DeliveryOrderRO {
|
|
@@ -10,6 +10,6 @@ export const DeliveryOrderRO = gql`
|
|
|
10
10
|
companyDomain: String
|
|
11
11
|
recipientBiz: String
|
|
12
12
|
doDate: String
|
|
13
|
-
productList:[Product]
|
|
13
|
+
productList: [Product]
|
|
14
14
|
}
|
|
15
15
|
`
|