@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/worksheet-base",
3
- "version": "6.0.18",
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.18",
27
- "@things-factory/biz-base": "^6.0.18",
28
- "@things-factory/document-template-base": "^6.0.18",
29
- "@things-factory/id-rule-base": "^6.0.18",
30
- "@things-factory/integration-lmd": "^6.0.18",
31
- "@things-factory/integration-marketplace": "^6.0.18",
32
- "@things-factory/integration-sellercraft": "^6.0.18",
33
- "@things-factory/integration-sftp": "^6.0.18",
34
- "@things-factory/marketplace-base": "^6.0.18",
35
- "@things-factory/notification": "^6.0.18",
36
- "@things-factory/sales-base": "^6.0.18",
37
- "@things-factory/setting-base": "^6.0.18",
38
- "@things-factory/shell": "^6.0.18",
39
- "@things-factory/transport-base": "^6.0.18",
40
- "@things-factory/warehouse-base": "^6.0.18"
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": "2e3e970ad20b2d7b67653ce04341bdf150ae7ebc"
42
+ "gitHead": "074a4f460d08fed4bc7e9882aa57f4c120cf0f11"
43
43
  }
@@ -1,4 +1,4 @@
1
- import { gql } from 'apollo-server-koa'
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 { gql } from 'apollo-server-koa'
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
  `
@@ -1,4 +1,4 @@
1
- import { gql } from 'apollo-server-koa'
1
+ import gql from 'graphql-tag'
2
2
 
3
3
  export const MultipleReleaseGoodWorksheet = gql`
4
4
  input MultipleReleaseGoodWorksheet {
@@ -1,8 +1,8 @@
1
- import { gql } from 'apollo-server-koa'
1
+ import gql from 'graphql-tag'
2
2
 
3
3
  export const SellercraftDocument = gql`
4
4
  type SellercraftDocument {
5
- airwayBill: String,
5
+ airwayBill: String
6
6
  invoice: String
7
7
  }
8
8
  `