web-manager 4.1.26 → 4.1.27

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/dist/index.js CHANGED
@@ -166,8 +166,8 @@ class Manager {
166
166
  environment: 'production',
167
167
  buildTime: Date.now(),
168
168
  brand: {
169
- id: 'app',
170
- name: 'Application',
169
+ id: 'brand',
170
+ name: 'Brand',
171
171
  description: '',
172
172
  type: 'Organization',
173
173
  images: {
@@ -39,7 +39,7 @@ class ServiceWorker {
39
39
 
40
40
  // Build config object to pass to service worker
41
41
  const config = {
42
- app: this.manager.config.brand?.id,
42
+ brand: this.manager.config.brand?.id,
43
43
  environment: this.manager.config.environment,
44
44
  buildTime: this.manager.config.buildTime,
45
45
  firebase: this.manager.config.firebase?.app?.config || null
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-manager",
3
- "version": "4.1.26",
3
+ "version": "4.1.27",
4
4
  "description": "Easily access important variables such as the query string, current domain, and current page in a single object.",
5
5
  "main": "dist/index.js",
6
6
  "module": "src/index.js",