@fctc/interface-logic 1.6.4 → 1.6.5
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/environment.js +10 -1
- package/dist/environment.mjs +10 -1
- package/dist/hooks.js +10 -1
- package/dist/hooks.mjs +10 -1
- package/dist/provider.js +10 -1
- package/dist/provider.mjs +10 -1
- package/dist/services.js +10 -1
- package/dist/services.mjs +10 -1
- package/dist/store.js +10 -1
- package/dist/store.mjs +10 -1
- package/package.json +1 -1
package/dist/environment.js
CHANGED
|
@@ -257,7 +257,16 @@ var envSlice = (0, import_toolkit2.createSlice)({
|
|
|
257
257
|
setEnv: (state, action) => {
|
|
258
258
|
console.log("state in slice", state);
|
|
259
259
|
console.log("env in slice", action.payload);
|
|
260
|
-
state =
|
|
260
|
+
state.baseUrl = action.payload.baseUrl;
|
|
261
|
+
state.requests = action.payload.requests;
|
|
262
|
+
state.companies = action.payload.companies;
|
|
263
|
+
state.user = action.payload.user;
|
|
264
|
+
state.db = action.payload.db;
|
|
265
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
266
|
+
state.config = action.payload.config;
|
|
267
|
+
state.envFile = action.payload.envFile;
|
|
268
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
269
|
+
state.context = action.payload.context;
|
|
261
270
|
},
|
|
262
271
|
setUid: (state, action) => {
|
|
263
272
|
state.context.uid = action.payload;
|
package/dist/environment.mjs
CHANGED
|
@@ -218,7 +218,16 @@ var envSlice = createSlice2({
|
|
|
218
218
|
setEnv: (state, action) => {
|
|
219
219
|
console.log("state in slice", state);
|
|
220
220
|
console.log("env in slice", action.payload);
|
|
221
|
-
state =
|
|
221
|
+
state.baseUrl = action.payload.baseUrl;
|
|
222
|
+
state.requests = action.payload.requests;
|
|
223
|
+
state.companies = action.payload.companies;
|
|
224
|
+
state.user = action.payload.user;
|
|
225
|
+
state.db = action.payload.db;
|
|
226
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
227
|
+
state.config = action.payload.config;
|
|
228
|
+
state.envFile = action.payload.envFile;
|
|
229
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
230
|
+
state.context = action.payload.context;
|
|
222
231
|
},
|
|
223
232
|
setUid: (state, action) => {
|
|
224
233
|
state.context.uid = action.payload;
|
package/dist/hooks.js
CHANGED
|
@@ -355,7 +355,16 @@ var envSlice = (0, import_toolkit2.createSlice)({
|
|
|
355
355
|
setEnv: (state, action) => {
|
|
356
356
|
console.log("state in slice", state);
|
|
357
357
|
console.log("env in slice", action.payload);
|
|
358
|
-
state =
|
|
358
|
+
state.baseUrl = action.payload.baseUrl;
|
|
359
|
+
state.requests = action.payload.requests;
|
|
360
|
+
state.companies = action.payload.companies;
|
|
361
|
+
state.user = action.payload.user;
|
|
362
|
+
state.db = action.payload.db;
|
|
363
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
364
|
+
state.config = action.payload.config;
|
|
365
|
+
state.envFile = action.payload.envFile;
|
|
366
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
367
|
+
state.context = action.payload.context;
|
|
359
368
|
},
|
|
360
369
|
setUid: (state, action) => {
|
|
361
370
|
state.context.uid = action.payload;
|
package/dist/hooks.mjs
CHANGED
|
@@ -251,7 +251,16 @@ var envSlice = createSlice2({
|
|
|
251
251
|
setEnv: (state, action) => {
|
|
252
252
|
console.log("state in slice", state);
|
|
253
253
|
console.log("env in slice", action.payload);
|
|
254
|
-
state =
|
|
254
|
+
state.baseUrl = action.payload.baseUrl;
|
|
255
|
+
state.requests = action.payload.requests;
|
|
256
|
+
state.companies = action.payload.companies;
|
|
257
|
+
state.user = action.payload.user;
|
|
258
|
+
state.db = action.payload.db;
|
|
259
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
260
|
+
state.config = action.payload.config;
|
|
261
|
+
state.envFile = action.payload.envFile;
|
|
262
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
263
|
+
state.context = action.payload.context;
|
|
255
264
|
},
|
|
256
265
|
setUid: (state, action) => {
|
|
257
266
|
state.context.uid = action.payload;
|
package/dist/provider.js
CHANGED
|
@@ -108,7 +108,16 @@ var envSlice = (0, import_toolkit2.createSlice)({
|
|
|
108
108
|
setEnv: (state, action) => {
|
|
109
109
|
console.log("state in slice", state);
|
|
110
110
|
console.log("env in slice", action.payload);
|
|
111
|
-
state =
|
|
111
|
+
state.baseUrl = action.payload.baseUrl;
|
|
112
|
+
state.requests = action.payload.requests;
|
|
113
|
+
state.companies = action.payload.companies;
|
|
114
|
+
state.user = action.payload.user;
|
|
115
|
+
state.db = action.payload.db;
|
|
116
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
117
|
+
state.config = action.payload.config;
|
|
118
|
+
state.envFile = action.payload.envFile;
|
|
119
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
120
|
+
state.context = action.payload.context;
|
|
112
121
|
},
|
|
113
122
|
setUid: (state, action) => {
|
|
114
123
|
state.context.uid = action.payload;
|
package/dist/provider.mjs
CHANGED
|
@@ -70,7 +70,16 @@ var envSlice = createSlice2({
|
|
|
70
70
|
setEnv: (state, action) => {
|
|
71
71
|
console.log("state in slice", state);
|
|
72
72
|
console.log("env in slice", action.payload);
|
|
73
|
-
state =
|
|
73
|
+
state.baseUrl = action.payload.baseUrl;
|
|
74
|
+
state.requests = action.payload.requests;
|
|
75
|
+
state.companies = action.payload.companies;
|
|
76
|
+
state.user = action.payload.user;
|
|
77
|
+
state.db = action.payload.db;
|
|
78
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
79
|
+
state.config = action.payload.config;
|
|
80
|
+
state.envFile = action.payload.envFile;
|
|
81
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
82
|
+
state.context = action.payload.context;
|
|
74
83
|
},
|
|
75
84
|
setUid: (state, action) => {
|
|
76
85
|
state.context.uid = action.payload;
|
package/dist/services.js
CHANGED
|
@@ -292,7 +292,16 @@ var envSlice = (0, import_toolkit2.createSlice)({
|
|
|
292
292
|
setEnv: (state, action) => {
|
|
293
293
|
console.log("state in slice", state);
|
|
294
294
|
console.log("env in slice", action.payload);
|
|
295
|
-
state =
|
|
295
|
+
state.baseUrl = action.payload.baseUrl;
|
|
296
|
+
state.requests = action.payload.requests;
|
|
297
|
+
state.companies = action.payload.companies;
|
|
298
|
+
state.user = action.payload.user;
|
|
299
|
+
state.db = action.payload.db;
|
|
300
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
301
|
+
state.config = action.payload.config;
|
|
302
|
+
state.envFile = action.payload.envFile;
|
|
303
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
304
|
+
state.context = action.payload.context;
|
|
296
305
|
},
|
|
297
306
|
setUid: (state, action) => {
|
|
298
307
|
state.context.uid = action.payload;
|
package/dist/services.mjs
CHANGED
|
@@ -248,7 +248,16 @@ var envSlice = createSlice2({
|
|
|
248
248
|
setEnv: (state, action) => {
|
|
249
249
|
console.log("state in slice", state);
|
|
250
250
|
console.log("env in slice", action.payload);
|
|
251
|
-
state =
|
|
251
|
+
state.baseUrl = action.payload.baseUrl;
|
|
252
|
+
state.requests = action.payload.requests;
|
|
253
|
+
state.companies = action.payload.companies;
|
|
254
|
+
state.user = action.payload.user;
|
|
255
|
+
state.db = action.payload.db;
|
|
256
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
257
|
+
state.config = action.payload.config;
|
|
258
|
+
state.envFile = action.payload.envFile;
|
|
259
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
260
|
+
state.context = action.payload.context;
|
|
252
261
|
},
|
|
253
262
|
setUid: (state, action) => {
|
|
254
263
|
state.context.uid = action.payload;
|
package/dist/store.js
CHANGED
|
@@ -154,7 +154,16 @@ var envSlice = (0, import_toolkit2.createSlice)({
|
|
|
154
154
|
setEnv: (state, action) => {
|
|
155
155
|
console.log("state in slice", state);
|
|
156
156
|
console.log("env in slice", action.payload);
|
|
157
|
-
state =
|
|
157
|
+
state.baseUrl = action.payload.baseUrl;
|
|
158
|
+
state.requests = action.payload.requests;
|
|
159
|
+
state.companies = action.payload.companies;
|
|
160
|
+
state.user = action.payload.user;
|
|
161
|
+
state.db = action.payload.db;
|
|
162
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
163
|
+
state.config = action.payload.config;
|
|
164
|
+
state.envFile = action.payload.envFile;
|
|
165
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
166
|
+
state.context = action.payload.context;
|
|
158
167
|
},
|
|
159
168
|
setUid: (state, action) => {
|
|
160
169
|
state.context.uid = action.payload;
|
package/dist/store.mjs
CHANGED
|
@@ -50,7 +50,16 @@ var envSlice = createSlice2({
|
|
|
50
50
|
setEnv: (state, action) => {
|
|
51
51
|
console.log("state in slice", state);
|
|
52
52
|
console.log("env in slice", action.payload);
|
|
53
|
-
state =
|
|
53
|
+
state.baseUrl = action.payload.baseUrl;
|
|
54
|
+
state.requests = action.payload.requests;
|
|
55
|
+
state.companies = action.payload.companies;
|
|
56
|
+
state.user = action.payload.user;
|
|
57
|
+
state.db = action.payload.db;
|
|
58
|
+
state.refreshTokenEndpoint = action.payload.refreshTokenEndpoint;
|
|
59
|
+
state.config = action.payload.config;
|
|
60
|
+
state.envFile = action.payload.envFile;
|
|
61
|
+
state.defaultCompany = action.payload.defaultCompany;
|
|
62
|
+
state.context = action.payload.context;
|
|
54
63
|
},
|
|
55
64
|
setUid: (state, action) => {
|
|
56
65
|
state.context.uid = action.payload;
|