Skip to content

Commit

Permalink
update gen
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Dec 2, 2023
1 parent 5fafe4e commit 30ceeec
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion src/BackendActionExecuteRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import {BackendActionExecuteRequestBody} from "./BackendActionExecuteRequestBody";
export interface BackendActionExecuteRequest {
method: string
method?: string
uriFragments?: string
parameters?: string
headers?: string
Expand Down
2 changes: 1 addition & 1 deletion src/BackendUserCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

import {BackendUser} from "./BackendUser";
export interface BackendUserCreate extends BackendUser {
password: string
password?: string
}
2 changes: 1 addition & 1 deletion src/CommonFormElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

export interface CommonFormElement {
element: string
element?: string
name?: string
title?: string
help?: string
Expand Down
6 changes: 3 additions & 3 deletions src/ConsumerAppCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

export interface ConsumerAppCreate {
name: string
url: string
scopes: Array<string>
name?: string
url?: string
scopes?: Array<string>
}
6 changes: 3 additions & 3 deletions src/ConsumerAppUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

export interface ConsumerAppUpdate {
name: string
url: string
scopes: Array<string>
name?: string
url?: string
scopes?: Array<string>
}
8 changes: 4 additions & 4 deletions src/ConsumerAuthorizeRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
*/

export interface ConsumerAuthorizeRequest {
responseType: string
clientId: string
responseType?: string
clientId?: string
redirectUri?: string
scope: string
scope?: string
state?: string
allow: boolean
allow?: boolean
}
4 changes: 2 additions & 2 deletions src/ConsumerEventSubscriptionCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
*/

export interface ConsumerEventSubscriptionCreate {
event: string
endpoint: string
event?: string
endpoint?: string
}
4 changes: 2 additions & 2 deletions src/ConsumerEventSubscriptionUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
*/

export interface ConsumerEventSubscriptionUpdate {
event: string
endpoint: string
event?: string
endpoint?: string
}
2 changes: 1 addition & 1 deletion src/ConsumerUserActivate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
*/

export interface ConsumerUserActivate {
token: string
token?: string
}
2 changes: 1 addition & 1 deletion src/ConsumerUserEmail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
*/

export interface ConsumerUserEmail {
email: string
email?: string
captcha?: string
}
4 changes: 2 additions & 2 deletions src/ConsumerUserPasswordReset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
*/

export interface ConsumerUserPasswordReset {
token: string
newPassword: string
token?: string
newPassword?: string
}
6 changes: 3 additions & 3 deletions src/ConsumerUserRegister.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/

export interface ConsumerUserRegister {
name: string
email: string
password: string
name?: string
email?: string
password?: string
captcha?: string
}

0 comments on commit 30ceeec

Please sign in to comment.