@deallony/shared 1.0.55 → 1.0.56

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.
@@ -1,17 +1,17 @@
1
- export interface MatchedSubstring {
1
+ export type MatchedSubstring = {
2
2
  length: number;
3
3
  offset: number;
4
- }
5
- export interface Term {
4
+ };
5
+ export type Term = {
6
6
  offset: number;
7
7
  value: string;
8
- }
9
- export interface PlacesAutocompleteResponse {
8
+ };
9
+ export type PlacesAutocompleteResponse = {
10
10
  predictions: PlacePrediction[];
11
11
  status: string;
12
12
  error_message?: string;
13
- }
14
- export interface PlacePrediction {
13
+ };
14
+ export type PlacePrediction = {
15
15
  description: string;
16
16
  place_id: string;
17
17
  reference: string;
@@ -23,4 +23,4 @@ export interface PlacePrediction {
23
23
  terms: Term[];
24
24
  types: string[];
25
25
  matched_substrings: MatchedSubstring[];
26
- }
26
+ };
@@ -2,4 +2,4 @@ export * as Ad from './AdType';
2
2
  export * as AdminBoundary from './AdminBoundaryType';
3
3
  export * as Media from './MediaType';
4
4
  export * from './PropertyTypeType';
5
- export * from './GoogleType';
5
+ export * as Google from './GoogleType';
@@ -2,4 +2,4 @@ export * as Ad from './AdType';
2
2
  export * as AdminBoundary from './AdminBoundaryType';
3
3
  export * as Media from './MediaType';
4
4
  export * from './PropertyTypeType';
5
- export * from './GoogleType';
5
+ export * as Google from './GoogleType';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deallony/shared",
3
- "version": "1.0.55",
3
+ "version": "1.0.56",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",