@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 +13 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/province.js +2 -0
- package/lib/venue.d.ts +1 -2
- package/package.json +1 -1
- /package/lib/{provinces.js → auth.js} +0 -0
- /package/lib/{provinces.d.ts → province.d.ts} +0 -0
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
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);
|
package/lib/province.js
ADDED
package/lib/venue.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IProvince } from './
|
|
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
|
File without changes
|
|
File without changes
|