vaults-multichain-sdk 1.3.0 → 1.5.0
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/index.cjs +2 -2
- package/dist/index.d.cts +53 -6
- package/dist/index.d.ts +53 -6
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -717,10 +717,19 @@ interface AddressBookEntry {
|
|
|
717
717
|
interface AddressTypeResponse {
|
|
718
718
|
type: AddressBookEntryType | null;
|
|
719
719
|
}
|
|
720
|
-
/** Org member role as returned by the API
|
|
721
|
-
|
|
720
|
+
/** Org member role as returned by the API. */
|
|
721
|
+
declare enum EOrgMemberRole {
|
|
722
|
+
MASTER = "master",
|
|
723
|
+
EMPLOYEE = "employee"
|
|
724
|
+
}
|
|
722
725
|
/** Org member account status as returned by the API. */
|
|
723
|
-
|
|
726
|
+
declare enum EOrgMemberStatus {
|
|
727
|
+
ACTIVE = "active",
|
|
728
|
+
PENDING = "pending",
|
|
729
|
+
DECLINED = "declined",
|
|
730
|
+
BLOCKED = "blocked",
|
|
731
|
+
REMOVED = "removed"
|
|
732
|
+
}
|
|
724
733
|
/**
|
|
725
734
|
* Individual KYC verification status for an org member.
|
|
726
735
|
* `null` is returned when the invite has not been accepted yet.
|
|
@@ -734,8 +743,8 @@ type OrgMemberKycStatus = "new" | "pending" | "verified" | "failed" | "expired";
|
|
|
734
743
|
interface OrgTeamMember {
|
|
735
744
|
id: string;
|
|
736
745
|
email: string;
|
|
737
|
-
role:
|
|
738
|
-
status:
|
|
746
|
+
role: EOrgMemberRole;
|
|
747
|
+
status: EOrgMemberStatus;
|
|
739
748
|
userId: string | null;
|
|
740
749
|
userName: string | null;
|
|
741
750
|
kycStatus: OrgMemberKycStatus | null;
|
|
@@ -1037,6 +1046,25 @@ interface GetOrgAuditLogsInput {
|
|
|
1037
1046
|
eventTypes?: OrgAuditEventType[];
|
|
1038
1047
|
actorId?: string;
|
|
1039
1048
|
}
|
|
1049
|
+
/** Response of `GET /sdk/organization/me`. */
|
|
1050
|
+
interface OrgMeResponse {
|
|
1051
|
+
organizationName: string;
|
|
1052
|
+
orgMemberStatus: EOrgMemberStatus;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* Query of `GET /sdk/organization/audit-logs/export`.
|
|
1056
|
+
*
|
|
1057
|
+
* Same filter shape as `GetOrgAuditLogsInput` but without pagination — the
|
|
1058
|
+
* export returns the full filtered result set as a streamed CSV. `eventTypes`
|
|
1059
|
+
* is serialized using OpenAPI's default array form (`style: form, explode:
|
|
1060
|
+
* true`) — i.e. repeated keys: `?eventTypes=Login&eventTypes=Wallet+Created`.
|
|
1061
|
+
*/
|
|
1062
|
+
interface ExportOrgAuditLogsInput {
|
|
1063
|
+
dateFrom?: string;
|
|
1064
|
+
dateTo?: string;
|
|
1065
|
+
eventTypes?: OrgAuditEventType[];
|
|
1066
|
+
actorId?: string;
|
|
1067
|
+
}
|
|
1040
1068
|
/**
|
|
1041
1069
|
* Input for estimateFee
|
|
1042
1070
|
*/
|
|
@@ -1921,6 +1949,25 @@ declare class AfridaxSDK {
|
|
|
1921
1949
|
* production (see `docs/api-contract-clarifications.md`).
|
|
1922
1950
|
*/
|
|
1923
1951
|
getOrgAuditLogs(input?: GetOrgAuditLogsInput): Promise<OrgAuditLogsResponse>;
|
|
1952
|
+
/**
|
|
1953
|
+
* 7.15 Stream the org's audit log as CSV. Master-only; the calling API
|
|
1954
|
+
* key must include the `audit_log_access` permission.
|
|
1955
|
+
*
|
|
1956
|
+
* Server route: `GET /sdk/organization/audit-logs/export`. Same filter
|
|
1957
|
+
* shape as `getOrgAuditLogs` but the full filtered result set is
|
|
1958
|
+
* returned as a CSV attachment (no pagination). Resolves with the raw
|
|
1959
|
+
* fetch `Response` so the caller can stream `.body` to disk (Node) or
|
|
1960
|
+
* hand `.blob()` to the browser.
|
|
1961
|
+
*/
|
|
1962
|
+
exportOrgAuditLogs(input?: ExportOrgAuditLogsInput): Promise<Response>;
|
|
1963
|
+
/**
|
|
1964
|
+
* 7.16 Current org name + caller's membership status. Allowed for both
|
|
1965
|
+
* MASTER and EMPLOYEE. Useful on SDK init to detect a removed/blocked
|
|
1966
|
+
* member before issuing any other call.
|
|
1967
|
+
*
|
|
1968
|
+
* Server route: `GET /sdk/organization/me`.
|
|
1969
|
+
*/
|
|
1970
|
+
getOrgMe(): Promise<OrgMeResponse>;
|
|
1924
1971
|
}
|
|
1925
1972
|
|
|
1926
1973
|
declare const MEMO_MAX_LENGTH = 200;
|
|
@@ -2165,4 +2212,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2165
2212
|
*/
|
|
2166
2213
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2167
2214
|
|
|
2168
|
-
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type
|
|
2215
|
+
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|
package/dist/index.d.ts
CHANGED
|
@@ -717,10 +717,19 @@ interface AddressBookEntry {
|
|
|
717
717
|
interface AddressTypeResponse {
|
|
718
718
|
type: AddressBookEntryType | null;
|
|
719
719
|
}
|
|
720
|
-
/** Org member role as returned by the API
|
|
721
|
-
|
|
720
|
+
/** Org member role as returned by the API. */
|
|
721
|
+
declare enum EOrgMemberRole {
|
|
722
|
+
MASTER = "master",
|
|
723
|
+
EMPLOYEE = "employee"
|
|
724
|
+
}
|
|
722
725
|
/** Org member account status as returned by the API. */
|
|
723
|
-
|
|
726
|
+
declare enum EOrgMemberStatus {
|
|
727
|
+
ACTIVE = "active",
|
|
728
|
+
PENDING = "pending",
|
|
729
|
+
DECLINED = "declined",
|
|
730
|
+
BLOCKED = "blocked",
|
|
731
|
+
REMOVED = "removed"
|
|
732
|
+
}
|
|
724
733
|
/**
|
|
725
734
|
* Individual KYC verification status for an org member.
|
|
726
735
|
* `null` is returned when the invite has not been accepted yet.
|
|
@@ -734,8 +743,8 @@ type OrgMemberKycStatus = "new" | "pending" | "verified" | "failed" | "expired";
|
|
|
734
743
|
interface OrgTeamMember {
|
|
735
744
|
id: string;
|
|
736
745
|
email: string;
|
|
737
|
-
role:
|
|
738
|
-
status:
|
|
746
|
+
role: EOrgMemberRole;
|
|
747
|
+
status: EOrgMemberStatus;
|
|
739
748
|
userId: string | null;
|
|
740
749
|
userName: string | null;
|
|
741
750
|
kycStatus: OrgMemberKycStatus | null;
|
|
@@ -1037,6 +1046,25 @@ interface GetOrgAuditLogsInput {
|
|
|
1037
1046
|
eventTypes?: OrgAuditEventType[];
|
|
1038
1047
|
actorId?: string;
|
|
1039
1048
|
}
|
|
1049
|
+
/** Response of `GET /sdk/organization/me`. */
|
|
1050
|
+
interface OrgMeResponse {
|
|
1051
|
+
organizationName: string;
|
|
1052
|
+
orgMemberStatus: EOrgMemberStatus;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* Query of `GET /sdk/organization/audit-logs/export`.
|
|
1056
|
+
*
|
|
1057
|
+
* Same filter shape as `GetOrgAuditLogsInput` but without pagination — the
|
|
1058
|
+
* export returns the full filtered result set as a streamed CSV. `eventTypes`
|
|
1059
|
+
* is serialized using OpenAPI's default array form (`style: form, explode:
|
|
1060
|
+
* true`) — i.e. repeated keys: `?eventTypes=Login&eventTypes=Wallet+Created`.
|
|
1061
|
+
*/
|
|
1062
|
+
interface ExportOrgAuditLogsInput {
|
|
1063
|
+
dateFrom?: string;
|
|
1064
|
+
dateTo?: string;
|
|
1065
|
+
eventTypes?: OrgAuditEventType[];
|
|
1066
|
+
actorId?: string;
|
|
1067
|
+
}
|
|
1040
1068
|
/**
|
|
1041
1069
|
* Input for estimateFee
|
|
1042
1070
|
*/
|
|
@@ -1921,6 +1949,25 @@ declare class AfridaxSDK {
|
|
|
1921
1949
|
* production (see `docs/api-contract-clarifications.md`).
|
|
1922
1950
|
*/
|
|
1923
1951
|
getOrgAuditLogs(input?: GetOrgAuditLogsInput): Promise<OrgAuditLogsResponse>;
|
|
1952
|
+
/**
|
|
1953
|
+
* 7.15 Stream the org's audit log as CSV. Master-only; the calling API
|
|
1954
|
+
* key must include the `audit_log_access` permission.
|
|
1955
|
+
*
|
|
1956
|
+
* Server route: `GET /sdk/organization/audit-logs/export`. Same filter
|
|
1957
|
+
* shape as `getOrgAuditLogs` but the full filtered result set is
|
|
1958
|
+
* returned as a CSV attachment (no pagination). Resolves with the raw
|
|
1959
|
+
* fetch `Response` so the caller can stream `.body` to disk (Node) or
|
|
1960
|
+
* hand `.blob()` to the browser.
|
|
1961
|
+
*/
|
|
1962
|
+
exportOrgAuditLogs(input?: ExportOrgAuditLogsInput): Promise<Response>;
|
|
1963
|
+
/**
|
|
1964
|
+
* 7.16 Current org name + caller's membership status. Allowed for both
|
|
1965
|
+
* MASTER and EMPLOYEE. Useful on SDK init to detect a removed/blocked
|
|
1966
|
+
* member before issuing any other call.
|
|
1967
|
+
*
|
|
1968
|
+
* Server route: `GET /sdk/organization/me`.
|
|
1969
|
+
*/
|
|
1970
|
+
getOrgMe(): Promise<OrgMeResponse>;
|
|
1924
1971
|
}
|
|
1925
1972
|
|
|
1926
1973
|
declare const MEMO_MAX_LENGTH = 200;
|
|
@@ -2165,4 +2212,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2165
2212
|
*/
|
|
2166
2213
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2167
2214
|
|
|
2168
|
-
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type
|
|
2215
|
+
export { type ActivateMultisigInput, type ActivateMultisigOutput, type ActivateXrpTrustLineInput, type ActivateXrpTrustLineOutput, type AdaNativeInstruction, type AdaTokenInstruction, type AddOrgAddressResponse, type AddressBookEntry, type AddressBookEntryType, type AddressTypeResponse, AfridaxBaseError, AfridaxSDK, ApiError, type AssignOrgWalletInput, type AssignOrgWalletResponse, type ChainIdValue, ChainNotSupportedError, type ChainType, type CreateAddressBookEntryInput, type CreateMultisigInput, type CreateOrderInput, type CreateOrderOutput, type CreateOrgAddressInput, type CreateOrgWalletInput, type CreateWalletInput, type CreateWalletOutput, type CreateWalletResponse, type DeleteAddressBookEntryInput, type DeleteMultisigInput, type DeleteOrderInput, type DeleteOrgAddressBookEntryInput, type DeleteOrgWalletInput, type DeleteResponse, type DeleteWalletInput, EAdaInstructionType, EAddressBookEntryType, EChainType, EOrgMemberRole, EOrgMemberStatus, EXrpOrderType, type EstimateActivationFeeInput, type EstimateFeeInput, type EstimateOrderExecutionFeeInput, type EstimatedFee, type ExecuteOrderInput, type ExecuteOrderOutput, type ExportOrgAuditLogsInput, type ExportWalletInput, type ExportWalletOutput, type GetAddressBookEntriesInput, type GetAddressTypeInput, type GetMultisigByIdInput, type GetMultisigTxHistoryInput, type GetMultisigsInput, type GetOrderByIdInput, type GetOrdersInput, type GetOrgAuditLogsInput, type GetOrgVaultByIdInput, type GetOrgWalletInput, type GetOrgWalletPortfolioInput, type GetOrgWalletUtxosInput, type GetPaginatedMultisigsInput, type GetPortfolioInput, type GetSupportedTokensInput, type GetWalletHistoryInput, type GetWalletInput, type GetWalletsInput, type GetXrpAccountReserveInput, type GetXrpTrustLinesInput, type GroupedMultisigResponseDTO, type HistoryResponse, type ImportWalletInput, InsufficientBalanceError, InvalidInputError, type InviteOrgMemberInput, type InviteOrgMemberResponse, KeyMismatchError, type ListOrgMemberWalletsInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigsItem, NetworkError, NotFoundError, ORG_POLICY_CODES, type Order, type OrderInstruction, type OrderMethodType, type OrderParamsAda, type OrderParamsXrp, type OrderSigner, OrderStatus, type OrgAddressBookEntry, type OrgAddressRecipientType, type OrgAddressWalletType, type OrgAuditEventType, type OrgAuditLogItem, type OrgAuditLogsResponse, type OrgLimitGroup, type OrgLimitGroupChainLimit, type OrgLimitGroupEnvelopeResponse, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgTeamDirectoryResponse, type OrgTeamMember, type OrgVaultItem, type OrgVaultsResponse, type OrgWalletItem, type OrgWalletUtxosResponse, type OrgWalletsResponse, type PaginatedMultisigsWithTokensResponse, type PaginatedOrdersResponse, type PaginatedWalletsResponse, PermissionDeniedError, type RejectOrderInput, type RemoveOrgMemberInput, type RenameOrgWalletInput, type SDKConfig, type SendTransactionInput, type SendTransactionOutput, type SignOrderInput, type SignOrderOutput, type SingleWalletDetailsResponse, StatusFilterEnum, type SupportedTokensResponse, type TAdaCommandInstruction, type TWallet, type TXrpCommandInstruction, type TokenInfo, type TotalAssetValueResponse, TransactionEstimatingType, type TransactionHistoryItem, type TxHistoryCombinedResponse, type UnassignOrgWalletInput, UnauthorizedError, type UpdateAddressBookEntryInput, type UpdateMultisigNameInput, type UpdateOrgAddressBookEntryInput, type UpdateOrgAddressInput, type UpdateOrgPolicyInput, type UpdateWalletNameInput, type WalletPortfolioResponse, type WalletRenameResponse, XRP_MAX_DESTINATION_TAG, type XrpAccountReserveInfo, type XrpAssetInstruction, type XrpChangeThresholdInstruction, type XrpNativeInstruction, type XrpRemoveTrustLineInstruction, type XrpSetTrustLineInstruction, type TrustLineInfo as XrpTrustLineInfo, type XrpUpdateOwnerThresholdInstruction, type XrpUpdateOwnersInstruction, AfridaxSDK as default, getBtcChainType, getMemoPlaceholder, isAfridaxError, isMemoSupported, validateMemo };
|