@favid-inc/api
Advanced tools
Comparing version 4.2.11 to 4.2.12
@@ -1,19 +0,12 @@ | ||
export declare type TransactionPaymentMethod = { | ||
payment_method: "boleto"; | ||
installments?: 1; | ||
export interface TransactionPaymentMethod { | ||
boleto_expiration_date?: string; | ||
boleto_instructions?: string; | ||
} | { | ||
payment_method: "credit_card"; | ||
card_holder_name: string; | ||
card_number: string; | ||
card_cvv: string; | ||
card_expiration_date: string; | ||
card_cvv: string; | ||
installments: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; | ||
} | { | ||
payment_method: "credit_card"; | ||
card_hash: string; | ||
} | { | ||
payment_method: "credit_card"; | ||
card_holder_name: string; | ||
card_id: string; | ||
}; | ||
card_number: string; | ||
installments?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12; | ||
payment_method: "boleto" | "credit_card"; | ||
} |
{ | ||
"name": "@favid-inc/api", | ||
"version": "4.2.11", | ||
"version": "4.2.12", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
30279
1022