Skip to content

Commit 0fb38eb

Browse files
committed
conflix
2 parents bf901fb + d712fff commit 0fb38eb

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xero-node",
3-
"version": "3.0.11",
3+
"version": "3.0.12",
44
"description": "NodeJS Client for the Xero API, supporting Public, Private and Partner Apps",
55
"main": "lib/index.js",
66
"scripts": {

src/AccountingAPI-models.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Attachment {
1+
export interface Attachment {
22
AttachmentID: string;
33
FileName: string;
44
Url: string;
@@ -203,6 +203,7 @@ export interface Invoice {
203203
Total?: number;
204204
UpdatedDateUTC?: string;
205205
CurrencyCode?: string;
206+
CurrencyRate?: number;
206207
History?: HistoryRecord[];
207208
}
208209

@@ -241,8 +242,8 @@ export interface HistoryRecord {
241242
Changes?: string;
242243
DateUTCString?: string;
243244
DateUTC?: string;
244-
User?: String;
245-
Details?: String;
245+
User?: string;
246+
Details?: string;
246247
}
247248

248249
export interface Contact {

0 commit comments

Comments
 (0)