fixes
This commit is contained in:
@ -1175,6 +1175,65 @@ paths:
|
||||
$ref: '#/components/schemas/tenancy_fee_mapping'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
/v1/account_entry_categorys:
|
||||
get:
|
||||
tags: [ "account_entry_category" ]
|
||||
summary: Return all normalized account_entry_categorys
|
||||
operationId: methods.get_account_entry_categorys
|
||||
responses:
|
||||
'200':
|
||||
description: account_entry_categorys response
|
||||
content:
|
||||
'application/json':
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/account_entry_category'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
post:
|
||||
tags: [ "account_entry_category" ]
|
||||
summary: Insert a account_entry_category
|
||||
operationId: methods.insert_account_entry_category
|
||||
requestBody:
|
||||
description: account_entry_category
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/account_entry_category'
|
||||
responses:
|
||||
'200':
|
||||
description: account_entry_category successfully inserted
|
||||
content:
|
||||
'application/json':
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/account_entry_category'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
/v1/account_entry_categorys/{account_entry_categoryId}:
|
||||
get:
|
||||
tags: [ "account_entry_category" ]
|
||||
summary: Return the normalized account_entry_category with given id
|
||||
operationId: methods.get_account_entry_category
|
||||
parameters:
|
||||
- name: account_entry_categoryId
|
||||
in: path
|
||||
required: true
|
||||
schema:
|
||||
type: integer
|
||||
responses:
|
||||
'200':
|
||||
description: account_entry_category response
|
||||
content:
|
||||
'application/json':
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/account_entry_category'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
/v1/account_entrys:
|
||||
get:
|
||||
tags: [ "account_entry" ]
|
||||
@ -1256,6 +1315,28 @@ paths:
|
||||
$ref: '#/components/schemas/account_entry'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
/v1/account_entrys/account_entry_category/{account_entry_categoryId}:
|
||||
get:
|
||||
tags: [ "account_entry", "account_entry_category" ]
|
||||
summary: Return account_entry by $account_entry_category
|
||||
operationId: methods.get_account_entry_by_account_entry_category
|
||||
parameters:
|
||||
- name: account_entry_categoryId
|
||||
in: path
|
||||
required: true
|
||||
schema:
|
||||
type: integer
|
||||
responses:
|
||||
'200':
|
||||
description: account_entry response
|
||||
content:
|
||||
'application/json':
|
||||
schema:
|
||||
type: array
|
||||
items:
|
||||
$ref: '#/components/schemas/account_entry'
|
||||
security:
|
||||
- jwt: ['secret']
|
||||
/v1/notes:
|
||||
get:
|
||||
tags: [ "note" ]
|
||||
@ -1578,6 +1659,16 @@ components:
|
||||
type: integer
|
||||
fee:
|
||||
type: integer
|
||||
account_entry_category:
|
||||
description: account_entry_category
|
||||
type: object
|
||||
properties:
|
||||
id:
|
||||
type: integer
|
||||
description:
|
||||
type: string
|
||||
overhead_relevant:
|
||||
type: boolean
|
||||
account_entry:
|
||||
description: account_entry
|
||||
type: object
|
||||
@ -1592,6 +1683,8 @@ components:
|
||||
type: string
|
||||
amount:
|
||||
type: number
|
||||
account_entry_category:
|
||||
type: integer
|
||||
note:
|
||||
description: note
|
||||
type: object
|
||||
|
Reference in New Issue
Block a user