@visa-check-r/integrations 0.0.18 → 0.0.20
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 +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -450,6 +450,8 @@ declare const loginResponseFields: (keyof LoginResponse)[];
|
|
|
450
450
|
interface SignUpRequest {
|
|
451
451
|
user: Partial<User>;
|
|
452
452
|
password: string;
|
|
453
|
+
partnerReferenceCode: string;
|
|
454
|
+
consultantCode: string;
|
|
453
455
|
}
|
|
454
456
|
type SignUpResponse = LoginResponse;
|
|
455
457
|
declare const signUpResponseFields: (keyof LoginResponse)[];
|
package/dist/index.d.ts
CHANGED
|
@@ -450,6 +450,8 @@ declare const loginResponseFields: (keyof LoginResponse)[];
|
|
|
450
450
|
interface SignUpRequest {
|
|
451
451
|
user: Partial<User>;
|
|
452
452
|
password: string;
|
|
453
|
+
partnerReferenceCode: string;
|
|
454
|
+
consultantCode: string;
|
|
453
455
|
}
|
|
454
456
|
type SignUpResponse = LoginResponse;
|
|
455
457
|
declare const signUpResponseFields: (keyof LoginResponse)[];
|
package/dist/index.esm.js
CHANGED
|
@@ -433,8 +433,8 @@ var authSchema = {
|
|
|
433
433
|
}
|
|
434
434
|
`,
|
|
435
435
|
signUp: (query) => `
|
|
436
|
-
mutation signUp($user: UserInput!, $password: String
|
|
437
|
-
signUp(user: $user, password: $password) {
|
|
436
|
+
mutation signUp($user: UserInput!, $password: String!, $partnerReferenceCode: String, $consultantCode: String) {
|
|
437
|
+
signUp(user: $user, password: $password, partnerReferenceCode: $partnerReferenceCode, consultantCode: $consultantCode) {
|
|
438
438
|
${query}
|
|
439
439
|
}
|
|
440
440
|
}
|