@fctc/interface-logic 4.0.1 → 4.0.2

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.
@@ -35,6 +35,7 @@ interface EnvConfig {
35
35
  logo?: string;
36
36
  secondary_color?: string;
37
37
  primary_color?: string;
38
+ secondary_logo?: string;
38
39
  };
39
40
  config?: any;
40
41
  companies?: any[];
@@ -35,6 +35,7 @@ interface EnvConfig {
35
35
  logo?: string;
36
36
  secondary_color?: string;
37
37
  primary_color?: string;
38
+ secondary_logo?: string;
38
39
  };
39
40
  config?: any;
40
41
  companies?: any[];
package/dist/provider.js CHANGED
@@ -6238,7 +6238,8 @@ var initialEnvState = {
6238
6238
  id: null,
6239
6239
  logo: "",
6240
6240
  secondary_color: "",
6241
- primary_color: ""
6241
+ primary_color: "",
6242
+ secondary_logo: ""
6242
6243
  },
6243
6244
  context: {
6244
6245
  uid: null,
package/dist/provider.mjs CHANGED
@@ -6195,7 +6195,8 @@ var initialEnvState = {
6195
6195
  id: null,
6196
6196
  logo: "",
6197
6197
  secondary_color: "",
6198
- primary_color: ""
6198
+ primary_color: "",
6199
+ secondary_logo: ""
6199
6200
  },
6200
6201
  context: {
6201
6202
  uid: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fctc/interface-logic",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "types": "dist/index.d.ts",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",