nextemos 3.9.8 → 4.0.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.
@@ -19,7 +19,7 @@ export type RouteParts = {
19
19
  };
20
20
  export interface Route {
21
21
  urlTo?: string;
22
- commonPageName?: string;
22
+ routeKeys: string;
23
23
  queryString?: string;
24
24
  routeParts?: RouteParts;
25
25
  title?: string;
@@ -1,8 +1,8 @@
1
1
  import { IApiResponse, IRequestInit } from '../..';
2
2
  import { IAddressSourceDataResponse } from 'nextemos/interfaces/address';
3
- export type addressPartTypeId = 'Continent' | 'Country' | 'GoverningDistrict' | 'City' | 'County' | 'Town' | 'Neighbourhood' | 'PostalCode' | 'Street' | 'Complex' | 'Apartment' | 'Description' | 'TelephoneNumber' | 'Name' | 'Surname' | 'CorporationName' | 'MobilePhone';
3
+ export type TAddressPartTypeId = 'Continent' | 'Country' | 'GoverningDistrict' | 'City' | 'County' | 'Town' | 'Neighbourhood' | 'PostalCode' | 'Street' | 'Complex' | 'Apartment' | 'Description' | 'TelephoneNumber' | 'Name' | 'Surname' | 'CorporationName' | 'MobilePhone';
4
4
  export interface IAddressSourceDataRequest {
5
- addressPartTypeId: addressPartTypeId;
5
+ addressPartTypeId: TAddressPartTypeId;
6
6
  value?: string;
7
7
  parentId?: number;
8
8
  tags?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nextemos",
3
- "version": "3.9.8",
3
+ "version": "4.0.0",
4
4
  "description": "For helpers and hooks used in NextJS projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",