@cocreate/organizations 1.26.1 → 1.27.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [1.27.0](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.26.1...v1.27.0) (2024-01-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * applied host to define environment/branch ([09cdf83](https://github.com/CoCreate-app/CoCreate-organizations/commit/09cdf8347f6a753d796eb5f9e6d6288c506106b2))
7
+
8
+
9
+ ### Features
10
+
11
+ * bumped CoCreate dependencies to their latest versions ([dff105b](https://github.com/CoCreate-app/CoCreate-organizations/commit/dff105b71b36e3fe98f3ed9fcf823f5e461654cb))
12
+
1
13
  ## [1.26.1](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.26.0...v1.26.1) (2023-12-22)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/organizations",
3
- "version": "1.26.1",
3
+ "version": "1.27.0",
4
4
  "description": "A simple organizations component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "organizations",
@@ -58,9 +58,9 @@
58
58
  "webpack-log": "^3.0.1"
59
59
  },
60
60
  "dependencies": {
61
- "@cocreate/actions": "^1.14.0",
62
- "@cocreate/config": "^1.8.0",
63
- "@cocreate/crud-client": "^1.31.0",
64
- "@cocreate/elements": "^1.28.0"
61
+ "@cocreate/actions": "^1.15.1",
62
+ "@cocreate/config": "^1.10.0",
63
+ "@cocreate/crud-client": "^1.32.2",
64
+ "@cocreate/elements": "^1.32.0"
65
65
  }
66
66
  }
package/src/server.js CHANGED
@@ -52,6 +52,7 @@ class CoCreateOrganization {
52
52
 
53
53
  const Data = {}
54
54
  Data.method = 'object.create'
55
+ Data.host = data.host
55
56
  Data.database = process.env.organization_id
56
57
  Data.organization_id = process.env.organization_id
57
58