@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @goweekdays/core
2
2
 
3
+ ## 2.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 62e9908: Job profile: add service and rename cityState→city
8
+
3
9
  ## 2.12.1
4
10
 
5
11
  ### Patch Changes
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
- getLocations: (req: Request, res: Response, next: NextFunction) => Promise<void>;
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
- cityState?: string;
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
- cityState: string;
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
- cityState?: string;
1586
+ city?: string;
1587
1587
  streetAddress?: string;
1588
1588
  postalCode?: string;
1589
1589
  relocate?: boolean;