Skip to content

Commit

Permalink
Fixes wrong types in invoice create
Browse files Browse the repository at this point in the history
  • Loading branch information
elias-summermatter committed Dec 8, 2023
1 parent 8b5cb49 commit 94c44bf
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 94c44bf

Please sign in to comment.