Working on new openapi spec

This commit is contained in:
David Bomba 2023-02-11 16:27:03 +11:00
parent 9dad9ce94c
commit baa70aa99b
2 changed files with 28 additions and 4 deletions

View File

@ -14955,7 +14955,7 @@ components:
client: client:
$ref: '#/components/schemas/Client' $ref: '#/components/schemas/Client'
contact: contact:
$ref: '#/components/schemas/Contact' $ref: '#/components/schemas/ClientContact'
recurring_invoice: recurring_invoice:
$ref: '#/components/schemas/RecurringInvoice' $ref: '#/components/schemas/RecurringInvoice'
invoice: invoice:
@ -14964,8 +14964,18 @@ components:
$ref: '#/components/schemas/Credit' $ref: '#/components/schemas/Credit'
quote: quote:
$ref: '#/components/schemas/Quote' $ref: '#/components/schemas/Quote'
payment:
$ref: '#/components/schemas/Payment'
expense:
$ref: '#/components/schemas/Expense'
task:
$ref: '#/components/schemas/Task'
purchase_order:
$ref: '#/components/schemas/PurchaseOrder'
vendor:
$ref: '#/components/schemas/Vendor'
vendor_contact:
$ref: '#/components/schemas/VendorContact'
type: object type: object
BTRules: BTRules:
properties: properties:
@ -17516,6 +17526,13 @@ components:
type: string type: string
example: 'New Project' example: 'New Project'
type: object type: object
PurchaseOrder:
properties:
id:
description: 'The purchase order hashed id'
type: string
example: Opnel5aKBz
type: object
Quote: Quote:
properties: properties:
id: id:

View File

@ -78,7 +78,7 @@ components:
client: client:
$ref: '#/components/schemas/Client' $ref: '#/components/schemas/Client'
contact: contact:
$ref: '#/components/schemas/Contact' $ref: '#/components/schemas/ClientContact'
recurring_invoice: recurring_invoice:
$ref: '#/components/schemas/RecurringInvoice' $ref: '#/components/schemas/RecurringInvoice'
invoice: invoice:
@ -2649,6 +2649,13 @@ components:
type: string type: string
example: 'New Project' example: 'New Project'
type: object type: object
PurchaseOrder:
properties:
id:
description: 'The purchase order hashed id'
type: string
example: Opnel5aKBz
type: object
Quote: Quote:
properties: properties:
id: id: