@soigo-dev/types-soigo-app 3.0.6 → 3.0.8

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/lib/auth.d.ts ADDED
@@ -0,0 +1,13 @@
1
+ export interface IGoogleLogin {
2
+ readonly idToken: string;
3
+ }
4
+ export interface IGoogleLoginResponse {
5
+ readonly provider: 'google';
6
+ readonly isNewUser: boolean;
7
+ readonly accessToken: string;
8
+ readonly user: {
9
+ readonly id: number;
10
+ readonly email?: string;
11
+ readonly displayName: string;
12
+ };
13
+ }
package/lib/index.d.ts CHANGED
@@ -1 +1,3 @@
1
1
  export * from './venue';
2
+ export * from './province';
3
+ export * from './auth';
package/lib/index.js CHANGED
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./venue"), exports);
18
+ __exportStar(require("./province"), exports);
19
+ __exportStar(require("./auth"), exports);
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/lib/venue.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { IProvince } from './provinces';
1
+ import { IProvince } from './province';
2
2
  export declare enum PriceLevel {
3
3
  None = 0,
4
4
  Low = 1,
@@ -131,7 +131,6 @@ export interface IUserLocationQuery {
131
131
  }
132
132
  export interface IGetVenuesQuery {
133
133
  readonly provinceId?: number;
134
- readonly verified?: boolean;
135
134
  readonly page: number;
136
135
  readonly limit: number;
137
136
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soigo-dev/types-soigo-app",
3
- "version": "3.0.6",
3
+ "version": "3.0.8",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
File without changes
File without changes