@soledgic/sdk 0.2.2 → 0.2.3
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/README.md +1 -1
- package/dist/index.d.mts +1 -25
- package/dist/index.d.ts +1 -25
- package/dist/index.js +0 -26
- package/dist/index.mjs +0 -26
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -511,17 +511,6 @@ interface CreateRefundRequest {
|
|
|
511
511
|
idempotencyKey?: string;
|
|
512
512
|
metadata?: Record<string, unknown>;
|
|
513
513
|
}
|
|
514
|
-
interface SendBreachAlertRequest {
|
|
515
|
-
cashBalance: number;
|
|
516
|
-
pendingTotal: number;
|
|
517
|
-
shortfall?: number;
|
|
518
|
-
coverageRatio?: number;
|
|
519
|
-
triggeredBy: 'project_intent' | 'get_runway' | 'manual';
|
|
520
|
-
instrumentId?: string;
|
|
521
|
-
externalRef?: string;
|
|
522
|
-
projectionsCreated?: number;
|
|
523
|
-
channel?: 'slack' | 'email' | 'webhook';
|
|
524
|
-
}
|
|
525
514
|
interface InvoiceLineItem {
|
|
526
515
|
description: string;
|
|
527
516
|
quantity: number;
|
|
@@ -975,18 +964,6 @@ interface ReceivePaymentResponse {
|
|
|
975
964
|
transactionId: string;
|
|
976
965
|
amount: number;
|
|
977
966
|
}
|
|
978
|
-
interface SendBreachAlertResponse {
|
|
979
|
-
success: boolean;
|
|
980
|
-
message?: string;
|
|
981
|
-
alertsSent: number;
|
|
982
|
-
alertsFailed?: number;
|
|
983
|
-
alertsSkipped?: number;
|
|
984
|
-
results?: Array<{
|
|
985
|
-
channel: string;
|
|
986
|
-
success: boolean;
|
|
987
|
-
error?: string;
|
|
988
|
-
}>;
|
|
989
|
-
}
|
|
990
967
|
interface WalletObject {
|
|
991
968
|
id: string;
|
|
992
969
|
object: 'wallet';
|
|
@@ -1586,7 +1563,6 @@ declare class Soledgic {
|
|
|
1586
1563
|
exportReport(req: ExportReportRequest): Promise<ExportReportJsonResponse | ExportReportCsvResponse>;
|
|
1587
1564
|
uploadReceipt(req: UploadReceiptRequest): Promise<UploadReceiptResponse>;
|
|
1588
1565
|
receivePayment(req: ReceivePaymentRequest): Promise<ReceivePaymentResponse>;
|
|
1589
|
-
sendBreachAlert(req: SendBreachAlertRequest): Promise<SendBreachAlertResponse>;
|
|
1590
1566
|
private mapWalletObject;
|
|
1591
1567
|
listWallets(filters?: ListWalletsRequest): Promise<ListWalletsResponse>;
|
|
1592
1568
|
createWallet(req: CreateWalletRequest): Promise<CreateWalletResponse>;
|
|
@@ -1633,4 +1609,4 @@ declare class Soledgic {
|
|
|
1633
1609
|
importBankStatement(req: ImportBankStatementRequest): Promise<any>;
|
|
1634
1610
|
}
|
|
1635
1611
|
|
|
1636
|
-
export { type AlertChannel, type AlertConfiguration, type AlertTestResult, type AlertThresholds, type AlertType, AuthenticationError, type AuthorizationDecisionType, type AuthorizationPolicy, type AuthorizationResult, type AutoMatchReconciliationResponse, type BackdatePolicyRequest, type BreachRisk, type CheckoutBreakdown, type CheckoutSessionResourceResponse, type ComplianceAccessPatternsResponse, type ComplianceFinancialActivityResponse, type ComplianceOverviewResponse, type ComplianceSecuritySummaryResponse, ConflictError, type CreateAlertRequest, type CreateBankAccountRequest, type CreateBudgetRequest, type CreateCheckoutSessionRequest, type CreateContractorRequest, type CreateInvoiceRequest, type CreateLedgerRequest, type CreateLedgerResponse, type CreateParticipantRequest, type CreateParticipantResponse, type CreatePayoutRequest, type CreatePeriodRequest, type CreatePolicyRequest, type CreateRecurringRequest, type CreateRefundRequest, type CreateSnapshotRequest, type CreateWalletRequest, type CreateWalletResponse, DEFAULT_API_VERSION, DEFAULT_BASE_URL, type EmailAlertConfig, type ExportReportCsvResponse, type ExportReportJsonResponse, type ExportReportRequest, type ExtractedTerms, type FraudPolicyDeleteResponse, type FraudPolicyListResponse, type FraudPolicyResource, type FraudPolicyResponse, type FrozenStatement, type GetWalletResponse, type HeldFund, type HeldFundsResponse, type HeldFundsSummaryResponse, type HoldQueryOptions, type ImportBankStatementLine, type ImportBankStatementRequest, type InvoiceLineItem, type ListRefundsRequest, type ListRefundsResponse, type ListWalletsRequest, type ListWalletsResponse, NotFoundError, type ObligationItem, type Obligations, type ParsedWebhookEvent, type ParticipantDetail, type ParticipantPayoutEligibilityResponse, type ParticipantPayoutPreferences, type ParticipantSummary, type ParticipantTaxInfo, type ParticipantTransferRequest, type ParticipantTransferResponse, type ParticipantWalletMutationRequest, type PayBillRequest, type PayoutResourceResponse, type Period, type PolicySeverity, type PolicyType, type PolicyViolation, type PreflightAuthorizationRequest, type PreflightAuthorizationResponse, type PreflightResult, type ProjectIntentRequest, type ProjectIntentResponse, type ProjectionMatch, type ReceivePaymentRequest, type ReceivePaymentResponse, type ReconcileMatchRequest, type ReconciliationMatchResponse, type ReconciliationSnapshot, type ReconciliationUnmatchResponse, type RecordAdjustmentRequest, type RecordBillRequest, type RecordContractorPaymentRequest, type RecordExpenseRequest, type RecordIncomeRequest, type RecordInvoicePaymentRequest, type RecordOpeningBalanceRequest, type RecordRefundResponse, type RecordTransferRequest, type RefundResourceResponse, type RefundSummary, type RegisterInstrumentRequest, type RegisterInstrumentResponse, type ReleaseHoldRequest, type ReleaseHoldResponse, type ReverseResponse, type ReverseTransactionRequest, type RiskEvaluationRequest, type RiskEvaluationResponse, type
|
|
1612
|
+
export { type AlertChannel, type AlertConfiguration, type AlertTestResult, type AlertThresholds, type AlertType, AuthenticationError, type AuthorizationDecisionType, type AuthorizationPolicy, type AuthorizationResult, type AutoMatchReconciliationResponse, type BackdatePolicyRequest, type BreachRisk, type CheckoutBreakdown, type CheckoutSessionResourceResponse, type ComplianceAccessPatternsResponse, type ComplianceFinancialActivityResponse, type ComplianceOverviewResponse, type ComplianceSecuritySummaryResponse, ConflictError, type CreateAlertRequest, type CreateBankAccountRequest, type CreateBudgetRequest, type CreateCheckoutSessionRequest, type CreateContractorRequest, type CreateInvoiceRequest, type CreateLedgerRequest, type CreateLedgerResponse, type CreateParticipantRequest, type CreateParticipantResponse, type CreatePayoutRequest, type CreatePeriodRequest, type CreatePolicyRequest, type CreateRecurringRequest, type CreateRefundRequest, type CreateSnapshotRequest, type CreateWalletRequest, type CreateWalletResponse, DEFAULT_API_VERSION, DEFAULT_BASE_URL, type EmailAlertConfig, type ExportReportCsvResponse, type ExportReportJsonResponse, type ExportReportRequest, type ExtractedTerms, type FraudPolicyDeleteResponse, type FraudPolicyListResponse, type FraudPolicyResource, type FraudPolicyResponse, type FrozenStatement, type GetWalletResponse, type HeldFund, type HeldFundsResponse, type HeldFundsSummaryResponse, type HoldQueryOptions, type ImportBankStatementLine, type ImportBankStatementRequest, type InvoiceLineItem, type ListRefundsRequest, type ListRefundsResponse, type ListWalletsRequest, type ListWalletsResponse, NotFoundError, type ObligationItem, type Obligations, type ParsedWebhookEvent, type ParticipantDetail, type ParticipantPayoutEligibilityResponse, type ParticipantPayoutPreferences, type ParticipantSummary, type ParticipantTaxInfo, type ParticipantTransferRequest, type ParticipantTransferResponse, type ParticipantWalletMutationRequest, type PayBillRequest, type PayoutResourceResponse, type Period, type PolicySeverity, type PolicyType, type PolicyViolation, type PreflightAuthorizationRequest, type PreflightAuthorizationResponse, type PreflightResult, type ProjectIntentRequest, type ProjectIntentResponse, type ProjectionMatch, type ReceivePaymentRequest, type ReceivePaymentResponse, type ReconcileMatchRequest, type ReconciliationMatchResponse, type ReconciliationSnapshot, type ReconciliationUnmatchResponse, type RecordAdjustmentRequest, type RecordBillRequest, type RecordContractorPaymentRequest, type RecordExpenseRequest, type RecordIncomeRequest, type RecordInvoicePaymentRequest, type RecordOpeningBalanceRequest, type RecordRefundResponse, type RecordTransferRequest, type RefundResourceResponse, type RefundSummary, type RegisterInstrumentRequest, type RegisterInstrumentResponse, type ReleaseHoldRequest, type ReleaseHoldResponse, type ReverseResponse, type ReverseTransactionRequest, type RiskEvaluationRequest, type RiskEvaluationResponse, type SlackAlertConfig, Soledgic, type SoledgicConfig, SoledgicError, type SubmitTaxInfoRequest, type TaxCalculationResponse, type TaxDocumentGenerationResponse, type TaxDocumentResponse, type TaxDocumentsResponse, type TaxSummaryResponse, type UnmatchedTransactionsResponse, type UpdateAlertRequest, type UploadReceiptRequest, type UploadReceiptResponse, ValidationError, type VerifyWebhookSignatureOptions, type WalletEntriesResponse, type WalletHistoryEntry, type WalletObject, type WalletTopupRequest, type WalletTopupResponse, type WalletWithdrawRequest, type WalletWithdrawalResponse, type WebhookDelivery, type WebhookEndpoint, type WebhookEndpointSecretResult, type WebhookPayloadInput, Soledgic as default, hmacHex, isArrayBufferView, mapWebhookDelivery, mapWebhookEndpoint, parseWebhookEvent, parseWebhookSignatureHeader, resolveWebhookEndpointUrl, timingSafeEqual, verifyWebhookSignature, webhookPayloadToString };
|
package/dist/index.d.ts
CHANGED
|
@@ -511,17 +511,6 @@ interface CreateRefundRequest {
|
|
|
511
511
|
idempotencyKey?: string;
|
|
512
512
|
metadata?: Record<string, unknown>;
|
|
513
513
|
}
|
|
514
|
-
interface SendBreachAlertRequest {
|
|
515
|
-
cashBalance: number;
|
|
516
|
-
pendingTotal: number;
|
|
517
|
-
shortfall?: number;
|
|
518
|
-
coverageRatio?: number;
|
|
519
|
-
triggeredBy: 'project_intent' | 'get_runway' | 'manual';
|
|
520
|
-
instrumentId?: string;
|
|
521
|
-
externalRef?: string;
|
|
522
|
-
projectionsCreated?: number;
|
|
523
|
-
channel?: 'slack' | 'email' | 'webhook';
|
|
524
|
-
}
|
|
525
514
|
interface InvoiceLineItem {
|
|
526
515
|
description: string;
|
|
527
516
|
quantity: number;
|
|
@@ -975,18 +964,6 @@ interface ReceivePaymentResponse {
|
|
|
975
964
|
transactionId: string;
|
|
976
965
|
amount: number;
|
|
977
966
|
}
|
|
978
|
-
interface SendBreachAlertResponse {
|
|
979
|
-
success: boolean;
|
|
980
|
-
message?: string;
|
|
981
|
-
alertsSent: number;
|
|
982
|
-
alertsFailed?: number;
|
|
983
|
-
alertsSkipped?: number;
|
|
984
|
-
results?: Array<{
|
|
985
|
-
channel: string;
|
|
986
|
-
success: boolean;
|
|
987
|
-
error?: string;
|
|
988
|
-
}>;
|
|
989
|
-
}
|
|
990
967
|
interface WalletObject {
|
|
991
968
|
id: string;
|
|
992
969
|
object: 'wallet';
|
|
@@ -1586,7 +1563,6 @@ declare class Soledgic {
|
|
|
1586
1563
|
exportReport(req: ExportReportRequest): Promise<ExportReportJsonResponse | ExportReportCsvResponse>;
|
|
1587
1564
|
uploadReceipt(req: UploadReceiptRequest): Promise<UploadReceiptResponse>;
|
|
1588
1565
|
receivePayment(req: ReceivePaymentRequest): Promise<ReceivePaymentResponse>;
|
|
1589
|
-
sendBreachAlert(req: SendBreachAlertRequest): Promise<SendBreachAlertResponse>;
|
|
1590
1566
|
private mapWalletObject;
|
|
1591
1567
|
listWallets(filters?: ListWalletsRequest): Promise<ListWalletsResponse>;
|
|
1592
1568
|
createWallet(req: CreateWalletRequest): Promise<CreateWalletResponse>;
|
|
@@ -1633,4 +1609,4 @@ declare class Soledgic {
|
|
|
1633
1609
|
importBankStatement(req: ImportBankStatementRequest): Promise<any>;
|
|
1634
1610
|
}
|
|
1635
1611
|
|
|
1636
|
-
export { type AlertChannel, type AlertConfiguration, type AlertTestResult, type AlertThresholds, type AlertType, AuthenticationError, type AuthorizationDecisionType, type AuthorizationPolicy, type AuthorizationResult, type AutoMatchReconciliationResponse, type BackdatePolicyRequest, type BreachRisk, type CheckoutBreakdown, type CheckoutSessionResourceResponse, type ComplianceAccessPatternsResponse, type ComplianceFinancialActivityResponse, type ComplianceOverviewResponse, type ComplianceSecuritySummaryResponse, ConflictError, type CreateAlertRequest, type CreateBankAccountRequest, type CreateBudgetRequest, type CreateCheckoutSessionRequest, type CreateContractorRequest, type CreateInvoiceRequest, type CreateLedgerRequest, type CreateLedgerResponse, type CreateParticipantRequest, type CreateParticipantResponse, type CreatePayoutRequest, type CreatePeriodRequest, type CreatePolicyRequest, type CreateRecurringRequest, type CreateRefundRequest, type CreateSnapshotRequest, type CreateWalletRequest, type CreateWalletResponse, DEFAULT_API_VERSION, DEFAULT_BASE_URL, type EmailAlertConfig, type ExportReportCsvResponse, type ExportReportJsonResponse, type ExportReportRequest, type ExtractedTerms, type FraudPolicyDeleteResponse, type FraudPolicyListResponse, type FraudPolicyResource, type FraudPolicyResponse, type FrozenStatement, type GetWalletResponse, type HeldFund, type HeldFundsResponse, type HeldFundsSummaryResponse, type HoldQueryOptions, type ImportBankStatementLine, type ImportBankStatementRequest, type InvoiceLineItem, type ListRefundsRequest, type ListRefundsResponse, type ListWalletsRequest, type ListWalletsResponse, NotFoundError, type ObligationItem, type Obligations, type ParsedWebhookEvent, type ParticipantDetail, type ParticipantPayoutEligibilityResponse, type ParticipantPayoutPreferences, type ParticipantSummary, type ParticipantTaxInfo, type ParticipantTransferRequest, type ParticipantTransferResponse, type ParticipantWalletMutationRequest, type PayBillRequest, type PayoutResourceResponse, type Period, type PolicySeverity, type PolicyType, type PolicyViolation, type PreflightAuthorizationRequest, type PreflightAuthorizationResponse, type PreflightResult, type ProjectIntentRequest, type ProjectIntentResponse, type ProjectionMatch, type ReceivePaymentRequest, type ReceivePaymentResponse, type ReconcileMatchRequest, type ReconciliationMatchResponse, type ReconciliationSnapshot, type ReconciliationUnmatchResponse, type RecordAdjustmentRequest, type RecordBillRequest, type RecordContractorPaymentRequest, type RecordExpenseRequest, type RecordIncomeRequest, type RecordInvoicePaymentRequest, type RecordOpeningBalanceRequest, type RecordRefundResponse, type RecordTransferRequest, type RefundResourceResponse, type RefundSummary, type RegisterInstrumentRequest, type RegisterInstrumentResponse, type ReleaseHoldRequest, type ReleaseHoldResponse, type ReverseResponse, type ReverseTransactionRequest, type RiskEvaluationRequest, type RiskEvaluationResponse, type
|
|
1612
|
+
export { type AlertChannel, type AlertConfiguration, type AlertTestResult, type AlertThresholds, type AlertType, AuthenticationError, type AuthorizationDecisionType, type AuthorizationPolicy, type AuthorizationResult, type AutoMatchReconciliationResponse, type BackdatePolicyRequest, type BreachRisk, type CheckoutBreakdown, type CheckoutSessionResourceResponse, type ComplianceAccessPatternsResponse, type ComplianceFinancialActivityResponse, type ComplianceOverviewResponse, type ComplianceSecuritySummaryResponse, ConflictError, type CreateAlertRequest, type CreateBankAccountRequest, type CreateBudgetRequest, type CreateCheckoutSessionRequest, type CreateContractorRequest, type CreateInvoiceRequest, type CreateLedgerRequest, type CreateLedgerResponse, type CreateParticipantRequest, type CreateParticipantResponse, type CreatePayoutRequest, type CreatePeriodRequest, type CreatePolicyRequest, type CreateRecurringRequest, type CreateRefundRequest, type CreateSnapshotRequest, type CreateWalletRequest, type CreateWalletResponse, DEFAULT_API_VERSION, DEFAULT_BASE_URL, type EmailAlertConfig, type ExportReportCsvResponse, type ExportReportJsonResponse, type ExportReportRequest, type ExtractedTerms, type FraudPolicyDeleteResponse, type FraudPolicyListResponse, type FraudPolicyResource, type FraudPolicyResponse, type FrozenStatement, type GetWalletResponse, type HeldFund, type HeldFundsResponse, type HeldFundsSummaryResponse, type HoldQueryOptions, type ImportBankStatementLine, type ImportBankStatementRequest, type InvoiceLineItem, type ListRefundsRequest, type ListRefundsResponse, type ListWalletsRequest, type ListWalletsResponse, NotFoundError, type ObligationItem, type Obligations, type ParsedWebhookEvent, type ParticipantDetail, type ParticipantPayoutEligibilityResponse, type ParticipantPayoutPreferences, type ParticipantSummary, type ParticipantTaxInfo, type ParticipantTransferRequest, type ParticipantTransferResponse, type ParticipantWalletMutationRequest, type PayBillRequest, type PayoutResourceResponse, type Period, type PolicySeverity, type PolicyType, type PolicyViolation, type PreflightAuthorizationRequest, type PreflightAuthorizationResponse, type PreflightResult, type ProjectIntentRequest, type ProjectIntentResponse, type ProjectionMatch, type ReceivePaymentRequest, type ReceivePaymentResponse, type ReconcileMatchRequest, type ReconciliationMatchResponse, type ReconciliationSnapshot, type ReconciliationUnmatchResponse, type RecordAdjustmentRequest, type RecordBillRequest, type RecordContractorPaymentRequest, type RecordExpenseRequest, type RecordIncomeRequest, type RecordInvoicePaymentRequest, type RecordOpeningBalanceRequest, type RecordRefundResponse, type RecordTransferRequest, type RefundResourceResponse, type RefundSummary, type RegisterInstrumentRequest, type RegisterInstrumentResponse, type ReleaseHoldRequest, type ReleaseHoldResponse, type ReverseResponse, type ReverseTransactionRequest, type RiskEvaluationRequest, type RiskEvaluationResponse, type SlackAlertConfig, Soledgic, type SoledgicConfig, SoledgicError, type SubmitTaxInfoRequest, type TaxCalculationResponse, type TaxDocumentGenerationResponse, type TaxDocumentResponse, type TaxDocumentsResponse, type TaxSummaryResponse, type UnmatchedTransactionsResponse, type UpdateAlertRequest, type UploadReceiptRequest, type UploadReceiptResponse, ValidationError, type VerifyWebhookSignatureOptions, type WalletEntriesResponse, type WalletHistoryEntry, type WalletObject, type WalletTopupRequest, type WalletTopupResponse, type WalletWithdrawRequest, type WalletWithdrawalResponse, type WebhookDelivery, type WebhookEndpoint, type WebhookEndpointSecretResult, type WebhookPayloadInput, Soledgic as default, hmacHex, isArrayBufferView, mapWebhookDelivery, mapWebhookEndpoint, parseWebhookEvent, parseWebhookSignatureHeader, resolveWebhookEndpointUrl, timingSafeEqual, verifyWebhookSignature, webhookPayloadToString };
|
package/dist/index.js
CHANGED
|
@@ -1669,32 +1669,6 @@ var Soledgic = class {
|
|
|
1669
1669
|
metadata: req.metadata
|
|
1670
1670
|
});
|
|
1671
1671
|
}
|
|
1672
|
-
// === BREACH ALERTS ===
|
|
1673
|
-
async sendBreachAlert(req) {
|
|
1674
|
-
const response = await this.request("send-breach-alert", {
|
|
1675
|
-
cash_balance: req.cashBalance,
|
|
1676
|
-
pending_total: req.pendingTotal,
|
|
1677
|
-
shortfall: req.shortfall,
|
|
1678
|
-
coverage_ratio: req.coverageRatio,
|
|
1679
|
-
triggered_by: req.triggeredBy,
|
|
1680
|
-
instrument_id: req.instrumentId,
|
|
1681
|
-
external_ref: req.externalRef,
|
|
1682
|
-
projections_created: req.projectionsCreated,
|
|
1683
|
-
channel: req.channel
|
|
1684
|
-
});
|
|
1685
|
-
return {
|
|
1686
|
-
success: response.success,
|
|
1687
|
-
message: response.message,
|
|
1688
|
-
alertsSent: response.alerts_sent ?? 0,
|
|
1689
|
-
alertsFailed: response.alerts_failed,
|
|
1690
|
-
alertsSkipped: response.alerts_skipped,
|
|
1691
|
-
results: response.results ? response.results.map((r) => ({
|
|
1692
|
-
channel: r.channel,
|
|
1693
|
-
success: r.success,
|
|
1694
|
-
error: r.error
|
|
1695
|
-
})) : void 0
|
|
1696
|
-
};
|
|
1697
|
-
}
|
|
1698
1672
|
// === WALLETS ===
|
|
1699
1673
|
mapWalletObject(wallet) {
|
|
1700
1674
|
return {
|
package/dist/index.mjs
CHANGED
|
@@ -1625,32 +1625,6 @@ var Soledgic = class {
|
|
|
1625
1625
|
metadata: req.metadata
|
|
1626
1626
|
});
|
|
1627
1627
|
}
|
|
1628
|
-
// === BREACH ALERTS ===
|
|
1629
|
-
async sendBreachAlert(req) {
|
|
1630
|
-
const response = await this.request("send-breach-alert", {
|
|
1631
|
-
cash_balance: req.cashBalance,
|
|
1632
|
-
pending_total: req.pendingTotal,
|
|
1633
|
-
shortfall: req.shortfall,
|
|
1634
|
-
coverage_ratio: req.coverageRatio,
|
|
1635
|
-
triggered_by: req.triggeredBy,
|
|
1636
|
-
instrument_id: req.instrumentId,
|
|
1637
|
-
external_ref: req.externalRef,
|
|
1638
|
-
projections_created: req.projectionsCreated,
|
|
1639
|
-
channel: req.channel
|
|
1640
|
-
});
|
|
1641
|
-
return {
|
|
1642
|
-
success: response.success,
|
|
1643
|
-
message: response.message,
|
|
1644
|
-
alertsSent: response.alerts_sent ?? 0,
|
|
1645
|
-
alertsFailed: response.alerts_failed,
|
|
1646
|
-
alertsSkipped: response.alerts_skipped,
|
|
1647
|
-
results: response.results ? response.results.map((r) => ({
|
|
1648
|
-
channel: r.channel,
|
|
1649
|
-
success: r.success,
|
|
1650
|
-
error: r.error
|
|
1651
|
-
})) : void 0
|
|
1652
|
-
};
|
|
1653
|
-
}
|
|
1654
1628
|
// === WALLETS ===
|
|
1655
1629
|
mapWalletObject(wallet) {
|
|
1656
1630
|
return {
|
package/package.json
CHANGED