@fctc/interface-logic 1.5.8 → 1.6.0

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/store.d.mts CHANGED
@@ -75,9 +75,9 @@ declare const loginSlice: _reduxjs_toolkit.Slice<LoginStateType, {
75
75
  setRedirectTo: (state: immer.WritableDraft<LoginStateType>, action: PayloadAction<string>) => void;
76
76
  setForgotPasswordUrl: (state: immer.WritableDraft<LoginStateType>, action: PayloadAction<string>) => void;
77
77
  }, "login", "login", _reduxjs_toolkit.SliceSelectors<LoginStateType>>;
78
- declare const setDb: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "login/setDb">;
79
- declare const setRedirectTo: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "login/setRedirectTo">;
80
- declare const setForgotPasswordUrl: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "login/setForgotPasswordUrl">;
78
+ declare const setDb: _reduxjs_toolkit.ActionCreatorWithPayload<string, "login/setDb">;
79
+ declare const setRedirectTo: _reduxjs_toolkit.ActionCreatorWithPayload<string, "login/setRedirectTo">;
80
+ declare const setForgotPasswordUrl: _reduxjs_toolkit.ActionCreatorWithPayload<string, "login/setForgotPasswordUrl">;
81
81
  declare const selectLogin: (state: RootState) => LoginStateType;
82
82
 
83
83
  interface Breadcrumb {
@@ -94,7 +94,7 @@ interface BreadcrumbsState {
94
94
  declare const breadcrumbsSlice: _reduxjs_toolkit.Slice<BreadcrumbsState, {
95
95
  setBreadCrumbs: (state: BreadcrumbsState, action: PayloadAction<Breadcrumb>) => void;
96
96
  }, "breadcrumbs", "breadcrumbs", _reduxjs_toolkit.SliceSelectors<BreadcrumbsState>>;
97
- declare const setBreadCrumbs: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<Breadcrumb, "breadcrumbs/setBreadCrumbs">;
97
+ declare const setBreadCrumbs: _reduxjs_toolkit.ActionCreatorWithPayload<Breadcrumb, "breadcrumbs/setBreadCrumbs">;
98
98
  declare const selectBreadCrumbs: (state: RootState) => BreadcrumbsState;
99
99
 
100
100
  interface ViewDataStore {
@@ -121,10 +121,10 @@ declare const formSlice: _reduxjs_toolkit.Slice<FormState, {
121
121
  setListSubject: (state: FormState, action: PayloadAction<any>) => void;
122
122
  setDataUser: (state: FormState, action: PayloadAction<any>) => void;
123
123
  }, "form", "form", _reduxjs_toolkit.SliceSelectors<FormState>>;
124
- declare const setViewDataStore: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"form/setViewDataStore">;
125
- declare const setIsShowingModalDetail: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<boolean, "form/setIsShowingModalDetail">;
126
- declare const setIsShowModalTranslate: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<boolean, "form/setIsShowModalTranslate">;
127
- declare const setFormSubmitComponent: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<{
124
+ declare const setViewDataStore: _reduxjs_toolkit.ActionCreatorWithPayload<ViewDataStore, "form/setViewDataStore">;
125
+ declare const setIsShowingModalDetail: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "form/setIsShowingModalDetail">;
126
+ declare const setIsShowModalTranslate: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "form/setIsShowModalTranslate">;
127
+ declare const setFormSubmitComponent: _reduxjs_toolkit.ActionCreatorWithPayload<{
128
128
  key: string;
129
129
  component: any;
130
130
  }, "form/setFormSubmitComponent">;
@@ -164,19 +164,19 @@ declare const searchSlice: _reduxjs_toolkit.Slice<SearchState, {
164
164
  }>) => void;
165
165
  clearSearchMap: (state: immer.WritableDraft<SearchState>) => void;
166
166
  }, "search", "search", _reduxjs_toolkit.SliceSelectors<SearchState>>;
167
- declare const setGroupByDomain: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "search/setGroupByDomain">;
167
+ declare const setGroupByDomain: _reduxjs_toolkit.ActionCreatorWithPayload<string | null, "search/setGroupByDomain">;
168
168
  declare const setSelectedTags: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setSelectedTags">;
169
- declare const setSearchString: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "search/setSearchString">;
170
- declare const setHoveredIndexSearchList: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<number, "search/setHoveredIndexSearchList">;
169
+ declare const setSearchString: _reduxjs_toolkit.ActionCreatorWithPayload<string, "search/setSearchString">;
170
+ declare const setHoveredIndexSearchList: _reduxjs_toolkit.ActionCreatorWithPayload<number | null, "search/setHoveredIndexSearchList">;
171
171
  declare const setFirstDomain: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setFirstDomain">;
172
172
  declare const setSearchBy: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"search/setSearchBy"> | _reduxjs_toolkit.ActionCreatorWithoutPayload<"search/setSearchBy">;
173
173
  declare const setFilterBy: _reduxjs_toolkit.ActionCreatorWithPayload<any, "search/setFilterBy">;
174
- declare const setSearchMap: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"search/setSearchMap">;
175
- declare const updateSearchMap: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<{
174
+ declare const setSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, any>, "search/setSearchMap">;
175
+ declare const updateSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<{
176
176
  key: string;
177
177
  value: any;
178
178
  }, "search/updateSearchMap">;
179
- declare const removeKeyFromSearchMap: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<{
179
+ declare const removeKeyFromSearchMap: _reduxjs_toolkit.ActionCreatorWithPayload<{
180
180
  key: string;
181
181
  item?: any;
182
182
  }, "search/removeKeyFromSearchMap">;
@@ -210,16 +210,16 @@ declare const listSlice: _reduxjs_toolkit.Slice<ListState, {
210
210
  setPage: (state: immer.WritableDraft<ListState>, action: PayloadAction<number>) => void;
211
211
  setDomainTable: (state: immer.WritableDraft<ListState>, action: PayloadAction<any[]>) => void;
212
212
  }, "list", "list", _reduxjs_toolkit.SliceSelectors<ListState>>;
213
- declare const setPageLimit: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<number, "list/setPageLimit">;
214
- declare const setFields: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"list/setFields">;
215
- declare const setOrder: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<string, "list/setOrder">;
216
- declare const setSelectedRowKeys: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<number[], "list/setSelectedRowKeys">;
217
- declare const setIndexRowTableModal: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<number, "list/setIndexRowTableModal">;
218
- declare const setIsUpdateTableModal: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<boolean, "list/setIsUpdateTableModal">;
219
- declare const setPage: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<number, "list/setPage">;
213
+ declare const setPageLimit: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setPageLimit">;
214
+ declare const setFields: _reduxjs_toolkit.ActionCreatorWithPayload<Record<string, any>, "list/setFields">;
215
+ declare const setOrder: _reduxjs_toolkit.ActionCreatorWithPayload<string | null, "list/setOrder">;
216
+ declare const setSelectedRowKeys: _reduxjs_toolkit.ActionCreatorWithPayload<number[], "list/setSelectedRowKeys">;
217
+ declare const setIndexRowTableModal: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setIndexRowTableModal">;
218
+ declare const setIsUpdateTableModal: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "list/setIsUpdateTableModal">;
219
+ declare const setPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "list/setPage">;
220
220
  declare const setSelectedRadioKey: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"list/setSelectedRadioKey"> | _reduxjs_toolkit.ActionCreatorWithoutPayload<"list/setSelectedRadioKey">;
221
221
  declare const setTransferDetail: _reduxjs_toolkit.ActionCreatorWithNonInferrablePayload<"list/setTransferDetail"> | _reduxjs_toolkit.ActionCreatorWithoutPayload<"list/setTransferDetail">;
222
- declare const setDomainTable: _reduxjs_toolkit.ActionCreatorWithOptionalPayload<any[], "list/setDomainTable">;
222
+ declare const setDomainTable: _reduxjs_toolkit.ActionCreatorWithPayload<any[], "list/setDomainTable">;
223
223
  declare const selectList: (state: RootState) => ListState;
224
224
 
225
225
  interface NavbarStateType {
@@ -255,27 +255,29 @@ declare const selectNavbar: (state: RootState) => NavbarStateType;
255
255
  declare const envStore: _reduxjs_toolkit.EnhancedStore<{
256
256
  env: {
257
257
  baseUrl: string;
258
- requests: any;
259
- companies: any[];
258
+ requests: null;
259
+ companies: never[];
260
260
  user: {};
261
- config: any;
262
- envFile: any;
261
+ db: string;
262
+ refreshTokenEndpoint: string;
263
+ config: null;
264
+ envFile: null;
263
265
  defaultCompany: {
264
- id: any;
266
+ id: null;
265
267
  logo: string;
266
268
  secondary_color: string;
267
269
  primary_color: string;
268
270
  };
269
271
  context: {
270
- uid: any;
271
- allowed_company_ids: any[];
272
+ uid: null;
273
+ allowed_company_ids: never[];
272
274
  lang: string;
273
275
  tz: string;
274
276
  };
275
277
  };
276
278
  header: {
277
279
  value: {
278
- allowedCompanyIds: any[];
280
+ allowedCompanyIds: never[];
279
281
  };
280
282
  };
281
283
  navbar: NavbarStateType;
@@ -290,27 +292,29 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
290
292
  dispatch: redux_thunk.ThunkDispatch<{
291
293
  env: {
292
294
  baseUrl: string;
293
- requests: any;
294
- companies: any[];
295
+ requests: null;
296
+ companies: never[];
295
297
  user: {};
296
- config: any;
297
- envFile: any;
298
+ db: string;
299
+ refreshTokenEndpoint: string;
300
+ config: null;
301
+ envFile: null;
298
302
  defaultCompany: {
299
- id: any;
303
+ id: null;
300
304
  logo: string;
301
305
  secondary_color: string;
302
306
  primary_color: string;
303
307
  };
304
308
  context: {
305
- uid: any;
306
- allowed_company_ids: any[];
309
+ uid: null;
310
+ allowed_company_ids: never[];
307
311
  lang: string;
308
312
  tz: string;
309
313
  };
310
314
  };
311
315
  header: {
312
316
  value: {
313
- allowedCompanyIds: any[];
317
+ allowedCompanyIds: never[];
314
318
  };
315
319
  };
316
320
  navbar: NavbarStateType;
@@ -326,40 +330,44 @@ declare const envStore: _reduxjs_toolkit.EnhancedStore<{
326
330
 
327
331
  declare const envSlice: _reduxjs_toolkit.Slice<{
328
332
  baseUrl: string;
329
- requests: any;
330
- companies: any[];
333
+ requests: null;
334
+ companies: never[];
331
335
  user: {};
332
- config: any;
333
- envFile: any;
336
+ db: string;
337
+ refreshTokenEndpoint: string;
338
+ config: null;
339
+ envFile: null;
334
340
  defaultCompany: {
335
- id: any;
341
+ id: null;
336
342
  logo: string;
337
343
  secondary_color: string;
338
344
  primary_color: string;
339
345
  };
340
346
  context: {
341
- uid: any;
342
- allowed_company_ids: any[];
347
+ uid: null;
348
+ allowed_company_ids: never[];
343
349
  lang: string;
344
350
  tz: string;
345
351
  };
346
352
  }, {
347
353
  setEnv: (state: immer.WritableDraft<{
348
354
  baseUrl: string;
349
- requests: any;
350
- companies: any[];
355
+ requests: null;
356
+ companies: never[];
351
357
  user: {};
352
- config: any;
353
- envFile: any;
358
+ db: string;
359
+ refreshTokenEndpoint: string;
360
+ config: null;
361
+ envFile: null;
354
362
  defaultCompany: {
355
- id: any;
363
+ id: null;
356
364
  logo: string;
357
365
  secondary_color: string;
358
366
  primary_color: string;
359
367
  };
360
368
  context: {
361
- uid: any;
362
- allowed_company_ids: any[];
369
+ uid: null;
370
+ allowed_company_ids: never[];
363
371
  lang: string;
364
372
  tz: string;
365
373
  };
@@ -369,20 +377,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
369
377
  }) => void;
370
378
  setUid: (state: immer.WritableDraft<{
371
379
  baseUrl: string;
372
- requests: any;
373
- companies: any[];
380
+ requests: null;
381
+ companies: never[];
374
382
  user: {};
375
- config: any;
376
- envFile: any;
383
+ db: string;
384
+ refreshTokenEndpoint: string;
385
+ config: null;
386
+ envFile: null;
377
387
  defaultCompany: {
378
- id: any;
388
+ id: null;
379
389
  logo: string;
380
390
  secondary_color: string;
381
391
  primary_color: string;
382
392
  };
383
393
  context: {
384
- uid: any;
385
- allowed_company_ids: any[];
394
+ uid: null;
395
+ allowed_company_ids: never[];
386
396
  lang: string;
387
397
  tz: string;
388
398
  };
@@ -392,20 +402,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
392
402
  }) => void;
393
403
  setAllowCompanies: (state: immer.WritableDraft<{
394
404
  baseUrl: string;
395
- requests: any;
396
- companies: any[];
405
+ requests: null;
406
+ companies: never[];
397
407
  user: {};
398
- config: any;
399
- envFile: any;
408
+ db: string;
409
+ refreshTokenEndpoint: string;
410
+ config: null;
411
+ envFile: null;
400
412
  defaultCompany: {
401
- id: any;
413
+ id: null;
402
414
  logo: string;
403
415
  secondary_color: string;
404
416
  primary_color: string;
405
417
  };
406
418
  context: {
407
- uid: any;
408
- allowed_company_ids: any[];
419
+ uid: null;
420
+ allowed_company_ids: never[];
409
421
  lang: string;
410
422
  tz: string;
411
423
  };
@@ -415,20 +427,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
415
427
  }) => void;
416
428
  setCompanies: (state: immer.WritableDraft<{
417
429
  baseUrl: string;
418
- requests: any;
419
- companies: any[];
430
+ requests: null;
431
+ companies: never[];
420
432
  user: {};
421
- config: any;
422
- envFile: any;
433
+ db: string;
434
+ refreshTokenEndpoint: string;
435
+ config: null;
436
+ envFile: null;
423
437
  defaultCompany: {
424
- id: any;
438
+ id: null;
425
439
  logo: string;
426
440
  secondary_color: string;
427
441
  primary_color: string;
428
442
  };
429
443
  context: {
430
- uid: any;
431
- allowed_company_ids: any[];
444
+ uid: null;
445
+ allowed_company_ids: never[];
432
446
  lang: string;
433
447
  tz: string;
434
448
  };
@@ -438,20 +452,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
438
452
  }) => void;
439
453
  setDefaultCompany: (state: immer.WritableDraft<{
440
454
  baseUrl: string;
441
- requests: any;
442
- companies: any[];
455
+ requests: null;
456
+ companies: never[];
443
457
  user: {};
444
- config: any;
445
- envFile: any;
458
+ db: string;
459
+ refreshTokenEndpoint: string;
460
+ config: null;
461
+ envFile: null;
446
462
  defaultCompany: {
447
- id: any;
463
+ id: null;
448
464
  logo: string;
449
465
  secondary_color: string;
450
466
  primary_color: string;
451
467
  };
452
468
  context: {
453
- uid: any;
454
- allowed_company_ids: any[];
469
+ uid: null;
470
+ allowed_company_ids: never[];
455
471
  lang: string;
456
472
  tz: string;
457
473
  };
@@ -461,20 +477,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
461
477
  }) => void;
462
478
  setLang: (state: immer.WritableDraft<{
463
479
  baseUrl: string;
464
- requests: any;
465
- companies: any[];
480
+ requests: null;
481
+ companies: never[];
466
482
  user: {};
467
- config: any;
468
- envFile: any;
483
+ db: string;
484
+ refreshTokenEndpoint: string;
485
+ config: null;
486
+ envFile: null;
469
487
  defaultCompany: {
470
- id: any;
488
+ id: null;
471
489
  logo: string;
472
490
  secondary_color: string;
473
491
  primary_color: string;
474
492
  };
475
493
  context: {
476
- uid: any;
477
- allowed_company_ids: any[];
494
+ uid: null;
495
+ allowed_company_ids: never[];
478
496
  lang: string;
479
497
  tz: string;
480
498
  };
@@ -484,20 +502,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
484
502
  }) => void;
485
503
  setUser: (state: immer.WritableDraft<{
486
504
  baseUrl: string;
487
- requests: any;
488
- companies: any[];
505
+ requests: null;
506
+ companies: never[];
489
507
  user: {};
490
- config: any;
491
- envFile: any;
508
+ db: string;
509
+ refreshTokenEndpoint: string;
510
+ config: null;
511
+ envFile: null;
492
512
  defaultCompany: {
493
- id: any;
513
+ id: null;
494
514
  logo: string;
495
515
  secondary_color: string;
496
516
  primary_color: string;
497
517
  };
498
518
  context: {
499
- uid: any;
500
- allowed_company_ids: any[];
519
+ uid: null;
520
+ allowed_company_ids: never[];
501
521
  lang: string;
502
522
  tz: string;
503
523
  };
@@ -507,20 +527,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
507
527
  }) => void;
508
528
  setConfig: (state: immer.WritableDraft<{
509
529
  baseUrl: string;
510
- requests: any;
511
- companies: any[];
530
+ requests: null;
531
+ companies: never[];
512
532
  user: {};
513
- config: any;
514
- envFile: any;
533
+ db: string;
534
+ refreshTokenEndpoint: string;
535
+ config: null;
536
+ envFile: null;
515
537
  defaultCompany: {
516
- id: any;
538
+ id: null;
517
539
  logo: string;
518
540
  secondary_color: string;
519
541
  primary_color: string;
520
542
  };
521
543
  context: {
522
- uid: any;
523
- allowed_company_ids: any[];
544
+ uid: null;
545
+ allowed_company_ids: never[];
524
546
  lang: string;
525
547
  tz: string;
526
548
  };
@@ -530,20 +552,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
530
552
  }) => void;
531
553
  setEnvFile: (state: immer.WritableDraft<{
532
554
  baseUrl: string;
533
- requests: any;
534
- companies: any[];
555
+ requests: null;
556
+ companies: never[];
535
557
  user: {};
536
- config: any;
537
- envFile: any;
558
+ db: string;
559
+ refreshTokenEndpoint: string;
560
+ config: null;
561
+ envFile: null;
538
562
  defaultCompany: {
539
- id: any;
563
+ id: null;
540
564
  logo: string;
541
565
  secondary_color: string;
542
566
  primary_color: string;
543
567
  };
544
568
  context: {
545
- uid: any;
546
- allowed_company_ids: any[];
569
+ uid: null;
570
+ allowed_company_ids: never[];
547
571
  lang: string;
548
572
  tz: string;
549
573
  };
@@ -553,20 +577,22 @@ declare const envSlice: _reduxjs_toolkit.Slice<{
553
577
  }) => void;
554
578
  }, "env", "env", _reduxjs_toolkit.SliceSelectors<{
555
579
  baseUrl: string;
556
- requests: any;
557
- companies: any[];
580
+ requests: null;
581
+ companies: never[];
558
582
  user: {};
559
- config: any;
560
- envFile: any;
583
+ db: string;
584
+ refreshTokenEndpoint: string;
585
+ config: null;
586
+ envFile: null;
561
587
  defaultCompany: {
562
- id: any;
588
+ id: null;
563
589
  logo: string;
564
590
  secondary_color: string;
565
591
  primary_color: string;
566
592
  };
567
593
  context: {
568
- uid: any;
569
- allowed_company_ids: any[];
594
+ uid: null;
595
+ allowed_company_ids: never[];
570
596
  lang: string;
571
597
  tz: string;
572
598
  };
@@ -582,20 +608,22 @@ declare const setConfig: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/set
582
608
  declare const setEnvFile: _reduxjs_toolkit.ActionCreatorWithPayload<any, "env/setEnvFile">;
583
609
  declare const selectEnv: (state: RootState) => {
584
610
  baseUrl: string;
585
- requests: any;
586
- companies: any[];
611
+ requests: null;
612
+ companies: never[];
587
613
  user: {};
588
- config: any;
589
- envFile: any;
614
+ db: string;
615
+ refreshTokenEndpoint: string;
616
+ config: null;
617
+ envFile: null;
590
618
  defaultCompany: {
591
- id: any;
619
+ id: null;
592
620
  logo: string;
593
621
  secondary_color: string;
594
622
  primary_color: string;
595
623
  };
596
624
  context: {
597
- uid: any;
598
- allowed_company_ids: any[];
625
+ uid: null;
626
+ allowed_company_ids: never[];
599
627
  lang: string;
600
628
  tz: string;
601
629
  };
@@ -603,12 +631,12 @@ declare const selectEnv: (state: RootState) => {
603
631
 
604
632
  declare const headerSlice: _reduxjs_toolkit.Slice<{
605
633
  value: {
606
- allowedCompanyIds: any[];
634
+ allowedCompanyIds: never[];
607
635
  };
608
636
  }, {
609
637
  setHeader: (state: immer.WritableDraft<{
610
638
  value: {
611
- allowedCompanyIds: any[];
639
+ allowedCompanyIds: never[];
612
640
  };
613
641
  }>, action: {
614
642
  payload: any;
@@ -616,7 +644,7 @@ declare const headerSlice: _reduxjs_toolkit.Slice<{
616
644
  }) => void;
617
645
  setAllowedCompanyIds: (state: immer.WritableDraft<{
618
646
  value: {
619
- allowedCompanyIds: any[];
647
+ allowedCompanyIds: never[];
620
648
  };
621
649
  }>, action: {
622
650
  payload: any;
@@ -624,14 +652,14 @@ declare const headerSlice: _reduxjs_toolkit.Slice<{
624
652
  }) => void;
625
653
  }, "header", "header", _reduxjs_toolkit.SliceSelectors<{
626
654
  value: {
627
- allowedCompanyIds: any[];
655
+ allowedCompanyIds: never[];
628
656
  };
629
657
  }>>;
630
658
  declare const setAllowedCompanyIds: _reduxjs_toolkit.ActionCreatorWithPayload<any, "header/setAllowedCompanyIds">;
631
659
  declare const setHeader: _reduxjs_toolkit.ActionCreatorWithPayload<any, "header/setHeader">;
632
660
  declare const selectHeader: (state: RootState) => {
633
661
  value: {
634
- allowedCompanyIds: any[];
662
+ allowedCompanyIds: never[];
635
663
  };
636
664
  };
637
665