vaults-multichain-sdk 1.7.4 → 1.7.6
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 +38 -3
- package/dist/index.d.ts +38 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -842,6 +842,12 @@ interface OrgWalletItem {
|
|
|
842
842
|
/** Response of org wallet list endpoints. */
|
|
843
843
|
interface OrgWalletsResponse {
|
|
844
844
|
wallets: OrgWalletItem[];
|
|
845
|
+
/** Total matching rows; present only when the request was paginated. */
|
|
846
|
+
total?: number;
|
|
847
|
+
/** Current page; present only when the request was paginated. */
|
|
848
|
+
page?: number;
|
|
849
|
+
/** Items per page; present only when the request was paginated. */
|
|
850
|
+
limit?: number;
|
|
845
851
|
}
|
|
846
852
|
/**
|
|
847
853
|
* `GET /sdk/organization/wallets/me` — wallets assigned to the calling member
|
|
@@ -880,6 +886,12 @@ interface OrgMyVaultsResponse {
|
|
|
880
886
|
/** Response of `GET /sdk/organization/vaults` (Master-only). */
|
|
881
887
|
interface OrgVaultsResponse {
|
|
882
888
|
vaults: OrgVaultItem[];
|
|
889
|
+
/** Total matching rows; present only when the request was paginated. */
|
|
890
|
+
total?: number;
|
|
891
|
+
/** Current page; present only when the request was paginated. */
|
|
892
|
+
page?: number;
|
|
893
|
+
/** Items per page; present only when the request was paginated. */
|
|
894
|
+
limit?: number;
|
|
883
895
|
}
|
|
884
896
|
/** Per-chain wallet/vault quota inside an `OrgLimitGroup`. */
|
|
885
897
|
interface OrgLimitGroupChainLimit {
|
|
@@ -1163,6 +1175,19 @@ interface GetPaginatedMultisigsInput {
|
|
|
1163
1175
|
/** Serialized as comma-separated chain types (e.g. EVM,SOL). */
|
|
1164
1176
|
chainTypes?: EChainType[];
|
|
1165
1177
|
}
|
|
1178
|
+
/**
|
|
1179
|
+
* Opt-in pagination/filter for the org wallet & vault list endpoints
|
|
1180
|
+
* (`GET /sdk/organization/wallets`, `GET /sdk/organization/vaults`). Omit
|
|
1181
|
+
* `page` & `limit` to receive the full list (legacy behavior, no pagination
|
|
1182
|
+
* metadata); pass them to receive a page plus `total`/`page`/`limit`.
|
|
1183
|
+
* `chainTypes` filters in both modes and is serialized as comma-separated
|
|
1184
|
+
* chain types (e.g. EVM,SOL).
|
|
1185
|
+
*/
|
|
1186
|
+
interface OrgListPaginationInput {
|
|
1187
|
+
page?: number;
|
|
1188
|
+
limit?: number;
|
|
1189
|
+
chainTypes?: EChainType[];
|
|
1190
|
+
}
|
|
1166
1191
|
/**
|
|
1167
1192
|
* Input for activateMultisig
|
|
1168
1193
|
*/
|
|
@@ -1908,9 +1933,14 @@ declare class AfridaxSDK {
|
|
|
1908
1933
|
* 7.7 List all wallets/vaults owned by the organization (available for
|
|
1909
1934
|
* assignment to members). Master-only.
|
|
1910
1935
|
*
|
|
1936
|
+
* Pagination is opt-in: call with no input (or omit `page`/`limit`) to get
|
|
1937
|
+
* the full list (legacy behavior, no `total`/`page`/`limit`); pass `page`
|
|
1938
|
+
* and `limit` to get a page plus that metadata. `chainTypes` filters in
|
|
1939
|
+
* both modes.
|
|
1940
|
+
*
|
|
1911
1941
|
* Server route: `GET /sdk/organization/wallets`.
|
|
1912
1942
|
*/
|
|
1913
|
-
listOrgWallets(): Promise<OrgWalletsResponse>;
|
|
1943
|
+
listOrgWallets(input?: OrgListPaginationInput): Promise<OrgWalletsResponse>;
|
|
1914
1944
|
/**
|
|
1915
1945
|
* List wallets assigned to the calling member within their active
|
|
1916
1946
|
* organization. Available to Master or Employee accounts.
|
|
@@ -1931,9 +1961,14 @@ declare class AfridaxSDK {
|
|
|
1931
1961
|
* of personal ownership. **Master-only** — Employees receive
|
|
1932
1962
|
* `PermissionDeniedError`.
|
|
1933
1963
|
*
|
|
1964
|
+
* Pagination is opt-in: call with no input (or omit `page`/`limit`) to get
|
|
1965
|
+
* the full list (legacy behavior, no `total`/`page`/`limit`); pass `page`
|
|
1966
|
+
* and `limit` to get a page plus that metadata. `chainTypes` filters in
|
|
1967
|
+
* both modes.
|
|
1968
|
+
*
|
|
1934
1969
|
* Server route: `GET /sdk/organization/vaults`.
|
|
1935
1970
|
*/
|
|
1936
|
-
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1971
|
+
listOrgVaults(input?: OrgListPaginationInput): Promise<OrgVaultsResponse>;
|
|
1937
1972
|
/**
|
|
1938
1973
|
* Full-detail list of every org vault on a single chain. Each entry
|
|
1939
1974
|
* exposes the same `MultisigsItem` shape as the personal paginated list,
|
|
@@ -2373,4 +2408,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2373
2408
|
*/
|
|
2374
2409
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2375
2410
|
|
|
2376
|
-
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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 GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, 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, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, 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 OrgSpendingLimitStatus, 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, type WalletScope, 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 };
|
|
2411
|
+
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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 GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, 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, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, 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 OrgListPaginationInput, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, 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, type WalletScope, 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
|
@@ -842,6 +842,12 @@ interface OrgWalletItem {
|
|
|
842
842
|
/** Response of org wallet list endpoints. */
|
|
843
843
|
interface OrgWalletsResponse {
|
|
844
844
|
wallets: OrgWalletItem[];
|
|
845
|
+
/** Total matching rows; present only when the request was paginated. */
|
|
846
|
+
total?: number;
|
|
847
|
+
/** Current page; present only when the request was paginated. */
|
|
848
|
+
page?: number;
|
|
849
|
+
/** Items per page; present only when the request was paginated. */
|
|
850
|
+
limit?: number;
|
|
845
851
|
}
|
|
846
852
|
/**
|
|
847
853
|
* `GET /sdk/organization/wallets/me` — wallets assigned to the calling member
|
|
@@ -880,6 +886,12 @@ interface OrgMyVaultsResponse {
|
|
|
880
886
|
/** Response of `GET /sdk/organization/vaults` (Master-only). */
|
|
881
887
|
interface OrgVaultsResponse {
|
|
882
888
|
vaults: OrgVaultItem[];
|
|
889
|
+
/** Total matching rows; present only when the request was paginated. */
|
|
890
|
+
total?: number;
|
|
891
|
+
/** Current page; present only when the request was paginated. */
|
|
892
|
+
page?: number;
|
|
893
|
+
/** Items per page; present only when the request was paginated. */
|
|
894
|
+
limit?: number;
|
|
883
895
|
}
|
|
884
896
|
/** Per-chain wallet/vault quota inside an `OrgLimitGroup`. */
|
|
885
897
|
interface OrgLimitGroupChainLimit {
|
|
@@ -1163,6 +1175,19 @@ interface GetPaginatedMultisigsInput {
|
|
|
1163
1175
|
/** Serialized as comma-separated chain types (e.g. EVM,SOL). */
|
|
1164
1176
|
chainTypes?: EChainType[];
|
|
1165
1177
|
}
|
|
1178
|
+
/**
|
|
1179
|
+
* Opt-in pagination/filter for the org wallet & vault list endpoints
|
|
1180
|
+
* (`GET /sdk/organization/wallets`, `GET /sdk/organization/vaults`). Omit
|
|
1181
|
+
* `page` & `limit` to receive the full list (legacy behavior, no pagination
|
|
1182
|
+
* metadata); pass them to receive a page plus `total`/`page`/`limit`.
|
|
1183
|
+
* `chainTypes` filters in both modes and is serialized as comma-separated
|
|
1184
|
+
* chain types (e.g. EVM,SOL).
|
|
1185
|
+
*/
|
|
1186
|
+
interface OrgListPaginationInput {
|
|
1187
|
+
page?: number;
|
|
1188
|
+
limit?: number;
|
|
1189
|
+
chainTypes?: EChainType[];
|
|
1190
|
+
}
|
|
1166
1191
|
/**
|
|
1167
1192
|
* Input for activateMultisig
|
|
1168
1193
|
*/
|
|
@@ -1908,9 +1933,14 @@ declare class AfridaxSDK {
|
|
|
1908
1933
|
* 7.7 List all wallets/vaults owned by the organization (available for
|
|
1909
1934
|
* assignment to members). Master-only.
|
|
1910
1935
|
*
|
|
1936
|
+
* Pagination is opt-in: call with no input (or omit `page`/`limit`) to get
|
|
1937
|
+
* the full list (legacy behavior, no `total`/`page`/`limit`); pass `page`
|
|
1938
|
+
* and `limit` to get a page plus that metadata. `chainTypes` filters in
|
|
1939
|
+
* both modes.
|
|
1940
|
+
*
|
|
1911
1941
|
* Server route: `GET /sdk/organization/wallets`.
|
|
1912
1942
|
*/
|
|
1913
|
-
listOrgWallets(): Promise<OrgWalletsResponse>;
|
|
1943
|
+
listOrgWallets(input?: OrgListPaginationInput): Promise<OrgWalletsResponse>;
|
|
1914
1944
|
/**
|
|
1915
1945
|
* List wallets assigned to the calling member within their active
|
|
1916
1946
|
* organization. Available to Master or Employee accounts.
|
|
@@ -1931,9 +1961,14 @@ declare class AfridaxSDK {
|
|
|
1931
1961
|
* of personal ownership. **Master-only** — Employees receive
|
|
1932
1962
|
* `PermissionDeniedError`.
|
|
1933
1963
|
*
|
|
1964
|
+
* Pagination is opt-in: call with no input (or omit `page`/`limit`) to get
|
|
1965
|
+
* the full list (legacy behavior, no `total`/`page`/`limit`); pass `page`
|
|
1966
|
+
* and `limit` to get a page plus that metadata. `chainTypes` filters in
|
|
1967
|
+
* both modes.
|
|
1968
|
+
*
|
|
1934
1969
|
* Server route: `GET /sdk/organization/vaults`.
|
|
1935
1970
|
*/
|
|
1936
|
-
listOrgVaults(): Promise<OrgVaultsResponse>;
|
|
1971
|
+
listOrgVaults(input?: OrgListPaginationInput): Promise<OrgVaultsResponse>;
|
|
1937
1972
|
/**
|
|
1938
1973
|
* Full-detail list of every org vault on a single chain. Each entry
|
|
1939
1974
|
* exposes the same `MultisigsItem` shape as the personal paginated list,
|
|
@@ -2373,4 +2408,4 @@ declare class NotFoundError extends AfridaxBaseError {
|
|
|
2373
2408
|
*/
|
|
2374
2409
|
declare function isAfridaxError(error: unknown): error is AfridaxBaseError;
|
|
2375
2410
|
|
|
2376
|
-
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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 GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, 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, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, 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 OrgSpendingLimitStatus, 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, type WalletScope, 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 };
|
|
2411
|
+
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 CreateSendOrderInput, type CreateSettingsOrderInput, 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 GetOrgVaultHistoryInput, type GetOrgWalletHistoryInput, 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, type ListOrgVaultsByChainInput, MEMO_MAX_LENGTH, MEMO_SUPPORTED_CHAINS, type MemoValidationResult, type MultisigBaseDTO, MultisigStatus, type MultisigWithTokensResponse, type MultisigsItem, type MultisigsWithTokensResponse, 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 OrgListPaginationInput, type OrgMeResponse, type OrgMemberKycStatus, type OrgMyVaultsResponse, type OrgMyWalletsResponse, type OrgPolicy, type OrgPolicyCode, OrgPolicyRejectedError, type OrgSpendingLimitStatus, 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, type WalletScope, 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 };
|