@things-factory/integration-sftp 7.0.1-alpha.77 → 7.0.1-alpha.79

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/integration-sftp",
3
- "version": "7.0.1-alpha.77",
3
+ "version": "7.0.1-alpha.79",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,13 +24,13 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/auth-base": "^7.0.1-alpha.77",
28
- "@things-factory/biz-base": "^7.0.1-alpha.77",
27
+ "@things-factory/auth-base": "^7.0.1-alpha.78",
28
+ "@things-factory/biz-base": "^7.0.1-alpha.78",
29
29
  "@things-factory/env": "^7.0.1-alpha.71",
30
- "@things-factory/integration-fulfillment": "^7.0.1-alpha.77",
30
+ "@things-factory/integration-fulfillment": "^7.0.1-alpha.79",
31
31
  "@things-factory/shell": "^7.0.1-alpha.71",
32
32
  "aws-sdk": "^2.960.0",
33
33
  "xml-js": "^1.6.11"
34
34
  },
35
- "gitHead": "e65893063c79d82a3c67233eac2295de2bae8397"
35
+ "gitHead": "b5b88ed7abdb33839beecf802f85976bc39dfaa1"
36
36
  }
@@ -34,7 +34,7 @@ export class Sftp {
34
34
  readonly id: string
35
35
 
36
36
  @ManyToOne(type => Domain)
37
- @Field({ nullable: true })
37
+ @Field(type => Domain)
38
38
  domain?: Domain
39
39
 
40
40
  @RelationId((sftp: Sftp) => sftp.domain)