@visa-check-r/integrations 0.0.9 → 0.0.10
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 +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -460,7 +460,7 @@ type UpdatePasswordResponse = {
|
|
|
460
460
|
declare const updatePasswordResponseFields: (keyof UpdatePasswordResponse)[];
|
|
461
461
|
|
|
462
462
|
declare const createAuthService: (client: GraphQLClient) => {
|
|
463
|
-
|
|
463
|
+
changePassword(input: UpdatePasswordRequest, fetchFields?: {
|
|
464
464
|
root?: (keyof UpdatePasswordResponse)[];
|
|
465
465
|
}, option?: RequestOption): Promise<UpdatePasswordResponse | undefined>;
|
|
466
466
|
resetPassword(input: ResetPasswordRequest, fetchFields?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -460,7 +460,7 @@ type UpdatePasswordResponse = {
|
|
|
460
460
|
declare const updatePasswordResponseFields: (keyof UpdatePasswordResponse)[];
|
|
461
461
|
|
|
462
462
|
declare const createAuthService: (client: GraphQLClient) => {
|
|
463
|
-
|
|
463
|
+
changePassword(input: UpdatePasswordRequest, fetchFields?: {
|
|
464
464
|
root?: (keyof UpdatePasswordResponse)[];
|
|
465
465
|
}, option?: RequestOption): Promise<UpdatePasswordResponse | undefined>;
|
|
466
466
|
resetPassword(input: ResetPasswordRequest, fetchFields?: {
|
package/dist/index.esm.js
CHANGED
|
@@ -420,7 +420,7 @@ var updatePasswordResponseFields = ["success"];
|
|
|
420
420
|
|
|
421
421
|
// src/services/user/auth.service.ts
|
|
422
422
|
var createAuthService = (client) => ({
|
|
423
|
-
async
|
|
423
|
+
async changePassword(input, fetchFields, option) {
|
|
424
424
|
var _a, _b;
|
|
425
425
|
const res = await client.request(
|
|
426
426
|
authSchema.updatePassword(
|