squarefi-bff-api-module 1.32.6 → 1.32.7
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/constants.d.ts +4 -0
- package/dist/constants.js +14 -0
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -298,6 +298,10 @@ export declare enum CounterpartyDestinationType {
|
|
|
298
298
|
CHAPS = "CHAPS",
|
|
299
299
|
FPS = "FPS"
|
|
300
300
|
}
|
|
301
|
+
export declare const counterpartyBankingDestinationTypes: Record<API.Counterparties.Destination.BankingDestinationType, CounterpartyDestinationType>;
|
|
302
|
+
export declare const counterpartyCryptoDestinationTypes: Record<API.Counterparties.Destination.CryptoDestinationType, CounterpartyDestinationType>;
|
|
303
|
+
export declare const counterpartyCryptoDestinationTypesValues: API.Counterparties.Destination.CryptoDestinationType[];
|
|
304
|
+
export declare const counterpartyBankingDestinationTypesValues: API.Counterparties.Destination.BankingDestinationType[];
|
|
301
305
|
export declare const counterpartyBankingAndCryptoDestinationTypeCheck: IsEnumEqualToUnion<API.Counterparties.Destination.CounterpartyDestinationType, API.Counterparties.Destination.DestinationType>;
|
|
302
306
|
export type CounterpartyBankingAndCryptoDestinationTypeMismatch = EnumUnionMismatch<API.Counterparties.Destination.CounterpartyDestinationType, API.Counterparties.Destination.DestinationType>;
|
|
303
307
|
export declare const counterpartyDestinationTypeCheck: IsEnumEqualToUnion<CounterpartyDestinationType, API.Counterparties.Destination.CounterpartyDestinationType>;
|
package/dist/constants.js
CHANGED
|
@@ -323,6 +323,20 @@ export var CounterpartyDestinationType;
|
|
|
323
323
|
CounterpartyDestinationType["CHAPS"] = "CHAPS";
|
|
324
324
|
CounterpartyDestinationType["FPS"] = "FPS";
|
|
325
325
|
})(CounterpartyDestinationType || (CounterpartyDestinationType = {}));
|
|
326
|
+
export const counterpartyBankingDestinationTypes = {
|
|
327
|
+
FEDWIRE: CounterpartyDestinationType.FEDWIRE,
|
|
328
|
+
ACH: CounterpartyDestinationType.ACH,
|
|
329
|
+
SWIFT: CounterpartyDestinationType.SWIFT,
|
|
330
|
+
SEPA: CounterpartyDestinationType.SEPA,
|
|
331
|
+
CHAPS: CounterpartyDestinationType.CHAPS,
|
|
332
|
+
FPS: CounterpartyDestinationType.FPS,
|
|
333
|
+
};
|
|
334
|
+
export const counterpartyCryptoDestinationTypes = {
|
|
335
|
+
CRYPTO_EXTERNAL: CounterpartyDestinationType.CRYPTO_EXTERNAL,
|
|
336
|
+
CRYPTO_INTERNAL: CounterpartyDestinationType.CRYPTO_INTERNAL,
|
|
337
|
+
};
|
|
338
|
+
export const counterpartyCryptoDestinationTypesValues = Object.keys(counterpartyCryptoDestinationTypes).map((key) => key);
|
|
339
|
+
export const counterpartyBankingDestinationTypesValues = Object.keys(counterpartyBankingDestinationTypes).map((key) => key);
|
|
326
340
|
export const counterpartyBankingAndCryptoDestinationTypeCheck = true;
|
|
327
341
|
export const counterpartyDestinationTypeCheck = true;
|
|
328
342
|
export var CardTransactionStatus;
|