Skip to content

Commit

Permalink
Merge pull request #61 from elias-summermatter/master
Browse files Browse the repository at this point in the history
Fixes wrong types in invoice create
  • Loading branch information
mathewmeconry authored Dec 20, 2023
2 parents 8b5cb49 + 94c44bf commit 3f94668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/InvoicesStatic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export namespace InvoicesStatic {
"show_position_taxes"?: boolean,
"is_valid_from"?: string,
"is_valid_to"?: string,
"reference"?: null,
"api_reference"?: null,
"reference"?: string|null,
"api_reference"?: string|null,
"template_slug"?: string,
"positions": PositionStatic.PositionCreate[]
}
Expand Down

0 comments on commit 3f94668

Please sign in to comment.