dexie-cloud-addon 4.3.0 → 4.3.3

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.
@@ -1,5 +1,5 @@
1
1
  /** OAuth-specific error codes */
2
- export type OAuthErrorCode = 'popup_blocked' | 'popup_closed' | 'access_denied' | 'invalid_state' | 'email_not_verified' | 'expired_code' | 'provider_error' | 'network_error';
2
+ export type OAuthErrorCode = 'access_denied' | 'invalid_state' | 'email_not_verified' | 'expired_code' | 'provider_error' | 'network_error';
3
3
  /** Error class for OAuth-specific errors */
4
4
  export declare class OAuthError extends Error {
5
5
  readonly code: OAuthErrorCode;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Error thrown when initiating an OAuth redirect.
3
+ *
4
+ * This is not a real error - it's used to signal that the page is
5
+ * navigating away to an OAuth provider. It should be caught and
6
+ * silently ignored at the appropriate level.
7
+ */
8
+ export declare class OAuthRedirectError extends Error {
9
+ readonly provider: string;
10
+ constructor(provider: string);
11
+ }