Skip to content

Commit

Permalink
Merge pull request #113 from bakaphp/feat/app-create-user
Browse files Browse the repository at this point in the history
Feat/app create user
  • Loading branch information
code-bryan authored Nov 16, 2023
2 parents 5ed64d7 + 2db4f60 commit f9a7039
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{

"version": "0.0.60",
"version": "0.0.61",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions src/types/app.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { CustomFieldInput } from './custom-fields';
import { PaginatorInfo } from './paginator';

export interface AppUpdatePasswordInterface {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit f9a7039

Please sign in to comment.