@cocreate/authorize 1.14.5 → 1.16.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,28 @@
1
+ # [1.16.0](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.15.0...v1.16.0) (2024-12-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * $key condition placement ([5dea39f](https://github.com/CoCreate-app/CoCreate-authorize/commit/5dea39fb9ae8f2c0deb17295be4df32e17c2e3ea))
7
+ * handle authorization string ([6e5f25b](https://github.com/CoCreate-app/CoCreate-authorize/commit/6e5f25b96734f4b131906f3dc34b011852f18cfc))
8
+
9
+
10
+ ### Features
11
+
12
+ * key level permission will sanitize, include and exclude data being returned ([f38232f](https://github.com/CoCreate-app/CoCreate-authorize/commit/f38232f5995e2c29e95002efb075a6ff053d05f0))
13
+
14
+ # [1.15.0](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.14.5...v1.15.0) (2024-11-04)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * prettier.config options ([55eddb4](https://github.com/CoCreate-app/CoCreate-authorize/commit/55eddb46c223e01f73460f395bca92d94826a84c))
20
+
21
+
22
+ ### Features
23
+
24
+ * add prettier.config.js and format files ([2d4c894](https://github.com/CoCreate-app/CoCreate-authorize/commit/2d4c894170d1884da8bbba1d2f3ef551ff2abc01))
25
+
1
26
  ## [1.14.5](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.14.4...v1.14.5) (2024-09-21)
2
27
 
3
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/authorize",
3
- "version": "1.14.5",
3
+ "version": "1.16.0",
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",
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ tabWidth: 4,
3
+ semi: true,
4
+ trailingComma: "none",
5
+ bracketSameLine: true,
6
+ useTabs: true,
7
+ overrides: [
8
+ {
9
+ files: ["*.json", "*.yml", "*.yaml"],
10
+ options: {
11
+ tabWidth: 2,
12
+ useTabs: false
13
+ },
14
+ }
15
+ ],
16
+ };