@pastelarai/pastelarai-shared-types 1.0.136 → 1.0.138

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.
@@ -40,3 +40,19 @@ export interface OnboardingIn {
40
40
  company: CompanyDB;
41
41
  role: string;
42
42
  }
43
+ export interface GoogleAuthRequest {
44
+ id_token: string;
45
+ }
46
+ export interface GoogleUser {
47
+ sub: string;
48
+ email: string;
49
+ [key: string]: any;
50
+ }
51
+ export interface AuthUser {
52
+ email: string;
53
+ sub: string;
54
+ }
55
+ export interface AuthResponse {
56
+ appToken: string;
57
+ user: AuthUser;
58
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pastelarai/pastelarai-shared-types",
3
- "version": "1.0.136",
3
+ "version": "1.0.138",
4
4
  "description": "Shared types for PastelarAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",