@rixl/sdk 0.9.0 → 0.9.1
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/index.d.ts +7 -2
- package/dist/index.js +826 -610
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -12054,6 +12054,7 @@ declare const videosV1VideoServiceGetVideo: <ThrowOnError extends boolean = fals
|
|
|
12054
12054
|
interface OAuthProviderConfig {
|
|
12055
12055
|
clientId: string;
|
|
12056
12056
|
scope?: string;
|
|
12057
|
+
redirectUri?: string;
|
|
12057
12058
|
}
|
|
12058
12059
|
//#endregion
|
|
12059
12060
|
//#region src/auth/providers/google.d.ts
|
|
@@ -12134,8 +12135,12 @@ interface VerifyStatusResponse {
|
|
|
12134
12135
|
has_email: boolean;
|
|
12135
12136
|
verified: boolean;
|
|
12136
12137
|
}
|
|
12137
|
-
/**
|
|
12138
|
-
|
|
12138
|
+
/**
|
|
12139
|
+
* Login error response for special cases that require UI action.
|
|
12140
|
+
* `provider_exchange_failed` is the catch-all for a provider login the gateway
|
|
12141
|
+
* rejected for any other reason; its `message` carries the gateway's own text.
|
|
12142
|
+
*/
|
|
12143
|
+
type LoginErrorCode = "email_not_verified" | "provider_conflict" | "provider_exchange_failed";
|
|
12139
12144
|
interface LoginErrorResponse {
|
|
12140
12145
|
error_code: LoginErrorCode;
|
|
12141
12146
|
message: string;
|