@capxul/sdk 4.1.4 → 4.2.0-rc.2
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/{clock-C2AUlq1V.mjs → OAuthBearerAuthClient-BrbXrndM.mjs} +525 -52
- package/dist/{signer-C0hZ6Kiy.d.mts → OAuthBearerAuthClient-C-ip-z8M.d.mts} +30 -6
- package/dist/capxul-source.json +11 -0
- package/dist/index.d.mts +53 -51
- package/dist/index.mjs +144 -3505
- package/dist/node/index.d.mts +2 -3
- package/dist/node/index.mjs +1 -2
- package/dist/{observation-Bhdq9-l6.d.mts → production-CBKHzqYP.d.mts} +97 -4
- package/dist/{create-capxul-client-B3ET402J.mjs → production-WbMhv2Fb.mjs} +4098 -181
- package/dist/testing/index.d.mts +7 -2
- package/dist/testing/index.mjs +10 -4
- package/package.json +3 -3
- package/dist/OAuthBearerAuthClient-BHvDR8_0.mjs +0 -211
- package/dist/OAuthBearerAuthClient-D-DLYlKj.d.mts +0 -19
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Context, Effect } from "effect";
|
|
2
1
|
import { Account, Address, Hex } from "viem";
|
|
2
|
+
import { Context, Effect } from "effect";
|
|
3
3
|
//#region ../errors/src/chain-cause.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Why an operation failed — the one flat vocabulary. The first four are the
|
|
@@ -257,10 +257,6 @@ declare const Errors: {
|
|
|
257
257
|
}) => CapxulError;
|
|
258
258
|
};
|
|
259
259
|
//#endregion
|
|
260
|
-
//#region ../config/src/capxul-payments-v2.d.ts
|
|
261
|
-
/** Immutable CapxulPaymentsV2 deployment on Base Sepolia. */
|
|
262
|
-
declare const CAPXUL_PAYMENTS_V2_ADDRESS: Address;
|
|
263
|
-
//#endregion
|
|
264
260
|
//#region ../types/src/brand.d.ts
|
|
265
261
|
/**
|
|
266
262
|
* Nominal type helper. `Brand<T, B>` is structurally a `T` at runtime but
|
|
@@ -275,6 +271,13 @@ type Brand<T, B extends string> = T & {
|
|
|
275
271
|
//#endregion
|
|
276
272
|
//#region ../types/src/index.d.ts
|
|
277
273
|
type Address$1 = Brand<string, "Address">;
|
|
274
|
+
/** Canonical ERC-20 CAIP-19 identity. Currency is not asset identity. */
|
|
275
|
+
type AssetId = Brand<string, "AssetId">;
|
|
276
|
+
/** One asset quantity in major units. Registry metadata supplies precision. */
|
|
277
|
+
type AssetAmount = {
|
|
278
|
+
readonly asset: AssetId;
|
|
279
|
+
readonly value: string;
|
|
280
|
+
};
|
|
278
281
|
type Email = Brand<string, "Email">;
|
|
279
282
|
type TesterKind = "human" | "e2e" | "agent";
|
|
280
283
|
type Profile$1 = {
|
|
@@ -375,6 +378,10 @@ declare function toPartyId(raw: unknown): PartyId;
|
|
|
375
378
|
declare function toHandle(raw: unknown): Handle;
|
|
376
379
|
declare function toCountryCode(raw: unknown): CountryCode;
|
|
377
380
|
//#endregion
|
|
381
|
+
//#region ../config/src/capxul-payments-v2.d.ts
|
|
382
|
+
/** Immutable CapxulPaymentsV2 deployment on Base Sepolia. */
|
|
383
|
+
declare const CAPXUL_PAYMENTS_V2_ADDRESS: Address;
|
|
384
|
+
//#endregion
|
|
378
385
|
//#region src/ports/auth-cache.d.ts
|
|
379
386
|
/**
|
|
380
387
|
* AuthCachePort stores the user session and the cached
|
|
@@ -601,4 +608,21 @@ interface Eip1193RequestProvider {
|
|
|
601
608
|
*/
|
|
602
609
|
declare function injectedWalletSigner(provider: Eip1193RequestProvider): CapxulSigner;
|
|
603
610
|
//#endregion
|
|
604
|
-
|
|
611
|
+
//#region src/adapters/auth-client/OAuthBearerAuthClient.d.ts
|
|
612
|
+
interface OAuthBearerAuthClientInput {
|
|
613
|
+
/** The exchange endpoint: `{authBaseUrl}/api/auth/agent/exchange`. */
|
|
614
|
+
readonly exchangeUrl: string;
|
|
615
|
+
/** The shared secret the exchange endpoint checks. The caller holds it. */
|
|
616
|
+
readonly exchangeSecret: string;
|
|
617
|
+
/** The agent's OAuth access token. */
|
|
618
|
+
readonly accessToken: string;
|
|
619
|
+
readonly fetch?: typeof fetch;
|
|
620
|
+
readonly clock?: ClockPort;
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* `AuthClientPort` over the backend agent-token exchange. Build one per OAuth
|
|
624
|
+
* access token and hand it to `createCapxulClient({ authClient })`.
|
|
625
|
+
*/
|
|
626
|
+
declare function oauthBearerAuthClient(input: OAuthBearerAuthClientInput): AuthClientPort;
|
|
627
|
+
//#endregion
|
|
628
|
+
export { PayrollGroupId as $, AllowanceKey as A, ChainId as B, AuthCachePort as C, ChainCause as Ct, Account$1 as D, RevertSummary as Dt, CAPXUL_PAYMENTS_V2_ADDRESS as E, FailureMode as Et, AssetId as F, EVM_ADDRESS_RE as G, CurrencyCode as H, AuthSession as I, Handle as J, Email as K, AuthUserId as L, AnonymousDistinctId as M, AppId as N, AccountId as O, AssetAmount as P, PaymentCommandId as Q, BlockNumber as R, AuthCacheError as S, CHAIN_UPSTREAMS as St, CachedJwt as T, FAILURE_MODES as Tt, DocumentHash as U, CountryCode as V, DurationMs as W, OrgId as X, Money as Y, PartyId as Z, Session as _, CapxulErrorCode as _t, Eip1193RequestProvider as a, RoleKey as at, AuthClientPort as b, Failure as bt, injectedWalletSigner as c, TesterKind as ct, AccountRequirement as d, toAddress as dt, PayrollRunId as et, Eip1193Provider as f, toCountryCode as ft, Profile as g, CapxulError as gt, CapxulResult as h, CAPXUL_ERROR_CODES as ht, CapxulSigner as i, PublishableKey as it, AllowedOrigin as j, Address$1 as k, AccountProvider as l, TxHash as lt, localPrivateKeyAccountProvider as m, toPartyId as mt, oauthBearerAuthClient as n, PermissionId as nt, SignerStatus as o, SessionToken as ot, eip1193AccountProvider as p, toHandle as pt, EpochMs as q, CapxulDigestSigner as r, Profile$1 as rt, SignerStatusStore as s, SmartAccount$1 as st, OAuthBearerAuthClientInput as t, PermissionAssignmentId as tt, AccountProviderSource as u, WeiAmount as ut, SmartAccount as v, CapxulErrorDetails as vt, AuthCachePortTag as w, ChainUpstream as wt, CanSendOtpStatus as x, isCapxulError as xt, ClockPort as y, Errors as yt, BudgetId as z };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"source": {
|
|
3
|
+
"commit": "fe4f1c05f1de962a7a76825816bdff2beaf5fc88",
|
|
4
|
+
"tree": "45b0c3cfdd39d23a4cfb1c1bcc047521f16bc12d",
|
|
5
|
+
"branch": "codex/programme-rc",
|
|
6
|
+
"repository": "https://github.com/Xelmar-tech/infrastructure",
|
|
7
|
+
"lockfileSha256": "5870f53b72706d103220c1bcf733cb4fb71196aea32a9cfbdc277d73cc959264"
|
|
8
|
+
},
|
|
9
|
+
"name": "@capxul/sdk",
|
|
10
|
+
"version": "4.2.0-rc.2"
|
|
11
|
+
}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
|
-
import { B as
|
|
2
|
-
import { $ as
|
|
3
|
-
import "./OAuthBearerAuthClient-D-DLYlKj.mjs";
|
|
4
|
-
import { Context, Effect, Layer } from "effect";
|
|
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-CBKHzqYP.mjs";
|
|
5
3
|
import { Hex } from "viem";
|
|
6
|
-
import {
|
|
4
|
+
import { Effect, Layer } from "effect";
|
|
7
5
|
//#region ../errors/src/index.d.ts
|
|
8
6
|
/** Canonical handle syntax shared by validation and branded constructors. */
|
|
9
7
|
declare const HANDLE_RE: RegExp;
|
|
10
8
|
//#endregion
|
|
9
|
+
//#region ../config/src/tokens.d.ts
|
|
10
|
+
/** Canonical metadata. A missing peg does not imply a missing market price. */
|
|
11
|
+
interface AssetMetadata {
|
|
12
|
+
readonly assetId: AssetId;
|
|
13
|
+
readonly chainId: ChainId;
|
|
14
|
+
readonly tokenAddress: `0x${string}`;
|
|
15
|
+
readonly symbol: string;
|
|
16
|
+
readonly decimals: number;
|
|
17
|
+
readonly peg: CurrencyCode | null;
|
|
18
|
+
readonly deploymentStartBlock: number;
|
|
19
|
+
}
|
|
20
|
+
//#endregion
|
|
11
21
|
//#region ../observability/src/operations.d.ts
|
|
12
22
|
declare const CAPXUL_OPERATIONS: {
|
|
13
23
|
readonly account: {
|
|
@@ -448,6 +458,43 @@ declare function requestPhase(status: RequestStatus): ActivityPhase;
|
|
|
448
458
|
/** Interpret the same request as its RECIPIENT sees it. `open` waits for the recipient. */
|
|
449
459
|
declare function inboxPhase(status: InboxStatus): ActivityPhase;
|
|
450
460
|
//#endregion
|
|
461
|
+
//#region src/domain/money/parse-money.d.ts
|
|
462
|
+
type MoneyParseErrorReason = "required" | "too-long" | "invalid-format" | "non-positive" | "too-many-decimals";
|
|
463
|
+
interface MoneyParseError {
|
|
464
|
+
readonly kind: "error";
|
|
465
|
+
readonly reason: MoneyParseErrorReason;
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
* ADR-0023 R1: the reason is a closed code and the ONLY failure vocabulary —
|
|
469
|
+
* the consuming app maps each code to its own sentence. The SDK ships no
|
|
470
|
+
* English for user-text failure.
|
|
471
|
+
*/
|
|
472
|
+
declare function isMoneyParseError(value: AssetAmount | Money | MoneyParseError): value is MoneyParseError;
|
|
473
|
+
declare function parseMoney(input: string, asset: Pick<Money, "currency" | "decimals">): Money | MoneyParseError;
|
|
474
|
+
//#endregion
|
|
475
|
+
//#region src/domain/money/asset-amount.d.ts
|
|
476
|
+
declare function parseAssetAmount(input: string, asset: AssetMetadata): AssetAmount | MoneyParseError;
|
|
477
|
+
/** Display the full quantity. Only fiat formatting rounds for display. */
|
|
478
|
+
declare function formatAssetAmount(amount: AssetAmount): string;
|
|
479
|
+
declare function assetSymbolFor(asset: AssetId): string;
|
|
480
|
+
//#endregion
|
|
481
|
+
//#region src/domain/money/valuation.d.ts
|
|
482
|
+
interface Rate {
|
|
483
|
+
/** Positive integer at the declared decimal scale. */
|
|
484
|
+
readonly value: string;
|
|
485
|
+
readonly decimals: number;
|
|
486
|
+
}
|
|
487
|
+
/** Fiat balances use their currency directly, never an invented token identity. */
|
|
488
|
+
type RateSource = (source: AssetMetadata | CurrencyCode, into: CurrencyCode) => Rate | null;
|
|
489
|
+
declare const PEG_RATES: RateSource;
|
|
490
|
+
interface Valuation<T extends AssetAmount | Money = AssetAmount | Money> {
|
|
491
|
+
readonly total: Money | null;
|
|
492
|
+
readonly counted: readonly T[];
|
|
493
|
+
readonly unrated: readonly T[];
|
|
494
|
+
}
|
|
495
|
+
/** Sum exact fixed-point values. Missing rates never contribute zero. */
|
|
496
|
+
declare function valueIn<T extends AssetAmount | Money>(amounts: readonly T[], displayCurrency: CurrencyCode, rates?: RateSource): Valuation<T>;
|
|
497
|
+
//#endregion
|
|
451
498
|
//#region src/domain/money/format-money.d.ts
|
|
452
499
|
/**
|
|
453
500
|
* `Money` and the wire-shaped money the activity surface carries
|
|
@@ -465,20 +512,6 @@ declare function formatMoney(money: FormattableMoney, options?: {
|
|
|
465
512
|
readonly grammar?: "symbol" | "code";
|
|
466
513
|
}): string;
|
|
467
514
|
//#endregion
|
|
468
|
-
//#region src/domain/money/parse-money.d.ts
|
|
469
|
-
type MoneyParseErrorReason = "required" | "too-long" | "invalid-format" | "non-positive" | "too-many-decimals";
|
|
470
|
-
interface MoneyParseError {
|
|
471
|
-
readonly kind: "error";
|
|
472
|
-
readonly reason: MoneyParseErrorReason;
|
|
473
|
-
}
|
|
474
|
-
/**
|
|
475
|
-
* ADR-0023 R1: the reason is a closed code and the ONLY failure vocabulary —
|
|
476
|
-
* the consuming app maps each code to its own sentence. The SDK ships no
|
|
477
|
-
* English for user-text failure.
|
|
478
|
-
*/
|
|
479
|
-
declare function isMoneyParseError(value: Money | MoneyParseError): value is MoneyParseError;
|
|
480
|
-
declare function parseMoney(input: string, asset: Pick<Money, "currency" | "decimals">): Money | MoneyParseError;
|
|
481
|
-
//#endregion
|
|
482
515
|
//#region src/adapters/auth-cache/BrowserAuthCacheAdapter.d.ts
|
|
483
516
|
interface BrowserStorageShape {
|
|
484
517
|
getItem(key: string): string | null;
|
|
@@ -562,37 +595,6 @@ declare function openfortEmbeddedSigner(input: OpenfortEmbeddedSignerInput): Ope
|
|
|
562
595
|
*/
|
|
563
596
|
declare const embeddedSigner: typeof openfortEmbeddedSigner;
|
|
564
597
|
//#endregion
|
|
565
|
-
//#region src/production.d.ts
|
|
566
|
-
/**
|
|
567
|
-
* Consumer-facing `createCapxulClient` input (SDK DX public surface · #326).
|
|
568
|
-
* The publishable key is the primary input; bootstrap host, invoke timeout,
|
|
569
|
-
* runtime detection, and auth-cache selection are SDK-owned defaults.
|
|
570
|
-
*/
|
|
571
|
-
interface CapxulClientInput {
|
|
572
|
-
readonly publishableKey: string;
|
|
573
|
-
/**
|
|
574
|
-
* One host-owned product/failure observability module around the host's
|
|
575
|
-
* existing analytics client. Omit for zero host observation work.
|
|
576
|
-
*/
|
|
577
|
-
readonly observability?: HostObservability;
|
|
578
|
-
/**
|
|
579
|
-
* Init-time account readiness target (issue #159 · AC4). Threaded into
|
|
580
|
-
* `assembleCapxulClient` so `client.account.{getStatus,ensureReady}` reflect
|
|
581
|
-
* the consumer's chosen requirement. Optional — defaults to `"none"` (SDK
|
|
582
|
-
* publish readiness · I3) so `createCapxulClient({ publishableKey })` works
|
|
583
|
-
* with no account lane.
|
|
584
|
-
*/
|
|
585
|
-
readonly requirement?: AccountRequirement;
|
|
586
|
-
/**
|
|
587
|
-
* Consumer-held signer (backend-orchestrated-deploy.md). Required for
|
|
588
|
-
* `requirement: "deployed"` flows: `provision` reads `getAddress()` and the
|
|
589
|
-
* deploy path signs the backend's SafeOp digest via `signUserOpHash()`. The
|
|
590
|
-
* backend orchestrates build + gas + paymaster + submit — the client never
|
|
591
|
-
* holds an RPC URL, a gas-sponsorship policy, or a bundler.
|
|
592
|
-
*/
|
|
593
|
-
readonly signer?: CapxulSigner;
|
|
594
|
-
}
|
|
595
|
-
//#endregion
|
|
596
598
|
//#region src/surface/create-capxul-client-from-production.d.ts
|
|
597
599
|
/** Consumer-facing factory — accepts only production-meaningful inputs (#326). */
|
|
598
600
|
declare function createCapxulClient(input: CapxulClientInput): Promise<CapxulResult<CapxulClient>>;
|
|
@@ -626,4 +628,4 @@ declare function captureException(telemetry: TelemetryPort, error: unknown, cont
|
|
|
626
628
|
*/
|
|
627
629
|
declare function captureExceptionSync(telemetry: TelemetryPort, error: unknown, context?: HandledErrorReportContext): void;
|
|
628
630
|
//#endregion
|
|
629
|
-
export { type Account, type AccountId, type AccountLifecycle, type AccountMethods, type AccountProvider, type AccountProviderSource, type AccountRequirement, type AccountSetupStep, type AccountsMethods, type ActivityAnnotation, type ActivityAnnotationInput, type ActivityDetail, type ActivityFilter, type ActivityItem, type ActivityKind, type ActivityListParams, type ActivityMethods, type ActivityPage, type ActivityPhase, type ActivityRange, type ActivityReference, type ActivitySummary, type ActivitySummaryParams, type ActivitySummaryTotal, type ActorProfile, type ActorProfileMethods, type ActorRef, type ActorReference, type ActorRelationshipMethods, type ActorRequest, type ActorRequestIssueInput, type ActorRequestsMethods, type Address, type AddressBookAddInput, type AddressBookEntry, type AddressBookLabelInput, type AddressBookMethods, type AuthMethods, type AuthSession, type AuthUserId, type AuthorizeRunInput, type AuthorizeRunOptions, type Budget, type BudgetId, CAPXUL_ERROR_CODES, CAPXUL_OPERATIONS, CAPXUL_PAYMENTS_V2_ADDRESS, CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, CHAIN_UPSTREAMS, type CapxulClient, type CapxulClientInput, type CapxulDigestSigner, CapxulError, type CapxulErrorCode, type CapxulErrorDetails, type CapxulOperation, type CapxulResult, type CapxulSigner, type ChainCause, type ChainUpstream, type CompleteProfileInput, type CompletedPersonProfile, type CountryCode, type CreateCapxulClientInput, type CreateOrgInput, type CurrentHoldings, type CurrentUserContext, type CurrentUserMethods, type DepositInstructions, type Destination, type DestinationAddInput, type DestinationKind, type DestinationListInput, type DestinationPayload, type DestinationRail, type DestinationRemoveInput, type DestinationsMethods, type DetectPendingOrgInvitationsResult, type DevPrivateKeySignerInput, EVM_ADDRESS_RE, type Eip1193Provider, type Eip1193RequestProvider, Errors, FAILURE_MODES, type FailureMode, type FinancialOpsMethods, HANDLE_RE, type Handle, type HandledErrorReportContext, type Holding, type HoldingsMethods, type HostObservability, type Destination$1 as IdentityDestination, type IdentityEvent, type IdentityMethods, type IdentityProfileDetails, type IdentityRuntime, type IdentityRuntimeSendResult, type IdentityState, type IdentityTransition, type InboxApproveInput, type InboxItem, type InboxMethods, type InviteMemberInput, type InvocationControls, type MeMethods, type MeProfile, type MediaMethods, type MemberStatus, type MemberView, type Money, type MoneyParseError, type MoneyParseErrorReason, type MovementActivityEvidence, type NormalizedCapxulOperation, type ObservationAdapter, type ObservationContext, type ObservationDelivery, type OfframpMethods, type OfframpQuote, type OfframpQuoteInput, type OfframpStatus, type OnboardingMethods, type OpenfortEmbeddedSignerInput, type OpenfortEmbeddedWalletApi, type OpenfortEmbeddedWalletPort, type OrgId, type OrgLane, type OrgLifecycle, type OrgMe, type OrgMeMethod, type OrgMeOptions, type OrgMethods, type OrgScopedMethods, type OrgSetupStep, type OrgTemplate, type OrgView, type OrganizationAccount, type OrganizationAuditLogItem, type OrganizationOnboarding, type OrganizationOnboardingInput, type OrganizationPaymentBatchInput, type OrganizationPaymentInput, type OrganizationPaymentItemInput, type OrganizationPaymentsMethods, PAYMENT_DIRECTIONS, PAYMENT_STATUSES, type PartyId, type Payment, type PaymentActivityEvidence, type PaymentDirection, type PaymentDocumentKind, type PaymentDocumentRef, type PaymentDocumentRender, type PaymentDocumentVerification, type PaymentDocumentsMethods, type PaymentMoney, type PaymentStatus, type PaymentTiming, type PaymentType, type PaymentsMethods, type PaymentsPayInput, type PayrollEngagementTerms, type PayrollGroup, type PayrollGroupId, type PayrollGroupInput, type PayrollGroupMember, type PayrollGroupsMethods, type PayrollMethods, type PayrollOptions, type PayrollRun, type PayrollRunId, type PayrollRunItemInput, type PayrollRunStatus, type PayrollRuns, type PayrollTermsUnit, type Permission, type PermissionAssignInput, type PermissionChangeInput, type PermissionCreateInput, type PermissionMethods, type PermissionOptions, type PermissionReadResult, type PermissionReplaceInput, type PermissionRevokeInput, type PersonOnboarding, type PersonOnboardingInput, type PostHogObservabilityClient, type PostHogObservabilityOptions, type Profile, type Readiness, type ReadyAccountLifecycle, type RecipientResolution, type Ref, type ResendInviteTokenInput, type ResolvedTarget, type RevertSummary, type RoleDefinition, type RoleKey, type RoleSpendCap, type RoleView, type SdkFailureObservation, type Session, type SignerStatus, type SignerStatusStore, type SmartAccount, type SmartAccountMethods, type StateLabel, type SubmittedPermissionExecution, type SystemHealth, type SystemMethods, type TargetReference, type TargetsMethods, type TelemetryPort, type TesterKind, captureException, captureExceptionSync, createCapxulClient, deriveDevPrivateKey, devPrivateKeySigner, eip1193AccountProvider, embeddedSigner, fingerprintPaymentIntent, formatMoney, inboxPhase, injectedWalletSigner, isCapxulError, isCapxulOperation, isClaimed, isMoneyParseError, isRestoring, isSettingUpLifecycle, localPrivateKeyAccountProvider, normalizeCapxulOperation, openfortEmbeddedSigner, openfortEmbeddedSignerFromWallet, openfortEmbeddedWalletPort, parseMoney, paymentPhase, postHogObservability, requestPhase, destination as resolveIdentityDestination, toCountryCode, toAddress as toEvmAddress, toHandle, toPartyId };
|
|
631
|
+
export { type Account, type AccountId, type AccountLifecycle, type AccountMethods, type AccountProvider, type AccountProviderSource, type AccountRequirement, type AccountSetupStep, type AccountsMethods, type ActivityAnnotation, type ActivityAnnotationInput, type ActivityDetail, type ActivityFilter, type ActivityItem, type ActivityKind, type ActivityListParams, type ActivityMethods, type ActivityPage, type ActivityPhase, type ActivityRange, type ActivityReference, type ActivitySummary, type ActivitySummaryParams, type ActivitySummaryTotal, type ActorProfile, type ActorProfileMethods, type ActorRef, type ActorReference, type ActorRelationshipMethods, type ActorRequest, type ActorRequestIssueInput, type ActorRequestsMethods, type Address, type AddressBookAddInput, type AddressBookEntry, type AddressBookLabelInput, type AddressBookMethods, type AssetAmount, type AssetId, type AssetMetadata, type AuthMethods, type AuthSession, type AuthUserId, type AuthorizeRunInput, type AuthorizeRunOptions, type Budget, type BudgetId, CAPXUL_ERROR_CODES, CAPXUL_OPERATIONS, CAPXUL_PAYMENTS_V2_ADDRESS, CAPXUL_SDK_EXPECTED_OUTCOME_EVENT, CHAIN_UPSTREAMS, type CapxulClient, type CapxulClientInput, type CapxulDigestSigner, CapxulError, type CapxulErrorCode, type CapxulErrorDetails, type CapxulOperation, type CapxulResult, type CapxulSigner, type ChainCause, type ChainUpstream, type CompleteProfileInput, type CompletedPersonProfile, type CountryCode, type CreateCapxulClientInput, type CreateOrgInput, type CurrentHoldings, type CurrentUserContext, type CurrentUserMethods, type DepositInstructions, type Destination, type DestinationAddInput, type DestinationKind, type DestinationListInput, type DestinationPayload, type DestinationRail, type DestinationRemoveInput, type DestinationsMethods, type DetectPendingOrgInvitationsResult, type DevPrivateKeySignerInput, EVM_ADDRESS_RE, type Eip1193Provider, type Eip1193RequestProvider, Errors, FAILURE_MODES, type FailureMode, type FinancialOpsMethods, HANDLE_RE, type Handle, type HandledErrorReportContext, type Holding, type HoldingsMethods, type HostObservability, type Destination$1 as IdentityDestination, type IdentityEvent, type IdentityMethods, type IdentityProfileDetails, type IdentityRuntime, type IdentityRuntimeSendResult, type IdentityState, type IdentityTransition, type InboxApproveInput, type InboxItem, type InboxMethods, type InviteMemberInput, type InvocationControls, type MeMethods, type MeProfile, type MediaMethods, type MemberStatus, type MemberView, type Money, type MoneyParseError, type MoneyParseErrorReason, type MovementActivityEvidence, type NormalizedCapxulOperation, type ObservationAdapter, type ObservationContext, type ObservationDelivery, type OfframpMethods, type OfframpQuote, type OfframpQuoteInput, type OfframpStatus, type OnboardingMethods, type OpenfortEmbeddedSignerInput, type OpenfortEmbeddedWalletApi, type OpenfortEmbeddedWalletPort, type OrgId, type OrgLane, type OrgLifecycle, type OrgMe, type OrgMeMethod, type OrgMeOptions, type OrgMethods, type OrgScopedMethods, type OrgSetupStep, type OrgTemplate, type OrgView, type OrganizationAccount, type OrganizationAuditLogItem, type OrganizationOnboarding, type OrganizationOnboardingInput, type OrganizationPaymentBatchInput, type OrganizationPaymentInput, type OrganizationPaymentItemInput, type OrganizationPaymentsMethods, PAYMENT_DIRECTIONS, PAYMENT_STATUSES, PEG_RATES, type PartyId, type Payment, type PaymentActivityEvidence, type PaymentDirection, type PaymentDocumentKind, type PaymentDocumentRef, type PaymentDocumentRender, type PaymentDocumentVerification, type PaymentDocumentsMethods, type PaymentMoney, type PaymentStatus, type PaymentTiming, type PaymentType, type PaymentsMethods, type PaymentsPayInput, type PayoutAddress, type PayrollEngagementTerms, type PayrollGroup, type PayrollGroupId, type PayrollGroupInput, type PayrollGroupMember, type PayrollGroupsMethods, type PayrollMethods, type PayrollOptions, type PayrollRun, type PayrollRunId, type PayrollRunItemInput, type PayrollRunStatus, type PayrollRuns, type PayrollTermsUnit, type Permission, type PermissionAssignInput, type PermissionChangeInput, type PermissionCreateInput, type PermissionMethods, type PermissionOptions, type PermissionReadResult, type PermissionReplaceInput, type PermissionRevokeInput, type PersonOnboarding, type PersonOnboardingInput, type PostHogObservabilityClient, type PostHogObservabilityOptions, type Profile, type Rate, type RateSource, type Readiness, type ReadyAccountLifecycle, type RecipientResolution, type Ref, type ResendInviteTokenInput, type ResolvedTarget, type RevertSummary, type RoleDefinition, type RoleKey, type RoleSpendCap, type RoleView, type SdkFailureObservation, type Session, type SignerStatus, type SignerStatusStore, type SmartAccount, type SmartAccountMethods, type StateLabel, type SubmittedPermissionExecution, type SystemHealth, type SystemMethods, type TargetReference, type TargetsMethods, type TelemetryPort, type TesterKind, type Valuation, assetSymbolFor, captureException, captureExceptionSync, createCapxulClient, deriveDevPrivateKey, devPrivateKeySigner, eip1193AccountProvider, embeddedSigner, fingerprintPaymentIntent, formatAssetAmount, formatMoney, inboxPhase, injectedWalletSigner, isCapxulError, isCapxulOperation, isClaimed, isMoneyParseError, isRestoring, isSettingUpLifecycle, localPrivateKeyAccountProvider, normalizeCapxulOperation, openfortEmbeddedSigner, openfortEmbeddedSignerFromWallet, openfortEmbeddedWalletPort, parseAssetAmount, parseMoney, paymentPhase, postHogObservability, requestPhase, destination as resolveIdentityDestination, toCountryCode, toAddress as toEvmAddress, toHandle, toPartyId, valueIn };
|