Skip to content

Commit

Permalink
Merge pull request #56 from TraLeeee/fixin/traleeee/missin-statement-…
Browse files Browse the repository at this point in the history
…type

Update type 'misc' in Statement object
  • Loading branch information
nonz250 authored Jul 10, 2024
2 parents 7602c10 + a1a3dcc commit 9223d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ namespace Payjp {
source_transfer?: string,
tenant?: string,
term?: string,
type?: "sales" | "service_fee" | "transfer_fee",
type?: "sales" | "service_fee" | "transfer_fee" | "misc",
}

export interface TermListOptions extends PaginationOptions {
Expand Down Expand Up @@ -449,7 +449,7 @@ namespace Payjp {
object: "statement",
title: string,
tenant_id: string,
type: "sales" | "service_fee" | "transfer_fee",
type: "sales" | "service_fee" | "transfer_fee" | "misc",
net: number,
term: Term | null,
balance_id: string,
Expand Down

0 comments on commit 9223d10

Please sign in to comment.