@cocreate/authorize 1.2.2 → 1.3.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.
@@ -53,3 +53,7 @@ jobs:
53
53
  node-version: 16
54
54
  - name: update documentation
55
55
  uses: CoCreate-app/CoCreate-docs@master
56
+ env:
57
+ organization_id: ${{ secrets.COCREATE_ORGANIZATION_ID }}
58
+ key: ${{ secrets.COCREATE_KEY }}
59
+ host: ${{ secrets.COCREATE_HOST }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [1.3.0](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.2.2...v1.3.0) (2023-06-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Refactor CoCreate.config.js to remove hard-coded credentials ([aaf5f58](https://github.com/CoCreate-app/CoCreate-authorize/commit/aaf5f58d8a21f5b2a2d4bf15fd6e90da3076e2e2))
7
+
8
+
9
+ ### Features
10
+
11
+ * Update automated.yml for CoCreate-docs with new environment variables ([12d2fb8](https://github.com/CoCreate-app/CoCreate-authorize/commit/12d2fb89541289ac68e012e86c6a82bdf75a1ed3))
12
+
1
13
  ## [1.2.2](https://github.com/CoCreate-app/CoCreate-authorize/compare/v1.2.1...v1.2.2) (2023-06-04)
2
14
 
3
15
 
@@ -1,8 +1,8 @@
1
1
  module.exports = {
2
2
  "config": {
3
- "organization_id": "5ff747727005da1c272740ab",
4
- "key": "2061acef-0451-4545-f754-60cf8160",
5
- "host": "general.cocreate.app"
3
+ "organization_id": "",
4
+ "key": "",
5
+ "host": ""
6
6
  },
7
7
  "sources": [
8
8
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/authorize",
3
- "version": "1.2.2",
3
+ "version": "1.3.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",
@@ -27,7 +27,8 @@
27
27
  "start": "npx webpack --config webpack.config.js",
28
28
  "build": "NODE_ENV=production npx webpack --config webpack.config.js",
29
29
  "dev": "npx webpack --config webpack.config.js --watch",
30
- "docs": "node ./node_modules/@cocreate/docs/src/index.js"
30
+ "docs": "node ./node_modules/@cocreate/docs/src/index.js",
31
+ "postinstall": "node ./node_modules/@cocreate/cli/check-coc.js"
31
32
  },
32
33
  "repository": {
33
34
  "type": "git",
@@ -44,10 +45,12 @@
44
45
  "url": "https://github.com/sponsors/CoCreate-app"
45
46
  },
46
47
  "main": "./src/index.js",
47
- "devDependencies": {},
48
+ "devDependencies": {
49
+ "@cocreate/cli": "^1.29.3"
50
+ },
48
51
  "dependencies": {
49
- "@cocreate/crud-client": "^1.21.8",
50
- "@cocreate/docs": "^1.7.15",
51
- "@cocreate/utils": "^1.21.1"
52
+ "@cocreate/crud-client": "^1.21.10",
53
+ "@cocreate/docs": "^1.8.2",
54
+ "@cocreate/utils": "^1.21.3"
52
55
  }
53
56
  }