Skip to content

Remove stubbing of security.*_user response #397

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions output/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -121700,22 +121700,6 @@
]
},
{
"body": {
"kind": "properties",
"properties": [
{
"name": "stub",
"required": true,
"type": {
"kind": "instance_of",
"type": {
"name": "integer",
"namespace": "_types"
}
}
}
]
},
"kind": "response",
"name": {
"name": "Response",
Expand Down Expand Up @@ -121765,22 +121749,6 @@
]
},
{
"body": {
"kind": "properties",
"properties": [
{
"name": "stub",
"required": true,
"type": {
"kind": "instance_of",
"type": {
"name": "integer",
"namespace": "_types"
}
}
}
]
},
"kind": "response",
"name": {
"name": "Response",
Expand Down
8 changes: 2 additions & 6 deletions output/typescript/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12713,18 +12713,14 @@ export interface SecurityDisableUserRequest extends RequestBase {
refresh?: Refresh
}

export interface SecurityDisableUserResponse {
stub: integer
}
export interface SecurityDisableUserResponse {}

export interface SecurityEnableUserRequest extends RequestBase {
username: Username
refresh?: Refresh
}

export interface SecurityEnableUserResponse {
stub: integer
}
export interface SecurityEnableUserResponse {}

export interface SecurityGetApiKeyApiKeys {
creation: long
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
import { integer } from '@_types/Numeric'

export class Response {
body: { stub: integer }
body: {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
import { integer } from '@_types/Numeric'

export class Response {
body: { stub: integer }
body: {}
}