@capxul/sdk 0.2.0-alpha.4 → 0.2.0-alpha.5

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.
Files changed (45) hide show
  1. package/README.md +4 -308
  2. package/dist/InMemoryAuthCacheAdapter-BK-B_ERB.mjs +113 -0
  3. package/dist/InMemoryAuthCacheAdapter-BK-B_ERB.mjs.map +1 -0
  4. package/dist/index.d.mts +1263 -0
  5. package/dist/index.d.mts.map +1 -0
  6. package/dist/index.mjs +4740 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/dist/node/index.d.mts +55 -0
  9. package/dist/node/index.d.mts.map +1 -0
  10. package/dist/node/index.mjs +159 -0
  11. package/dist/node/index.mjs.map +1 -0
  12. package/dist/ports/safe-deployment.d.mts +2 -0
  13. package/dist/ports/safe-deployment.mjs +38 -0
  14. package/dist/ports/safe-deployment.mjs.map +1 -0
  15. package/dist/safe-deployment-Vni46k3t.d.mts +137 -0
  16. package/dist/safe-deployment-Vni46k3t.d.mts.map +1 -0
  17. package/dist/signer-oaYGfjDe.d.mts +142 -0
  18. package/dist/signer-oaYGfjDe.d.mts.map +1 -0
  19. package/package.json +37 -70
  20. package/CHANGELOG.md +0 -274
  21. package/LICENSE +0 -44
  22. package/dist/client-CbUeJoM9.d.ts +0 -1335
  23. package/dist/client-UEm2oZbZ.d.cts +0 -1335
  24. package/dist/client.cjs +0 -4042
  25. package/dist/client.d.cts +0 -6
  26. package/dist/client.d.ts +0 -6
  27. package/dist/client.js +0 -4040
  28. package/dist/errors-CwhCWGxm.d.ts +0 -70
  29. package/dist/errors-rqxuUhQP.d.cts +0 -70
  30. package/dist/errors.cjs +0 -35
  31. package/dist/errors.d.cts +0 -2
  32. package/dist/errors.d.ts +0 -2
  33. package/dist/errors.js +0 -31
  34. package/dist/index.cjs +0 -4273
  35. package/dist/index.d.cts +0 -461
  36. package/dist/index.d.ts +0 -461
  37. package/dist/index.js +0 -4234
  38. package/dist/next-action-CTGl8wpy.d.cts +0 -177
  39. package/dist/next-action-CTGl8wpy.d.ts +0 -177
  40. package/dist/types-BD4VAQb5.d.ts +0 -1205
  41. package/dist/types-HlwCIjgQ.d.cts +0 -1205
  42. package/dist/webhooks.cjs +0 -118
  43. package/dist/webhooks.d.cts +0 -33
  44. package/dist/webhooks.d.ts +0 -33
  45. package/dist/webhooks.js +0 -116
@@ -1,177 +0,0 @@
1
- /**
2
- * Branded ID types for every public Capxul resource.
3
- *
4
- * Every branded value MUST be created via the `to*()` constructor
5
- * exported alongside its type — direct casts (`raw as AccountId`) are
6
- * forbidden by `.claude/rules/typescript-style.md`. Constructors
7
- * validate the prefix pattern and throw on mismatch.
8
- *
9
- * Brand regime per `CANON.md` §A1+A2 lock (2026-04-19): the kernel
10
- * keeps its own `IdBrand<Name>` + `PrefixedId<Prefix, Name>` pattern
11
- * (independent of `@repo/types`, which was designed around earlier
12
- * Convex-typed SDK IDs) so the restart stack stays the brand canon.
13
- */
14
- type IdBrand<Name extends string> = string & {
15
- readonly __capxulIdBrand: Name;
16
- };
17
- type PrefixedId<Prefix extends string, Name extends string> = `${Prefix}_${string}` & IdBrand<Name>;
18
- type AccountId = PrefixedId<"acct", "AccountId">;
19
- declare const toAccountId: (raw: string) => PrefixedId<"acct", "AccountId">;
20
- type OrganizationId = PrefixedId<"org", "OrganizationId">;
21
- declare const toOrganizationId: (raw: string) => PrefixedId<"org", "OrganizationId">;
22
- type MemberId = PrefixedId<"mb", "MemberId">;
23
- declare const toMemberId: (raw: string) => PrefixedId<"mb", "MemberId">;
24
- type SafeId = PrefixedId<"safe", "SafeId">;
25
- declare const toSafeId: (raw: string) => PrefixedId<"safe", "SafeId">;
26
- type TreasuryId = PrefixedId<"try", "TreasuryId">;
27
- declare const toTreasuryId: (raw: string) => PrefixedId<"try", "TreasuryId">;
28
- type ApiKeyId = PrefixedId<"ak", "ApiKeyId">;
29
- declare const toApiKeyId: (raw: string) => PrefixedId<"ak", "ApiKeyId">;
30
- type ServiceAccountId = PrefixedId<"svc", "ServiceAccountId">;
31
- type OperationId = PrefixedId<"op", "OperationId">;
32
- declare const toOperationId: (raw: string) => PrefixedId<"op", "OperationId">;
33
- type CorrelationId = PrefixedId<"ctx", "CorrelationId">;
34
- type KycProfileId = PrefixedId<"kyc", "KycProfileId">;
35
- declare const toKycProfileId: (raw: string) => PrefixedId<"kyc", "KycProfileId">;
36
- type KybProfileId = PrefixedId<"kyb", "KybProfileId">;
37
- declare const toKybProfileId: (raw: string) => PrefixedId<"kyb", "KybProfileId">;
38
- type PayrollEntryId = PrefixedId<"pe", "PayrollEntryId">;
39
- type ExternalAccountId = PrefixedId<"ext", "ExternalAccountId">;
40
- declare const toExternalAccountId: (raw: string) => PrefixedId<"ext", "ExternalAccountId">;
41
- type PaymentId = PrefixedId<"pay", "PaymentId">;
42
- declare const toPaymentId: (raw: string) => PrefixedId<"pay", "PaymentId">;
43
- type InvoiceId = PrefixedId<"inv", "InvoiceId">;
44
- type WithdrawalId = PrefixedId<"wd", "WithdrawalId">;
45
- declare const toWithdrawalId: (raw: string) => PrefixedId<"wd", "WithdrawalId">;
46
- type WebhookEndpointId = PrefixedId<"we", "WebhookEndpointId">;
47
- declare const toWebhookEndpointId: (raw: string) => PrefixedId<"we", "WebhookEndpointId">;
48
- type WebhookEventId = PrefixedId<"evt", "WebhookEventId">;
49
- declare const toWebhookEventId: (raw: string) => PrefixedId<"evt", "WebhookEventId">;
50
- type OutboxMessageId = PrefixedId<"out", "OutboxMessageId">;
51
- type Cursor = PrefixedId<"cur", "Cursor">;
52
- type TransactionIntentId = PrefixedId<"ti", "TransactionIntentId">;
53
- type SubAccountId = PrefixedId<"sub", "SubAccountId">;
54
- declare const toSubAccountId: (raw: string) => PrefixedId<"sub", "SubAccountId">;
55
- type VirtualAccountId = PrefixedId<"va", "VirtualAccountId">;
56
- declare const toVirtualAccountId: (raw: string) => PrefixedId<"va", "VirtualAccountId">;
57
- type VirtualCardId = PrefixedId<"vc", "VirtualCardId">;
58
- declare const toVirtualCardId: (raw: string) => PrefixedId<"vc", "VirtualCardId">;
59
- type TransferId = PrefixedId<"txfr", "TransferId">;
60
- declare const toTransferId: (raw: string) => PrefixedId<"txfr", "TransferId">;
61
- type DocumentId = PrefixedId<"doc", "DocumentId">;
62
- declare const toDocumentId: (raw: string) => PrefixedId<"doc", "DocumentId">;
63
- type BalanceLedgerEntryId = PrefixedId<"bal", "BalanceLedgerEntryId">;
64
- declare const toBalanceLedgerEntryId: (raw: string) => PrefixedId<"bal", "BalanceLedgerEntryId">;
65
- type PublicId = AccountId | OrganizationId | MemberId | SafeId | TreasuryId | ApiKeyId | ServiceAccountId | OperationId | CorrelationId | KycProfileId | KybProfileId | PayrollEntryId | ExternalAccountId | PaymentId | InvoiceId | WithdrawalId | WebhookEndpointId | WebhookEventId | OutboxMessageId | Cursor | TransactionIntentId | SubAccountId | VirtualAccountId | VirtualCardId | TransferId | DocumentId | BalanceLedgerEntryId;
66
-
67
- type Money = {
68
- value: string;
69
- currency: string;
70
- };
71
- type WalletFundingDestination = {
72
- kind: "wallet_address";
73
- address: string;
74
- chain?: string;
75
- };
76
- type LinkedInstrumentFundingDestination = {
77
- kind: "linked_instrument";
78
- instrumentId: ExternalAccountId;
79
- };
80
- type ProviderInstructionFundingDestination = {
81
- kind: "provider_instruction";
82
- instructionId: string;
83
- };
84
- type FundingDestination = WalletFundingDestination | LinkedInstrumentFundingDestination | ProviderInstructionFundingDestination;
85
- type TimestampIso = string;
86
- /**
87
- * E.164-validated international phone number. Brand prevents swapping
88
- * with `email`, `username`, or other string identifiers (per `CANON.md`
89
- * §4.54 and `sdk-surface.md` §5h).
90
- */
91
- type PhoneNumber = string & {
92
- readonly __capxulPhoneBrand: "PhoneNumber";
93
- };
94
- /** Validate and brand an E.164 phone number. Throws on invalid input. */
95
- declare function toPhoneNumber(raw: string): PhoneNumber;
96
- /**
97
- * Lowercased, shape-validated email address. Brand prevents swapping
98
- * with `phoneNumber`, `username`, or other string identifiers (per
99
- * `CANON.md` §4.54 and `sdk-surface.md` §5h).
100
- */
101
- type Email = string & {
102
- readonly __capxulEmailBrand: "Email";
103
- };
104
- /** Validate, lowercase, and brand an email. Throws on invalid input. */
105
- declare function toEmail(raw: string): Email;
106
- /**
107
- * Public Capxul username. 3–30 chars, letter-first, lowercased,
108
- * remaining chars from `[a-z0-9_-]` (per `CANON.md` §4.54 and
109
- * `sdk-surface.md` §5h). Constructor lowercases before validating so
110
- * mixed-case input canonicalizes cleanly when the first char is a
111
- * letter; purely invalid shapes (too short, illegal chars, digit-first)
112
- * still throw.
113
- */
114
- type Username = string & {
115
- readonly __capxulUsernameBrand: "Username";
116
- };
117
- /** Validate, lowercase, and brand a username. Throws on invalid input. */
118
- declare function toUsername(raw: string): Username;
119
-
120
- /**
121
- * Discriminated union of action-required pauses. See
122
- * `/docs/internal/reset/conventions` §6 for the variant
123
- * catalog and the "Inline vs thrown" rule (Rule D).
124
- *
125
- * §4.54 refined the `fix_destination` payload with a reason enum and
126
- * optional recipient metadata. §4.58 added the 9th variant
127
- * `confirm_fx_quote` for the cross-custody transfer FX-commit flow.
128
- */
129
- type NextAction = {
130
- kind: "complete_kyc";
131
- url?: string;
132
- expiresAt?: TimestampIso;
133
- } | {
134
- kind: "complete_kyb";
135
- url?: string;
136
- embedToken?: string;
137
- expiresAt?: TimestampIso;
138
- } | {
139
- kind: "approve_transaction";
140
- intentId: TransactionIntentId;
141
- url?: string;
142
- } | {
143
- kind: "send_funds";
144
- amount: Money;
145
- destination: FundingDestination;
146
- } | {
147
- kind: "follow_redirect";
148
- url: string;
149
- expiresAt?: TimestampIso;
150
- } | {
151
- kind: "provide_otp";
152
- channel?: "email" | "sms" | "provider";
153
- } | {
154
- kind: "fix_destination";
155
- reason: "recipient_not_yet_capxul_user" | "recipient_unreachable_email" | "destination_kyc_blocked" | "invalid_format";
156
- recipient?: {
157
- email?: Email;
158
- phone?: PhoneNumber;
159
- username?: Username;
160
- invitationSentAt?: TimestampIso;
161
- invitationExpiresAt?: TimestampIso;
162
- signupUrl?: string;
163
- };
164
- } | {
165
- kind: "contact_support";
166
- reason: string;
167
- } | {
168
- kind: "confirm_fx_quote";
169
- quoteId: string;
170
- rate: string;
171
- sourceAmount: Money;
172
- creditAmount: Money;
173
- fees?: Money;
174
- expiresAt: TimestampIso;
175
- };
176
-
177
- export { type AccountId as A, type BalanceLedgerEntryId as B, type CorrelationId as C, type DocumentId as D, type Email as E, toTransferId as F, toTreasuryId as G, toUsername as H, toVirtualAccountId as I, toVirtualCardId as J, type KybProfileId as K, toWebhookEndpointId as L, type MemberId as M, type NextAction as N, type OperationId as O, type PaymentId as P, toWebhookEventId as Q, toWithdrawalId as R, type SafeId as S, type TransactionIntentId as T, type Username as U, type VirtualAccountId as V, type WebhookEndpointId as W, type TimestampIso as X, type PublicId as Y, type ApiKeyId as a, type ExternalAccountId as b, type KycProfileId as c, type OrganizationId as d, type PhoneNumber as e, type SubAccountId as f, type TransferId as g, type TreasuryId as h, type VirtualCardId as i, type WebhookEventId as j, type WithdrawalId as k, toApiKeyId as l, toBalanceLedgerEntryId as m, toDocumentId as n, toEmail as o, toExternalAccountId as p, toKybProfileId as q, toKycProfileId as r, toMemberId as s, toAccountId as t, toOperationId as u, toOrganizationId as v, toPaymentId as w, toPhoneNumber as x, toSafeId as y, toSubAccountId as z };
@@ -1,177 +0,0 @@
1
- /**
2
- * Branded ID types for every public Capxul resource.
3
- *
4
- * Every branded value MUST be created via the `to*()` constructor
5
- * exported alongside its type — direct casts (`raw as AccountId`) are
6
- * forbidden by `.claude/rules/typescript-style.md`. Constructors
7
- * validate the prefix pattern and throw on mismatch.
8
- *
9
- * Brand regime per `CANON.md` §A1+A2 lock (2026-04-19): the kernel
10
- * keeps its own `IdBrand<Name>` + `PrefixedId<Prefix, Name>` pattern
11
- * (independent of `@repo/types`, which was designed around earlier
12
- * Convex-typed SDK IDs) so the restart stack stays the brand canon.
13
- */
14
- type IdBrand<Name extends string> = string & {
15
- readonly __capxulIdBrand: Name;
16
- };
17
- type PrefixedId<Prefix extends string, Name extends string> = `${Prefix}_${string}` & IdBrand<Name>;
18
- type AccountId = PrefixedId<"acct", "AccountId">;
19
- declare const toAccountId: (raw: string) => PrefixedId<"acct", "AccountId">;
20
- type OrganizationId = PrefixedId<"org", "OrganizationId">;
21
- declare const toOrganizationId: (raw: string) => PrefixedId<"org", "OrganizationId">;
22
- type MemberId = PrefixedId<"mb", "MemberId">;
23
- declare const toMemberId: (raw: string) => PrefixedId<"mb", "MemberId">;
24
- type SafeId = PrefixedId<"safe", "SafeId">;
25
- declare const toSafeId: (raw: string) => PrefixedId<"safe", "SafeId">;
26
- type TreasuryId = PrefixedId<"try", "TreasuryId">;
27
- declare const toTreasuryId: (raw: string) => PrefixedId<"try", "TreasuryId">;
28
- type ApiKeyId = PrefixedId<"ak", "ApiKeyId">;
29
- declare const toApiKeyId: (raw: string) => PrefixedId<"ak", "ApiKeyId">;
30
- type ServiceAccountId = PrefixedId<"svc", "ServiceAccountId">;
31
- type OperationId = PrefixedId<"op", "OperationId">;
32
- declare const toOperationId: (raw: string) => PrefixedId<"op", "OperationId">;
33
- type CorrelationId = PrefixedId<"ctx", "CorrelationId">;
34
- type KycProfileId = PrefixedId<"kyc", "KycProfileId">;
35
- declare const toKycProfileId: (raw: string) => PrefixedId<"kyc", "KycProfileId">;
36
- type KybProfileId = PrefixedId<"kyb", "KybProfileId">;
37
- declare const toKybProfileId: (raw: string) => PrefixedId<"kyb", "KybProfileId">;
38
- type PayrollEntryId = PrefixedId<"pe", "PayrollEntryId">;
39
- type ExternalAccountId = PrefixedId<"ext", "ExternalAccountId">;
40
- declare const toExternalAccountId: (raw: string) => PrefixedId<"ext", "ExternalAccountId">;
41
- type PaymentId = PrefixedId<"pay", "PaymentId">;
42
- declare const toPaymentId: (raw: string) => PrefixedId<"pay", "PaymentId">;
43
- type InvoiceId = PrefixedId<"inv", "InvoiceId">;
44
- type WithdrawalId = PrefixedId<"wd", "WithdrawalId">;
45
- declare const toWithdrawalId: (raw: string) => PrefixedId<"wd", "WithdrawalId">;
46
- type WebhookEndpointId = PrefixedId<"we", "WebhookEndpointId">;
47
- declare const toWebhookEndpointId: (raw: string) => PrefixedId<"we", "WebhookEndpointId">;
48
- type WebhookEventId = PrefixedId<"evt", "WebhookEventId">;
49
- declare const toWebhookEventId: (raw: string) => PrefixedId<"evt", "WebhookEventId">;
50
- type OutboxMessageId = PrefixedId<"out", "OutboxMessageId">;
51
- type Cursor = PrefixedId<"cur", "Cursor">;
52
- type TransactionIntentId = PrefixedId<"ti", "TransactionIntentId">;
53
- type SubAccountId = PrefixedId<"sub", "SubAccountId">;
54
- declare const toSubAccountId: (raw: string) => PrefixedId<"sub", "SubAccountId">;
55
- type VirtualAccountId = PrefixedId<"va", "VirtualAccountId">;
56
- declare const toVirtualAccountId: (raw: string) => PrefixedId<"va", "VirtualAccountId">;
57
- type VirtualCardId = PrefixedId<"vc", "VirtualCardId">;
58
- declare const toVirtualCardId: (raw: string) => PrefixedId<"vc", "VirtualCardId">;
59
- type TransferId = PrefixedId<"txfr", "TransferId">;
60
- declare const toTransferId: (raw: string) => PrefixedId<"txfr", "TransferId">;
61
- type DocumentId = PrefixedId<"doc", "DocumentId">;
62
- declare const toDocumentId: (raw: string) => PrefixedId<"doc", "DocumentId">;
63
- type BalanceLedgerEntryId = PrefixedId<"bal", "BalanceLedgerEntryId">;
64
- declare const toBalanceLedgerEntryId: (raw: string) => PrefixedId<"bal", "BalanceLedgerEntryId">;
65
- type PublicId = AccountId | OrganizationId | MemberId | SafeId | TreasuryId | ApiKeyId | ServiceAccountId | OperationId | CorrelationId | KycProfileId | KybProfileId | PayrollEntryId | ExternalAccountId | PaymentId | InvoiceId | WithdrawalId | WebhookEndpointId | WebhookEventId | OutboxMessageId | Cursor | TransactionIntentId | SubAccountId | VirtualAccountId | VirtualCardId | TransferId | DocumentId | BalanceLedgerEntryId;
66
-
67
- type Money = {
68
- value: string;
69
- currency: string;
70
- };
71
- type WalletFundingDestination = {
72
- kind: "wallet_address";
73
- address: string;
74
- chain?: string;
75
- };
76
- type LinkedInstrumentFundingDestination = {
77
- kind: "linked_instrument";
78
- instrumentId: ExternalAccountId;
79
- };
80
- type ProviderInstructionFundingDestination = {
81
- kind: "provider_instruction";
82
- instructionId: string;
83
- };
84
- type FundingDestination = WalletFundingDestination | LinkedInstrumentFundingDestination | ProviderInstructionFundingDestination;
85
- type TimestampIso = string;
86
- /**
87
- * E.164-validated international phone number. Brand prevents swapping
88
- * with `email`, `username`, or other string identifiers (per `CANON.md`
89
- * §4.54 and `sdk-surface.md` §5h).
90
- */
91
- type PhoneNumber = string & {
92
- readonly __capxulPhoneBrand: "PhoneNumber";
93
- };
94
- /** Validate and brand an E.164 phone number. Throws on invalid input. */
95
- declare function toPhoneNumber(raw: string): PhoneNumber;
96
- /**
97
- * Lowercased, shape-validated email address. Brand prevents swapping
98
- * with `phoneNumber`, `username`, or other string identifiers (per
99
- * `CANON.md` §4.54 and `sdk-surface.md` §5h).
100
- */
101
- type Email = string & {
102
- readonly __capxulEmailBrand: "Email";
103
- };
104
- /** Validate, lowercase, and brand an email. Throws on invalid input. */
105
- declare function toEmail(raw: string): Email;
106
- /**
107
- * Public Capxul username. 3–30 chars, letter-first, lowercased,
108
- * remaining chars from `[a-z0-9_-]` (per `CANON.md` §4.54 and
109
- * `sdk-surface.md` §5h). Constructor lowercases before validating so
110
- * mixed-case input canonicalizes cleanly when the first char is a
111
- * letter; purely invalid shapes (too short, illegal chars, digit-first)
112
- * still throw.
113
- */
114
- type Username = string & {
115
- readonly __capxulUsernameBrand: "Username";
116
- };
117
- /** Validate, lowercase, and brand a username. Throws on invalid input. */
118
- declare function toUsername(raw: string): Username;
119
-
120
- /**
121
- * Discriminated union of action-required pauses. See
122
- * `/docs/internal/reset/conventions` §6 for the variant
123
- * catalog and the "Inline vs thrown" rule (Rule D).
124
- *
125
- * §4.54 refined the `fix_destination` payload with a reason enum and
126
- * optional recipient metadata. §4.58 added the 9th variant
127
- * `confirm_fx_quote` for the cross-custody transfer FX-commit flow.
128
- */
129
- type NextAction = {
130
- kind: "complete_kyc";
131
- url?: string;
132
- expiresAt?: TimestampIso;
133
- } | {
134
- kind: "complete_kyb";
135
- url?: string;
136
- embedToken?: string;
137
- expiresAt?: TimestampIso;
138
- } | {
139
- kind: "approve_transaction";
140
- intentId: TransactionIntentId;
141
- url?: string;
142
- } | {
143
- kind: "send_funds";
144
- amount: Money;
145
- destination: FundingDestination;
146
- } | {
147
- kind: "follow_redirect";
148
- url: string;
149
- expiresAt?: TimestampIso;
150
- } | {
151
- kind: "provide_otp";
152
- channel?: "email" | "sms" | "provider";
153
- } | {
154
- kind: "fix_destination";
155
- reason: "recipient_not_yet_capxul_user" | "recipient_unreachable_email" | "destination_kyc_blocked" | "invalid_format";
156
- recipient?: {
157
- email?: Email;
158
- phone?: PhoneNumber;
159
- username?: Username;
160
- invitationSentAt?: TimestampIso;
161
- invitationExpiresAt?: TimestampIso;
162
- signupUrl?: string;
163
- };
164
- } | {
165
- kind: "contact_support";
166
- reason: string;
167
- } | {
168
- kind: "confirm_fx_quote";
169
- quoteId: string;
170
- rate: string;
171
- sourceAmount: Money;
172
- creditAmount: Money;
173
- fees?: Money;
174
- expiresAt: TimestampIso;
175
- };
176
-
177
- export { type AccountId as A, type BalanceLedgerEntryId as B, type CorrelationId as C, type DocumentId as D, type Email as E, toTransferId as F, toTreasuryId as G, toUsername as H, toVirtualAccountId as I, toVirtualCardId as J, type KybProfileId as K, toWebhookEndpointId as L, type MemberId as M, type NextAction as N, type OperationId as O, type PaymentId as P, toWebhookEventId as Q, toWithdrawalId as R, type SafeId as S, type TransactionIntentId as T, type Username as U, type VirtualAccountId as V, type WebhookEndpointId as W, type TimestampIso as X, type PublicId as Y, type ApiKeyId as a, type ExternalAccountId as b, type KycProfileId as c, type OrganizationId as d, type PhoneNumber as e, type SubAccountId as f, type TransferId as g, type TreasuryId as h, type VirtualCardId as i, type WebhookEventId as j, type WithdrawalId as k, toApiKeyId as l, toBalanceLedgerEntryId as m, toDocumentId as n, toEmail as o, toExternalAccountId as p, toKybProfileId as q, toKycProfileId as r, toMemberId as s, toAccountId as t, toOperationId as u, toOrganizationId as v, toPaymentId as w, toPhoneNumber as x, toSafeId as y, toSubAccountId as z };