monkey-front-core 0.0.49 → 0.0.53

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,13 @@ export interface MonkeyEcxConfigProgram {
35
35
  };
36
36
  };
37
37
  }
38
+ export interface MonkeyEcxConfigMarket {
39
+ daysToSearch: number;
40
+ operation: {
41
+ currentDaysToSearch: number;
42
+ maximumDaysToSearch: number;
43
+ };
44
+ }
38
45
  export interface MonkeyEcxConfigTheme {
39
46
  logos: {
40
47
  favicon: string;
@@ -65,10 +72,30 @@ export interface MonkeyEcxConfigi18n {
65
72
  export interface MonkeyEcxConfigLogs {
66
73
  enabled: boolean;
67
74
  }
75
+ export interface MonkeyEcxConfigMessages {
76
+ checkoutSuccess: string[];
77
+ }
78
+ interface MonkeyEcxConfigExternalSettingsEnv {
79
+ url: string;
80
+ urlName: string;
81
+ }
82
+ export interface MonkeyEcxConfigExternalSettings {
83
+ dev: MonkeyEcxConfigExternalSettingsEnv;
84
+ hmg: MonkeyEcxConfigExternalSettingsEnv;
85
+ prod: MonkeyEcxConfigExternalSettingsEnv;
86
+ }
87
+ export interface MonkeyEcxConfigExternali18n {
88
+ 'pt-BR'?: any;
89
+ }
68
90
  export interface MonkeyEcxConfig {
69
91
  program?: MonkeyEcxConfigProgram;
92
+ market?: MonkeyEcxConfigMarket;
70
93
  theme?: MonkeyEcxConfigTheme;
71
94
  support?: MonkeyEcxConfigSupport;
72
95
  i18n?: MonkeyEcxConfigi18n;
73
96
  logs?: MonkeyEcxConfigLogs;
97
+ externali18n?: MonkeyEcxConfigExternali18n;
98
+ messages?: MonkeyEcxConfigMessages;
99
+ externalSettings?: MonkeyEcxConfigExternalSettings;
74
100
  }
101
+ export {};
@@ -13,6 +13,7 @@ export interface MonkeyEcxTokenCredentials {
13
13
  role?: string;
14
14
  programAdmin?: boolean | string;
15
15
  programType?: string;
16
+ accessType?: string;
16
17
  _clearIgnore?: MonkeyEcxTokenCredentialsClearIgnore;
17
18
  }
18
19
  export {};
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.49",
3
+ "version": "0.0.53",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "~13.1.1",
6
6
  "@angular/core": "~13.1.1",
Binary file