@connect-plus-online/ogabai-integrations 0.0.76 → 0.0.77

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.mts CHANGED
@@ -799,9 +799,10 @@ interface VerifyOTPResponse {
799
799
  otpVerifiedAccessToken: string;
800
800
  }
801
801
  interface LoginRequest {
802
- pin: string;
802
+ pin?: string;
803
803
  phone: string;
804
804
  userType?: UserType;
805
+ password?: string;
805
806
  }
806
807
  interface LoginResponse {
807
808
  accessToken: string;
package/dist/index.d.ts CHANGED
@@ -799,9 +799,10 @@ interface VerifyOTPResponse {
799
799
  otpVerifiedAccessToken: string;
800
800
  }
801
801
  interface LoginRequest {
802
- pin: string;
802
+ pin?: string;
803
803
  phone: string;
804
804
  userType?: UserType;
805
+ password?: string;
805
806
  }
806
807
  interface LoginResponse {
807
808
  accessToken: string;
package/dist/index.esm.js CHANGED
@@ -1454,8 +1454,8 @@ var authSchema = {
1454
1454
  }
1455
1455
  `,
1456
1456
  login: (query) => `
1457
- mutation login($phone: String!, $pin: String!, $userType: UserTypeEnum) {
1458
- login(phone: $phone, pin: $pin, userType: $userType) {
1457
+ mutation login($phone: String!, $pin: String, $userType: UserTypeEnum, $password: String) {
1458
+ login(phone: $phone, pin: $pin, userType: $userType, password: $password) {
1459
1459
  ${query}
1460
1460
  }
1461
1461
  }