@visa-check-r/integrations 0.0.19 → 0.0.21

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.cjs.js CHANGED
@@ -223,7 +223,6 @@ var userSchema = {
223
223
 
224
224
  // src/services/user/user.entity.ts
225
225
  var consultantInviteQuery = [
226
- "consultantId",
227
226
  "createdAt",
228
227
  "email",
229
228
  "expirationDate",
@@ -435,8 +434,8 @@ var authSchema = {
435
434
  }
436
435
  `,
437
436
  signUp: (query) => `
438
- mutation signUp($user: UserInput!, $password: String!) {
439
- signUp(user: $user, password: $password) {
437
+ mutation signUp($user: UserInput!, $password: String!, $partnerReferenceCode: String, $consultantCode: String) {
438
+ signUp(user: $user, password: $password, partnerReferenceCode: $partnerReferenceCode, consultantCode: $consultantCode) {
440
439
  ${query}
441
440
  }
442
441
  }