@open-mercato/shared 0.6.6-develop.5503.1.6cdc4dda5f → 0.6.6-develop.5509.1.006f4d4f24

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
- const APP_VERSION = "0.6.6-develop.5503.1.6cdc4dda5f";
1
+ const APP_VERSION = "0.6.6-develop.5509.1.006f4d4f24";
2
2
  const appVersion = APP_VERSION;
3
3
  export {
4
4
  APP_VERSION,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/lib/version.ts"],
4
- "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.6.6-develop.5503.1.6cdc4dda5f'\nexport const appVersion = APP_VERSION\n"],
4
+ "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.6.6-develop.5509.1.006f4d4f24'\nexport const appVersion = APP_VERSION\n"],
5
5
  "mappings": "AACO,MAAM,cAAc;AACpB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-mercato/shared",
3
- "version": "0.6.6-develop.5503.1.6cdc4dda5f",
3
+ "version": "0.6.6-develop.5509.1.006f4d4f24",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -92,7 +92,7 @@
92
92
  "@mikro-orm/core": "^7.1.4",
93
93
  "@mikro-orm/decorators": "^7.1.4",
94
94
  "@mikro-orm/postgresql": "^7.1.4",
95
- "@open-mercato/cache": "0.6.6-develop.5503.1.6cdc4dda5f",
95
+ "@open-mercato/cache": "0.6.6-develop.5509.1.006f4d4f24",
96
96
  "dotenv": "^17.4.2",
97
97
  "rate-limiter-flexible": "^11.2.0",
98
98
  "re2js": "2.8.3",
@@ -39,6 +39,14 @@ export type BackendChromeSectionGroup = {
39
39
  order?: number
40
40
  }
41
41
 
42
+ export type BackendChromeBrand = {
43
+ name?: string
44
+ logo?: {
45
+ src: string
46
+ alt?: string
47
+ } | null
48
+ }
49
+
42
50
  export type BackendChromePayload = {
43
51
  groups: BackendChromeNavGroup[]
44
52
  settingsSections: BackendChromeSectionGroup[]
@@ -47,4 +55,5 @@ export type BackendChromePayload = {
47
55
  profilePathPrefixes: string[]
48
56
  grantedFeatures: string[]
49
57
  roles: string[]
58
+ brand?: BackendChromeBrand | null
50
59
  }