@cloudcommerce/cli 2.2.3 → 2.3.1

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @cloudcommerce/cli@2.2.2 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
2
+ > @cloudcommerce/cli@2.3.0 build /home/leo/code/ecomplus/cloud-commerce/packages/cli
3
3
  > bash ../../scripts/build-lib.sh
4
4
 
@@ -155,7 +155,8 @@ configure_edge_rule "APIs bypass CDN cache" '
155
155
  "*/_api/*",
156
156
  "*/_feeds/*",
157
157
  "*/.*/git/*",
158
- "*/_analytics"
158
+ "*/_analytics",
159
+ "*/~*"
159
160
  ],
160
161
  "PatternMatchingType": 0,
161
162
  "Parameter1": ""
@@ -179,7 +180,8 @@ configure_edge_rule "APIs bypass perma-cache" '
179
180
  "*/_api/*",
180
181
  "*/_feeds/*",
181
182
  "*/.*/git/*",
182
- "*/_analytics"
183
+ "*/_analytics",
184
+ "*/~*"
183
185
  ],
184
186
  "PatternMatchingType": 0,
185
187
  "Parameter1": ""
@@ -4,6 +4,9 @@ service cloud.firestore {
4
4
  match /forms/p/{form}/{document=*} {
5
5
  allow create;
6
6
  }
7
+ match /publicContent/{document=**} {
8
+ allow read;
9
+ }
7
10
  match /{document=**} {
8
11
  allow read, write: if false;
9
12
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudcommerce/cli",
3
3
  "type": "module",
4
- "version": "2.2.3",
4
+ "version": "2.3.1",
5
5
  "description": "E-Com Plus Cloud Commerce CLI tools",
6
6
  "bin": {
7
7
  "cloudcommerce": "./bin/run.mjs"
@@ -29,7 +29,7 @@
29
29
  "md5": "^2.3.0",
30
30
  "typescript": "~5.2.2",
31
31
  "zx": "^7.2.3",
32
- "@cloudcommerce/api": "2.2.3"
32
+ "@cloudcommerce/api": "2.3.1"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bash ../../scripts/build-lib.sh"