@fctc/interface-logic 1.7.5 → 1.7.7
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/configs.d.mts +5 -7
- package/dist/configs.d.ts +5 -7
- package/dist/configs.js +9 -12
- package/dist/configs.mjs +9 -12
- package/dist/environment.d.mts +37 -1
- package/dist/environment.d.ts +37 -1
- package/dist/environment.js +646 -112
- package/dist/environment.mjs +645 -110
- package/dist/hooks.d.mts +7 -2
- package/dist/hooks.d.ts +7 -2
- package/dist/hooks.js +772 -435
- package/dist/hooks.mjs +731 -395
- package/dist/provider.js +18 -326
- package/dist/provider.mjs +18 -326
- package/dist/services.d.mts +2 -1
- package/dist/services.d.ts +2 -1
- package/dist/services.js +646 -325
- package/dist/services.mjs +646 -325
- package/dist/store.d.mts +112 -28
- package/dist/store.d.ts +112 -28
- package/dist/store.js +12 -6
- package/dist/store.mjs +12 -6
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/{view-type-BGJfDe73.d.mts → view-type-D8ukwj_2.d.mts} +1 -1
- package/dist/{view-type-BGJfDe73.d.ts → view-type-D8ukwj_2.d.ts} +1 -1
- package/package.json +81 -81
- package/dist/environment-BtoPepkC.d.mts +0 -72
- package/dist/environment-BtoPepkC.d.ts +0 -72
package/dist/store.d.mts
CHANGED
|
@@ -255,10 +255,16 @@ declare const selectNavbar: (state: RootState) => NavbarStateType;
|
|
|
255
255
|
declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
256
256
|
env: {
|
|
257
257
|
baseUrl: string;
|
|
258
|
-
requests: null;
|
|
259
258
|
companies: never[];
|
|
260
259
|
user: {};
|
|
261
|
-
|
|
260
|
+
db: string;
|
|
261
|
+
refreshTokenEndpoint: string;
|
|
262
|
+
config: {
|
|
263
|
+
grantType: string;
|
|
264
|
+
clientId: string;
|
|
265
|
+
clientSecret: string;
|
|
266
|
+
redirectUri: string;
|
|
267
|
+
};
|
|
262
268
|
envFile: null;
|
|
263
269
|
defaultCompany: {
|
|
264
270
|
id: null;
|
|
@@ -290,10 +296,16 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
290
296
|
dispatch: redux_thunk.ThunkDispatch<{
|
|
291
297
|
env: {
|
|
292
298
|
baseUrl: string;
|
|
293
|
-
requests: null;
|
|
294
299
|
companies: never[];
|
|
295
300
|
user: {};
|
|
296
|
-
|
|
301
|
+
db: string;
|
|
302
|
+
refreshTokenEndpoint: string;
|
|
303
|
+
config: {
|
|
304
|
+
grantType: string;
|
|
305
|
+
clientId: string;
|
|
306
|
+
clientSecret: string;
|
|
307
|
+
redirectUri: string;
|
|
308
|
+
};
|
|
297
309
|
envFile: null;
|
|
298
310
|
defaultCompany: {
|
|
299
311
|
id: null;
|
|
@@ -326,10 +338,16 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
326
338
|
|
|
327
339
|
declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
328
340
|
baseUrl: string;
|
|
329
|
-
requests: null;
|
|
330
341
|
companies: never[];
|
|
331
342
|
user: {};
|
|
332
|
-
|
|
343
|
+
db: string;
|
|
344
|
+
refreshTokenEndpoint: string;
|
|
345
|
+
config: {
|
|
346
|
+
grantType: string;
|
|
347
|
+
clientId: string;
|
|
348
|
+
clientSecret: string;
|
|
349
|
+
redirectUri: string;
|
|
350
|
+
};
|
|
333
351
|
envFile: null;
|
|
334
352
|
defaultCompany: {
|
|
335
353
|
id: null;
|
|
@@ -346,10 +364,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
346
364
|
}, {
|
|
347
365
|
setEnv: (state: immer.WritableDraft<{
|
|
348
366
|
baseUrl: string;
|
|
349
|
-
requests: null;
|
|
350
367
|
companies: never[];
|
|
351
368
|
user: {};
|
|
352
|
-
|
|
369
|
+
db: string;
|
|
370
|
+
refreshTokenEndpoint: string;
|
|
371
|
+
config: {
|
|
372
|
+
grantType: string;
|
|
373
|
+
clientId: string;
|
|
374
|
+
clientSecret: string;
|
|
375
|
+
redirectUri: string;
|
|
376
|
+
};
|
|
353
377
|
envFile: null;
|
|
354
378
|
defaultCompany: {
|
|
355
379
|
id: null;
|
|
@@ -369,10 +393,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
369
393
|
}) => void;
|
|
370
394
|
setUid: (state: immer.WritableDraft<{
|
|
371
395
|
baseUrl: string;
|
|
372
|
-
requests: null;
|
|
373
396
|
companies: never[];
|
|
374
397
|
user: {};
|
|
375
|
-
|
|
398
|
+
db: string;
|
|
399
|
+
refreshTokenEndpoint: string;
|
|
400
|
+
config: {
|
|
401
|
+
grantType: string;
|
|
402
|
+
clientId: string;
|
|
403
|
+
clientSecret: string;
|
|
404
|
+
redirectUri: string;
|
|
405
|
+
};
|
|
376
406
|
envFile: null;
|
|
377
407
|
defaultCompany: {
|
|
378
408
|
id: null;
|
|
@@ -392,10 +422,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
392
422
|
}) => void;
|
|
393
423
|
setAllowCompanies: (state: immer.WritableDraft<{
|
|
394
424
|
baseUrl: string;
|
|
395
|
-
requests: null;
|
|
396
425
|
companies: never[];
|
|
397
426
|
user: {};
|
|
398
|
-
|
|
427
|
+
db: string;
|
|
428
|
+
refreshTokenEndpoint: string;
|
|
429
|
+
config: {
|
|
430
|
+
grantType: string;
|
|
431
|
+
clientId: string;
|
|
432
|
+
clientSecret: string;
|
|
433
|
+
redirectUri: string;
|
|
434
|
+
};
|
|
399
435
|
envFile: null;
|
|
400
436
|
defaultCompany: {
|
|
401
437
|
id: null;
|
|
@@ -415,10 +451,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
415
451
|
}) => void;
|
|
416
452
|
setCompanies: (state: immer.WritableDraft<{
|
|
417
453
|
baseUrl: string;
|
|
418
|
-
requests: null;
|
|
419
454
|
companies: never[];
|
|
420
455
|
user: {};
|
|
421
|
-
|
|
456
|
+
db: string;
|
|
457
|
+
refreshTokenEndpoint: string;
|
|
458
|
+
config: {
|
|
459
|
+
grantType: string;
|
|
460
|
+
clientId: string;
|
|
461
|
+
clientSecret: string;
|
|
462
|
+
redirectUri: string;
|
|
463
|
+
};
|
|
422
464
|
envFile: null;
|
|
423
465
|
defaultCompany: {
|
|
424
466
|
id: null;
|
|
@@ -438,10 +480,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
438
480
|
}) => void;
|
|
439
481
|
setDefaultCompany: (state: immer.WritableDraft<{
|
|
440
482
|
baseUrl: string;
|
|
441
|
-
requests: null;
|
|
442
483
|
companies: never[];
|
|
443
484
|
user: {};
|
|
444
|
-
|
|
485
|
+
db: string;
|
|
486
|
+
refreshTokenEndpoint: string;
|
|
487
|
+
config: {
|
|
488
|
+
grantType: string;
|
|
489
|
+
clientId: string;
|
|
490
|
+
clientSecret: string;
|
|
491
|
+
redirectUri: string;
|
|
492
|
+
};
|
|
445
493
|
envFile: null;
|
|
446
494
|
defaultCompany: {
|
|
447
495
|
id: null;
|
|
@@ -461,10 +509,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
461
509
|
}) => void;
|
|
462
510
|
setLang: (state: immer.WritableDraft<{
|
|
463
511
|
baseUrl: string;
|
|
464
|
-
requests: null;
|
|
465
512
|
companies: never[];
|
|
466
513
|
user: {};
|
|
467
|
-
|
|
514
|
+
db: string;
|
|
515
|
+
refreshTokenEndpoint: string;
|
|
516
|
+
config: {
|
|
517
|
+
grantType: string;
|
|
518
|
+
clientId: string;
|
|
519
|
+
clientSecret: string;
|
|
520
|
+
redirectUri: string;
|
|
521
|
+
};
|
|
468
522
|
envFile: null;
|
|
469
523
|
defaultCompany: {
|
|
470
524
|
id: null;
|
|
@@ -484,10 +538,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
484
538
|
}) => void;
|
|
485
539
|
setUser: (state: immer.WritableDraft<{
|
|
486
540
|
baseUrl: string;
|
|
487
|
-
requests: null;
|
|
488
541
|
companies: never[];
|
|
489
542
|
user: {};
|
|
490
|
-
|
|
543
|
+
db: string;
|
|
544
|
+
refreshTokenEndpoint: string;
|
|
545
|
+
config: {
|
|
546
|
+
grantType: string;
|
|
547
|
+
clientId: string;
|
|
548
|
+
clientSecret: string;
|
|
549
|
+
redirectUri: string;
|
|
550
|
+
};
|
|
491
551
|
envFile: null;
|
|
492
552
|
defaultCompany: {
|
|
493
553
|
id: null;
|
|
@@ -507,10 +567,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
507
567
|
}) => void;
|
|
508
568
|
setConfig: (state: immer.WritableDraft<{
|
|
509
569
|
baseUrl: string;
|
|
510
|
-
requests: null;
|
|
511
570
|
companies: never[];
|
|
512
571
|
user: {};
|
|
513
|
-
|
|
572
|
+
db: string;
|
|
573
|
+
refreshTokenEndpoint: string;
|
|
574
|
+
config: {
|
|
575
|
+
grantType: string;
|
|
576
|
+
clientId: string;
|
|
577
|
+
clientSecret: string;
|
|
578
|
+
redirectUri: string;
|
|
579
|
+
};
|
|
514
580
|
envFile: null;
|
|
515
581
|
defaultCompany: {
|
|
516
582
|
id: null;
|
|
@@ -530,10 +596,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
530
596
|
}) => void;
|
|
531
597
|
setEnvFile: (state: immer.WritableDraft<{
|
|
532
598
|
baseUrl: string;
|
|
533
|
-
requests: null;
|
|
534
599
|
companies: never[];
|
|
535
600
|
user: {};
|
|
536
|
-
|
|
601
|
+
db: string;
|
|
602
|
+
refreshTokenEndpoint: string;
|
|
603
|
+
config: {
|
|
604
|
+
grantType: string;
|
|
605
|
+
clientId: string;
|
|
606
|
+
clientSecret: string;
|
|
607
|
+
redirectUri: string;
|
|
608
|
+
};
|
|
537
609
|
envFile: null;
|
|
538
610
|
defaultCompany: {
|
|
539
611
|
id: null;
|
|
@@ -553,10 +625,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
553
625
|
}) => void;
|
|
554
626
|
}, "env", "env", _reduxjs_toolkit.SliceSelectors<{
|
|
555
627
|
baseUrl: string;
|
|
556
|
-
requests: null;
|
|
557
628
|
companies: never[];
|
|
558
629
|
user: {};
|
|
559
|
-
|
|
630
|
+
db: string;
|
|
631
|
+
refreshTokenEndpoint: string;
|
|
632
|
+
config: {
|
|
633
|
+
grantType: string;
|
|
634
|
+
clientId: string;
|
|
635
|
+
clientSecret: string;
|
|
636
|
+
redirectUri: string;
|
|
637
|
+
};
|
|
560
638
|
envFile: null;
|
|
561
639
|
defaultCompany: {
|
|
562
640
|
id: null;
|
|
@@ -582,10 +660,16 @@ declare const setConfig: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/set
|
|
|
582
660
|
declare const setEnvFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setEnvFile">;
|
|
583
661
|
declare const selectEnv: (state: RootState) => {
|
|
584
662
|
baseUrl: string;
|
|
585
|
-
requests: null;
|
|
586
663
|
companies: never[];
|
|
587
664
|
user: {};
|
|
588
|
-
|
|
665
|
+
db: string;
|
|
666
|
+
refreshTokenEndpoint: string;
|
|
667
|
+
config: {
|
|
668
|
+
grantType: string;
|
|
669
|
+
clientId: string;
|
|
670
|
+
clientSecret: string;
|
|
671
|
+
redirectUri: string;
|
|
672
|
+
};
|
|
589
673
|
envFile: null;
|
|
590
674
|
defaultCompany: {
|
|
591
675
|
id: null;
|
package/dist/store.d.ts
CHANGED
|
@@ -255,10 +255,16 @@ declare const selectNavbar: (state: RootState) => NavbarStateType;
|
|
|
255
255
|
declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
256
256
|
env: {
|
|
257
257
|
baseUrl: string;
|
|
258
|
-
requests: null;
|
|
259
258
|
companies: never[];
|
|
260
259
|
user: {};
|
|
261
|
-
|
|
260
|
+
db: string;
|
|
261
|
+
refreshTokenEndpoint: string;
|
|
262
|
+
config: {
|
|
263
|
+
grantType: string;
|
|
264
|
+
clientId: string;
|
|
265
|
+
clientSecret: string;
|
|
266
|
+
redirectUri: string;
|
|
267
|
+
};
|
|
262
268
|
envFile: null;
|
|
263
269
|
defaultCompany: {
|
|
264
270
|
id: null;
|
|
@@ -290,10 +296,16 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
290
296
|
dispatch: redux_thunk.ThunkDispatch<{
|
|
291
297
|
env: {
|
|
292
298
|
baseUrl: string;
|
|
293
|
-
requests: null;
|
|
294
299
|
companies: never[];
|
|
295
300
|
user: {};
|
|
296
|
-
|
|
301
|
+
db: string;
|
|
302
|
+
refreshTokenEndpoint: string;
|
|
303
|
+
config: {
|
|
304
|
+
grantType: string;
|
|
305
|
+
clientId: string;
|
|
306
|
+
clientSecret: string;
|
|
307
|
+
redirectUri: string;
|
|
308
|
+
};
|
|
297
309
|
envFile: null;
|
|
298
310
|
defaultCompany: {
|
|
299
311
|
id: null;
|
|
@@ -326,10 +338,16 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
326
338
|
|
|
327
339
|
declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
328
340
|
baseUrl: string;
|
|
329
|
-
requests: null;
|
|
330
341
|
companies: never[];
|
|
331
342
|
user: {};
|
|
332
|
-
|
|
343
|
+
db: string;
|
|
344
|
+
refreshTokenEndpoint: string;
|
|
345
|
+
config: {
|
|
346
|
+
grantType: string;
|
|
347
|
+
clientId: string;
|
|
348
|
+
clientSecret: string;
|
|
349
|
+
redirectUri: string;
|
|
350
|
+
};
|
|
333
351
|
envFile: null;
|
|
334
352
|
defaultCompany: {
|
|
335
353
|
id: null;
|
|
@@ -346,10 +364,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
346
364
|
}, {
|
|
347
365
|
setEnv: (state: immer.WritableDraft<{
|
|
348
366
|
baseUrl: string;
|
|
349
|
-
requests: null;
|
|
350
367
|
companies: never[];
|
|
351
368
|
user: {};
|
|
352
|
-
|
|
369
|
+
db: string;
|
|
370
|
+
refreshTokenEndpoint: string;
|
|
371
|
+
config: {
|
|
372
|
+
grantType: string;
|
|
373
|
+
clientId: string;
|
|
374
|
+
clientSecret: string;
|
|
375
|
+
redirectUri: string;
|
|
376
|
+
};
|
|
353
377
|
envFile: null;
|
|
354
378
|
defaultCompany: {
|
|
355
379
|
id: null;
|
|
@@ -369,10 +393,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
369
393
|
}) => void;
|
|
370
394
|
setUid: (state: immer.WritableDraft<{
|
|
371
395
|
baseUrl: string;
|
|
372
|
-
requests: null;
|
|
373
396
|
companies: never[];
|
|
374
397
|
user: {};
|
|
375
|
-
|
|
398
|
+
db: string;
|
|
399
|
+
refreshTokenEndpoint: string;
|
|
400
|
+
config: {
|
|
401
|
+
grantType: string;
|
|
402
|
+
clientId: string;
|
|
403
|
+
clientSecret: string;
|
|
404
|
+
redirectUri: string;
|
|
405
|
+
};
|
|
376
406
|
envFile: null;
|
|
377
407
|
defaultCompany: {
|
|
378
408
|
id: null;
|
|
@@ -392,10 +422,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
392
422
|
}) => void;
|
|
393
423
|
setAllowCompanies: (state: immer.WritableDraft<{
|
|
394
424
|
baseUrl: string;
|
|
395
|
-
requests: null;
|
|
396
425
|
companies: never[];
|
|
397
426
|
user: {};
|
|
398
|
-
|
|
427
|
+
db: string;
|
|
428
|
+
refreshTokenEndpoint: string;
|
|
429
|
+
config: {
|
|
430
|
+
grantType: string;
|
|
431
|
+
clientId: string;
|
|
432
|
+
clientSecret: string;
|
|
433
|
+
redirectUri: string;
|
|
434
|
+
};
|
|
399
435
|
envFile: null;
|
|
400
436
|
defaultCompany: {
|
|
401
437
|
id: null;
|
|
@@ -415,10 +451,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
415
451
|
}) => void;
|
|
416
452
|
setCompanies: (state: immer.WritableDraft<{
|
|
417
453
|
baseUrl: string;
|
|
418
|
-
requests: null;
|
|
419
454
|
companies: never[];
|
|
420
455
|
user: {};
|
|
421
|
-
|
|
456
|
+
db: string;
|
|
457
|
+
refreshTokenEndpoint: string;
|
|
458
|
+
config: {
|
|
459
|
+
grantType: string;
|
|
460
|
+
clientId: string;
|
|
461
|
+
clientSecret: string;
|
|
462
|
+
redirectUri: string;
|
|
463
|
+
};
|
|
422
464
|
envFile: null;
|
|
423
465
|
defaultCompany: {
|
|
424
466
|
id: null;
|
|
@@ -438,10 +480,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
438
480
|
}) => void;
|
|
439
481
|
setDefaultCompany: (state: immer.WritableDraft<{
|
|
440
482
|
baseUrl: string;
|
|
441
|
-
requests: null;
|
|
442
483
|
companies: never[];
|
|
443
484
|
user: {};
|
|
444
|
-
|
|
485
|
+
db: string;
|
|
486
|
+
refreshTokenEndpoint: string;
|
|
487
|
+
config: {
|
|
488
|
+
grantType: string;
|
|
489
|
+
clientId: string;
|
|
490
|
+
clientSecret: string;
|
|
491
|
+
redirectUri: string;
|
|
492
|
+
};
|
|
445
493
|
envFile: null;
|
|
446
494
|
defaultCompany: {
|
|
447
495
|
id: null;
|
|
@@ -461,10 +509,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
461
509
|
}) => void;
|
|
462
510
|
setLang: (state: immer.WritableDraft<{
|
|
463
511
|
baseUrl: string;
|
|
464
|
-
requests: null;
|
|
465
512
|
companies: never[];
|
|
466
513
|
user: {};
|
|
467
|
-
|
|
514
|
+
db: string;
|
|
515
|
+
refreshTokenEndpoint: string;
|
|
516
|
+
config: {
|
|
517
|
+
grantType: string;
|
|
518
|
+
clientId: string;
|
|
519
|
+
clientSecret: string;
|
|
520
|
+
redirectUri: string;
|
|
521
|
+
};
|
|
468
522
|
envFile: null;
|
|
469
523
|
defaultCompany: {
|
|
470
524
|
id: null;
|
|
@@ -484,10 +538,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
484
538
|
}) => void;
|
|
485
539
|
setUser: (state: immer.WritableDraft<{
|
|
486
540
|
baseUrl: string;
|
|
487
|
-
requests: null;
|
|
488
541
|
companies: never[];
|
|
489
542
|
user: {};
|
|
490
|
-
|
|
543
|
+
db: string;
|
|
544
|
+
refreshTokenEndpoint: string;
|
|
545
|
+
config: {
|
|
546
|
+
grantType: string;
|
|
547
|
+
clientId: string;
|
|
548
|
+
clientSecret: string;
|
|
549
|
+
redirectUri: string;
|
|
550
|
+
};
|
|
491
551
|
envFile: null;
|
|
492
552
|
defaultCompany: {
|
|
493
553
|
id: null;
|
|
@@ -507,10 +567,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
507
567
|
}) => void;
|
|
508
568
|
setConfig: (state: immer.WritableDraft<{
|
|
509
569
|
baseUrl: string;
|
|
510
|
-
requests: null;
|
|
511
570
|
companies: never[];
|
|
512
571
|
user: {};
|
|
513
|
-
|
|
572
|
+
db: string;
|
|
573
|
+
refreshTokenEndpoint: string;
|
|
574
|
+
config: {
|
|
575
|
+
grantType: string;
|
|
576
|
+
clientId: string;
|
|
577
|
+
clientSecret: string;
|
|
578
|
+
redirectUri: string;
|
|
579
|
+
};
|
|
514
580
|
envFile: null;
|
|
515
581
|
defaultCompany: {
|
|
516
582
|
id: null;
|
|
@@ -530,10 +596,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
530
596
|
}) => void;
|
|
531
597
|
setEnvFile: (state: immer.WritableDraft<{
|
|
532
598
|
baseUrl: string;
|
|
533
|
-
requests: null;
|
|
534
599
|
companies: never[];
|
|
535
600
|
user: {};
|
|
536
|
-
|
|
601
|
+
db: string;
|
|
602
|
+
refreshTokenEndpoint: string;
|
|
603
|
+
config: {
|
|
604
|
+
grantType: string;
|
|
605
|
+
clientId: string;
|
|
606
|
+
clientSecret: string;
|
|
607
|
+
redirectUri: string;
|
|
608
|
+
};
|
|
537
609
|
envFile: null;
|
|
538
610
|
defaultCompany: {
|
|
539
611
|
id: null;
|
|
@@ -553,10 +625,16 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
|
|
|
553
625
|
}) => void;
|
|
554
626
|
}, "env", "env", _reduxjs_toolkit.SliceSelectors<{
|
|
555
627
|
baseUrl: string;
|
|
556
|
-
requests: null;
|
|
557
628
|
companies: never[];
|
|
558
629
|
user: {};
|
|
559
|
-
|
|
630
|
+
db: string;
|
|
631
|
+
refreshTokenEndpoint: string;
|
|
632
|
+
config: {
|
|
633
|
+
grantType: string;
|
|
634
|
+
clientId: string;
|
|
635
|
+
clientSecret: string;
|
|
636
|
+
redirectUri: string;
|
|
637
|
+
};
|
|
560
638
|
envFile: null;
|
|
561
639
|
defaultCompany: {
|
|
562
640
|
id: null;
|
|
@@ -582,10 +660,16 @@ declare const setConfig: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/set
|
|
|
582
660
|
declare const setEnvFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setEnvFile">;
|
|
583
661
|
declare const selectEnv: (state: RootState) => {
|
|
584
662
|
baseUrl: string;
|
|
585
|
-
requests: null;
|
|
586
663
|
companies: never[];
|
|
587
664
|
user: {};
|
|
588
|
-
|
|
665
|
+
db: string;
|
|
666
|
+
refreshTokenEndpoint: string;
|
|
667
|
+
config: {
|
|
668
|
+
grantType: string;
|
|
669
|
+
clientId: string;
|
|
670
|
+
clientSecret: string;
|
|
671
|
+
redirectUri: string;
|
|
672
|
+
};
|
|
589
673
|
envFile: null;
|
|
590
674
|
defaultCompany: {
|
|
591
675
|
id: null;
|
package/dist/store.js
CHANGED
|
@@ -127,10 +127,16 @@ var breadcrums_slice_default = breadcrumbsSlice.reducer;
|
|
|
127
127
|
var import_toolkit2 = require("@reduxjs/toolkit");
|
|
128
128
|
var initialState2 = {
|
|
129
129
|
baseUrl: "",
|
|
130
|
-
requests: null,
|
|
131
130
|
companies: [],
|
|
132
131
|
user: {},
|
|
133
|
-
|
|
132
|
+
db: "",
|
|
133
|
+
refreshTokenEndpoint: "",
|
|
134
|
+
config: {
|
|
135
|
+
grantType: "",
|
|
136
|
+
clientId: "",
|
|
137
|
+
clientSecret: "",
|
|
138
|
+
redirectUri: ""
|
|
139
|
+
},
|
|
134
140
|
envFile: null,
|
|
135
141
|
defaultCompany: {
|
|
136
142
|
id: null,
|
|
@@ -535,10 +541,6 @@ var selectSearch = (state) => state.search;
|
|
|
535
541
|
var selectSearchMap = (state) => state.search.searchMap;
|
|
536
542
|
var search_slice_default = searchSlice.reducer;
|
|
537
543
|
|
|
538
|
-
// src/store/index.ts
|
|
539
|
-
var useAppDispatch = import_react_redux.useDispatch;
|
|
540
|
-
var useAppSelector = import_react_redux.useSelector;
|
|
541
|
-
|
|
542
544
|
// src/store/store.ts
|
|
543
545
|
var import_toolkit11 = require("@reduxjs/toolkit");
|
|
544
546
|
|
|
@@ -730,6 +732,10 @@ var envStore = (0, import_toolkit11.configureStore)({
|
|
|
730
732
|
serializableCheck: false
|
|
731
733
|
})
|
|
732
734
|
});
|
|
735
|
+
|
|
736
|
+
// src/store/index.ts
|
|
737
|
+
var useAppDispatch = import_react_redux.useDispatch;
|
|
738
|
+
var useAppSelector = import_react_redux.useSelector;
|
|
733
739
|
// Annotate the CommonJS export names for ESM import in node:
|
|
734
740
|
0 && (module.exports = {
|
|
735
741
|
breadcrumbsSlice,
|
package/dist/store.mjs
CHANGED
|
@@ -23,10 +23,16 @@ var breadcrums_slice_default = breadcrumbsSlice.reducer;
|
|
|
23
23
|
import { createSlice as createSlice2 } from "@reduxjs/toolkit";
|
|
24
24
|
var initialState2 = {
|
|
25
25
|
baseUrl: "",
|
|
26
|
-
requests: null,
|
|
27
26
|
companies: [],
|
|
28
27
|
user: {},
|
|
29
|
-
|
|
28
|
+
db: "",
|
|
29
|
+
refreshTokenEndpoint: "",
|
|
30
|
+
config: {
|
|
31
|
+
grantType: "",
|
|
32
|
+
clientId: "",
|
|
33
|
+
clientSecret: "",
|
|
34
|
+
redirectUri: ""
|
|
35
|
+
},
|
|
30
36
|
envFile: null,
|
|
31
37
|
defaultCompany: {
|
|
32
38
|
id: null,
|
|
@@ -431,10 +437,6 @@ var selectSearch = (state) => state.search;
|
|
|
431
437
|
var selectSearchMap = (state) => state.search.searchMap;
|
|
432
438
|
var search_slice_default = searchSlice.reducer;
|
|
433
439
|
|
|
434
|
-
// src/store/index.ts
|
|
435
|
-
var useAppDispatch = useDispatch;
|
|
436
|
-
var useAppSelector = useSelector;
|
|
437
|
-
|
|
438
440
|
// src/store/store.ts
|
|
439
441
|
import { configureStore } from "@reduxjs/toolkit";
|
|
440
442
|
|
|
@@ -626,6 +628,10 @@ var envStore = configureStore({
|
|
|
626
628
|
serializableCheck: false
|
|
627
629
|
})
|
|
628
630
|
});
|
|
631
|
+
|
|
632
|
+
// src/store/index.ts
|
|
633
|
+
var useAppDispatch = useDispatch;
|
|
634
|
+
var useAppSelector = useSelector;
|
|
629
635
|
export {
|
|
630
636
|
breadcrumbsSlice,
|
|
631
637
|
clearSearchMap,
|
package/dist/types.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody,
|
|
1
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, e as GetAllParams, c as GetDetailParams, b as GetListParams, G as GetSelectionType, a as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, d as SaveParams, S as SocialTokenBody, f as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-D8ukwj_2.mjs';
|
|
2
2
|
|
|
3
3
|
interface Config {
|
|
4
4
|
baseUrl: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody,
|
|
1
|
+
export { C as ContextApi, D as DeleteParams, F as ForgotPasswordBody, e as GetAllParams, c as GetDetailParams, b as GetListParams, G as GetSelectionType, a as GetViewParams, L as LoginCredentialBody, O as OnChangeParams, R as ResetPasswordRequest, d as SaveParams, S as SocialTokenBody, f as Specification, U as UpdatePasswordRequest, g as View, V as ViewData, u as updatePasswordBody } from './view-type-D8ukwj_2.js';
|
|
2
2
|
|
|
3
3
|
interface Config {
|
|
4
4
|
baseUrl: string;
|
|
@@ -110,4 +110,4 @@ interface GetViewParams {
|
|
|
110
110
|
aid?: number | string | null | boolean;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
export type { ContextApi as C, DeleteParams as D, ForgotPasswordBody as F,
|
|
113
|
+
export type { ContextApi as C, DeleteParams as D, ForgotPasswordBody as F, GetSelectionType as G, LoginCredentialBody as L, OnChangeParams as O, ResetPasswordRequest as R, SocialTokenBody as S, UpdatePasswordRequest as U, ViewData as V, GetViewParams as a, GetListParams as b, GetDetailParams as c, SaveParams as d, GetAllParams as e, Specification as f, View as g, updatePasswordBody as u };
|
|
@@ -110,4 +110,4 @@ interface GetViewParams {
|
|
|
110
110
|
aid?: number | string | null | boolean;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
export type { ContextApi as C, DeleteParams as D, ForgotPasswordBody as F,
|
|
113
|
+
export type { ContextApi as C, DeleteParams as D, ForgotPasswordBody as F, GetSelectionType as G, LoginCredentialBody as L, OnChangeParams as O, ResetPasswordRequest as R, SocialTokenBody as S, UpdatePasswordRequest as U, ViewData as V, GetViewParams as a, GetListParams as b, GetDetailParams as c, SaveParams as d, GetAllParams as e, Specification as f, View as g, updatePasswordBody as u };
|