squarefi-bff-api-module 1.13.2 → 1.13.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/types.d.ts +3 -2
- package/package.json +1 -1
- package/src/api/types.ts +3 -2
package/dist/api/types.d.ts
CHANGED
|
@@ -396,6 +396,7 @@ export declare namespace API {
|
|
|
396
396
|
interface DestinationListItemExternalCryptoData {
|
|
397
397
|
address: string;
|
|
398
398
|
currency_id: string;
|
|
399
|
+
memo?: string;
|
|
399
400
|
}
|
|
400
401
|
interface DestinationListItemWithExternalBankingData extends DestinationListItemCommonFields {
|
|
401
402
|
type: CounterpartyDestinationType.DOMESTIC_WIRE | CounterpartyDestinationType.ACH | CounterpartyDestinationType.SWIFT | CounterpartyDestinationType.SEPA;
|
|
@@ -463,7 +464,7 @@ export declare namespace API {
|
|
|
463
464
|
type: CounterpartyDestinationType;
|
|
464
465
|
nickname: string;
|
|
465
466
|
external_banking_data?: API.Counterparties.Destination.Detail.DestinationDetailItemExternalBankingData;
|
|
466
|
-
external_crypto_data?: Pick<API.Counterparties.Destination.Detail.DestinationDetailItemExternalCryptoData, 'currency_id' | 'address'>;
|
|
467
|
+
external_crypto_data?: Pick<API.Counterparties.Destination.Detail.DestinationDetailItemExternalCryptoData, 'currency_id' | 'address' | 'memo'>;
|
|
467
468
|
}
|
|
468
469
|
type Response = API.Counterparties.Destination.Detail.DestinationDetailItem;
|
|
469
470
|
}
|
|
@@ -491,11 +492,11 @@ export declare namespace API {
|
|
|
491
492
|
limit?: number;
|
|
492
493
|
sort_by?: 'created_at' | 'nickname' | 'type' | 'email' | 'phone';
|
|
493
494
|
sort_order?: SortingDirection;
|
|
494
|
-
search?: string;
|
|
495
495
|
filter?: {
|
|
496
496
|
type?: CounterpartyDestinationType;
|
|
497
497
|
nickname?: string;
|
|
498
498
|
created_at?: string;
|
|
499
|
+
search?: string;
|
|
499
500
|
};
|
|
500
501
|
}
|
|
501
502
|
type Response = {
|
package/package.json
CHANGED
package/src/api/types.ts
CHANGED
|
@@ -458,6 +458,7 @@ export namespace API {
|
|
|
458
458
|
export interface DestinationListItemExternalCryptoData {
|
|
459
459
|
address: string;
|
|
460
460
|
currency_id: string;
|
|
461
|
+
memo?: string;
|
|
461
462
|
}
|
|
462
463
|
|
|
463
464
|
export interface DestinationListItemWithExternalBankingData extends DestinationListItemCommonFields {
|
|
@@ -556,7 +557,7 @@ export namespace API {
|
|
|
556
557
|
|
|
557
558
|
external_crypto_data?: Pick<
|
|
558
559
|
API.Counterparties.Destination.Detail.DestinationDetailItemExternalCryptoData,
|
|
559
|
-
'currency_id' | 'address'
|
|
560
|
+
'currency_id' | 'address' | 'memo'
|
|
560
561
|
>;
|
|
561
562
|
}
|
|
562
563
|
|
|
@@ -591,11 +592,11 @@ export namespace API {
|
|
|
591
592
|
limit?: number;
|
|
592
593
|
sort_by?: 'created_at' | 'nickname' | 'type' | 'email' | 'phone';
|
|
593
594
|
sort_order?: SortingDirection;
|
|
594
|
-
search?: string;
|
|
595
595
|
filter?: {
|
|
596
596
|
type?: CounterpartyDestinationType;
|
|
597
597
|
nickname?: string;
|
|
598
598
|
created_at?: string;
|
|
599
|
+
search?: string;
|
|
599
600
|
};
|
|
600
601
|
}
|
|
601
602
|
|