@goweekdays/core 2.12.1 → 2.12.2
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.js +328 -86
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +333 -86
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1184,7 +1184,7 @@ declare function useOptionRepo(namespace_collection: string): {
|
|
|
1184
1184
|
};
|
|
1185
1185
|
|
|
1186
1186
|
declare function useOptionCtrl(): {
|
|
1187
|
-
|
|
1187
|
+
getCountries: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1188
1188
|
getJobTitles: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1189
1189
|
getCurrencies: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
1190
1190
|
getAllCities: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
@@ -1405,7 +1405,7 @@ type TJobProfileWorkExp = {
|
|
|
1405
1405
|
jobTitle: string;
|
|
1406
1406
|
company: string;
|
|
1407
1407
|
country: string;
|
|
1408
|
-
|
|
1408
|
+
city?: string;
|
|
1409
1409
|
fromMonth: string;
|
|
1410
1410
|
fromYear: string;
|
|
1411
1411
|
toMonth?: string;
|
|
@@ -1506,7 +1506,7 @@ type TJobProfile = {
|
|
|
1506
1506
|
verifiedEmail?: boolean;
|
|
1507
1507
|
country: string;
|
|
1508
1508
|
streetAddress?: string;
|
|
1509
|
-
|
|
1509
|
+
city: string;
|
|
1510
1510
|
postalCode?: string;
|
|
1511
1511
|
relocate: boolean;
|
|
1512
1512
|
summary?: string;
|
|
@@ -1583,7 +1583,7 @@ declare function useJobProfileRepo(): {
|
|
|
1583
1583
|
contact?: string;
|
|
1584
1584
|
showContact?: boolean;
|
|
1585
1585
|
country?: string;
|
|
1586
|
-
|
|
1586
|
+
city?: string;
|
|
1587
1587
|
streetAddress?: string;
|
|
1588
1588
|
postalCode?: string;
|
|
1589
1589
|
relocate?: boolean;
|