@capxul/sdk 4.2.0-rc.7 → 4.2.0-rc.9
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/{OAuthBearerAuthClient-hPwtSpEf.mjs → OAuthBearerAuthClient-IB2W1Fzj.mjs} +104 -5
- package/dist/capxul-source.json +3 -3
- package/dist/index.d.mts +13 -1
- package/dist/index.mjs +2 -2
- package/dist/node/index.mjs +1 -1
- package/dist/{production-D-wB2nFa.mjs → production-216hsAKc.mjs} +510 -13
- package/dist/{production-B8BQj9l0.d.mts → production-Du4Vc7YD.d.mts} +130 -2
- package/dist/testing/index.d.mts +77 -2
- package/dist/testing/index.mjs +94 -3
- package/package.json +5 -5
|
@@ -902,6 +902,7 @@ const COUNTRY_CODE_RE = /^[A-Z]{2}$/;
|
|
|
902
902
|
const ACCOUNT_ID_RE = /^account_[0-9A-Za-z]+$/;
|
|
903
903
|
const PARTY_ID_RE = /^party_[0-9A-Za-z]+$/;
|
|
904
904
|
const APP_ID_RE = /^app_[0-7][0-9A-HJKMNP-TV-Z]{25}$/;
|
|
905
|
+
const TX_HASH_RE = /^0x[0-9a-f]{64}$/i;
|
|
905
906
|
const WEI_RE = /^[0-9]+$/;
|
|
906
907
|
Math.floor(Number.MAX_SAFE_INTEGER / 1e3);
|
|
907
908
|
function toAddress(raw) {
|
|
@@ -957,6 +958,10 @@ function toPublishableKey(raw) {
|
|
|
957
958
|
if (typeof raw !== "string" || !PUBLISHABLE_KEY_PATTERN.test(raw)) throw Errors.invalidInput("publishableKey", invalidValueReason("must match cap_pk_(test|live) plus 32 Crockford base32 chars", raw));
|
|
958
959
|
return raw;
|
|
959
960
|
}
|
|
961
|
+
function toTxHash(raw) {
|
|
962
|
+
if (typeof raw !== "string" || !TX_HASH_RE.test(raw)) throw Errors.invalidInput("txHash", invalidValueReason("must be 0x + 64 hex chars", raw));
|
|
963
|
+
return raw.toLowerCase();
|
|
964
|
+
}
|
|
960
965
|
function toEpochMs(raw) {
|
|
961
966
|
assertSafeNonNegativeInteger(raw, "epochMs");
|
|
962
967
|
return raw;
|
|
@@ -1041,23 +1046,117 @@ function invalidValueReason(prefix, raw) {
|
|
|
1041
1046
|
//#region ../config/src/tokens.ts
|
|
1042
1047
|
/** `TestUSDC` ("USDX") — Base Sepolia, 6 decimals, open `mint`. (Canon §1.) */
|
|
1043
1048
|
const USDX_ADDRESS_BASE_SEPOLIA = "0xf09fcbb6df9f8f918e58f9c8ab15a76ade862b77";
|
|
1049
|
+
const USDX_DEPLOYMENT_START_BLOCK = 39860173;
|
|
1050
|
+
/**
|
|
1051
|
+
* The ERC-20 `symbol()` the deployed `TestUSDC` contract returns
|
|
1052
|
+
* (`packages/contracts/src/TestUSDC.sol:10`). It travels with the address and
|
|
1053
|
+
* the decimals so a holdings row can never carry one token's address with
|
|
1054
|
+
* another token's display symbol. This is the display symbol, not the
|
|
1055
|
+
* currency: see `USDX_CURRENCY` below.
|
|
1056
|
+
*/
|
|
1057
|
+
const USDX_SYMBOL = "USDX";
|
|
1058
|
+
const SYNTHETIC_TEST_ASSET_SOURCE = "synthetic-test-liquidity";
|
|
1044
1059
|
const USDX_ASSET = {
|
|
1045
1060
|
assetId: assetIdFor(84532, USDX_ADDRESS_BASE_SEPOLIA),
|
|
1046
1061
|
chainId: toChainId(84532),
|
|
1047
|
-
symbol:
|
|
1062
|
+
symbol: USDX_SYMBOL,
|
|
1048
1063
|
peg: toCurrencyCode("USD"),
|
|
1049
1064
|
tokenAddress: USDX_ADDRESS_BASE_SEPOLIA,
|
|
1050
|
-
deploymentStartBlock:
|
|
1051
|
-
decimals: 6
|
|
1065
|
+
deploymentStartBlock: USDX_DEPLOYMENT_START_BLOCK,
|
|
1066
|
+
decimals: 6,
|
|
1067
|
+
source: "settlement"
|
|
1052
1068
|
};
|
|
1069
|
+
/**
|
|
1070
|
+
* The settlement tier: rows the exact-transfer path and the Movement scanner
|
|
1071
|
+
* admit, each carrying the legacy `currency` projection those readers expect.
|
|
1072
|
+
* Adding an owned test asset here would put candidate liquidity on the
|
|
1073
|
+
* money-write path, so M03's rows go to the candidate tier below instead.
|
|
1074
|
+
*/
|
|
1053
1075
|
const CONFIGURED_MONEY_ASSETS = [{
|
|
1054
1076
|
...USDX_ASSET,
|
|
1055
1077
|
currency: USDX_ASSET.peg
|
|
1056
1078
|
}];
|
|
1079
|
+
/**
|
|
1080
|
+
* The candidate tier: five owned test assets, every field read back from Base
|
|
1081
|
+
* Sepolia after the deployment that created it (chain 84532, blocks
|
|
1082
|
+
* 46,465,978–46,465,982). Real contracts, authored liquidity, no settlement
|
|
1083
|
+
* admission — so rollback is removing consumers, never relabelling a
|
|
1084
|
+
* deployed address or deleting its history.
|
|
1085
|
+
*
|
|
1086
|
+
* `symbol` is the display string the owned contract returns. A
|
|
1087
|
+
* provider-supported USDC would be a different contract at a different
|
|
1088
|
+
* address returning the same symbol, which is why the resolvers below key on
|
|
1089
|
+
* `assetId`, or on chain plus address, and never on a symbol.
|
|
1090
|
+
*/
|
|
1091
|
+
const SYNTHETIC_TEST_ASSETS = [
|
|
1092
|
+
{
|
|
1093
|
+
assetId: assetIdFor(84532, "0xb3d8566fb90f7df939f4bc08a09b19047117f549"),
|
|
1094
|
+
chainId: toChainId(84532),
|
|
1095
|
+
tokenAddress: "0xb3d8566fb90f7df939f4bc08a09b19047117f549",
|
|
1096
|
+
symbol: "USDC",
|
|
1097
|
+
decimals: 6,
|
|
1098
|
+
peg: toCurrencyCode("USD"),
|
|
1099
|
+
deploymentStartBlock: 46465978,
|
|
1100
|
+
deploymentTransaction: "0xa7fb8bb9d1fd1cc5fe2fc42fa4cdccace7742efae8ea99f091a283e5709343de",
|
|
1101
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
assetId: assetIdFor(84532, "0x7ddcfb6aaffb9908c4c2db308b784c269eec8a01"),
|
|
1105
|
+
chainId: toChainId(84532),
|
|
1106
|
+
tokenAddress: "0x7ddcfb6aaffb9908c4c2db308b784c269eec8a01",
|
|
1107
|
+
symbol: "USDT",
|
|
1108
|
+
decimals: 6,
|
|
1109
|
+
peg: toCurrencyCode("USD"),
|
|
1110
|
+
deploymentStartBlock: 46465979,
|
|
1111
|
+
deploymentTransaction: "0xa17ad76fe8b24cdf1fbcff245c3eb022444710cf9fa7b5ee59818be654f4ae10",
|
|
1112
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1113
|
+
},
|
|
1114
|
+
{
|
|
1115
|
+
assetId: assetIdFor(84532, "0x1d93d525f73453fe18eebf044e8a3954bfe3721e"),
|
|
1116
|
+
chainId: toChainId(84532),
|
|
1117
|
+
tokenAddress: "0x1d93d525f73453fe18eebf044e8a3954bfe3721e",
|
|
1118
|
+
symbol: "WETH",
|
|
1119
|
+
decimals: 18,
|
|
1120
|
+
peg: null,
|
|
1121
|
+
deploymentStartBlock: 46465980,
|
|
1122
|
+
deploymentTransaction: "0xcb9b2d024686fac93ec1243ccf02d3567fd531da46176115660cba2ba644b09d",
|
|
1123
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
assetId: assetIdFor(84532, "0x8fe52c70aa9f7b6d74d8bb26eca33d87413cb624"),
|
|
1127
|
+
chainId: toChainId(84532),
|
|
1128
|
+
tokenAddress: "0x8fe52c70aa9f7b6d74d8bb26eca33d87413cb624",
|
|
1129
|
+
symbol: "WBTC",
|
|
1130
|
+
decimals: 8,
|
|
1131
|
+
peg: null,
|
|
1132
|
+
deploymentStartBlock: 46465981,
|
|
1133
|
+
deploymentTransaction: "0x728ba7b430ffd141f83d0ed5ce429d050049d7b097c936fd11e9c572d1243854",
|
|
1134
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
assetId: assetIdFor(84532, "0x5865fe9787ac214feb5facaebaec06969ac0a9a3"),
|
|
1138
|
+
chainId: toChainId(84532),
|
|
1139
|
+
tokenAddress: "0x5865fe9787ac214feb5facaebaec06969ac0a9a3",
|
|
1140
|
+
symbol: "cNGN",
|
|
1141
|
+
decimals: 6,
|
|
1142
|
+
peg: toCurrencyCode("NGN"),
|
|
1143
|
+
deploymentStartBlock: 46465982,
|
|
1144
|
+
deploymentTransaction: "0xcedf254bcef57fc64189261a5ab1161bc4fde370e470933f627c4d8ddb5a2e26",
|
|
1145
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1146
|
+
}
|
|
1147
|
+
];
|
|
1148
|
+
toChainId(84532);
|
|
1149
|
+
/**
|
|
1150
|
+
* Every known asset in ONE identity space. The tiers above declare admission;
|
|
1151
|
+
* this is the only list an identity resolves against, so an asset is never
|
|
1152
|
+
* two different things depending on which list a caller happened to read.
|
|
1153
|
+
*/
|
|
1154
|
+
const MONEY_ASSET_REGISTRY = [...CONFIGURED_MONEY_ASSETS, ...SYNTHETIC_TEST_ASSETS];
|
|
1057
1155
|
CONFIGURED_MONEY_ASSETS.map((asset) => asset.tokenAddress.toLowerCase());
|
|
1156
|
+
/** The registry row for `assetId` across every tier, or `null`. */
|
|
1058
1157
|
function configuredMoneyAssetById(assetId) {
|
|
1059
1158
|
const canonical = toAssetId(assetId);
|
|
1060
|
-
return
|
|
1159
|
+
return MONEY_ASSET_REGISTRY.find((asset) => asset.assetId === canonical) ?? null;
|
|
1061
1160
|
}
|
|
1062
1161
|
//#endregion
|
|
1063
1162
|
//#region ../config/src/org-payments.ts
|
|
@@ -2369,4 +2468,4 @@ function readExchange(body) {
|
|
|
2369
2468
|
};
|
|
2370
2469
|
}
|
|
2371
2470
|
//#endregion
|
|
2372
|
-
export {
|
|
2471
|
+
export { toRoleKey as $, currencySymbolFor as A, toCurrencyCode as B, ASSET_ID_RE as C, redactSecrets as Ct, WEI_RE as D, SUPPORTED_CURRENCY_CODES as E, toAssetId as F, toHandle as G, toEmail as H, toAuthUserId as I, toOrgId as J, toJwtToken as K, toBudgetId as L, toAddress as M, toAllowedOrigin as N, ZERO_BYTES32 as O, toAppId as P, toPublishableKey as Q, toChainId as R, APP_ID_RE as S, isCredentialField as St, EVM_ADDRESS_RE as T, toEpochMs as U, toDurationMs as V, toEpochSeconds as W, toPayrollGroupId as X, toPartyId as Y, toPayrollRunId as Z, normalizeBindingEmail as _, failureFingerprint as _t, parseAuthSession as a, decodeConvexError as at, configuredMoneyAssetById as b, revertSummaryText as bt, AuthCachePortTag as c, EXPECTED_OPERATION_OUTCOMES as ct, authClientPortFromPromiseAdapter as d, CHAIN_UPSTREAMS as dt, toSessionToken as et, AuthClientError as f, FAILURE_MODES as ft, CAPXUL_PAYMENTS_V2_ADDRESS as g, decodeChainCause as gt, orgRoleKeyForLabel as h, chainEvidenceLabel as ht, BrowserAuthCacheAdapter as i, HANDLE_RE as it, toAccountId as j, assetIdFor as k, SystemClockLayer as l, Errors as lt, ADMIN_ROLE_LABEL as m, chainCauseProperties as mt, readClockNow as n, toTxHash as nt, parseCachedJwt as o, CAPXUL_ERROR_CODES as ot, AuthClientPortTag as p, boundedResponseHeaders as pt, toKycTier as q, InMemoryAuthCacheAdapter as r, validateHandle as rt, AuthCacheError as s, CapxulError as st, oauthBearerAuthClient as t, toTesterKind as tt, ClockPortTag as u, isCapxulError as ut, BASE_SEPOLIA_CHAIN_ID as v, isChainUpstream as vt, BYTES32_RE as w, redactUrlSecrets as wt, ACCOUNT_ID_RE as x, containsSensitiveMaterial as xt, deriveCapxulSafeAddress as y, isFailureMode as yt, toCountryCode as z };
|
package/dist/capxul-source.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"source": {
|
|
3
|
-
"commit": "
|
|
4
|
-
"tree": "
|
|
3
|
+
"commit": "1c96a26356e8f36402e47eb4ac60bb89d6aeed7f",
|
|
4
|
+
"tree": "375f49f76377eeec331fd44ce17238d4a6f02ad4",
|
|
5
5
|
"branch": "codex/programme-rc",
|
|
6
6
|
"repository": "https://github.com/Xelmar-tech/infrastructure",
|
|
7
7
|
"lockfileSha256": "5870f53b72706d103220c1bcf733cb4fb71196aea32a9cfbdc277d73cc959264"
|
|
8
8
|
},
|
|
9
9
|
"name": "@capxul/sdk",
|
|
10
|
-
"version": "4.2.0-rc.
|
|
10
|
+
"version": "4.2.0-rc.9"
|
|
11
11
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { $ as PayrollGroupId, B as ChainId, Ct as ChainCause, D as Account, Dt as RevertSummary, E as CAPXUL_PAYMENTS_V2_ADDRESS, Et as FailureMode, F as AssetId, G as EVM_ADDRESS_RE, H as CurrencyCode, I as AuthSession, J as Handle, L as AuthUserId, O as AccountId, P as AssetAmount, St as CHAIN_UPSTREAMS, Tt as FAILURE_MODES, V as CountryCode, X as OrgId, Y as Money, Z as PartyId, _ as Session, _t as CapxulErrorCode, a as Eip1193RequestProvider, at as RoleKey, c as injectedWalletSigner, ct as TesterKind, d as AccountRequirement, dt as toAddress, et as PayrollRunId, f as Eip1193Provider, ft as toCountryCode, g as Profile, gt as CapxulError, h as CapxulResult, ht as CAPXUL_ERROR_CODES, i as CapxulSigner, k as Address, l as AccountProvider, m as localPrivateKeyAccountProvider, mt as toPartyId, o as SignerStatus, p as eip1193AccountProvider, pt as toHandle, r as CapxulDigestSigner, s as SignerStatusStore, u as AccountProviderSource, v as SmartAccount, vt as CapxulErrorDetails, wt as ChainUpstream, xt as isCapxulError, yt as Errors, z as BudgetId } from "./OAuthBearerAuthClient-C-ip-z8M.mjs";
|
|
2
|
-
import { $ as OrganizationPaymentBatchInput, $n as RequestStatus, $t as Destination, A as OrgScopedMethods, An as Ref, At as AddressBookAddInput, B as AuthorizeRunOptions, Bn as SmartAccountMethods, Bt as ActivityFilter, C as CurrentUserMethods, Cn as PaymentMoney, Ct as AccountMethods, D as MemberStatus, Dn as PaymentsMethods, Dt as ActorRequest, E as InviteMemberInput, En as PaymentType, Et as ActorRelationshipMethods, F as ResendInviteTokenInput, Fn as AccountLifecycle, Ft as InboxItem, G as PayrollGroupsMethods, Gn as ActorRef, Gt as ActivityPage, H as PayrollGroup, Hn as OrgLifecycle, Ht as ActivityKind, I as RoleDefinition, In as AccountSetupStep, It as InboxMethods, J as PayrollRun, Jn as SubmittedPermissionExecution, Jt as ActivitySummary, K as PayrollMethods, Kn as CurrentHoldings, Kt as ActivityRange, L as RoleSpendCap, Ln as isSettingUpLifecycle, Lt as ActivityAnnotation, M as OrgView, Mn as TargetReference, Mt as AddressBookLabelInput, N as OrganizationAccount, Nn as TargetsMethods, Nt as AddressBookMethods, O as MemberView, On as PaymentsPayInput, Ot as ActorRequestIssueInput, P as OrganizationAuditLogItem, Pn as fingerprintPaymentIntent, Pt as InboxApproveInput, Q as PayrollTermsUnit, Qn as PaymentStatus$1, Qt as DepositInstructions, R as RoleView, Rn as CompleteProfileInput, Rt as ActivityAnnotationInput, S as CurrentUserContext, Sn as PaymentDocumentsMethods, St as ReadyAccountLifecycle, T as DetectPendingOrgInvitationsResult, Tn as PaymentTiming, Tt as ActorProfileMethods, U as PayrollGroupInput, Un as OrgSetupStep, Ut as ActivityListParams, V as PayrollEngagementTerms, Vn as AuthMethods, Vt as ActivityItem, W as PayrollGroupMember, Wn as PayoutAddress, Wt as ActivityMethods, X as PayrollRunStatus, Xn as PAYMENT_DIRECTIONS, Xt as ActivitySummaryTotal, Y as PayrollRunItemInput, Yn as InboxStatus, Yt as ActivitySummaryParams, Z as PayrollRuns, Zn as PAYMENT_STATUSES, Zt as ActorReference, _ as HoldingsMethods, _n as PaymentDirection, _t as OnboardingMethods, a as ObservationContext, an as DestinationRemoveInput, ar as IdentityEvent, at as PermissionCreateInput, b as SystemHealth, bn as PaymentDocumentRender, bt as PersonOnboarding, c as HostObservability, cn as MeMethods, cr as Readiness, ct as PermissionReplaceInput, d as postHogObservability, dn as OfframpMethods, dr as isClaimed, dt as Budget, en as DestinationAddInput, et as OrganizationPaymentInput, f as CapxulClient, fn as OfframpQuote, fr as isRestoring, ft as OrgMe, g as IdentityRuntimeSendResult, gn as PaymentActivityEvidence, gt as CompletedPersonProfile, h as IdentityRuntime, hn as Payment, ht as AccountsMethods, i as ObservationAdapter, in as DestinationRail, ir as Destination$1, it as PermissionChangeInput, j as OrgTemplate, jn as ResolvedTarget, jt as AddressBookEntry, k as OrgMethods, kn as RecipientResolution, kt as ActorRequestsMethods, l as PostHogObservabilityClient, ln as MeProfile, lr as StateLabel, lt as PermissionRevokeInput, m as IdentityProfileDetails, mn as OfframpStatus, mr as InvocationControls, mt as OrgMeOptions, nn as DestinationListInput, nt as OrganizationPaymentsMethods, o as ObservationDelivery, on as DestinationsMethods, or as IdentityState, ot as PermissionMethods, p as CreateCapxulClientInput, pn as OfframpQuoteInput, pr as IdentityTransition, pt as OrgMeMethod, q as PayrollOptions, qn as Permission, qt as ActivityReference, r as CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, rn as DestinationPayload, rr as TelemetryPort, rt as PermissionAssignInput, s as SdkFailureObservation, sn as FinancialOpsMethods, sr as OrgLane, st as PermissionOptions, t as CapxulClientInput, tn as DestinationKind, tt as OrganizationPaymentItemInput, u as PostHogObservabilityOptions, un as MovementActivityEvidence, ur as destination, ut as PermissionReadResult, v as Holding, vn as PaymentDocumentKind, vt as OrganizationOnboarding, w as CreateOrgInput, wn as PaymentStatus, wt as ActorProfile, x as MediaMethods, xn as PaymentDocumentVerification, xt as PersonOnboardingInput, y as SystemMethods, yn as PaymentDocumentRef, yt as OrganizationOnboardingInput, z as AuthorizeRunInput, zn as IdentityMethods, zt as ActivityDetail } from "./production-
|
|
2
|
+
import { $ as OrganizationPaymentBatchInput, $n as RequestStatus, $t as Destination, A as OrgScopedMethods, An as Ref, At as AddressBookAddInput, B as AuthorizeRunOptions, Bn as SmartAccountMethods, Bt as ActivityFilter, C as CurrentUserMethods, Cn as PaymentMoney, Ct as AccountMethods, D as MemberStatus, Dn as PaymentsMethods, Dt as ActorRequest, E as InviteMemberInput, En as PaymentType, Et as ActorRelationshipMethods, F as ResendInviteTokenInput, Fn as AccountLifecycle, Ft as InboxItem, G as PayrollGroupsMethods, Gn as ActorRef, Gt as ActivityPage, H as PayrollGroup, Hn as OrgLifecycle, Ht as ActivityKind, I as RoleDefinition, In as AccountSetupStep, It as InboxMethods, J as PayrollRun, Jn as SubmittedPermissionExecution, Jt as ActivitySummary, K as PayrollMethods, Kn as CurrentHoldings, Kt as ActivityRange, L as RoleSpendCap, Ln as isSettingUpLifecycle, Lt as ActivityAnnotation, M as OrgView, Mn as TargetReference, Mt as AddressBookLabelInput, N as OrganizationAccount, Nn as TargetsMethods, Nt as AddressBookMethods, O as MemberView, On as PaymentsPayInput, Ot as ActorRequestIssueInput, P as OrganizationAuditLogItem, Pn as fingerprintPaymentIntent, Pt as InboxApproveInput, Q as PayrollTermsUnit, Qn as PaymentStatus$1, Qt as DepositInstructions, R as RoleView, Rn as CompleteProfileInput, Rt as ActivityAnnotationInput, S as CurrentUserContext, Sn as PaymentDocumentsMethods, St as ReadyAccountLifecycle, T as DetectPendingOrgInvitationsResult, Tn as PaymentTiming, Tt as ActorProfileMethods, U as PayrollGroupInput, Un as OrgSetupStep, Ut as ActivityListParams, V as PayrollEngagementTerms, Vn as AuthMethods, Vt as ActivityItem, W as PayrollGroupMember, Wn as PayoutAddress, Wt as ActivityMethods, X as PayrollRunStatus, Xn as PAYMENT_DIRECTIONS, Xt as ActivitySummaryTotal, Y as PayrollRunItemInput, Yn as InboxStatus, Yt as ActivitySummaryParams, Z as PayrollRuns, Zn as PAYMENT_STATUSES, Zt as ActorReference, _ as HoldingsMethods, _n as PaymentDirection, _t as OnboardingMethods, a as ObservationContext, an as DestinationRemoveInput, ar as IdentityEvent, at as PermissionCreateInput, b as SystemHealth, bn as PaymentDocumentRender, bt as PersonOnboarding, c as HostObservability, cn as MeMethods, cr as Readiness, ct as PermissionReplaceInput, d as postHogObservability, dn as OfframpMethods, dr as isClaimed, dt as Budget, en as DestinationAddInput, et as OrganizationPaymentInput, f as CapxulClient, fn as OfframpQuote, fr as isRestoring, ft as OrgMe, g as IdentityRuntimeSendResult, gn as PaymentActivityEvidence, gt as CompletedPersonProfile, h as IdentityRuntime, hn as Payment, ht as AccountsMethods, i as ObservationAdapter, in as DestinationRail, ir as Destination$1, it as PermissionChangeInput, j as OrgTemplate, jn as ResolvedTarget, jt as AddressBookEntry, k as OrgMethods, kn as RecipientResolution, kt as ActorRequestsMethods, l as PostHogObservabilityClient, ln as MeProfile, lr as StateLabel, lt as PermissionRevokeInput, m as IdentityProfileDetails, mn as OfframpStatus, mr as InvocationControls, mt as OrgMeOptions, nn as DestinationListInput, nt as OrganizationPaymentsMethods, o as ObservationDelivery, on as DestinationsMethods, or as IdentityState, ot as PermissionMethods, p as CreateCapxulClientInput, pn as OfframpQuoteInput, pr as IdentityTransition, pt as OrgMeMethod, q as PayrollOptions, qn as Permission, qt as ActivityReference, r as CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, rn as DestinationPayload, rr as TelemetryPort, rt as PermissionAssignInput, s as SdkFailureObservation, sn as FinancialOpsMethods, sr as OrgLane, st as PermissionOptions, t as CapxulClientInput, tn as DestinationKind, tt as OrganizationPaymentItemInput, u as PostHogObservabilityOptions, un as MovementActivityEvidence, ur as destination, ut as PermissionReadResult, v as Holding, vn as PaymentDocumentKind, vt as OrganizationOnboarding, w as CreateOrgInput, wn as PaymentStatus, wt as ActorProfile, x as MediaMethods, xn as PaymentDocumentVerification, xt as PersonOnboardingInput, y as SystemMethods, yn as PaymentDocumentRef, yt as OrganizationOnboardingInput, z as AuthorizeRunInput, zn as IdentityMethods, zt as ActivityDetail } from "./production-Du4Vc7YD.mjs";
|
|
3
3
|
import { Hex } from "viem";
|
|
4
4
|
import { Effect, Layer } from "effect";
|
|
5
5
|
//#region ../errors/src/index.d.ts
|
|
@@ -7,6 +7,15 @@ import { Effect, Layer } from "effect";
|
|
|
7
7
|
declare const HANDLE_RE: RegExp;
|
|
8
8
|
//#endregion
|
|
9
9
|
//#region ../config/src/tokens.d.ts
|
|
10
|
+
/**
|
|
11
|
+
* Where a registry row's liquidity comes from. `settlement` is the tier the
|
|
12
|
+
* exact-transfer path and the Movement scanner read;
|
|
13
|
+
* `synthetic-test-liquidity` marks an owned fixture whose balances and rates
|
|
14
|
+
* are authored inputs, never market or provider data. Every row states its
|
|
15
|
+
* tier, so a row that reaches a caller through the registry always carries
|
|
16
|
+
* that fact with it.
|
|
17
|
+
*/
|
|
18
|
+
type AssetSource = "settlement" | "synthetic-test-liquidity";
|
|
10
19
|
/** Canonical metadata. A missing peg does not imply a missing market price. */
|
|
11
20
|
interface AssetMetadata {
|
|
12
21
|
readonly assetId: AssetId;
|
|
@@ -16,6 +25,7 @@ interface AssetMetadata {
|
|
|
16
25
|
readonly decimals: number;
|
|
17
26
|
readonly peg: CurrencyCode | null;
|
|
18
27
|
readonly deploymentStartBlock: number;
|
|
28
|
+
readonly source: AssetSource;
|
|
19
29
|
}
|
|
20
30
|
//#endregion
|
|
21
31
|
//#region ../observability/src/operations.d.ts
|
|
@@ -60,6 +70,8 @@ declare const CAPXUL_OPERATIONS: {
|
|
|
60
70
|
readonly emitAnnotationSaved: "activity.emitAnnotationSaved";
|
|
61
71
|
readonly get: "activity.get";
|
|
62
72
|
readonly list: "activity.list";
|
|
73
|
+
/** The SDK's live Activity read over the indexer's SSE stream. */
|
|
74
|
+
readonly subscribe: "activity.subscribe";
|
|
63
75
|
readonly summary: "activity.summary";
|
|
64
76
|
};
|
|
65
77
|
readonly addressBook: {
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { A as signerFailure, B as isRestoring, C as normalizeExceptionErrorKind, E as safeExceptionLabel, F as CAPXUL_OPERATIONS, I as isCapxulOperation, L as normalizeCapxulOperation, M as PAYMENT_DIRECTIONS, N as PAYMENT_STATUSES, O as isSettingUpLifecycle, R as destination, S as SDK_VERSION, T as projectSdkException, _ as fingerprintPaymentIntent, b as failureDetail, d as embeddedSigner, f as openfortEmbeddedSigner, g as devPrivateKeySigner, h as deriveDevPrivateKey, j as resolveFailureMode, k as injectedWalletSigner, m as openfortEmbeddedWalletPort, p as openfortEmbeddedSignerFromWallet, r as postHogObservability, t as createCapxulClient$1, w as normalizeExceptionOperation, x as EXCEPTION_MESSAGE, y as CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, z as isClaimed } from "./production-
|
|
2
|
-
import { A as currencySymbolFor,
|
|
1
|
+
import { A as signerFailure, B as isRestoring, C as normalizeExceptionErrorKind, E as safeExceptionLabel, F as CAPXUL_OPERATIONS, I as isCapxulOperation, L as normalizeCapxulOperation, M as PAYMENT_DIRECTIONS, N as PAYMENT_STATUSES, O as isSettingUpLifecycle, R as destination, S as SDK_VERSION, T as projectSdkException, _ as fingerprintPaymentIntent, b as failureDetail, d as embeddedSigner, f as openfortEmbeddedSigner, g as devPrivateKeySigner, h as deriveDevPrivateKey, j as resolveFailureMode, k as injectedWalletSigner, m as openfortEmbeddedWalletPort, p as openfortEmbeddedSignerFromWallet, r as postHogObservability, t as createCapxulClient$1, w as normalizeExceptionOperation, x as EXCEPTION_MESSAGE, y as CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, z as isClaimed } from "./production-216hsAKc.mjs";
|
|
2
|
+
import { A as currencySymbolFor, B as toCurrencyCode, G as toHandle, M as toAddress, T as EVM_ADDRESS_RE, Y as toPartyId, b as configuredMoneyAssetById, dt as CHAIN_UPSTREAMS, ft as FAILURE_MODES, g as CAPXUL_PAYMENTS_V2_ADDRESS, it as HANDLE_RE, k as assetIdFor, lt as Errors, ot as CAPXUL_ERROR_CODES, st as CapxulError, ut as isCapxulError, z as toCountryCode } from "./OAuthBearerAuthClient-IB2W1Fzj.mjs";
|
|
3
3
|
import { formatUnits } from "viem";
|
|
4
4
|
import { Effect } from "effect";
|
|
5
5
|
import { privateKeyToAccount } from "viem/accounts";
|
package/dist/node/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { M as toAddress, a as parseAuthSession, c as AuthCachePortTag, i as BrowserAuthCacheAdapter, o as parseCachedJwt, r as InMemoryAuthCacheAdapter, s as AuthCacheError, t as oauthBearerAuthClient } from "../OAuthBearerAuthClient-
|
|
1
|
+
import { M as toAddress, a as parseAuthSession, c as AuthCachePortTag, i as BrowserAuthCacheAdapter, o as parseCachedJwt, r as InMemoryAuthCacheAdapter, s as AuthCacheError, t as oauthBearerAuthClient } from "../OAuthBearerAuthClient-IB2W1Fzj.mjs";
|
|
2
2
|
import { Effect, FileSystem, Layer, Path } from "effect";
|
|
3
3
|
import { privateKeyToAccount } from "viem/accounts";
|
|
4
4
|
import * as os from "node:os";
|