@cocreate/authorize 1.6.0 → 1.6.2

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,17 @@
1
+ ## [1.6.2](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.6.1...v1.6.2) (2023-08-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * use data.apikey ([985bbcd](https://github.com/CoCreate-app/CoCreate-authorize/commit/985bbcd87ca5db8fc672f359e6bc2ea8ced4a2d7))
7
+
8
+ ## [1.6.1](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.6.0...v1.6.1) (2023-08-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * bump dependencies ([e9844c9](https://github.com/CoCreate-app/CoCreate-authorize/commit/e9844c9cfdec12f9ab15c11e07af4604e73c4db0))
14
+
1
15
  # [1.6.0](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.5.1...v1.6.0) (2023-08-21)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/authorize",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "A simple authorize component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "authorize",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "main": "./src/index.js",
47
47
  "dependencies": {
48
- "@cocreate/crud-client": "^1.23.1",
49
- "@cocreate/utils": "^1.23.1"
48
+ "@cocreate/crud-client": "^1.24.0",
49
+ "@cocreate/utils": "^1.24.0"
50
50
  }
51
51
  }
package/src/index.js CHANGED
@@ -173,7 +173,7 @@
173
173
  }
174
174
  if (!permission || permission.error) {
175
175
  permission = await checkPermissionObject({
176
- key: data.key,
176
+ key: data.apikey,
177
177
  data
178
178
  })
179
179
  }