@lana-commerce/core 13.1.0-alpha.17 → 13.1.0-alpha.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lana-commerce/core",
3
- "version": "13.1.0-alpha.17",
3
+ "version": "13.1.0-alpha.19",
4
4
  "description": "Lana JS Core",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -90,4 +90,4 @@
90
90
  "style": "renke"
91
91
  }
92
92
  }
93
- }
93
+ }
@@ -52,7 +52,9 @@ export type APIError = {
52
52
  } | {
53
53
  code: ErrorCode.Unauthorized;
54
54
  meta?: {
55
+ email?: string;
55
56
  oauth_providers?: string[];
57
+ oauth_session_id?: string;
56
58
  password_defined?: boolean;
57
59
  webauthn_defined?: boolean;
58
60
  };
@@ -8435,12 +8435,12 @@ export interface UserLogin {
8435
8435
  email?: string | null;
8436
8436
  /** Your device fingerprint (internal, temporary, used for debug purposes) */
8437
8437
  fingerprint?: string | null;
8438
- /** Force login if unregistered oauth provider is used (also connects the provider) */
8439
- force?: boolean | null;
8440
8438
  /** OAuth2 authorization code provided by the provider */
8441
8439
  oauth_code?: string | null;
8442
8440
  /** OAuth2 provider used for registering this account (deprecated, use oauth_providers instead) */
8443
8441
  oauth_provider?: OAuth2Provider | null;
8442
+ /** OAuth session id (for special implicit connection flow) */
8443
+ oauth_session_id?: string | null;
8444
8444
  /** The user's password */
8445
8445
  password?: string | null;
8446
8446
  /** Timezone hint. Used as a hint when implicitly creating the user. */