@capxul/sdk 4.2.0-rc.1 → 4.2.0-rc.11
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-BrbXrndM.mjs → OAuthBearerAuthClient-CbU_W9Sp.mjs} +114 -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-FgHUndeX.mjs → production-7jr-KUvX.mjs} +1508 -63
- package/dist/{production-CBKHzqYP.d.mts → production-A1zW1JPt.d.mts} +163 -31
- 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;
|
|
@@ -980,6 +985,10 @@ function toChainId(raw) {
|
|
|
980
985
|
if (typeof raw !== "number" || !Number.isSafeInteger(raw) || raw <= 0) throw Errors.invalidInput("chainId", invalidValueReason("must be a positive safe integer", raw));
|
|
981
986
|
return raw;
|
|
982
987
|
}
|
|
988
|
+
function toWeiAmount(raw) {
|
|
989
|
+
if (typeof raw !== "string" || !WEI_RE.test(raw)) throw Errors.invalidInput("weiAmount", invalidValueReason("must be a non-negative integer string", raw));
|
|
990
|
+
return raw;
|
|
991
|
+
}
|
|
983
992
|
function toCountryCode(raw) {
|
|
984
993
|
if (typeof raw !== "string") throw Errors.invalidInput("countryCode", "must be a string");
|
|
985
994
|
const upper = raw.toUpperCase();
|
|
@@ -1041,23 +1050,117 @@ function invalidValueReason(prefix, raw) {
|
|
|
1041
1050
|
//#region ../config/src/tokens.ts
|
|
1042
1051
|
/** `TestUSDC` ("USDX") — Base Sepolia, 6 decimals, open `mint`. (Canon §1.) */
|
|
1043
1052
|
const USDX_ADDRESS_BASE_SEPOLIA = "0xf09fcbb6df9f8f918e58f9c8ab15a76ade862b77";
|
|
1053
|
+
const USDX_DEPLOYMENT_START_BLOCK = 39860173;
|
|
1054
|
+
/**
|
|
1055
|
+
* The ERC-20 `symbol()` the deployed `TestUSDC` contract returns
|
|
1056
|
+
* (`packages/contracts/src/TestUSDC.sol:10`). It travels with the address and
|
|
1057
|
+
* the decimals so a holdings row can never carry one token's address with
|
|
1058
|
+
* another token's display symbol. This is the display symbol, not the
|
|
1059
|
+
* currency: see `USDX_CURRENCY` below.
|
|
1060
|
+
*/
|
|
1061
|
+
const USDX_SYMBOL = "USDX";
|
|
1062
|
+
const SYNTHETIC_TEST_ASSET_SOURCE = "synthetic-test-liquidity";
|
|
1044
1063
|
const USDX_ASSET = {
|
|
1045
1064
|
assetId: assetIdFor(84532, USDX_ADDRESS_BASE_SEPOLIA),
|
|
1046
1065
|
chainId: toChainId(84532),
|
|
1047
|
-
symbol:
|
|
1066
|
+
symbol: USDX_SYMBOL,
|
|
1048
1067
|
peg: toCurrencyCode("USD"),
|
|
1049
1068
|
tokenAddress: USDX_ADDRESS_BASE_SEPOLIA,
|
|
1050
|
-
deploymentStartBlock:
|
|
1051
|
-
decimals: 6
|
|
1069
|
+
deploymentStartBlock: USDX_DEPLOYMENT_START_BLOCK,
|
|
1070
|
+
decimals: 6,
|
|
1071
|
+
source: "settlement"
|
|
1052
1072
|
};
|
|
1073
|
+
/**
|
|
1074
|
+
* The settlement tier: rows the exact-transfer path and the Movement scanner
|
|
1075
|
+
* admit, each carrying the legacy `currency` projection those readers expect.
|
|
1076
|
+
* Adding an owned test asset here would put candidate liquidity on the
|
|
1077
|
+
* money-write path, so M03's rows go to the candidate tier below instead.
|
|
1078
|
+
*/
|
|
1053
1079
|
const CONFIGURED_MONEY_ASSETS = [{
|
|
1054
1080
|
...USDX_ASSET,
|
|
1055
1081
|
currency: USDX_ASSET.peg
|
|
1056
1082
|
}];
|
|
1083
|
+
/**
|
|
1084
|
+
* The candidate tier: five owned test assets, every field read back from Base
|
|
1085
|
+
* Sepolia after the deployment that created it (chain 84532, blocks
|
|
1086
|
+
* 46,465,978–46,465,982). Real contracts, authored liquidity, no settlement
|
|
1087
|
+
* admission — so rollback is removing consumers, never relabelling a
|
|
1088
|
+
* deployed address or deleting its history.
|
|
1089
|
+
*
|
|
1090
|
+
* `symbol` is the display string the owned contract returns. A
|
|
1091
|
+
* provider-supported USDC would be a different contract at a different
|
|
1092
|
+
* address returning the same symbol, which is why the resolvers below key on
|
|
1093
|
+
* `assetId`, or on chain plus address, and never on a symbol.
|
|
1094
|
+
*/
|
|
1095
|
+
const SYNTHETIC_TEST_ASSETS = [
|
|
1096
|
+
{
|
|
1097
|
+
assetId: assetIdFor(84532, "0xb3d8566fb90f7df939f4bc08a09b19047117f549"),
|
|
1098
|
+
chainId: toChainId(84532),
|
|
1099
|
+
tokenAddress: "0xb3d8566fb90f7df939f4bc08a09b19047117f549",
|
|
1100
|
+
symbol: "USDC",
|
|
1101
|
+
decimals: 6,
|
|
1102
|
+
peg: toCurrencyCode("USD"),
|
|
1103
|
+
deploymentStartBlock: 46465978,
|
|
1104
|
+
deploymentTransaction: "0xa7fb8bb9d1fd1cc5fe2fc42fa4cdccace7742efae8ea99f091a283e5709343de",
|
|
1105
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
assetId: assetIdFor(84532, "0x7ddcfb6aaffb9908c4c2db308b784c269eec8a01"),
|
|
1109
|
+
chainId: toChainId(84532),
|
|
1110
|
+
tokenAddress: "0x7ddcfb6aaffb9908c4c2db308b784c269eec8a01",
|
|
1111
|
+
symbol: "USDT",
|
|
1112
|
+
decimals: 6,
|
|
1113
|
+
peg: toCurrencyCode("USD"),
|
|
1114
|
+
deploymentStartBlock: 46465979,
|
|
1115
|
+
deploymentTransaction: "0xa17ad76fe8b24cdf1fbcff245c3eb022444710cf9fa7b5ee59818be654f4ae10",
|
|
1116
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
assetId: assetIdFor(84532, "0x1d93d525f73453fe18eebf044e8a3954bfe3721e"),
|
|
1120
|
+
chainId: toChainId(84532),
|
|
1121
|
+
tokenAddress: "0x1d93d525f73453fe18eebf044e8a3954bfe3721e",
|
|
1122
|
+
symbol: "WETH",
|
|
1123
|
+
decimals: 18,
|
|
1124
|
+
peg: null,
|
|
1125
|
+
deploymentStartBlock: 46465980,
|
|
1126
|
+
deploymentTransaction: "0xcb9b2d024686fac93ec1243ccf02d3567fd531da46176115660cba2ba644b09d",
|
|
1127
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
assetId: assetIdFor(84532, "0x8fe52c70aa9f7b6d74d8bb26eca33d87413cb624"),
|
|
1131
|
+
chainId: toChainId(84532),
|
|
1132
|
+
tokenAddress: "0x8fe52c70aa9f7b6d74d8bb26eca33d87413cb624",
|
|
1133
|
+
symbol: "WBTC",
|
|
1134
|
+
decimals: 8,
|
|
1135
|
+
peg: null,
|
|
1136
|
+
deploymentStartBlock: 46465981,
|
|
1137
|
+
deploymentTransaction: "0x728ba7b430ffd141f83d0ed5ce429d050049d7b097c936fd11e9c572d1243854",
|
|
1138
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
assetId: assetIdFor(84532, "0x5865fe9787ac214feb5facaebaec06969ac0a9a3"),
|
|
1142
|
+
chainId: toChainId(84532),
|
|
1143
|
+
tokenAddress: "0x5865fe9787ac214feb5facaebaec06969ac0a9a3",
|
|
1144
|
+
symbol: "cNGN",
|
|
1145
|
+
decimals: 6,
|
|
1146
|
+
peg: toCurrencyCode("NGN"),
|
|
1147
|
+
deploymentStartBlock: 46465982,
|
|
1148
|
+
deploymentTransaction: "0xcedf254bcef57fc64189261a5ab1161bc4fde370e470933f627c4d8ddb5a2e26",
|
|
1149
|
+
source: SYNTHETIC_TEST_ASSET_SOURCE
|
|
1150
|
+
}
|
|
1151
|
+
];
|
|
1152
|
+
toChainId(84532);
|
|
1153
|
+
/**
|
|
1154
|
+
* Every known asset in ONE identity space. The tiers above declare admission;
|
|
1155
|
+
* this is the only list an identity resolves against, so an asset is never
|
|
1156
|
+
* two different things depending on which list a caller happened to read.
|
|
1157
|
+
*/
|
|
1158
|
+
const MONEY_ASSET_REGISTRY = [...CONFIGURED_MONEY_ASSETS, ...SYNTHETIC_TEST_ASSETS];
|
|
1057
1159
|
CONFIGURED_MONEY_ASSETS.map((asset) => asset.tokenAddress.toLowerCase());
|
|
1160
|
+
/** The registry row for `assetId` across every tier, or `null`. */
|
|
1058
1161
|
function configuredMoneyAssetById(assetId) {
|
|
1059
1162
|
const canonical = toAssetId(assetId);
|
|
1060
|
-
return
|
|
1163
|
+
return MONEY_ASSET_REGISTRY.find((asset) => asset.assetId === canonical) ?? null;
|
|
1061
1164
|
}
|
|
1062
1165
|
//#endregion
|
|
1063
1166
|
//#region ../config/src/org-payments.ts
|
|
@@ -1947,6 +2050,12 @@ const USDX_BASE_SEPOLIA_TOKEN = {
|
|
|
1947
2050
|
USDX_BASE_SEPOLIA_TOKEN.chainId;
|
|
1948
2051
|
USDX_BASE_SEPOLIA_TOKEN.chainId;
|
|
1949
2052
|
10n ** BigInt(6);
|
|
2053
|
+
/**
|
|
2054
|
+
* The bootstrap manage role. It administers people and roles, cannot spend,
|
|
2055
|
+
* and is not a signer of the Organization Safe; "Owner" implied the latter,
|
|
2056
|
+
* so the label is Admin (ruled 2026-09-06).
|
|
2057
|
+
*/
|
|
2058
|
+
const ADMIN_ROLE_LABEL = "Admin";
|
|
1950
2059
|
function normalizeOrgRoleLabel(label) {
|
|
1951
2060
|
const normalized = label.trim().replace(/\s+/g, " ");
|
|
1952
2061
|
if (normalized.length === 0) throw Errors.invalidInput("role.label", "must be a non-empty role label");
|
|
@@ -2363,4 +2472,4 @@ function readExchange(body) {
|
|
|
2363
2472
|
};
|
|
2364
2473
|
}
|
|
2365
2474
|
//#endregion
|
|
2366
|
-
export {
|
|
2475
|
+
export { toRoleKey as $, currencySymbolFor as A, toCurrencyCode as B, ASSET_ID_RE as C, isCredentialField 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, containsSensitiveMaterial as St, EVM_ADDRESS_RE as T, redactUrlSecrets as Tt, toEpochMs as U, toDurationMs as V, toEpochSeconds as W, toPayrollGroupId as X, toPartyId as Y, toPayrollRunId as Z, normalizeBindingEmail as _, decodeChainCause as _t, parseAuthSession as a, HANDLE_RE as at, configuredMoneyAssetById as b, isFailureMode as bt, AuthCachePortTag as c, CapxulError as ct, authClientPortFromPromiseAdapter as d, isCapxulError as dt, toSessionToken as et, AuthClientError as f, CHAIN_UPSTREAMS as ft, CAPXUL_PAYMENTS_V2_ADDRESS as g, chainEvidenceLabel as gt, orgRoleKeyForLabel as h, chainCauseProperties as ht, BrowserAuthCacheAdapter as i, validateHandle as it, toAccountId as j, assetIdFor as k, SystemClockLayer as l, EXPECTED_OPERATION_OUTCOMES as lt, ADMIN_ROLE_LABEL as m, boundedResponseHeaders as mt, readClockNow as n, toTxHash as nt, parseCachedJwt as o, decodeConvexError as ot, AuthClientPortTag as p, FAILURE_MODES as pt, toKycTier as q, InMemoryAuthCacheAdapter as r, toWeiAmount as rt, AuthCacheError as s, CAPXUL_ERROR_CODES as st, oauthBearerAuthClient as t, toTesterKind as tt, ClockPortTag as u, Errors as ut, BASE_SEPOLIA_CHAIN_ID as v, failureFingerprint as vt, BYTES32_RE as w, redactSecrets as wt, ACCOUNT_ID_RE as x, revertSummaryText as xt, deriveCapxulSafeAddress as y, isChainUpstream 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": "12a590f10914e8b056ce54732e6f484f36e060f3",
|
|
4
|
+
"tree": "90adc6656be3c1fb0a6e18170877d46081fa2538",
|
|
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.11"
|
|
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-A1zW1JPt.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 {
|
|
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-7jr-KUvX.mjs";
|
|
2
|
+
import { A as currencySymbolFor, B as toCurrencyCode, G as toHandle, M as toAddress, T as EVM_ADDRESS_RE, Y as toPartyId, at as HANDLE_RE, b as configuredMoneyAssetById, ct as CapxulError, dt as isCapxulError, ft as CHAIN_UPSTREAMS, g as CAPXUL_PAYMENTS_V2_ADDRESS, k as assetIdFor, pt as FAILURE_MODES, st as CAPXUL_ERROR_CODES, ut as Errors, z as toCountryCode } from "./OAuthBearerAuthClient-CbU_W9Sp.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 { a as parseAuthSession, c as AuthCachePortTag, i as BrowserAuthCacheAdapter,
|
|
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-CbU_W9Sp.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";
|