profinansy-ui-lib 3.1.87 → 3.1.89

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.
@@ -3,19 +3,6 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
3
3
  Icon: any;
4
4
  href: string;
5
5
  subPages: ({
6
- name: string;
7
- Icon: any;
8
- href: string;
9
- locked: boolean;
10
- subPages: {
11
- name: string;
12
- href: string;
13
- locked: boolean;
14
- }[];
15
- unavailable?: undefined;
16
- innerPages?: undefined;
17
- description?: undefined;
18
- } | {
19
6
  name: string;
20
7
  Icon: any;
21
8
  href: string;
@@ -29,7 +16,26 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
29
16
  Icon: any;
30
17
  href: string;
31
18
  locked?: undefined;
19
+ unavailable?: undefined;
20
+ innerPages?: undefined;
21
+ description?: undefined;
32
22
  subPages?: undefined;
23
+ } | {
24
+ name: string;
25
+ href: string;
26
+ Icon: any;
27
+ locked: boolean;
28
+ subPages: ({
29
+ name: string;
30
+ href: string;
31
+ locked: boolean;
32
+ innerPages: string[];
33
+ } | {
34
+ name: string;
35
+ href: string;
36
+ locked: boolean;
37
+ innerPages?: undefined;
38
+ })[];
33
39
  unavailable?: undefined;
34
40
  innerPages?: undefined;
35
41
  description?: undefined;
@@ -40,8 +46,8 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
40
46
  locked: boolean;
41
47
  unavailable: boolean;
42
48
  description: string;
43
- subPages?: undefined;
44
49
  innerPages?: undefined;
50
+ subPages?: undefined;
45
51
  } | {
46
52
  name: string;
47
53
  Icon: any;
@@ -61,9 +67,9 @@ export declare const getInvestmentsLinks: (hostname: string, hostnameLenta: stri
61
67
  Icon: any;
62
68
  href: string;
63
69
  locked: boolean;
64
- subPages?: undefined;
65
70
  unavailable?: undefined;
66
71
  innerPages?: undefined;
67
72
  description?: undefined;
73
+ subPages?: undefined;
68
74
  })[];
69
75
  };
@@ -0,0 +1,13 @@
1
+ export declare const getCookie: (name: string) => string | void;
2
+ type Options = {
3
+ path?: string;
4
+ domain?: string;
5
+ expires?: Date | string;
6
+ 'max-age'?: number;
7
+ secure?: boolean;
8
+ samesite?: 'strict' | 'lax';
9
+ httpOnly?: boolean;
10
+ };
11
+ export declare const setCookie: (name: string, value: string, options?: Options) => void;
12
+ export declare const deleteCookie: (name: string) => void;
13
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "profinansy-ui-lib",
3
- "version": "3.1.87",
3
+ "version": "3.1.89",
4
4
  "main": "./dist/index.js",
5
5
  "license": "MIT",
6
6
  "devDependencies": {