@things-factory/integration-sftp 6.0.0-alpha.1 → 6.0.0-alpha.12

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/integration-sftp",
3
- "version": "6.0.0-alpha.1",
3
+ "version": "6.0.0-alpha.12",
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": "^6.0.0-alpha.0",
28
- "@things-factory/biz-base": "^6.0.0-alpha.0",
29
- "@things-factory/env": "^6.0.0-alpha.0",
30
- "@things-factory/integration-fulfillment": "^6.0.0-alpha.1",
31
- "@things-factory/shell": "^6.0.0-alpha.0",
27
+ "@things-factory/auth-base": "^6.0.0-alpha.12",
28
+ "@things-factory/biz-base": "^6.0.0-alpha.12",
29
+ "@things-factory/env": "^6.0.0-alpha.8",
30
+ "@things-factory/integration-fulfillment": "^6.0.0-alpha.12",
31
+ "@things-factory/shell": "^6.0.0-alpha.12",
32
32
  "aws-sdk": "^2.960.0",
33
33
  "xml-js": "^1.6.11"
34
34
  },
35
- "gitHead": "b978f296de5c8be4a3f3450929821e5554855438"
35
+ "gitHead": "cc4cd7485a2932802d4f53feba2b1ea4c1a08383"
36
36
  }
@@ -234,7 +234,7 @@ export async function getCustomerBizplace(customerDomainId, tx): Promise<Bizplac
234
234
  const customerDomain: Domain = await tx.getRepository(Domain).findOneBy({ id: customerDomainId })
235
235
 
236
236
  const customerBizplace: Bizplace = await tx.getRepository(Bizplace).findOne({
237
- where: { domain: customerDomain }
237
+ where: { domain: { id: customerDomain.id } }
238
238
  })
239
239
 
240
240
  return customerBizplace