@capxul/observability 3.1.0 → 4.0.0

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/index.d.mts CHANGED
@@ -157,6 +157,417 @@ declare const SUPPORTED_CURRENCIES: readonly [{
157
157
  }];
158
158
  type SupportedCurrencyCode = (typeof SUPPORTED_CURRENCIES)[number]["code"];
159
159
  //#endregion
160
+ //#region src/operations.d.ts
161
+ declare const CAPXUL_OPERATIONS: {
162
+ readonly account: {
163
+ readonly addressBook: {
164
+ readonly add: "account.addressBook.add";
165
+ readonly get: "account.addressBook.get";
166
+ readonly hide: "account.addressBook.hide";
167
+ readonly label: "account.addressBook.label";
168
+ readonly list: "account.addressBook.list";
169
+ readonly unhide: "account.addressBook.unhide";
170
+ };
171
+ readonly balance: "account.balance";
172
+ readonly faucetMint: "account.faucetMint";
173
+ readonly getLifecycle: "account.getLifecycle";
174
+ readonly readBalance: "account.readBalance";
175
+ readonly retrySetup: "account.retrySetup";
176
+ readonly status: "account.status";
177
+ readonly profile: {
178
+ readonly depositInstructions: "account.profile.depositInstructions";
179
+ readonly get: "account.profile.get";
180
+ };
181
+ readonly inbox: {
182
+ readonly approve: "account.inbox.approve";
183
+ readonly decline: "account.inbox.decline";
184
+ readonly list: "account.inbox.list";
185
+ };
186
+ readonly requests: {
187
+ readonly cancel: "account.requests.cancel";
188
+ readonly get: "account.requests.get";
189
+ readonly issue: "account.requests.issue";
190
+ readonly list: "account.requests.list";
191
+ };
192
+ };
193
+ readonly accounts: {
194
+ readonly fund: "accounts.fund";
195
+ readonly read: "accounts.read";
196
+ };
197
+ readonly activity: {
198
+ readonly annotate: "activity.annotate";
199
+ readonly get: "activity.get";
200
+ readonly list: "activity.list";
201
+ readonly summary: "activity.summary";
202
+ };
203
+ readonly addressBook: {
204
+ readonly add: "addressBook.add";
205
+ readonly get: "addressBook.get";
206
+ readonly hide: "addressBook.hide";
207
+ readonly label: "addressBook.label";
208
+ readonly list: "addressBook.list";
209
+ readonly unhide: "addressBook.unhide";
210
+ };
211
+ readonly applications: {
212
+ readonly create: "applications.create";
213
+ };
214
+ readonly auth: {
215
+ readonly canSendOtp: "auth.canSendOtp";
216
+ readonly getSession: "auth.getSession";
217
+ readonly signIn: "auth.signIn";
218
+ readonly signOut: "auth.signOut";
219
+ readonly sendVerificationOtp: "auth.sendVerificationOTP";
220
+ readonly verifyOtp: "auth.verifyOtp";
221
+ };
222
+ readonly client: {
223
+ readonly createOrg: "createOrg";
224
+ readonly orgs: "orgs";
225
+ };
226
+ readonly credentials: {
227
+ readonly bootstrapClient: "credentials.bootstrapClient";
228
+ readonly mintQuickstartKey: "credentials.mintQuickstartKey";
229
+ };
230
+ readonly currentUser: {
231
+ readonly get: "currentUser.get";
232
+ };
233
+ readonly devIdentity: {
234
+ readonly seedFinancialOpsOrg: "devIdentity.seedFinancialOpsOrg";
235
+ };
236
+ readonly dev: {
237
+ readonly browserSeed: "dev.browserSeed";
238
+ };
239
+ readonly destinations: {
240
+ readonly add: "destinations.add";
241
+ readonly list: "destinations.list";
242
+ readonly remove: "destinations.remove";
243
+ };
244
+ readonly faucetSafe: {
245
+ readonly deploy: "FaucetSafe.deploy";
246
+ };
247
+ readonly financialOps: {
248
+ readonly addDestination: "financialOps.addDestination";
249
+ readonly approveRequest: "financialOps.approveRequest";
250
+ readonly cancelRequest: "financialOps.cancelRequest";
251
+ readonly createPayee: "financialOps.createPayee";
252
+ readonly declineRequest: "financialOps.declineRequest";
253
+ readonly emitPaymentWriterTelemetry: "financialOps.emitPaymentWriterTelemetry";
254
+ readonly issueRequest: "financialOps.issueRequest";
255
+ readonly recoverSettlementVerification: "financialOps.recoverSettlementVerification";
256
+ readonly removeDestination: "financialOps.removeDestination";
257
+ readonly verifySettlement: "financialOps.verifySettlement";
258
+ };
259
+ readonly holdings: {
260
+ readonly current: "holdings.current";
261
+ readonly primary: "holdings.primary";
262
+ };
263
+ readonly identity: {
264
+ readonly accountAt: "identity.AccountAt";
265
+ readonly accountClaimed: "identity.AccountClaimed";
266
+ readonly accountClaiming: "identity.AccountClaiming";
267
+ readonly accountDerived: "identity.AccountDerived";
268
+ readonly accountFailed: "identity.AccountFailed";
269
+ readonly attachOrganization: "identity.AttachOrganization";
270
+ readonly claimAccount: "identity.ClaimAccount";
271
+ readonly completeOnboarding: "identity.completeOnboarding";
272
+ readonly completeProfile: "identity.completeProfile";
273
+ readonly create: "identity.create";
274
+ readonly createOrganization: "identity.CreateOrganization";
275
+ readonly ensureAccount: "identity.EnsureAccount";
276
+ readonly leaveOrganization: "identity.LeaveOrganization";
277
+ readonly loadCurrent: "identity.loadCurrent";
278
+ readonly orgAt: "identity.OrgAt";
279
+ readonly orgFailed: "identity.OrgFailed";
280
+ readonly orgReady: "identity.OrgReady";
281
+ readonly otpFailed: "identity.OtpFailed";
282
+ readonly otpSent: "identity.OtpSent";
283
+ readonly readSession: "identity.ReadSession";
284
+ readonly requestOtp: "identity.RequestOtp";
285
+ readonly reset: "identity.Reset";
286
+ readonly restoreSession: "identity.RestoreSession";
287
+ readonly resumeOtpEntry: "identity.ResumeOtpEntry";
288
+ readonly retryAccount: "identity.RetryAccount";
289
+ readonly retryOrganization: "identity.RetryOrganization";
290
+ readonly sessionAbsent: "identity.SessionAbsent";
291
+ readonly sessionRead: "identity.SessionRead";
292
+ readonly sessionReadFailed: "identity.SessionReadFailed";
293
+ readonly sessionRestored: "identity.SessionRestored";
294
+ readonly signedOut: "identity.SignedOut";
295
+ readonly signOut: "identity.SignOut";
296
+ readonly signOutFailed: "identity.SignOutFailed";
297
+ readonly update: "identity.update";
298
+ readonly handleAvailable: "identity.handleAvailable";
299
+ readonly verified: "identity.Verified";
300
+ readonly verifyFailed: "identity.VerifyFailed";
301
+ readonly verifyOtp: "identity.VerifyOtp";
302
+ };
303
+ readonly media: {
304
+ readonly generateUploadUrl: "media.generateUploadUrl";
305
+ readonly setOrgLogo: "media.setOrgLogo";
306
+ readonly setProfileImage: "media.setProfileImage";
307
+ readonly uploadImage: "media.uploadImage";
308
+ };
309
+ readonly me: {
310
+ readonly depositInstructions: "me.depositInstructions";
311
+ readonly get: "me.get";
312
+ };
313
+ readonly moneyExecution: {
314
+ readonly abandonPaymentExecution: "moneyExecution.abandonPaymentExecution";
315
+ readonly prepareOrganizationPaymentExecution: "moneyExecution.prepareOrganizationPaymentExecution";
316
+ readonly preparePaymentExecution: "moneyExecution.preparePaymentExecution";
317
+ readonly preparePaymentLifecycleExecution: "moneyExecution.preparePaymentLifecycleExecution";
318
+ readonly preparePermissionExecution: "moneyExecution.preparePermissionExecution";
319
+ readonly recoverSubmissionClaims: "moneyExecution.recoverSubmissionClaims";
320
+ readonly submit: "moneyExecution.submit";
321
+ readonly submitPaymentCommandExecution: "moneyExecution.submitPaymentCommandExecution";
322
+ readonly submitPaymentExecution: "moneyExecution.submitPaymentExecution";
323
+ readonly submitPermissionExecution: "moneyExecution.submitPermissionExecution";
324
+ };
325
+ readonly movement: {
326
+ readonly emitDepositSettled: "movement.emitDepositSettled";
327
+ readonly scan: "movement.scan";
328
+ };
329
+ readonly inbox: {
330
+ readonly approve: "inbox.approve";
331
+ readonly decline: "inbox.decline";
332
+ readonly list: "inbox.list";
333
+ };
334
+ readonly offramp: {
335
+ readonly quote: "offramp.quote";
336
+ readonly status: "offramp.status";
337
+ };
338
+ readonly onboarding: {
339
+ readonly completeOrganization: "onboarding.completeOrganization";
340
+ readonly completePerson: "onboarding.completePerson";
341
+ };
342
+ readonly org: {
343
+ readonly acceptInvitations: "org.acceptInvitations";
344
+ readonly account: {
345
+ readonly get: "org.account.get";
346
+ };
347
+ readonly activateMember: "org.activateMember";
348
+ readonly auditLog: "org.auditLog";
349
+ readonly confirmBootstrap: "org.confirmBootstrap";
350
+ readonly createOrg: "org.createOrg";
351
+ readonly create: "org.create";
352
+ readonly detectAndAcceptPendingInvitations: "org.detectAndAcceptPendingInvitations";
353
+ readonly expireInvitations: "org.expireInvitations";
354
+ readonly getLifecycle: "org.getLifecycle";
355
+ readonly getProofReceipt: "org.getProofReceipt";
356
+ readonly invite: "org.invite";
357
+ readonly inviteMember: "org.inviteMember";
358
+ readonly list: "org.list";
359
+ readonly load: "org.load";
360
+ readonly me: "org.me";
361
+ readonly members: "org.members";
362
+ readonly orgs: "org.orgs";
363
+ readonly payment: "org.payment";
364
+ readonly permissions: {
365
+ readonly assign: "org.permissions.assign";
366
+ readonly change: "org.permissions.change";
367
+ readonly create: "org.permissions.create";
368
+ readonly get: "org.permissions.get";
369
+ readonly list: "org.permissions.list";
370
+ readonly replace: "org.permissions.replace";
371
+ readonly revoke: "org.permissions.revoke";
372
+ };
373
+ readonly payments: {
374
+ readonly pay: "org.payments.pay";
375
+ readonly payBatch: "org.payments.payBatch";
376
+ };
377
+ readonly payroll: {
378
+ readonly authorizeRun: "org.payroll.authorizeRun";
379
+ readonly groups: {
380
+ readonly list: "org.payroll.groups.list";
381
+ readonly remove: "org.payroll.groups.remove";
382
+ readonly save: "org.payroll.groups.save";
383
+ };
384
+ readonly runs: "org.payroll.runs";
385
+ readonly terms: "org.payroll.terms";
386
+ };
387
+ readonly addressBook: {
388
+ readonly add: "org.addressBook.add";
389
+ readonly get: "org.addressBook.get";
390
+ readonly hide: "org.addressBook.hide";
391
+ readonly label: "org.addressBook.label";
392
+ readonly list: "org.addressBook.list";
393
+ readonly unhide: "org.addressBook.unhide";
394
+ };
395
+ readonly inbox: {
396
+ readonly approve: "org.inbox.approve";
397
+ readonly decline: "org.inbox.decline";
398
+ readonly list: "org.inbox.list";
399
+ };
400
+ readonly lifecycle: {
401
+ readonly startOrResume: "org.lifecycle.startOrResume";
402
+ };
403
+ readonly prepareBootstrap: "org.prepareBootstrap";
404
+ readonly prepareFounderAccount: "org.prepareFounderAccount";
405
+ readonly profile: {
406
+ readonly depositInstructions: "org.profile.depositInstructions";
407
+ readonly get: "org.profile.get";
408
+ };
409
+ readonly readTreasury: "org.readTreasury";
410
+ readonly requests: {
411
+ readonly cancel: "org.requests.cancel";
412
+ readonly get: "org.requests.get";
413
+ readonly issue: "org.requests.issue";
414
+ readonly list: "org.requests.list";
415
+ };
416
+ readonly recordFailure: "org.recordFailure";
417
+ readonly recordProgress: "org.recordProgress";
418
+ readonly resendInviteToken: "org.resendInviteToken";
419
+ readonly resumeBootstrapSubmission: "org.resumeBootstrapSubmission";
420
+ readonly retry: "org.retry";
421
+ readonly retrySetup: "org.retrySetup";
422
+ readonly roles: "org.roles";
423
+ readonly startOrResume: "org.startOrResume";
424
+ readonly submitBootstrap: "org.submitBootstrap";
425
+ readonly treasury: "org.treasury";
426
+ };
427
+ readonly organization: {
428
+ readonly setup: "organization.setup";
429
+ };
430
+ readonly organizationPayments: {
431
+ readonly pay: "organizationPayments.pay";
432
+ readonly payBatch: "organizationPayments.payBatch";
433
+ readonly prepareExecution: "organizationPayments.prepareExecution";
434
+ };
435
+ readonly organizationSetup: {
436
+ readonly getProofReceipt: "organizationSetup.getProofReceipt";
437
+ };
438
+ readonly organizations: {
439
+ readonly detectAndAcceptPendingInvitations: "orgs.detectAndAcceptPendingInvitations";
440
+ };
441
+ readonly payments: {
442
+ readonly cancel: "payments.cancel";
443
+ readonly claim: "payments.claim";
444
+ readonly createCommitment: "payments.createCommitment";
445
+ readonly get: "payments.get";
446
+ readonly ledger: "payments";
447
+ readonly list: "payments.list";
448
+ readonly pay: "payments.pay";
449
+ readonly prepareExecution: "payments.prepareExecution";
450
+ readonly prepareLifecycleExecution: "payments.prepareLifecycleExecution";
451
+ readonly redirect: "payments.redirect";
452
+ readonly submitCommandExecution: "payments.submitCommandExecution";
453
+ readonly submitExecution: "payments.submitExecution";
454
+ };
455
+ readonly paymentDocuments: {
456
+ readonly render: "paymentDocuments.render";
457
+ readonly verify: "paymentDocuments.verify";
458
+ };
459
+ readonly recipient: {
460
+ readonly resolve: "recipient.resolve";
461
+ };
462
+ readonly payroll: {
463
+ readonly authorizeRun: "payroll.authorizeRun";
464
+ readonly groups: {
465
+ readonly access: "payroll.groups";
466
+ readonly list: "payroll.groups.list";
467
+ readonly remove: "payroll.groups.remove";
468
+ readonly save: "payroll.groups.save";
469
+ };
470
+ readonly removeGroup: "payroll.removeGroup";
471
+ readonly runs: "payroll.runs";
472
+ readonly saveGroup: "payroll.saveGroup";
473
+ readonly terms: "payroll.terms";
474
+ };
475
+ readonly permission: {
476
+ readonly command: "permission.command";
477
+ readonly retryVerification: "permission.retryVerification";
478
+ readonly verify: "permission.verify";
479
+ readonly verifySubmitted: "permission.verifySubmitted";
480
+ };
481
+ readonly permissions: {
482
+ readonly assign: "permissions.assign";
483
+ readonly change: "permissions.change";
484
+ readonly create: "permissions.create";
485
+ readonly get: "permissions.get";
486
+ readonly list: "permissions.list";
487
+ readonly prepareExecution: "permissions.prepareExecution";
488
+ readonly replace: "permissions.replace";
489
+ readonly revoke: "permissions.revoke";
490
+ readonly submitExecution: "permissions.submitExecution";
491
+ };
492
+ readonly publishableKeys: {
493
+ readonly mint: "publishableKeys.mint";
494
+ readonly revoke: "publishableKeys.revoke";
495
+ readonly rotate: "publishableKeys.rotate";
496
+ };
497
+ readonly requests: {
498
+ readonly cancel: "requests.cancel";
499
+ readonly get: "requests.get";
500
+ readonly issue: "requests.issue";
501
+ readonly list: "requests.list";
502
+ };
503
+ readonly runtime: {
504
+ readonly assign: "assign";
505
+ readonly canSendOtp: "canSendOtp";
506
+ readonly cancelCommitment: "cancel_commitment";
507
+ readonly change: "change";
508
+ readonly claimCommitment: "claim_commitment";
509
+ readonly create: "create";
510
+ readonly createCapxulClient: "createCapxulClient";
511
+ readonly createCapxulClientWithOrgDeploymentSeams: "createCapxulClientWithOrgDeploymentSeams";
512
+ readonly createCommitment: "create_commitment";
513
+ readonly getConvexJwt: "getConvexJwt";
514
+ readonly getSession: "getSession";
515
+ readonly initialize: "initialize";
516
+ readonly mutation: "mutation";
517
+ readonly now: "now";
518
+ readonly port: "port";
519
+ readonly query: "query";
520
+ readonly redirectCommitment: "redirect_commitment";
521
+ readonly replace: "replace";
522
+ readonly resolve: "resolve";
523
+ readonly revoke: "revoke";
524
+ readonly send: "send";
525
+ readonly sendOtp: "sendOtp";
526
+ readonly signIn: "signIn";
527
+ readonly signOut: "signOut";
528
+ readonly sleep: "sleep";
529
+ readonly verifyOtp: "verifyOtp";
530
+ readonly wallet: "wallet";
531
+ };
532
+ readonly smartAccount: {
533
+ readonly claim: "smartAccount.claim";
534
+ readonly confirmDeployment: "smartAccount.confirmDeployment";
535
+ readonly loadCurrent: "smartAccount.loadCurrent";
536
+ readonly provision: "smartAccount.provision";
537
+ };
538
+ readonly system: {
539
+ readonly health: "system.health";
540
+ readonly ping: "system.ping";
541
+ readonly runtimeChain: "system.runtimeChain";
542
+ };
543
+ readonly testUsdc: {
544
+ readonly mint: "TestUSDC.mint";
545
+ };
546
+ readonly _internal: {
547
+ readonly accounts: {
548
+ readonly fund: "_internal.accounts.fund";
549
+ };
550
+ readonly close: "_internal.close";
551
+ readonly identity: {
552
+ readonly completeProfile: "_internal.identity.completeProfile";
553
+ readonly runFacade: "_internal.identity.runFacade";
554
+ readonly send: "_internal.identity.send";
555
+ };
556
+ readonly organizationSetup: {
557
+ readonly getProofReceipt: "_internal.organizationSetup.getProofReceipt";
558
+ };
559
+ };
560
+ readonly tenancy: {
561
+ readonly revokeBackendTenancyConsent: "tenancy.revokeBackendTenancyConsent";
562
+ readonly seedBackendTenancy: "tenancy.seedBackendTenancy";
563
+ };
564
+ };
565
+ type StringLeaves<T> = T extends string ? T : T extends Readonly<Record<string, unknown>> ? { readonly [K in keyof T]: StringLeaves<T[K]>; }[keyof T] : never;
566
+ type CapxulOperation = StringLeaves<typeof CAPXUL_OPERATIONS>;
567
+ type NormalizedCapxulOperation = CapxulOperation | "unknown";
568
+ declare function isCapxulOperation(value: unknown): value is CapxulOperation;
569
+ declare function normalizeCapxulOperation(value: unknown): NormalizedCapxulOperation;
570
+ //#endregion
160
571
  //#region src/telemetry-port.d.ts
161
572
  /**
162
573
  * Context for reporting handled errors via `reportHandledError`.
@@ -164,6 +575,7 @@ type SupportedCurrencyCode = (typeof SUPPORTED_CURRENCIES)[number]["code"];
164
575
  */
165
576
  interface HandledErrorReportContext {
166
577
  readonly layer?: string;
578
+ /** Host input is normalized at the reporting boundary. */
167
579
  readonly operation?: string;
168
580
  readonly failure_mode?: FailureMode;
169
581
  readonly provider?: string;
@@ -182,7 +594,7 @@ interface TelemetryPort {
182
594
  }
183
595
  //#endregion
184
596
  //#region src/index.d.ts
185
- declare const TELEMETRY_EVENT_NAMES: readonly ["auth_otp_requested", "auth_otp_delivered", "auth_otp_expired", "auth_verified", "auth_failed", "auth_signed_out", "onboarding_intent_selected", "onboarding_profile_submitted", "onboarding_organization_submitted", "onboarding_dashboard_reached", "provisioning_safe_created", "provisioning_safe_confirmed", "bootstrap_resolved", "bootstrap_failed", "member_activation_started", "member_activation_ready", "member_activation_failed", "organization_creation_started", "organization_creation_ready", "organization_creation_failed", "chain_upstream_fallback", "bundler_error", "receipt_pending", "operation_retried", "account_balance_read", "account_balance_failed", "faucet_requested", "faucet_confirmed", "faucet_failed", "org_create_started", "org_safe_created", "org_safe_confirmed", "org_roles_seeded", "org_created", "org_create_failed", "org_invite_sent", "org_invite_accepted", "org_invite_expired", "payment_initiated", "payment_settled", "payment_failed", "payment_verification_retry", "deposit_initiated", "deposit_settled", "permission_mirror_verification", "movement_scan_window", "movement_scan_checkpoint", "movement_scan_incident"];
597
+ declare const TELEMETRY_EVENT_NAMES: readonly ["auth_otp_requested", "auth_otp_delivered", "auth_otp_expired", "auth_verified", "auth_failed", "auth_signed_out", "onboarding_intent_selected", "onboarding_profile_submitted", "onboarding_organization_submitted", "onboarding_dashboard_reached", "provisioning_safe_created", "provisioning_safe_confirmed", "bootstrap_resolved", "bootstrap_failed", "member_activation_started", "member_activation_ready", "member_activation_failed", "organization_creation_started", "organization_creation_ready", "organization_creation_failed", "chain_upstream_fallback", "bundler_error", "receipt_pending", "operation_retried", "account_balance_read", "account_balance_failed", "faucet_requested", "faucet_confirmed", "faucet_failed", "org_create_started", "org_safe_created", "org_safe_confirmed", "org_roles_seeded", "org_created", "org_create_failed", "org_invite_sent", "org_invite_accepted", "org_invite_expired", "payment_initiated", "payment_settled", "payment_failed", "payment_verification_retry", "payment_lifecycle_transition", "quick_pay_external_address_acknowledged", "deposit_initiated", "deposit_settled", "permission_mirror_verification", "movement_scan_window", "movement_scan_checkpoint", "movement_scan_incident"];
186
598
  type TelemetryEventName = (typeof TELEMETRY_EVENT_NAMES)[number];
187
599
  type NonEmptyTelemetryEventNames = readonly [TelemetryEventName, ...TelemetryEventName[]];
188
600
  type FunnelStepPropertyFilter = {
@@ -1130,6 +1542,17 @@ declare const PaymentInitiatedTelemetryEventSchema: Schema.Struct<{
1130
1542
  readonly journey_id: Schema.optional<Schema.String>;
1131
1543
  readonly correlation_id: Schema.optional<Schema.String>;
1132
1544
  readonly sdk_version: Schema.optional<Schema.String>;
1545
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
1546
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
1547
+ readonly recipient_party_id: Schema.optional<Schema.String>;
1548
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
1549
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
1550
+ readonly recipient_handle: Schema.optional<Schema.String>;
1551
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1552
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
1553
+ readonly command_id: Schema.optional<Schema.String>;
1554
+ readonly execution_id: Schema.optional<Schema.String>;
1555
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
1133
1556
  readonly kind: Schema.String;
1134
1557
  readonly payment_id: Schema.String;
1135
1558
  }>;
@@ -1142,9 +1565,30 @@ declare const PaymentSettledTelemetryEventSchema: Schema.Struct<{
1142
1565
  readonly journey_id: Schema.optional<Schema.String>;
1143
1566
  readonly correlation_id: Schema.optional<Schema.String>;
1144
1567
  readonly sdk_version: Schema.optional<Schema.String>;
1568
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
1569
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
1570
+ readonly recipient_party_id: Schema.optional<Schema.String>;
1571
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
1572
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
1573
+ readonly recipient_handle: Schema.optional<Schema.String>;
1574
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1575
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
1576
+ readonly payment_state: Schema.optional<Schema.String>;
1577
+ readonly execution_state: Schema.optional<Schema.String>;
1578
+ readonly occurred_at: Schema.optional<Schema.Number>;
1579
+ readonly causal_sequence: Schema.optional<Schema.Number>;
1580
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
1581
+ readonly terminal_event_id: Schema.optional<Schema.String>;
1145
1582
  readonly kind: Schema.String;
1146
1583
  readonly chain_id: Schema.Number;
1147
1584
  readonly settlement_id: Schema.String;
1585
+ readonly payment_id: Schema.optional<Schema.String>;
1586
+ readonly payment_ids: Schema.optional<Schema.String>;
1587
+ readonly command_id: Schema.optional<Schema.String>;
1588
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
1589
+ readonly execution_id: Schema.optional<Schema.String>;
1590
+ readonly user_op_hash: Schema.optional<Schema.String>;
1591
+ readonly transaction_hash: Schema.optional<Schema.String>;
1148
1592
  }>;
1149
1593
  }>;
1150
1594
  declare const PaymentFailedTelemetryEventSchema: Schema.Struct<{
@@ -1182,9 +1626,28 @@ declare const PaymentFailedTelemetryEventSchema: Schema.Struct<{
1182
1626
  readonly "x-ratelimit-reset": Schema.optional<Schema.String>;
1183
1627
  readonly server: Schema.optional<Schema.String>;
1184
1628
  }>>;
1629
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
1630
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
1631
+ readonly recipient_party_id: Schema.optional<Schema.String>;
1632
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
1633
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
1634
+ readonly recipient_handle: Schema.optional<Schema.String>;
1635
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1636
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
1637
+ readonly payment_state: Schema.optional<Schema.String>;
1638
+ readonly execution_state: Schema.optional<Schema.String>;
1639
+ readonly occurred_at: Schema.optional<Schema.Number>;
1640
+ readonly causal_sequence: Schema.optional<Schema.Number>;
1641
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
1642
+ readonly terminal_event_id: Schema.optional<Schema.String>;
1185
1643
  readonly kind: Schema.String;
1186
1644
  readonly payment_id: Schema.String;
1645
+ readonly payment_ids: Schema.optional<Schema.String>;
1187
1646
  readonly reason_code: Schema.String;
1647
+ readonly command_id: Schema.optional<Schema.String>;
1648
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
1649
+ readonly execution_id: Schema.optional<Schema.String>;
1650
+ readonly user_op_hash: Schema.optional<Schema.String>;
1188
1651
  }>;
1189
1652
  }>;
1190
1653
  declare const PaymentVerificationRetryTelemetryEventSchema: Schema.Struct<{
@@ -1195,12 +1658,75 @@ declare const PaymentVerificationRetryTelemetryEventSchema: Schema.Struct<{
1195
1658
  readonly journey_id: Schema.optional<Schema.String>;
1196
1659
  readonly correlation_id: Schema.optional<Schema.String>;
1197
1660
  readonly sdk_version: Schema.optional<Schema.String>;
1661
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
1662
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
1663
+ readonly recipient_party_id: Schema.optional<Schema.String>;
1664
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
1665
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
1666
+ readonly recipient_handle: Schema.optional<Schema.String>;
1667
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1668
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
1669
+ readonly payment_state: Schema.optional<Schema.String>;
1670
+ readonly execution_state: Schema.optional<Schema.String>;
1671
+ readonly occurred_at: Schema.optional<Schema.Number>;
1672
+ readonly causal_sequence: Schema.optional<Schema.Number>;
1673
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
1674
+ readonly terminal_event_id: Schema.optional<Schema.String>;
1198
1675
  readonly command_id: Schema.String;
1676
+ readonly payment_lifecycle_id: Schema.String;
1199
1677
  readonly attempt: Schema.Number;
1200
1678
  readonly reason_code: Schema.String;
1201
1679
  readonly chain_id: Schema.Number;
1202
1680
  readonly delay_ms: Schema.Codec<DurationMs, number, never, never>;
1203
1681
  readonly outcome: Schema.Literals<readonly ["scheduled", "unresolved"]>;
1682
+ readonly payment_id: Schema.optional<Schema.String>;
1683
+ readonly payment_ids: Schema.optional<Schema.String>;
1684
+ readonly execution_id: Schema.optional<Schema.String>;
1685
+ readonly user_op_hash: Schema.optional<Schema.String>;
1686
+ }>;
1687
+ }>;
1688
+ declare const PaymentLifecycleTransitionTelemetryEventSchema: Schema.Struct<{
1689
+ readonly name: Schema.Literal<"payment_lifecycle_transition">;
1690
+ readonly props: Schema.Struct<{
1691
+ readonly capxul_env: Schema.Literals<readonly ["development", "staging", "production", "unknown", "local"]>;
1692
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1693
+ readonly journey_id: Schema.optional<Schema.String>;
1694
+ readonly correlation_id: Schema.optional<Schema.String>;
1695
+ readonly sdk_version: Schema.optional<Schema.String>;
1696
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
1697
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
1698
+ readonly recipient_party_id: Schema.optional<Schema.String>;
1699
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
1700
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
1701
+ readonly recipient_handle: Schema.optional<Schema.String>;
1702
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1703
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
1704
+ readonly payment_id: Schema.String;
1705
+ readonly payment_lifecycle_id: Schema.String;
1706
+ readonly command_id: Schema.String;
1707
+ readonly payment_state: Schema.String;
1708
+ readonly occurred_at: Schema.Number;
1709
+ readonly causal_sequence: Schema.Number;
1710
+ readonly execution_id: Schema.optional<Schema.String>;
1711
+ readonly execution_state: Schema.optional<Schema.String>;
1712
+ readonly user_op_hash: Schema.optional<Schema.String>;
1713
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
1714
+ readonly reason_code: Schema.optional<Schema.String>;
1715
+ }>;
1716
+ }>;
1717
+ declare const QuickPayExternalAddressAcknowledgedTelemetryEventSchema: Schema.Struct<{
1718
+ readonly name: Schema.Literal<"quick_pay_external_address_acknowledged">;
1719
+ readonly props: Schema.Struct<{
1720
+ readonly capxul_env: Schema.Literals<readonly ["development", "staging", "production", "unknown", "local"]>;
1721
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1722
+ readonly journey_id: Schema.optional<Schema.String>;
1723
+ readonly correlation_id: Schema.optional<Schema.String>;
1724
+ readonly sdk_version: Schema.optional<Schema.String>;
1725
+ readonly recipient_locator_kind: Schema.Literal<"address">;
1726
+ readonly recipient_resolution_status: Schema.Literal<"external_address">;
1727
+ readonly recipient_address: Schema.Codec<Address, string, never, never>;
1728
+ readonly external_address_acknowledged: Schema.Literal<true>;
1729
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1204
1730
  }>;
1205
1731
  }>;
1206
1732
  declare const DepositInitiatedTelemetryEventSchema: Schema.Struct<{
@@ -2004,6 +2530,17 @@ declare const TELEMETRY_EVENT_SCHEMAS: {
2004
2530
  readonly journey_id: Schema.optional<Schema.String>;
2005
2531
  readonly correlation_id: Schema.optional<Schema.String>;
2006
2532
  readonly sdk_version: Schema.optional<Schema.String>;
2533
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
2534
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
2535
+ readonly recipient_party_id: Schema.optional<Schema.String>;
2536
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
2537
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
2538
+ readonly recipient_handle: Schema.optional<Schema.String>;
2539
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
2540
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
2541
+ readonly command_id: Schema.optional<Schema.String>;
2542
+ readonly execution_id: Schema.optional<Schema.String>;
2543
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
2007
2544
  readonly kind: Schema.String;
2008
2545
  readonly payment_id: Schema.String;
2009
2546
  }>;
@@ -2016,9 +2553,30 @@ declare const TELEMETRY_EVENT_SCHEMAS: {
2016
2553
  readonly journey_id: Schema.optional<Schema.String>;
2017
2554
  readonly correlation_id: Schema.optional<Schema.String>;
2018
2555
  readonly sdk_version: Schema.optional<Schema.String>;
2556
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
2557
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
2558
+ readonly recipient_party_id: Schema.optional<Schema.String>;
2559
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
2560
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
2561
+ readonly recipient_handle: Schema.optional<Schema.String>;
2562
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
2563
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
2564
+ readonly payment_state: Schema.optional<Schema.String>;
2565
+ readonly execution_state: Schema.optional<Schema.String>;
2566
+ readonly occurred_at: Schema.optional<Schema.Number>;
2567
+ readonly causal_sequence: Schema.optional<Schema.Number>;
2568
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
2569
+ readonly terminal_event_id: Schema.optional<Schema.String>;
2019
2570
  readonly kind: Schema.String;
2020
2571
  readonly chain_id: Schema.Number;
2021
2572
  readonly settlement_id: Schema.String;
2573
+ readonly payment_id: Schema.optional<Schema.String>;
2574
+ readonly payment_ids: Schema.optional<Schema.String>;
2575
+ readonly command_id: Schema.optional<Schema.String>;
2576
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
2577
+ readonly execution_id: Schema.optional<Schema.String>;
2578
+ readonly user_op_hash: Schema.optional<Schema.String>;
2579
+ readonly transaction_hash: Schema.optional<Schema.String>;
2022
2580
  }>;
2023
2581
  }>;
2024
2582
  readonly payment_failed: Schema.Struct<{
@@ -2056,9 +2614,28 @@ declare const TELEMETRY_EVENT_SCHEMAS: {
2056
2614
  readonly "x-ratelimit-reset": Schema.optional<Schema.String>;
2057
2615
  readonly server: Schema.optional<Schema.String>;
2058
2616
  }>>;
2617
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
2618
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
2619
+ readonly recipient_party_id: Schema.optional<Schema.String>;
2620
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
2621
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
2622
+ readonly recipient_handle: Schema.optional<Schema.String>;
2623
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
2624
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
2625
+ readonly payment_state: Schema.optional<Schema.String>;
2626
+ readonly execution_state: Schema.optional<Schema.String>;
2627
+ readonly occurred_at: Schema.optional<Schema.Number>;
2628
+ readonly causal_sequence: Schema.optional<Schema.Number>;
2629
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
2630
+ readonly terminal_event_id: Schema.optional<Schema.String>;
2059
2631
  readonly kind: Schema.String;
2060
2632
  readonly payment_id: Schema.String;
2633
+ readonly payment_ids: Schema.optional<Schema.String>;
2061
2634
  readonly reason_code: Schema.String;
2635
+ readonly command_id: Schema.optional<Schema.String>;
2636
+ readonly payment_lifecycle_id: Schema.optional<Schema.String>;
2637
+ readonly execution_id: Schema.optional<Schema.String>;
2638
+ readonly user_op_hash: Schema.optional<Schema.String>;
2062
2639
  }>;
2063
2640
  }>;
2064
2641
  readonly payment_verification_retry: Schema.Struct<{
@@ -2069,12 +2646,75 @@ declare const TELEMETRY_EVENT_SCHEMAS: {
2069
2646
  readonly journey_id: Schema.optional<Schema.String>;
2070
2647
  readonly correlation_id: Schema.optional<Schema.String>;
2071
2648
  readonly sdk_version: Schema.optional<Schema.String>;
2649
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
2650
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
2651
+ readonly recipient_party_id: Schema.optional<Schema.String>;
2652
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
2653
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
2654
+ readonly recipient_handle: Schema.optional<Schema.String>;
2655
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
2656
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
2657
+ readonly payment_state: Schema.optional<Schema.String>;
2658
+ readonly execution_state: Schema.optional<Schema.String>;
2659
+ readonly occurred_at: Schema.optional<Schema.Number>;
2660
+ readonly causal_sequence: Schema.optional<Schema.Number>;
2661
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
2662
+ readonly terminal_event_id: Schema.optional<Schema.String>;
2072
2663
  readonly command_id: Schema.String;
2664
+ readonly payment_lifecycle_id: Schema.String;
2073
2665
  readonly attempt: Schema.Number;
2074
2666
  readonly reason_code: Schema.String;
2075
2667
  readonly chain_id: Schema.Number;
2076
2668
  readonly delay_ms: Schema.Codec<DurationMs, number, never, never>;
2077
2669
  readonly outcome: Schema.Literals<readonly ["scheduled", "unresolved"]>;
2670
+ readonly payment_id: Schema.optional<Schema.String>;
2671
+ readonly payment_ids: Schema.optional<Schema.String>;
2672
+ readonly execution_id: Schema.optional<Schema.String>;
2673
+ readonly user_op_hash: Schema.optional<Schema.String>;
2674
+ }>;
2675
+ }>;
2676
+ readonly payment_lifecycle_transition: Schema.Struct<{
2677
+ readonly name: Schema.Literal<"payment_lifecycle_transition">;
2678
+ readonly props: Schema.Struct<{
2679
+ readonly capxul_env: Schema.Literals<readonly ["development", "staging", "production", "unknown", "local"]>;
2680
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2681
+ readonly journey_id: Schema.optional<Schema.String>;
2682
+ readonly correlation_id: Schema.optional<Schema.String>;
2683
+ readonly sdk_version: Schema.optional<Schema.String>;
2684
+ readonly recipient_locator_kind: Schema.optional<Schema.Literals<readonly ["handle", "email", "address", "party"]>>;
2685
+ readonly recipient_resolution_status: Schema.optional<Schema.Literals<readonly ["known_party", "new_email", "external_address"]>>;
2686
+ readonly recipient_party_id: Schema.optional<Schema.String>;
2687
+ readonly recipient_party_kind: Schema.optional<Schema.Literals<readonly ["person", "organization", "unresolved"]>>;
2688
+ readonly recipient_is_capxul_account: Schema.optional<Schema.Boolean>;
2689
+ readonly recipient_handle: Schema.optional<Schema.String>;
2690
+ readonly recipient_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
2691
+ readonly external_address_acknowledged: Schema.optional<Schema.Boolean>;
2692
+ readonly payment_id: Schema.String;
2693
+ readonly payment_lifecycle_id: Schema.String;
2694
+ readonly command_id: Schema.String;
2695
+ readonly payment_state: Schema.String;
2696
+ readonly occurred_at: Schema.Number;
2697
+ readonly causal_sequence: Schema.Number;
2698
+ readonly execution_id: Schema.optional<Schema.String>;
2699
+ readonly execution_state: Schema.optional<Schema.String>;
2700
+ readonly user_op_hash: Schema.optional<Schema.String>;
2701
+ readonly sponsorship_valid_until: Schema.optional<Schema.Number>;
2702
+ readonly reason_code: Schema.optional<Schema.String>;
2703
+ }>;
2704
+ }>;
2705
+ readonly quick_pay_external_address_acknowledged: Schema.Struct<{
2706
+ readonly name: Schema.Literal<"quick_pay_external_address_acknowledged">;
2707
+ readonly props: Schema.Struct<{
2708
+ readonly capxul_env: Schema.Literals<readonly ["development", "staging", "production", "unknown", "local"]>;
2709
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2710
+ readonly journey_id: Schema.optional<Schema.String>;
2711
+ readonly correlation_id: Schema.optional<Schema.String>;
2712
+ readonly sdk_version: Schema.optional<Schema.String>;
2713
+ readonly recipient_locator_kind: Schema.Literal<"address">;
2714
+ readonly recipient_resolution_status: Schema.Literal<"external_address">;
2715
+ readonly recipient_address: Schema.Codec<Address, string, never, never>;
2716
+ readonly external_address_acknowledged: Schema.Literal<true>;
2717
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
2078
2718
  }>;
2079
2719
  }>;
2080
2720
  readonly deposit_initiated: Schema.Struct<{
@@ -2399,4 +3039,4 @@ declare class InMemoryTelemetryBusAdapter implements TelemetryPort {
2399
3039
  reportHandledError(_error: CapxulError, _context?: HandledErrorReportContext): Effect.Effect<void, never>;
2400
3040
  }
2401
3041
  //#endregion
2402
- export { AccountBalanceFailedTelemetryEventSchema, AccountBalanceReadTelemetryEventSchema, AuthFailedTelemetryEventSchema, AuthOtpDeliveredTelemetryEventSchema, AuthOtpExpiredTelemetryEventSchema, AuthOtpRequestedTelemetryEventSchema, AuthSignedOutTelemetryEventSchema, AuthVerifiedTelemetryEventSchema, BROWSER_GATED_TELEMETRY_EVENTS, BootstrapFailedTelemetryEventSchema, BootstrapResolvedTelemetryEventSchema, BundlerErrorTelemetryEventSchema, CAPXUL_ENVS, CONTRACT_FIRST_TELEMETRY_EVENTS, CapturedNetworkRequestLike, CapxulBrowserAnalyticsInput, CapxulEnv, ChainAttemptSchema, ChainUpstreamFallbackTelemetryEventSchema, ChainUpstreamSchema, DepositInitiatedTelemetryEventSchema, DepositSettledTelemetryEventSchema, FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS, FailureModeSchema, FaucetConfirmedTelemetryEventSchema, FaucetFailedTelemetryEventSchema, FaucetRequestedTelemetryEventSchema, FunnelJourney, FunnelStepPropertyFilter, type HandledErrorReportContext, InMemoryTelemetryBusAdapter, InitializePostHogBrowserAnalyticsInput, Journey, MemberActivationFailedTelemetryEventSchema, MemberActivationReadyTelemetryEventSchema, MemberActivationStartedTelemetryEventSchema, MovementScanCheckpointTelemetryEventSchema, MovementScanIncidentTelemetryEventSchema, MovementScanWindowTelemetryEventSchema, NonEmptyTelemetryEventNames, OnboardingDashboardReachedTelemetryEventSchema, OnboardingIntentSelectedTelemetryEventSchema, OnboardingOrganizationSubmittedTelemetryEventSchema, OnboardingProfileSubmittedTelemetryEventSchema, OperationRetriedTelemetryEventSchema, OrgCreateFailedTelemetryEventSchema, OrgCreateStartedTelemetryEventSchema, OrgCreatedTelemetryEventSchema, OrgInviteAcceptedTelemetryEventSchema, OrgInviteExpiredTelemetryEventSchema, OrgInviteSentTelemetryEventSchema, OrgRolesSeededTelemetryEventSchema, OrgSafeConfirmedTelemetryEventSchema, OrgSafeCreatedTelemetryEventSchema, OrganizationCreationFailedTelemetryEventSchema, OrganizationCreationReadyTelemetryEventSchema, OrganizationCreationStartedTelemetryEventSchema, PII, PRODUCT_MAPPER_GATED_TELEMETRY_EVENTS, PaymentFailedTelemetryEventSchema, PaymentInitiatedTelemetryEventSchema, PaymentSettledTelemetryEventSchema, PaymentVerificationRetryTelemetryEventSchema, PermissionMirrorVerificationTelemetryEventSchema, PointEventJourney, PostHogBeforeSend, PostHogBrowserCapture, PostHogBrowserInitialize, PostHogBrowserOptions, PostHogBrowserPageviewClient, PostHogProductAppOptions, PostHogTelemetryAdapter, PostHogUtilityAppOptions, ProvisioningSafeConfirmedTelemetryEventSchema, ProvisioningSafeCreatedTelemetryEventSchema, ReceiptPendingTelemetryEventSchema, RecordingTelemetryAdapter, ResponseHeadersSchema, SYNCABLE_CAPXUL_ENVS, TELEMETRY_EVENT_NAMES, TELEMETRY_EVENT_SCHEMAS, TELEMETRY_JOURNEYS, TELEMETRY_PRODUCERS, TelemetryEnvelopeDefaults, TelemetryEvent, TelemetryEventName, TelemetryGroupInput, TelemetryIdentifyInput, type TelemetryPort, TelemetryProducer, TelemetryProps, TelemetryRedactionOptions, TrackHandler, createCapxulBeforeSend, createPostHogBrowserPageviewTracker, getTrackHandler, initializeCapxulBrowserAnalytics, initializePostHogBrowserAnalytics, maskCapturedNetworkRequest, productAppAnalytics, redactTelemetryEvent, redactTelemetryProps, sanitizePostHogBrowserEvent, setTrackHandler, stampTelemetryEnvelope, track, utilityAppAnalytics };
3042
+ export { AccountBalanceFailedTelemetryEventSchema, AccountBalanceReadTelemetryEventSchema, AuthFailedTelemetryEventSchema, AuthOtpDeliveredTelemetryEventSchema, AuthOtpExpiredTelemetryEventSchema, AuthOtpRequestedTelemetryEventSchema, AuthSignedOutTelemetryEventSchema, AuthVerifiedTelemetryEventSchema, BROWSER_GATED_TELEMETRY_EVENTS, BootstrapFailedTelemetryEventSchema, BootstrapResolvedTelemetryEventSchema, BundlerErrorTelemetryEventSchema, CAPXUL_ENVS, CAPXUL_OPERATIONS, CONTRACT_FIRST_TELEMETRY_EVENTS, CapturedNetworkRequestLike, CapxulBrowserAnalyticsInput, CapxulEnv, type CapxulOperation, ChainAttemptSchema, ChainUpstreamFallbackTelemetryEventSchema, ChainUpstreamSchema, DepositInitiatedTelemetryEventSchema, DepositSettledTelemetryEventSchema, FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS, FailureModeSchema, FaucetConfirmedTelemetryEventSchema, FaucetFailedTelemetryEventSchema, FaucetRequestedTelemetryEventSchema, FunnelJourney, FunnelStepPropertyFilter, type HandledErrorReportContext, InMemoryTelemetryBusAdapter, InitializePostHogBrowserAnalyticsInput, Journey, MemberActivationFailedTelemetryEventSchema, MemberActivationReadyTelemetryEventSchema, MemberActivationStartedTelemetryEventSchema, MovementScanCheckpointTelemetryEventSchema, MovementScanIncidentTelemetryEventSchema, MovementScanWindowTelemetryEventSchema, NonEmptyTelemetryEventNames, type NormalizedCapxulOperation, OnboardingDashboardReachedTelemetryEventSchema, OnboardingIntentSelectedTelemetryEventSchema, OnboardingOrganizationSubmittedTelemetryEventSchema, OnboardingProfileSubmittedTelemetryEventSchema, OperationRetriedTelemetryEventSchema, OrgCreateFailedTelemetryEventSchema, OrgCreateStartedTelemetryEventSchema, OrgCreatedTelemetryEventSchema, OrgInviteAcceptedTelemetryEventSchema, OrgInviteExpiredTelemetryEventSchema, OrgInviteSentTelemetryEventSchema, OrgRolesSeededTelemetryEventSchema, OrgSafeConfirmedTelemetryEventSchema, OrgSafeCreatedTelemetryEventSchema, OrganizationCreationFailedTelemetryEventSchema, OrganizationCreationReadyTelemetryEventSchema, OrganizationCreationStartedTelemetryEventSchema, PII, PRODUCT_MAPPER_GATED_TELEMETRY_EVENTS, PaymentFailedTelemetryEventSchema, PaymentInitiatedTelemetryEventSchema, PaymentLifecycleTransitionTelemetryEventSchema, PaymentSettledTelemetryEventSchema, PaymentVerificationRetryTelemetryEventSchema, PermissionMirrorVerificationTelemetryEventSchema, PointEventJourney, PostHogBeforeSend, PostHogBrowserCapture, PostHogBrowserInitialize, PostHogBrowserOptions, PostHogBrowserPageviewClient, PostHogProductAppOptions, PostHogTelemetryAdapter, PostHogUtilityAppOptions, ProvisioningSafeConfirmedTelemetryEventSchema, ProvisioningSafeCreatedTelemetryEventSchema, QuickPayExternalAddressAcknowledgedTelemetryEventSchema, ReceiptPendingTelemetryEventSchema, RecordingTelemetryAdapter, ResponseHeadersSchema, SYNCABLE_CAPXUL_ENVS, TELEMETRY_EVENT_NAMES, TELEMETRY_EVENT_SCHEMAS, TELEMETRY_JOURNEYS, TELEMETRY_PRODUCERS, TelemetryEnvelopeDefaults, TelemetryEvent, TelemetryEventName, TelemetryGroupInput, TelemetryIdentifyInput, type TelemetryPort, TelemetryProducer, TelemetryProps, TelemetryRedactionOptions, TrackHandler, createCapxulBeforeSend, createPostHogBrowserPageviewTracker, getTrackHandler, initializeCapxulBrowserAnalytics, initializePostHogBrowserAnalytics, isCapxulOperation, maskCapturedNetworkRequest, normalizeCapxulOperation, productAppAnalytics, redactTelemetryEvent, redactTelemetryProps, sanitizePostHogBrowserEvent, setTrackHandler, stampTelemetryEnvelope, track, utilityAppAnalytics };