Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix: Add missing documentation for paymentTermId (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles authored Aug 8, 2023
1 parent e30f590 commit 1ca38ff
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.17.1

- Added `paymentTermId` to `#/components/schemas/Vendor`.
- Added `paymentTermId` to `#/components/schemas/VendorUpsert`.
- Added `paymentTermId` to `#/components/schemas/VendorCallback`.

## v0.17.0

- Allow nullable `productNumber` for `#/components/schemas/CreatePurchaseOrderItem`.
Expand Down
14 changes: 13 additions & 1 deletion vic.api.v0.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.3
info:
version: 0.17.0
version: 0.17.1
contact: {}
title: Vic.Api
description: |
Expand Down Expand Up @@ -3624,6 +3624,10 @@ components:
$ref: '#/components/schemas/VendorTaxInfo'
defaultPaymentInfo:
$ref: "#/components/schemas/PaymentInfo"
paymentTermId:
description: The id of the `PaymentTerm` a vendor uses.
type: string
nullable: true
externalData:
allOf:
- $ref: '#/components/schemas/ExternalData'
Expand Down Expand Up @@ -3688,6 +3692,10 @@ components:
$ref: '#/components/schemas/VendorTaxInfo'
defaultPaymentInfo:
$ref: "#/components/schemas/PaymentInfo"
paymentTermId:
description: The id of the `PaymentTerm` a vendor uses.
type: string
nullable: true
externalData:
allOf:
- $ref: '#/components/schemas/ExternalData'
Expand Down Expand Up @@ -3755,6 +3763,10 @@ components:
$ref: '#/components/schemas/VendorTaxInfo'
defaultPaymentInfo:
$ref: "#/components/schemas/PaymentInfo"
paymentTermId:
description: The id of the `PaymentTerm` a vendor uses.
type: string
nullable: true
externalData:
allOf:
- $ref: '#/components/schemas/ExternalData'
Expand Down

0 comments on commit 1ca38ff

Please sign in to comment.