@soigo-dev/types-soigo-app 3.0.7 → 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/auth.js +2 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/venue.d.ts +0 -1
- package/package.json +1 -1
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/auth.js
ADDED
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./venue"), exports);
|
|
18
18
|
__exportStar(require("./province"), exports);
|
|
19
|
+
__exportStar(require("./auth"), exports);
|
package/lib/venue.d.ts
CHANGED