Skip to content

Commit ab4b657

Browse files
authored
Merge branch 'master' into brc-10702-expose-dates-associations
2 parents feb2940 + ea73626 commit ab4b657

13 files changed

Lines changed: 33 additions & 13 deletions

xero-app-store.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero AppStore API
55
description: These endpoints are for Xero Partners to interact with the App Store Billing platform
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-finance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero Finance API
55
description: The Finance API is a collection of endpoints which customers can use in the course of a loan application, which may assist lenders to gain the confidence they need to provide capital.
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-identity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero OAuth 2 Identity Service API
55
description: These endpoints are related to managing authentication tokens and identity for Xero API
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-payroll-au-v2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero Payroll AU API 2.0
55
description: This is the Xero Payroll API 2.0 for orgs in Australia region.
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-payroll-au.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero Payroll AU API
55
description: This is the Xero Payroll API for orgs in Australia region.
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-payroll-nz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: "Xero Payroll NZ"
55
description: "This is the Xero Payroll API for orgs in the NZ region."
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-payroll-uk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: "Xero Payroll UK"
55
description: "This is the Xero Payroll API for orgs in the UK region."
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-projects.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: 11.1.0
3+
version: 12.0.0
44
title: Xero Projects API
55
description: This is the Xero Projects API
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/

xero-webhooks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.1.1
22
info:
33
description: The Xero Webhooks API exposes event notifications relating to entities in the Xero Public API and can be used for a variety of purposes
44
title: Xero Webhooks API
5-
version: 11.1.0
5+
version: 12.0.0
66
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/
77
contact:
88
name: Xero Platform Team

xero_accounting.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.0
22
info:
33
title: Xero Accounting API
4-
version: 11.1.0
4+
version: 12.0.0
55
termsOfService: https://developer.xero.com/xero-developer-platform-terms-conditions/
66
contact:
77
name: Xero Platform Team
@@ -12577,6 +12577,20 @@ paths:
1257712577
type: integer
1257812578
- $ref: "#/components/parameters/unitdp"
1257912579
- $ref: "#/components/parameters/pageSize"
12580+
- in: query
12581+
name: InvoiceNumbers
12582+
x-snake: invoice_numbers
12583+
description: Filter by a comma-separated list of InvoiceNumbers
12584+
style: form
12585+
explode: false
12586+
example: ""INV-001", "INV-002""
12587+
x-example-java: Arrays.asList("INV-001","INV-002")
12588+
x-example-php: ""INV-001", "INV-002""
12589+
x-example-csharp: new List<string>{"INV-001","INV-002"}
12590+
schema:
12591+
type: array
12592+
items:
12593+
type: string
1258012594
responses:
1258112595
"200":
1258212596
description: Success - return response of type Prepayments array for all Prepayment
@@ -12599,6 +12613,7 @@ paths:
1259912613
ID: ce0cddef-cf5a-4e59-b638-f225679115a7
1260012614
Type: RECEIVE-PREPAYMENT
1260112615
Reference: INV-0011
12616+
InvoiceNumber: INV-0011
1260212617
RemainingCredit: 3450.00
1260312618
Allocations: []
1260412619
Payments: []
@@ -12653,6 +12668,7 @@ paths:
1265312668
CurrencyRate: 1.000000
1265412669
Type: RECEIVE-PREPAYMENT
1265512670
Reference: INV-0011
12671+
InvoiceNumber: INV-0011
1265612672
RemainingCredit: 3449.00
1265712673
Allocations:
1265812674
- Amount: 1.00
@@ -23932,6 +23948,10 @@ components:
2393223948
description: Returns Invoice number field. Reference field isn't available.
2393323949
type: string
2393423950
readOnly: true
23951+
InvoiceNumber:
23952+
description: Returns Invoice number for prepayment receive document only.
23953+
type: string
23954+
readOnly: true
2393523955
UpdatedDateUTC:
2393623956
description: UTC timestamp of last update to the prepayment
2393723957
type: string

0 commit comments

Comments
 (0)