diff --git a/package.json b/package.json index 0c584ce7..b5a5f3fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "version": "0.0.60", + "version": "0.0.61", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/types/app.ts b/src/types/app.ts index 20340a0d..fb457573 100644 --- a/src/types/app.ts +++ b/src/types/app.ts @@ -1,3 +1,4 @@ +import { CustomFieldInput } from './custom-fields'; import { PaginatorInfo } from './paginator'; export interface AppUpdatePasswordInterface { @@ -92,6 +93,8 @@ export interface AppCreateUserParams { phone_number?: string; cell_phone_number?: string; roles_id?: string | number; + password?: string; + custom_fields: CustomFieldInput[]; } export interface CreatedAppCreateUser {