taengmo-ts-utilities 1.0.1
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/index.cjs +4459 -0
- package/dist/index.d.cts +260 -0
- package/dist/index.d.mts +260 -0
- package/dist/index.mjs +4420 -0
- package/package.json +38 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
import { ClassValue } from "clsx";
|
|
2
|
+
|
|
3
|
+
//#region src/models/types.d.ts
|
|
4
|
+
type Email = {
|
|
5
|
+
email: string;
|
|
6
|
+
};
|
|
7
|
+
type EmailPassword = Email & {
|
|
8
|
+
password: string;
|
|
9
|
+
};
|
|
10
|
+
type PersonnelCredential = {
|
|
11
|
+
personnel_uuid: string;
|
|
12
|
+
employers_uuid: string;
|
|
13
|
+
access_token: string;
|
|
14
|
+
refresh_token: string;
|
|
15
|
+
is_admin: boolean;
|
|
16
|
+
};
|
|
17
|
+
type PersonnelAuthen = Omit<PersonnelCredential, "refresh_token">;
|
|
18
|
+
type DropdownSchema = {
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
};
|
|
22
|
+
type LegalEntityTypes = {
|
|
23
|
+
legal_entity_types_uuid: string;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
type IsoCountryCode = {
|
|
27
|
+
iso_country_code_uuid: string;
|
|
28
|
+
country: string;
|
|
29
|
+
alpha2: string;
|
|
30
|
+
alpha3: string;
|
|
31
|
+
numeric: number;
|
|
32
|
+
latitude: number;
|
|
33
|
+
longitude: number;
|
|
34
|
+
};
|
|
35
|
+
type IsoCurrencyCode = {
|
|
36
|
+
iso_currency_code_uuid: string;
|
|
37
|
+
currency: string;
|
|
38
|
+
code: string;
|
|
39
|
+
number: number;
|
|
40
|
+
};
|
|
41
|
+
type IsoLanguageCode = {
|
|
42
|
+
iso_language_code_uuid: string;
|
|
43
|
+
language: string;
|
|
44
|
+
code: string;
|
|
45
|
+
};
|
|
46
|
+
type LegalEntitySize = {
|
|
47
|
+
legal_entity_size_uuid: string;
|
|
48
|
+
name: string;
|
|
49
|
+
definition: string;
|
|
50
|
+
};
|
|
51
|
+
type CommonAuthen = {
|
|
52
|
+
verification_uuid: string;
|
|
53
|
+
reference: number;
|
|
54
|
+
code: number;
|
|
55
|
+
email: string;
|
|
56
|
+
password: string;
|
|
57
|
+
};
|
|
58
|
+
type NewOrganizationAccount = CommonAuthen & {
|
|
59
|
+
primary_name: string;
|
|
60
|
+
position_title: string;
|
|
61
|
+
legal_entity_types_uuid: string;
|
|
62
|
+
iso_country_code_uuid: string;
|
|
63
|
+
iso_currency_code_uuid: string;
|
|
64
|
+
legal_entity_size_uuid: string;
|
|
65
|
+
};
|
|
66
|
+
type NewPersonnelAccount = CommonAuthen & {
|
|
67
|
+
primary_name: string;
|
|
68
|
+
position_title: string;
|
|
69
|
+
employers_uuid: string;
|
|
70
|
+
};
|
|
71
|
+
type PersonnelCreate = {
|
|
72
|
+
primary_name: string;
|
|
73
|
+
position_title: string;
|
|
74
|
+
};
|
|
75
|
+
type Sex = {
|
|
76
|
+
sex_uuid: string;
|
|
77
|
+
description: string;
|
|
78
|
+
};
|
|
79
|
+
type Employers = {
|
|
80
|
+
employers_uuid: string;
|
|
81
|
+
iso_country_code_uuid: string;
|
|
82
|
+
iso_currency_code_uuid: string;
|
|
83
|
+
legal_entity_types_uuid: string;
|
|
84
|
+
legal_entity_size_uuid: string;
|
|
85
|
+
founded_at: string | null;
|
|
86
|
+
profile_url: string | null;
|
|
87
|
+
cover_url: string | null;
|
|
88
|
+
about: string;
|
|
89
|
+
contact_info: string;
|
|
90
|
+
invoice_name: string;
|
|
91
|
+
invoice_address: string;
|
|
92
|
+
invoice_contact: string;
|
|
93
|
+
invoice_unique_id: string;
|
|
94
|
+
verified_at: string | null;
|
|
95
|
+
packages_uuid: string;
|
|
96
|
+
created_at: string;
|
|
97
|
+
updated_at: string;
|
|
98
|
+
is_active: boolean;
|
|
99
|
+
};
|
|
100
|
+
type EmployersName = {
|
|
101
|
+
employers_name_uuid: string;
|
|
102
|
+
employers_uuid: string;
|
|
103
|
+
name: string;
|
|
104
|
+
is_primary: boolean;
|
|
105
|
+
created_at: string;
|
|
106
|
+
updated_at: string;
|
|
107
|
+
};
|
|
108
|
+
type Personnel = {
|
|
109
|
+
personnel_uuid: string;
|
|
110
|
+
employers_uuid: string;
|
|
111
|
+
email: string;
|
|
112
|
+
is_admin: boolean;
|
|
113
|
+
primary_name: string;
|
|
114
|
+
position_title: string;
|
|
115
|
+
contact_info: string;
|
|
116
|
+
about: string;
|
|
117
|
+
profile_url: string | null;
|
|
118
|
+
is_active: boolean;
|
|
119
|
+
created_at: string;
|
|
120
|
+
updated_at: string;
|
|
121
|
+
latest_login: string;
|
|
122
|
+
};
|
|
123
|
+
type PlainText = {
|
|
124
|
+
text: string;
|
|
125
|
+
};
|
|
126
|
+
type PresignResponse = {
|
|
127
|
+
url: string;
|
|
128
|
+
key: string;
|
|
129
|
+
content_type: string;
|
|
130
|
+
expires_in: number;
|
|
131
|
+
};
|
|
132
|
+
type Coordinate = {
|
|
133
|
+
latitude: number;
|
|
134
|
+
longitude: number;
|
|
135
|
+
};
|
|
136
|
+
type EmployersLocations = {
|
|
137
|
+
employers_locations_uuid: string;
|
|
138
|
+
employers_uuid: string;
|
|
139
|
+
iso_country_code_uuid: string;
|
|
140
|
+
address: string;
|
|
141
|
+
latitude: number;
|
|
142
|
+
longitude: number;
|
|
143
|
+
created_at: string;
|
|
144
|
+
updated_at: string;
|
|
145
|
+
is_headquarters: boolean;
|
|
146
|
+
};
|
|
147
|
+
type PhotoUrlStatus = {
|
|
148
|
+
url: string;
|
|
149
|
+
success: boolean;
|
|
150
|
+
};
|
|
151
|
+
type ErrorWithStatus = {
|
|
152
|
+
message: string;
|
|
153
|
+
status: number;
|
|
154
|
+
};
|
|
155
|
+
type Sectors = {
|
|
156
|
+
sectors_uuid: string;
|
|
157
|
+
name: string;
|
|
158
|
+
};
|
|
159
|
+
type EmployersSectors = {
|
|
160
|
+
employers_sectors_uuid: string;
|
|
161
|
+
employers_uuid: string;
|
|
162
|
+
sectors_uuid: string;
|
|
163
|
+
created_at: string;
|
|
164
|
+
name: string;
|
|
165
|
+
};
|
|
166
|
+
type EmployersSocialUrl = {
|
|
167
|
+
employers_social_url_uuid: string;
|
|
168
|
+
employers_uuid: string;
|
|
169
|
+
url: string;
|
|
170
|
+
label: string;
|
|
171
|
+
created_at: string;
|
|
172
|
+
updated_at: string;
|
|
173
|
+
};
|
|
174
|
+
type EmployersBenefits = {
|
|
175
|
+
employers_benefits_uuid: string;
|
|
176
|
+
employers_uuid: string;
|
|
177
|
+
description: string;
|
|
178
|
+
created_at: string;
|
|
179
|
+
updated_at: string;
|
|
180
|
+
};
|
|
181
|
+
type Packages = {
|
|
182
|
+
packages_uuid: string;
|
|
183
|
+
name: string;
|
|
184
|
+
description: string;
|
|
185
|
+
created_at: string;
|
|
186
|
+
updated_at: string;
|
|
187
|
+
};
|
|
188
|
+
type PersonnelSocialUrl = {
|
|
189
|
+
personnel_social_url_uuid: string;
|
|
190
|
+
personnel_uuid: string;
|
|
191
|
+
employers_uuid: string;
|
|
192
|
+
url: string;
|
|
193
|
+
label: string;
|
|
194
|
+
created_at: string;
|
|
195
|
+
updated_at: string;
|
|
196
|
+
};
|
|
197
|
+
type SeekersCredential = {
|
|
198
|
+
seekers_uuid: string;
|
|
199
|
+
access_token: string;
|
|
200
|
+
refresh_token: string;
|
|
201
|
+
};
|
|
202
|
+
type SeekersAuthen = Omit<SeekersCredential, "refresh_token">;
|
|
203
|
+
type NewSeekersAccount = {
|
|
204
|
+
verification_uuid: string;
|
|
205
|
+
reference: number;
|
|
206
|
+
code: number;
|
|
207
|
+
email: string;
|
|
208
|
+
password: string;
|
|
209
|
+
birth_iso_country_code_uuid: string;
|
|
210
|
+
nationality_iso_country_code_uuid: string;
|
|
211
|
+
resident_iso_country_code_uuid: string;
|
|
212
|
+
birthdate: string;
|
|
213
|
+
sex_uuid: string;
|
|
214
|
+
};
|
|
215
|
+
//#endregion
|
|
216
|
+
//#region src/constants/isoCountryCode.d.ts
|
|
217
|
+
declare const isoCountryCodeRaw: IsoCountryCode[];
|
|
218
|
+
declare const isoCountryCodeDropdown: DropdownSchema[];
|
|
219
|
+
//#endregion
|
|
220
|
+
//#region src/constants/isoCurrencyCode.d.ts
|
|
221
|
+
declare const isoCurrencyCodeRaw: IsoCurrencyCode[];
|
|
222
|
+
declare const isoCurrencyCodeDropdown: DropdownSchema[];
|
|
223
|
+
//#endregion
|
|
224
|
+
//#region src/constants/isoLanguageCode.d.ts
|
|
225
|
+
declare const isoLanguageCodeRaw: IsoLanguageCode[];
|
|
226
|
+
declare const isoLanguageCodeDropdown: DropdownSchema[];
|
|
227
|
+
//#endregion
|
|
228
|
+
//#region src/constants/legalEntitySize.d.ts
|
|
229
|
+
declare const legalEntitySizeRaw: LegalEntitySize[];
|
|
230
|
+
//#endregion
|
|
231
|
+
//#region src/constants/legalEntityTypes.d.ts
|
|
232
|
+
declare const legalEntityTypesRaw: LegalEntityTypes[];
|
|
233
|
+
//#endregion
|
|
234
|
+
//#region src/constants/sectors.d.ts
|
|
235
|
+
declare const sectorsRaw: Sectors[];
|
|
236
|
+
//#endregion
|
|
237
|
+
//#region src/constants/sex.d.ts
|
|
238
|
+
declare const sexRaw: Sex[];
|
|
239
|
+
//#endregion
|
|
240
|
+
//#region src/uis/buttonsScale.d.ts
|
|
241
|
+
declare const BUTTON_SIZE: {
|
|
242
|
+
readonly SMALL: "small";
|
|
243
|
+
readonly MEDIUM: "medium";
|
|
244
|
+
readonly LARGE: "large";
|
|
245
|
+
};
|
|
246
|
+
type ButtonSize = (typeof BUTTON_SIZE)[keyof typeof BUTTON_SIZE];
|
|
247
|
+
declare function buttonHeight(scale: ButtonSize): string;
|
|
248
|
+
declare function buttonFontSize(scale: ButtonSize): string;
|
|
249
|
+
declare function buttonIconSize(scale: ButtonSize): number;
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region src/uis/cn.d.ts
|
|
252
|
+
declare function cn(...args: ClassValue[]): string;
|
|
253
|
+
//#endregion
|
|
254
|
+
//#region src/utilities/httpError.d.ts
|
|
255
|
+
declare class HttpError extends Error {
|
|
256
|
+
status: number;
|
|
257
|
+
constructor(status: number);
|
|
258
|
+
}
|
|
259
|
+
//#endregion
|
|
260
|
+
export { BUTTON_SIZE, ButtonSize, CommonAuthen, Coordinate, DropdownSchema, Email, EmailPassword, Employers, EmployersBenefits, EmployersLocations, EmployersName, EmployersSectors, EmployersSocialUrl, ErrorWithStatus, HttpError, IsoCountryCode, IsoCurrencyCode, IsoLanguageCode, LegalEntitySize, LegalEntityTypes, NewOrganizationAccount, NewPersonnelAccount, NewSeekersAccount, Packages, Personnel, PersonnelAuthen, PersonnelCreate, PersonnelCredential, PersonnelSocialUrl, PhotoUrlStatus, PlainText, PresignResponse, Sectors, SeekersAuthen, SeekersCredential, Sex, buttonFontSize, buttonHeight, buttonIconSize, cn, isoCountryCodeDropdown, isoCountryCodeRaw, isoCurrencyCodeDropdown, isoCurrencyCodeRaw, isoLanguageCodeDropdown, isoLanguageCodeRaw, legalEntitySizeRaw, legalEntityTypesRaw, sectorsRaw, sexRaw };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
import { ClassValue } from "clsx";
|
|
2
|
+
|
|
3
|
+
//#region src/models/types.d.ts
|
|
4
|
+
type Email = {
|
|
5
|
+
email: string;
|
|
6
|
+
};
|
|
7
|
+
type EmailPassword = Email & {
|
|
8
|
+
password: string;
|
|
9
|
+
};
|
|
10
|
+
type PersonnelCredential = {
|
|
11
|
+
personnel_uuid: string;
|
|
12
|
+
employers_uuid: string;
|
|
13
|
+
access_token: string;
|
|
14
|
+
refresh_token: string;
|
|
15
|
+
is_admin: boolean;
|
|
16
|
+
};
|
|
17
|
+
type PersonnelAuthen = Omit<PersonnelCredential, "refresh_token">;
|
|
18
|
+
type DropdownSchema = {
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
};
|
|
22
|
+
type LegalEntityTypes = {
|
|
23
|
+
legal_entity_types_uuid: string;
|
|
24
|
+
name: string;
|
|
25
|
+
};
|
|
26
|
+
type IsoCountryCode = {
|
|
27
|
+
iso_country_code_uuid: string;
|
|
28
|
+
country: string;
|
|
29
|
+
alpha2: string;
|
|
30
|
+
alpha3: string;
|
|
31
|
+
numeric: number;
|
|
32
|
+
latitude: number;
|
|
33
|
+
longitude: number;
|
|
34
|
+
};
|
|
35
|
+
type IsoCurrencyCode = {
|
|
36
|
+
iso_currency_code_uuid: string;
|
|
37
|
+
currency: string;
|
|
38
|
+
code: string;
|
|
39
|
+
number: number;
|
|
40
|
+
};
|
|
41
|
+
type IsoLanguageCode = {
|
|
42
|
+
iso_language_code_uuid: string;
|
|
43
|
+
language: string;
|
|
44
|
+
code: string;
|
|
45
|
+
};
|
|
46
|
+
type LegalEntitySize = {
|
|
47
|
+
legal_entity_size_uuid: string;
|
|
48
|
+
name: string;
|
|
49
|
+
definition: string;
|
|
50
|
+
};
|
|
51
|
+
type CommonAuthen = {
|
|
52
|
+
verification_uuid: string;
|
|
53
|
+
reference: number;
|
|
54
|
+
code: number;
|
|
55
|
+
email: string;
|
|
56
|
+
password: string;
|
|
57
|
+
};
|
|
58
|
+
type NewOrganizationAccount = CommonAuthen & {
|
|
59
|
+
primary_name: string;
|
|
60
|
+
position_title: string;
|
|
61
|
+
legal_entity_types_uuid: string;
|
|
62
|
+
iso_country_code_uuid: string;
|
|
63
|
+
iso_currency_code_uuid: string;
|
|
64
|
+
legal_entity_size_uuid: string;
|
|
65
|
+
};
|
|
66
|
+
type NewPersonnelAccount = CommonAuthen & {
|
|
67
|
+
primary_name: string;
|
|
68
|
+
position_title: string;
|
|
69
|
+
employers_uuid: string;
|
|
70
|
+
};
|
|
71
|
+
type PersonnelCreate = {
|
|
72
|
+
primary_name: string;
|
|
73
|
+
position_title: string;
|
|
74
|
+
};
|
|
75
|
+
type Sex = {
|
|
76
|
+
sex_uuid: string;
|
|
77
|
+
description: string;
|
|
78
|
+
};
|
|
79
|
+
type Employers = {
|
|
80
|
+
employers_uuid: string;
|
|
81
|
+
iso_country_code_uuid: string;
|
|
82
|
+
iso_currency_code_uuid: string;
|
|
83
|
+
legal_entity_types_uuid: string;
|
|
84
|
+
legal_entity_size_uuid: string;
|
|
85
|
+
founded_at: string | null;
|
|
86
|
+
profile_url: string | null;
|
|
87
|
+
cover_url: string | null;
|
|
88
|
+
about: string;
|
|
89
|
+
contact_info: string;
|
|
90
|
+
invoice_name: string;
|
|
91
|
+
invoice_address: string;
|
|
92
|
+
invoice_contact: string;
|
|
93
|
+
invoice_unique_id: string;
|
|
94
|
+
verified_at: string | null;
|
|
95
|
+
packages_uuid: string;
|
|
96
|
+
created_at: string;
|
|
97
|
+
updated_at: string;
|
|
98
|
+
is_active: boolean;
|
|
99
|
+
};
|
|
100
|
+
type EmployersName = {
|
|
101
|
+
employers_name_uuid: string;
|
|
102
|
+
employers_uuid: string;
|
|
103
|
+
name: string;
|
|
104
|
+
is_primary: boolean;
|
|
105
|
+
created_at: string;
|
|
106
|
+
updated_at: string;
|
|
107
|
+
};
|
|
108
|
+
type Personnel = {
|
|
109
|
+
personnel_uuid: string;
|
|
110
|
+
employers_uuid: string;
|
|
111
|
+
email: string;
|
|
112
|
+
is_admin: boolean;
|
|
113
|
+
primary_name: string;
|
|
114
|
+
position_title: string;
|
|
115
|
+
contact_info: string;
|
|
116
|
+
about: string;
|
|
117
|
+
profile_url: string | null;
|
|
118
|
+
is_active: boolean;
|
|
119
|
+
created_at: string;
|
|
120
|
+
updated_at: string;
|
|
121
|
+
latest_login: string;
|
|
122
|
+
};
|
|
123
|
+
type PlainText = {
|
|
124
|
+
text: string;
|
|
125
|
+
};
|
|
126
|
+
type PresignResponse = {
|
|
127
|
+
url: string;
|
|
128
|
+
key: string;
|
|
129
|
+
content_type: string;
|
|
130
|
+
expires_in: number;
|
|
131
|
+
};
|
|
132
|
+
type Coordinate = {
|
|
133
|
+
latitude: number;
|
|
134
|
+
longitude: number;
|
|
135
|
+
};
|
|
136
|
+
type EmployersLocations = {
|
|
137
|
+
employers_locations_uuid: string;
|
|
138
|
+
employers_uuid: string;
|
|
139
|
+
iso_country_code_uuid: string;
|
|
140
|
+
address: string;
|
|
141
|
+
latitude: number;
|
|
142
|
+
longitude: number;
|
|
143
|
+
created_at: string;
|
|
144
|
+
updated_at: string;
|
|
145
|
+
is_headquarters: boolean;
|
|
146
|
+
};
|
|
147
|
+
type PhotoUrlStatus = {
|
|
148
|
+
url: string;
|
|
149
|
+
success: boolean;
|
|
150
|
+
};
|
|
151
|
+
type ErrorWithStatus = {
|
|
152
|
+
message: string;
|
|
153
|
+
status: number;
|
|
154
|
+
};
|
|
155
|
+
type Sectors = {
|
|
156
|
+
sectors_uuid: string;
|
|
157
|
+
name: string;
|
|
158
|
+
};
|
|
159
|
+
type EmployersSectors = {
|
|
160
|
+
employers_sectors_uuid: string;
|
|
161
|
+
employers_uuid: string;
|
|
162
|
+
sectors_uuid: string;
|
|
163
|
+
created_at: string;
|
|
164
|
+
name: string;
|
|
165
|
+
};
|
|
166
|
+
type EmployersSocialUrl = {
|
|
167
|
+
employers_social_url_uuid: string;
|
|
168
|
+
employers_uuid: string;
|
|
169
|
+
url: string;
|
|
170
|
+
label: string;
|
|
171
|
+
created_at: string;
|
|
172
|
+
updated_at: string;
|
|
173
|
+
};
|
|
174
|
+
type EmployersBenefits = {
|
|
175
|
+
employers_benefits_uuid: string;
|
|
176
|
+
employers_uuid: string;
|
|
177
|
+
description: string;
|
|
178
|
+
created_at: string;
|
|
179
|
+
updated_at: string;
|
|
180
|
+
};
|
|
181
|
+
type Packages = {
|
|
182
|
+
packages_uuid: string;
|
|
183
|
+
name: string;
|
|
184
|
+
description: string;
|
|
185
|
+
created_at: string;
|
|
186
|
+
updated_at: string;
|
|
187
|
+
};
|
|
188
|
+
type PersonnelSocialUrl = {
|
|
189
|
+
personnel_social_url_uuid: string;
|
|
190
|
+
personnel_uuid: string;
|
|
191
|
+
employers_uuid: string;
|
|
192
|
+
url: string;
|
|
193
|
+
label: string;
|
|
194
|
+
created_at: string;
|
|
195
|
+
updated_at: string;
|
|
196
|
+
};
|
|
197
|
+
type SeekersCredential = {
|
|
198
|
+
seekers_uuid: string;
|
|
199
|
+
access_token: string;
|
|
200
|
+
refresh_token: string;
|
|
201
|
+
};
|
|
202
|
+
type SeekersAuthen = Omit<SeekersCredential, "refresh_token">;
|
|
203
|
+
type NewSeekersAccount = {
|
|
204
|
+
verification_uuid: string;
|
|
205
|
+
reference: number;
|
|
206
|
+
code: number;
|
|
207
|
+
email: string;
|
|
208
|
+
password: string;
|
|
209
|
+
birth_iso_country_code_uuid: string;
|
|
210
|
+
nationality_iso_country_code_uuid: string;
|
|
211
|
+
resident_iso_country_code_uuid: string;
|
|
212
|
+
birthdate: string;
|
|
213
|
+
sex_uuid: string;
|
|
214
|
+
};
|
|
215
|
+
//#endregion
|
|
216
|
+
//#region src/constants/isoCountryCode.d.ts
|
|
217
|
+
declare const isoCountryCodeRaw: IsoCountryCode[];
|
|
218
|
+
declare const isoCountryCodeDropdown: DropdownSchema[];
|
|
219
|
+
//#endregion
|
|
220
|
+
//#region src/constants/isoCurrencyCode.d.ts
|
|
221
|
+
declare const isoCurrencyCodeRaw: IsoCurrencyCode[];
|
|
222
|
+
declare const isoCurrencyCodeDropdown: DropdownSchema[];
|
|
223
|
+
//#endregion
|
|
224
|
+
//#region src/constants/isoLanguageCode.d.ts
|
|
225
|
+
declare const isoLanguageCodeRaw: IsoLanguageCode[];
|
|
226
|
+
declare const isoLanguageCodeDropdown: DropdownSchema[];
|
|
227
|
+
//#endregion
|
|
228
|
+
//#region src/constants/legalEntitySize.d.ts
|
|
229
|
+
declare const legalEntitySizeRaw: LegalEntitySize[];
|
|
230
|
+
//#endregion
|
|
231
|
+
//#region src/constants/legalEntityTypes.d.ts
|
|
232
|
+
declare const legalEntityTypesRaw: LegalEntityTypes[];
|
|
233
|
+
//#endregion
|
|
234
|
+
//#region src/constants/sectors.d.ts
|
|
235
|
+
declare const sectorsRaw: Sectors[];
|
|
236
|
+
//#endregion
|
|
237
|
+
//#region src/constants/sex.d.ts
|
|
238
|
+
declare const sexRaw: Sex[];
|
|
239
|
+
//#endregion
|
|
240
|
+
//#region src/uis/buttonsScale.d.ts
|
|
241
|
+
declare const BUTTON_SIZE: {
|
|
242
|
+
readonly SMALL: "small";
|
|
243
|
+
readonly MEDIUM: "medium";
|
|
244
|
+
readonly LARGE: "large";
|
|
245
|
+
};
|
|
246
|
+
type ButtonSize = (typeof BUTTON_SIZE)[keyof typeof BUTTON_SIZE];
|
|
247
|
+
declare function buttonHeight(scale: ButtonSize): string;
|
|
248
|
+
declare function buttonFontSize(scale: ButtonSize): string;
|
|
249
|
+
declare function buttonIconSize(scale: ButtonSize): number;
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region src/uis/cn.d.ts
|
|
252
|
+
declare function cn(...args: ClassValue[]): string;
|
|
253
|
+
//#endregion
|
|
254
|
+
//#region src/utilities/httpError.d.ts
|
|
255
|
+
declare class HttpError extends Error {
|
|
256
|
+
status: number;
|
|
257
|
+
constructor(status: number);
|
|
258
|
+
}
|
|
259
|
+
//#endregion
|
|
260
|
+
export { BUTTON_SIZE, ButtonSize, CommonAuthen, Coordinate, DropdownSchema, Email, EmailPassword, Employers, EmployersBenefits, EmployersLocations, EmployersName, EmployersSectors, EmployersSocialUrl, ErrorWithStatus, HttpError, IsoCountryCode, IsoCurrencyCode, IsoLanguageCode, LegalEntitySize, LegalEntityTypes, NewOrganizationAccount, NewPersonnelAccount, NewSeekersAccount, Packages, Personnel, PersonnelAuthen, PersonnelCreate, PersonnelCredential, PersonnelSocialUrl, PhotoUrlStatus, PlainText, PresignResponse, Sectors, SeekersAuthen, SeekersCredential, Sex, buttonFontSize, buttonHeight, buttonIconSize, cn, isoCountryCodeDropdown, isoCountryCodeRaw, isoCurrencyCodeDropdown, isoCurrencyCodeRaw, isoLanguageCodeDropdown, isoLanguageCodeRaw, legalEntitySizeRaw, legalEntityTypesRaw, sectorsRaw, sexRaw };
|