sevago-sso-fe 1.0.49 → 1.0.51

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.
@@ -9,7 +9,7 @@ export declare enum AppGroup {
9
9
  }
10
10
  export interface AppInfo {
11
11
  path: {
12
- development: string;
12
+ develop: string;
13
13
  staging: string;
14
14
  production: string;
15
15
  };
@@ -27,14 +27,14 @@ export declare const APP_GROUP_COLOR: {
27
27
  Khác: string;
28
28
  };
29
29
  export declare const SSO: {
30
- development: string;
30
+ develop: string;
31
31
  staging: string;
32
32
  production: string;
33
33
  };
34
34
  export declare const APP_OBJ: {
35
35
  E_HIRING: {
36
36
  path: {
37
- development: string;
37
+ develop: string;
38
38
  staging: string;
39
39
  production: string;
40
40
  };
@@ -45,7 +45,7 @@ export declare const APP_OBJ: {
45
45
  };
46
46
  HR: {
47
47
  path: {
48
- development: string;
48
+ develop: string;
49
49
  staging: string;
50
50
  production: string;
51
51
  };
@@ -56,7 +56,7 @@ export declare const APP_OBJ: {
56
56
  };
57
57
  PAYROLL: {
58
58
  path: {
59
- development: string;
59
+ develop: string;
60
60
  staging: string;
61
61
  production: string;
62
62
  };
@@ -67,7 +67,7 @@ export declare const APP_OBJ: {
67
67
  };
68
68
  ORG: {
69
69
  path: {
70
- development: string;
70
+ develop: string;
71
71
  staging: string;
72
72
  production: string;
73
73
  };
@@ -78,7 +78,7 @@ export declare const APP_OBJ: {
78
78
  };
79
79
  CHECKIN: {
80
80
  path: {
81
- development: string;
81
+ develop: string;
82
82
  staging: string;
83
83
  production: string;
84
84
  };
@@ -89,7 +89,7 @@ export declare const APP_OBJ: {
89
89
  };
90
90
  CHAT: {
91
91
  path: {
92
- development: string;
92
+ develop: string;
93
93
  staging: string;
94
94
  production: string;
95
95
  };
@@ -100,7 +100,7 @@ export declare const APP_OBJ: {
100
100
  };
101
101
  TRAINING: {
102
102
  path: {
103
- development: string;
103
+ develop: string;
104
104
  staging: string;
105
105
  production: string;
106
106
  };
@@ -111,7 +111,7 @@ export declare const APP_OBJ: {
111
111
  };
112
112
  FORM: {
113
113
  path: {
114
- development: string;
114
+ develop: string;
115
115
  staging: string;
116
116
  production: string;
117
117
  };
@@ -122,7 +122,7 @@ export declare const APP_OBJ: {
122
122
  };
123
123
  INSIDE: {
124
124
  path: {
125
- development: string;
125
+ develop: string;
126
126
  staging: string;
127
127
  production: string;
128
128
  };
@@ -133,7 +133,7 @@ export declare const APP_OBJ: {
133
133
  };
134
134
  BOOKING: {
135
135
  path: {
136
- development: string;
136
+ develop: string;
137
137
  staging: string;
138
138
  production: string;
139
139
  };
@@ -144,7 +144,7 @@ export declare const APP_OBJ: {
144
144
  };
145
145
  PROJECT: {
146
146
  path: {
147
- development: string;
147
+ develop: string;
148
148
  staging: string;
149
149
  production: string;
150
150
  };
@@ -155,7 +155,7 @@ export declare const APP_OBJ: {
155
155
  };
156
156
  REQUEST: {
157
157
  path: {
158
- development: string;
158
+ develop: string;
159
159
  staging: string;
160
160
  production: string;
161
161
  };
@@ -166,7 +166,7 @@ export declare const APP_OBJ: {
166
166
  };
167
167
  TRACKING: {
168
168
  path: {
169
- development: string;
169
+ develop: string;
170
170
  staging: string;
171
171
  production: string;
172
172
  };
@@ -177,7 +177,7 @@ export declare const APP_OBJ: {
177
177
  };
178
178
  PROCESS: {
179
179
  path: {
180
- development: string;
180
+ develop: string;
181
181
  staging: string;
182
182
  production: string;
183
183
  };
@@ -188,7 +188,7 @@ export declare const APP_OBJ: {
188
188
  };
189
189
  FORMULA_PRICE: {
190
190
  path: {
191
- development: string;
191
+ develop: string;
192
192
  staging: string;
193
193
  production: string;
194
194
  };
@@ -199,7 +199,7 @@ export declare const APP_OBJ: {
199
199
  };
200
200
  E_CATALOGUE: {
201
201
  path: {
202
- development: string;
202
+ develop: string;
203
203
  staging: string;
204
204
  production: string;
205
205
  };
@@ -210,7 +210,7 @@ export declare const APP_OBJ: {
210
210
  };
211
211
  LANDING_PAGE: {
212
212
  path: {
213
- development: string;
213
+ develop: string;
214
214
  staging: string;
215
215
  production: string;
216
216
  };
@@ -1,4 +1,3 @@
1
1
  export * from './constant';
2
2
  export * from './enums';
3
- export * from './interfaces';
4
3
  export * from './utils';
@@ -1,5 +1,5 @@
1
1
  export declare enum Environment {
2
- DEVELOPMENT = "development",
2
+ DEVELOP = "develop",
3
3
  STAGING = "staging",
4
4
  PRODUCTION = "production"
5
5
  }