postex-auth-sdk-stage 2.2.0 → 2.3.0

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/dist/auth.d.ts CHANGED
@@ -36,7 +36,6 @@ interface InitiateAuthResponse {
36
36
  }
37
37
  interface OTPVerifyResponse {
38
38
  access_token: string;
39
- id_token: string;
40
39
  refresh_token: string;
41
40
  expires_in: number;
42
41
  token_type: string;
@@ -88,7 +87,6 @@ interface PasskeyStatusResponse {
88
87
  interface AuthResponse {
89
88
  access_token: string;
90
89
  refresh_token: string;
91
- id_token?: string;
92
90
  email: string;
93
91
  name: string;
94
92
  expiresIn?: number;
@@ -98,7 +96,6 @@ interface AuthResponse {
98
96
  /** Response from POST /auth/refresh */
99
97
  interface RefreshTokenResponse {
100
98
  access_token: string;
101
- id_token?: string;
102
99
  token_type: string;
103
100
  expires_in: number;
104
101
  }
@@ -237,7 +234,6 @@ export declare class AuthSDK {
237
234
  storeTokens(tokens: {
238
235
  accessToken: string;
239
236
  refreshToken?: string;
240
- idToken?: string;
241
237
  expiresIn?: number;
242
238
  tokenType?: string;
243
239
  }): Promise<void>;