@fctc/interface-logic 1.2.9 → 1.3.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.
Files changed (57) hide show
  1. package/dist/index.d.mts +1709 -24
  2. package/dist/index.d.ts +1709 -24
  3. package/dist/index.js +14 -16
  4. package/dist/index.mjs +14 -16
  5. package/package.json +87 -87
  6. package/dist/base-model-type-DvO53Lwi.d.mts +0 -7
  7. package/dist/base-model-type-DvO53Lwi.d.ts +0 -7
  8. package/dist/config.d.mts +0 -16
  9. package/dist/config.d.ts +0 -16
  10. package/dist/config.js +0 -2386
  11. package/dist/config.mjs +0 -2349
  12. package/dist/constants.d.mts +0 -131
  13. package/dist/constants.d.ts +0 -131
  14. package/dist/constants.js +0 -205
  15. package/dist/constants.mjs +0 -166
  16. package/dist/context-type-D5XefoL-.d.mts +0 -8
  17. package/dist/context-type-D5XefoL-.d.ts +0 -8
  18. package/dist/environment.d.mts +0 -42
  19. package/dist/environment.d.ts +0 -42
  20. package/dist/environment.js +0 -3094
  21. package/dist/environment.mjs +0 -3054
  22. package/dist/hook.d.mts +0 -340
  23. package/dist/hook.d.ts +0 -340
  24. package/dist/hook.js +0 -6019
  25. package/dist/hook.mjs +0 -5915
  26. package/dist/index-C_nK1Mii.d.mts +0 -19
  27. package/dist/index-C_nK1Mii.d.ts +0 -19
  28. package/dist/model.d.mts +0 -35
  29. package/dist/model.d.ts +0 -35
  30. package/dist/model.js +0 -3356
  31. package/dist/model.mjs +0 -3317
  32. package/dist/provider.d.mts +0 -16
  33. package/dist/provider.d.ts +0 -16
  34. package/dist/provider.js +0 -3603
  35. package/dist/provider.mjs +0 -3564
  36. package/dist/services.d.mts +0 -258
  37. package/dist/services.d.ts +0 -258
  38. package/dist/services.js +0 -4662
  39. package/dist/services.mjs +0 -4617
  40. package/dist/session-storage-CxkkEmQh.d.mts +0 -15
  41. package/dist/session-storage-CxkkEmQh.d.ts +0 -15
  42. package/dist/store.d.mts +0 -643
  43. package/dist/store.d.ts +0 -643
  44. package/dist/store.js +0 -814
  45. package/dist/store.mjs +0 -709
  46. package/dist/types.d.mts +0 -12
  47. package/dist/types.d.ts +0 -12
  48. package/dist/types.js +0 -18
  49. package/dist/types.mjs +0 -0
  50. package/dist/use-get-selection-QZu1jKqa.d.mts +0 -15
  51. package/dist/use-get-selection-QZu1jKqa.d.ts +0 -15
  52. package/dist/utils.d.mts +0 -96
  53. package/dist/utils.d.ts +0 -96
  54. package/dist/utils.js +0 -3003
  55. package/dist/utils.mjs +0 -2935
  56. package/dist/view-type-DodWYWDH.d.mts +0 -107
  57. package/dist/view-type-DodWYWDH.d.ts +0 -107
@@ -1,42 +0,0 @@
1
- import { EnhancedStore } from '@reduxjs/toolkit';
2
- import { L as LocalStorageUtilsType, S as SessionStorageUtilsType } from './session-storage-CxkkEmQh.mjs';
3
-
4
- declare global {
5
- interface Global {
6
- envStore?: EnvStore;
7
- }
8
- interface Window {
9
- envStore?: EnvStore;
10
- }
11
- }
12
- declare class EnvStore {
13
- envStore: EnhancedStore | any;
14
- baseUrl?: string;
15
- requests?: any;
16
- context?: any;
17
- defaultCompany?: any;
18
- config?: any;
19
- companies?: any[];
20
- user?: any;
21
- db?: string;
22
- localStorageUtils?: any;
23
- sessionStorageUtils?: any;
24
- refreshTokenEndpoint?: string;
25
- constructor(envStore: EnhancedStore, localStorageUtils?: any, sessionStorageUtils?: any);
26
- setup(): void;
27
- setupEnv(envConfig: EnvStore): void;
28
- setUid(uid: number): void;
29
- setLang(lang: string): void;
30
- setAllowCompanies(allowCompanies: number[]): void;
31
- setCompanies(companies: any[]): void;
32
- setDefaultCompany(company: any): void;
33
- setUserInfo(userInfo: any): void;
34
- }
35
- declare let env: EnvStore | null;
36
- declare function initEnv({ localStorageUtils, sessionStorageUtils, }: {
37
- localStorageUtils?: LocalStorageUtilsType;
38
- sessionStorageUtils?: SessionStorageUtilsType;
39
- }): EnvStore;
40
- declare function getEnv(): EnvStore;
41
-
42
- export { EnvStore, env, getEnv, initEnv };
@@ -1,42 +0,0 @@
1
- import { EnhancedStore } from '@reduxjs/toolkit';
2
- import { L as LocalStorageUtilsType, S as SessionStorageUtilsType } from './session-storage-CxkkEmQh.js';
3
-
4
- declare global {
5
- interface Global {
6
- envStore?: EnvStore;
7
- }
8
- interface Window {
9
- envStore?: EnvStore;
10
- }
11
- }
12
- declare class EnvStore {
13
- envStore: EnhancedStore | any;
14
- baseUrl?: string;
15
- requests?: any;
16
- context?: any;
17
- defaultCompany?: any;
18
- config?: any;
19
- companies?: any[];
20
- user?: any;
21
- db?: string;
22
- localStorageUtils?: any;
23
- sessionStorageUtils?: any;
24
- refreshTokenEndpoint?: string;
25
- constructor(envStore: EnhancedStore, localStorageUtils?: any, sessionStorageUtils?: any);
26
- setup(): void;
27
- setupEnv(envConfig: EnvStore): void;
28
- setUid(uid: number): void;
29
- setLang(lang: string): void;
30
- setAllowCompanies(allowCompanies: number[]): void;
31
- setCompanies(companies: any[]): void;
32
- setDefaultCompany(company: any): void;
33
- setUserInfo(userInfo: any): void;
34
- }
35
- declare let env: EnvStore | null;
36
- declare function initEnv({ localStorageUtils, sessionStorageUtils, }: {
37
- localStorageUtils?: LocalStorageUtilsType;
38
- sessionStorageUtils?: SessionStorageUtilsType;
39
- }): EnvStore;
40
- declare function getEnv(): EnvStore;
41
-
42
- export { EnvStore, env, getEnv, initEnv };