Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 239
openapi_spec_hash: 85e424bee4fe449466ceada88117613e
openapi_spec_hash: e95ac51d0818ef7b5b5b9f7606d5891b
config_hash: 1ca082e374ef7000e2a5971e8da740e0
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src/resources/inbound-fednow-transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ export interface InboundFednowTransfer {
*/
decline: InboundFednowTransfer.Decline | null;

/**
* A free-form reference string set by the sender, to help identify the transfer.
*/
end_to_end_identification: string | null;

/**
* The lifecycle status of the transfer.
*
Expand All @@ -133,6 +138,11 @@ export interface InboundFednowTransfer {
*/
transaction_id: string | null;

/**
* The FedNow network identification of the transfer.
*/
transaction_identification: string | null;

/**
* A constant representing the object's type. For this resource it will always be
* `inbound_fednow_transfer`.
Expand Down
6 changes: 4 additions & 2 deletions src/resources/physical-cards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ export interface PhysicalCardCreateParams {
card_id: string;

/**
* Details about the cardholder, as it will appear on the physical card.
* Details about the cardholder, as it will appear on the physical card. The
* combined first name and last name cannot exceed 25 characters.
*/
cardholder: PhysicalCardCreateParams.Cardholder;

Expand All @@ -395,7 +396,8 @@ export interface PhysicalCardCreateParams {

export namespace PhysicalCardCreateParams {
/**
* Details about the cardholder, as it will appear on the physical card.
* Details about the cardholder, as it will appear on the physical card. The
* combined first name and last name cannot exceed 25 characters.
*/
export interface Cardholder {
/**
Expand Down
Loading