Skip to content

Commit 9397d0a

Browse files
authored
remove stub (#397)
1 parent 5293bce commit 9397d0a

File tree

4 files changed

+4
-40
lines changed

4 files changed

+4
-40
lines changed

output/schema/schema.json

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -121700,22 +121700,6 @@
121700121700
]
121701121701
},
121702121702
{
121703-
"body": {
121704-
"kind": "properties",
121705-
"properties": [
121706-
{
121707-
"name": "stub",
121708-
"required": true,
121709-
"type": {
121710-
"kind": "instance_of",
121711-
"type": {
121712-
"name": "integer",
121713-
"namespace": "_types"
121714-
}
121715-
}
121716-
}
121717-
]
121718-
},
121719121703
"kind": "response",
121720121704
"name": {
121721121705
"name": "Response",
@@ -121765,22 +121749,6 @@
121765121749
]
121766121750
},
121767121751
{
121768-
"body": {
121769-
"kind": "properties",
121770-
"properties": [
121771-
{
121772-
"name": "stub",
121773-
"required": true,
121774-
"type": {
121775-
"kind": "instance_of",
121776-
"type": {
121777-
"name": "integer",
121778-
"namespace": "_types"
121779-
}
121780-
}
121781-
}
121782-
]
121783-
},
121784121752
"kind": "response",
121785121753
"name": {
121786121754
"name": "Response",

output/typescript/types.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12713,18 +12713,14 @@ export interface SecurityDisableUserRequest extends RequestBase {
1271312713
refresh?: Refresh
1271412714
}
1271512715

12716-
export interface SecurityDisableUserResponse {
12717-
stub: integer
12718-
}
12716+
export interface SecurityDisableUserResponse {}
1271912717

1272012718
export interface SecurityEnableUserRequest extends RequestBase {
1272112719
username: Username
1272212720
refresh?: Refresh
1272312721
}
1272412722

12725-
export interface SecurityEnableUserResponse {
12726-
stub: integer
12727-
}
12723+
export interface SecurityEnableUserResponse {}
1272812724

1272912725
export interface SecurityGetApiKeyApiKeys {
1273012726
creation: long

specification/security/disable_user/SecurityDisableUserResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
import { integer } from '@_types/Numeric'
2121

2222
export class Response {
23-
body: { stub: integer }
23+
body: {}
2424
}

specification/security/enable_user/SecurityEnableUserResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
import { integer } from '@_types/Numeric'
2121

2222
export class Response {
23-
body: { stub: integer }
23+
body: {}
2424
}

0 commit comments

Comments
 (0)