@capxul/observability 1.2.2 → 2.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
@@ -1,7 +1,7 @@
1
1
  import { Effect, Schema } from "effect";
2
2
 
3
3
  //#region ../errors/src/errors.d.ts
4
- declare const CAPXUL_ERROR_CODES: readonly ["NOT_AUTHENTICATED", "EMAIL_DELIVERY_FAILED", "PROFILE_NOT_FOUND", "SMART_ACCOUNT_MISSING", "PLAYER_NOT_FOUND", "ACCOUNT_NOT_FOUND", "PROVIDER_ERROR", "INVALID_INPUT", "ENV_MISSING", "NOT_IMPLEMENTED", "VERIFICATION_REQUIRED", "INSUFFICIENT_BALANCE", "INVALID_RECIPIENT", "ROLE_PERMISSION_DENIED", "TRANSACTION_FAILED", "RATE_LIMITED", "NETWORK_ERROR", "UNKNOWN", "OTP_EXPIRED", "SIGNER_REJECTED", "CANCELLED", "WRONG_STATE", "STALE_EPOCH", "SUPERSEDED", "WORK_DIED", "ACTOR_STOPPED"];
4
+ declare const CAPXUL_ERROR_CODES: readonly ["NOT_AUTHENTICATED", "EMAIL_DELIVERY_FAILED", "PROFILE_NOT_FOUND", "SMART_ACCOUNT_MISSING", "PLAYER_NOT_FOUND", "ACCOUNT_NOT_FOUND", "PROVIDER_ERROR", "CAPABILITY_UNAVAILABLE", "INVALID_INPUT", "ENV_MISSING", "NOT_IMPLEMENTED", "VERIFICATION_REQUIRED", "INSUFFICIENT_BALANCE", "INVALID_RECIPIENT", "ROLE_PERMISSION_DENIED", "TRANSACTION_FAILED", "RATE_LIMITED", "NETWORK_ERROR", "UNKNOWN", "OTP_EXPIRED", "SIGNER_REJECTED", "CANCELLED", "WRONG_STATE", "STALE_EPOCH", "SUPERSEDED", "WORK_DIED", "ACTOR_STOPPED"];
5
5
  type CapxulErrorCode = (typeof CAPXUL_ERROR_CODES)[number];
6
6
  /**
7
7
  * Why an auth/provider call failed — a flat CAUSE enum. The *where* (which
@@ -52,7 +52,6 @@ type Brand<T, B extends string> = T & {
52
52
  type Address = Brand<string, "Address">;
53
53
  type AnonymousDistinctId = Brand<string, "AnonymousDistinctId">;
54
54
  type AccountId = Brand<string, "AccountId">;
55
- type SubAccountId = Brand<string, "SubAccountId">;
56
55
  type AppId = Brand<string, "AppId">;
57
56
  type PublishableKeyId = Brand<string, "PublishableKeyId">;
58
57
  type DurationMs = Brand<number, "DurationMs">;
@@ -110,7 +109,7 @@ interface TelemetryPort {
110
109
  }
111
110
  //#endregion
112
111
  //#region src/index.d.ts
113
- 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", "account_balance_read", "account_balance_failed", "faucet_requested", "faucet_confirmed", "faucet_failed", "subaccount_created", "subaccount_renamed", "subaccount_deleted", "subaccount_op_failed", "transfer_requested", "transfer_backend_received", "transfer_confirmed", "transfer_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_role_granted", "org_member_active", "org_member_removed", "org_invite_expired", "org_role_grant_failed", "payment_requested", "payment_resolved", "payment_document_attached", "payment_submitted", "payment_settled", "payment_claimed", "payment_cancelled", "payment_redirected", "payment_failed", "stream_created", "stream_claimed", "stream_cancelled", "stream_completed", "stream_failed", "withdrawal_requested", "withdrawal_submitted", "withdrawal_settled", "withdrawal_failed"];
112
+ 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", "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", "deposit_initiated", "deposit_settled", "permission_mirror_verification", "movement_scan_window", "movement_scan_checkpoint", "movement_scan_incident"];
114
113
  type TelemetryEventName = (typeof TELEMETRY_EVENT_NAMES)[number];
115
114
  type NonEmptyTelemetryEventNames = readonly [TelemetryEventName, ...TelemetryEventName[]];
116
115
  type FunnelStepPropertyFilter = {
@@ -245,15 +244,6 @@ declare const TELEMETRY_JOURNEYS: {
245
244
  readonly steps: readonly ["faucet_requested", "faucet_confirmed"];
246
245
  readonly drops_on: readonly ["faucet_failed"];
247
246
  };
248
- readonly first_value_movement: {
249
- readonly type: "funnel";
250
- readonly steps: readonly ["account_balance_read", "transfer_requested", "transfer_confirmed"];
251
- readonly drops_on: readonly ["transfer_failed"];
252
- };
253
- readonly subaccount_lifecycle: {
254
- readonly type: "point_event";
255
- readonly point_event: "subaccount_created";
256
- };
257
247
  readonly org_creation: {
258
248
  readonly type: "funnel";
259
249
  readonly steps: readonly ["org_create_started", "org_safe_created", "org_safe_confirmed", "org_roles_seeded", "org_created"];
@@ -261,32 +251,17 @@ declare const TELEMETRY_JOURNEYS: {
261
251
  };
262
252
  readonly org_member_onboarding: {
263
253
  readonly type: "funnel";
264
- readonly steps: readonly ["org_invite_sent", "org_invite_accepted", "org_role_granted", "org_member_active"];
265
- readonly drops_on: readonly ["org_invite_expired", "org_role_grant_failed"];
254
+ readonly steps: readonly ["org_invite_sent", "org_invite_accepted"];
255
+ readonly drops_on: readonly ["org_invite_expired"];
266
256
  };
267
257
  readonly direct_payment: {
268
258
  readonly type: "funnel";
269
- readonly steps: readonly ["payment_requested", "payment_resolved", "payment_document_attached", "payment_submitted", "payment_settled"];
259
+ readonly steps: readonly ["payment_initiated", "payment_settled"];
270
260
  readonly drops_on: readonly ["payment_failed"];
271
261
  };
272
- readonly commitment_claim: {
273
- readonly type: "funnel";
274
- readonly steps: readonly ["payment_submitted", "payment_claimed"];
275
- readonly drops_on: readonly ["payment_cancelled"];
276
- };
277
- readonly commitment_redirect: {
278
- readonly type: "point_event";
279
- readonly point_event: "payment_redirected";
280
- };
281
- readonly salary_stream: {
262
+ readonly deposit: {
282
263
  readonly type: "funnel";
283
- readonly steps: readonly ["stream_created", "stream_claimed", "stream_completed"];
284
- readonly drops_on: readonly ["stream_cancelled", "stream_failed"];
285
- };
286
- readonly cash_out: {
287
- readonly type: "funnel";
288
- readonly steps: readonly ["withdrawal_requested", "withdrawal_submitted", "withdrawal_settled"];
289
- readonly drops_on: readonly ["withdrawal_failed"];
264
+ readonly steps: readonly ["deposit_initiated", "deposit_settled"];
290
265
  };
291
266
  };
292
267
  type TelemetryProps = Record<string, unknown>;
@@ -333,68 +308,63 @@ declare function stampTelemetryEnvelope(event: TelemetryEvent, defaults: Telemet
333
308
  declare const AuthOtpRequestedTelemetryEventSchema: Schema.Struct<{
334
309
  readonly name: Schema.Literal<"auth_otp_requested">;
335
310
  readonly props: Schema.Struct<{
336
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
337
- readonly email_domain: Schema.optional<Schema.String>;
338
311
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
339
312
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
340
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
341
313
  readonly journey_id: Schema.optional<Schema.String>;
342
314
  readonly correlation_id: Schema.optional<Schema.String>;
343
315
  readonly sdk_version: Schema.optional<Schema.String>;
316
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
317
+ readonly email_domain: Schema.optional<Schema.String>;
344
318
  }>;
345
319
  }>;
346
320
  declare const AuthOtpDeliveredTelemetryEventSchema: Schema.Struct<{
347
321
  readonly name: Schema.Literal<"auth_otp_delivered">;
348
322
  readonly props: Schema.Struct<{
349
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
350
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
351
- readonly email_domain: Schema.optional<Schema.String>;
352
- readonly resendMessageId: Schema.optional<Schema.String>;
353
323
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
354
324
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
355
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
356
325
  readonly journey_id: Schema.optional<Schema.String>;
357
326
  readonly correlation_id: Schema.optional<Schema.String>;
358
327
  readonly sdk_version: Schema.optional<Schema.String>;
328
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
329
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
330
+ readonly email_domain: Schema.optional<Schema.String>;
331
+ readonly resendMessageId: Schema.optional<Schema.String>;
359
332
  }>;
360
333
  }>;
361
334
  declare const AuthOtpExpiredTelemetryEventSchema: Schema.Struct<{
362
335
  readonly name: Schema.Literal<"auth_otp_expired">;
363
336
  readonly props: Schema.Struct<{
364
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
365
- readonly email_domain: Schema.optional<Schema.String>;
366
337
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
367
338
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
368
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
369
339
  readonly journey_id: Schema.optional<Schema.String>;
370
340
  readonly correlation_id: Schema.optional<Schema.String>;
371
341
  readonly sdk_version: Schema.optional<Schema.String>;
342
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
343
+ readonly email_domain: Schema.optional<Schema.String>;
372
344
  }>;
373
345
  }>;
374
346
  declare const AuthVerifiedTelemetryEventSchema: Schema.Struct<{
375
347
  readonly name: Schema.Literal<"auth_verified">;
376
348
  readonly props: Schema.Struct<{
377
- readonly auth_type: Schema.optional<Schema.String>;
378
349
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
379
350
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
380
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
381
351
  readonly journey_id: Schema.optional<Schema.String>;
382
352
  readonly correlation_id: Schema.optional<Schema.String>;
383
353
  readonly sdk_version: Schema.optional<Schema.String>;
354
+ readonly auth_type: Schema.optional<Schema.String>;
384
355
  }>;
385
356
  }>;
386
357
  declare const AuthFailedTelemetryEventSchema: Schema.Struct<{
387
358
  readonly name: Schema.Literal<"auth_failed">;
388
359
  readonly props: Schema.Struct<{
389
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
390
- readonly auth_type: Schema.optional<Schema.String>;
391
- readonly reason: Schema.optional<Schema.String>;
392
360
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
393
361
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
394
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
395
362
  readonly journey_id: Schema.optional<Schema.String>;
396
363
  readonly correlation_id: Schema.optional<Schema.String>;
397
364
  readonly sdk_version: Schema.optional<Schema.String>;
365
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
366
+ readonly auth_type: Schema.optional<Schema.String>;
367
+ readonly reason: Schema.optional<Schema.String>;
398
368
  }>;
399
369
  }>;
400
370
  declare const AuthSignedOutTelemetryEventSchema: Schema.Struct<{
@@ -402,7 +372,6 @@ declare const AuthSignedOutTelemetryEventSchema: Schema.Struct<{
402
372
  readonly props: Schema.Struct<{
403
373
  capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
404
374
  producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
405
- capxul_e2e_run_id: Schema.optional<Schema.String>;
406
375
  journey_id: Schema.optional<Schema.String>;
407
376
  correlation_id: Schema.optional<Schema.String>;
408
377
  sdk_version: Schema.optional<Schema.String>;
@@ -411,67 +380,67 @@ declare const AuthSignedOutTelemetryEventSchema: Schema.Struct<{
411
380
  declare const OnboardingIntentSelectedTelemetryEventSchema: Schema.Struct<{
412
381
  readonly name: Schema.Literal<"onboarding_intent_selected">;
413
382
  readonly props: Schema.Struct<{
414
- readonly journey_id: Schema.String;
415
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
416
- readonly entry_point: Schema.String;
417
383
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
418
384
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
419
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
420
385
  readonly correlation_id: Schema.optional<Schema.String>;
421
386
  readonly sdk_version: Schema.optional<Schema.String>;
387
+ readonly journey_id: Schema.String;
388
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
389
+ readonly entry_point: Schema.String;
422
390
  }>;
423
391
  }>;
424
392
  declare const OnboardingProfileSubmittedTelemetryEventSchema: Schema.Struct<{
425
393
  readonly name: Schema.Literal<"onboarding_profile_submitted">;
426
394
  readonly props: Schema.Struct<{
427
- readonly journey_id: Schema.String;
428
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
429
395
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
430
396
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
431
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
432
397
  readonly correlation_id: Schema.optional<Schema.String>;
433
398
  readonly sdk_version: Schema.optional<Schema.String>;
399
+ readonly journey_id: Schema.String;
400
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
434
401
  }>;
435
402
  }>;
436
403
  declare const OnboardingOrganizationSubmittedTelemetryEventSchema: Schema.Struct<{
437
404
  readonly name: Schema.Literal<"onboarding_organization_submitted">;
438
405
  readonly props: Schema.Struct<{
439
- readonly journey_id: Schema.String;
440
406
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
441
407
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
442
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
443
408
  readonly correlation_id: Schema.optional<Schema.String>;
444
409
  readonly sdk_version: Schema.optional<Schema.String>;
410
+ readonly journey_id: Schema.String;
445
411
  }>;
446
412
  }>;
447
413
  declare const OnboardingDashboardReachedTelemetryEventSchema: Schema.Struct<{
448
414
  readonly name: Schema.Literal<"onboarding_dashboard_reached">;
449
415
  readonly props: Schema.Struct<{
450
- readonly journey_id: Schema.String;
451
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
452
- readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
453
416
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
454
417
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
455
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
456
418
  readonly correlation_id: Schema.optional<Schema.String>;
457
419
  readonly sdk_version: Schema.optional<Schema.String>;
420
+ readonly journey_id: Schema.String;
421
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
422
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
458
423
  }>;
459
424
  }>;
460
425
  declare const ProvisioningSafeCreatedTelemetryEventSchema: Schema.Struct<{
461
426
  readonly name: Schema.Literal<"provisioning_safe_created">;
462
427
  readonly props: Schema.Struct<{
463
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
464
428
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
465
429
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
466
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
467
430
  readonly journey_id: Schema.optional<Schema.String>;
468
431
  readonly correlation_id: Schema.optional<Schema.String>;
469
432
  readonly sdk_version: Schema.optional<Schema.String>;
433
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
470
434
  }>;
471
435
  }>;
472
436
  declare const ProvisioningSafeConfirmedTelemetryEventSchema: Schema.Struct<{
473
437
  readonly name: Schema.Literal<"provisioning_safe_confirmed">;
474
438
  readonly props: Schema.Struct<{
439
+ readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
440
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
441
+ readonly journey_id: Schema.optional<Schema.String>;
442
+ readonly correlation_id: Schema.optional<Schema.String>;
443
+ readonly sdk_version: Schema.optional<Schema.String>;
475
444
  readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
476
445
  readonly deployedAt: Schema.optional<Schema.Codec<EpochMs, number, never, never>>;
477
446
  readonly deployedAtBlock: Schema.optional<Schema.Codec<BlockNumber, number, never, never>>;
@@ -479,1844 +448,993 @@ declare const ProvisioningSafeConfirmedTelemetryEventSchema: Schema.Struct<{
479
448
  readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
480
449
  readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
481
450
  readonly userOpHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
482
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
483
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
484
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
485
- readonly journey_id: Schema.optional<Schema.String>;
486
- readonly correlation_id: Schema.optional<Schema.String>;
487
- readonly sdk_version: Schema.optional<Schema.String>;
488
451
  }>;
489
452
  }>;
490
453
  declare const BootstrapResolvedTelemetryEventSchema: Schema.Struct<{
491
454
  readonly name: Schema.Literal<"bootstrap_resolved">;
492
455
  readonly props: Schema.Struct<{
493
- readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
494
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
495
- readonly env: Schema.optional<Schema.String>;
496
- readonly keyId: Schema.optional<Schema.Codec<PublishableKeyId, string, never, never>>;
497
- readonly origin: Schema.optional<Schema.String>;
498
456
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
499
457
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
500
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
501
458
  readonly journey_id: Schema.optional<Schema.String>;
502
459
  readonly correlation_id: Schema.optional<Schema.String>;
503
460
  readonly sdk_version: Schema.optional<Schema.String>;
461
+ readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
462
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
463
+ readonly env: Schema.optional<Schema.String>;
464
+ readonly keyId: Schema.optional<Schema.Codec<PublishableKeyId, string, never, never>>;
465
+ readonly origin: Schema.optional<Schema.String>;
504
466
  }>;
505
467
  }>;
506
468
  declare const BootstrapFailedTelemetryEventSchema: Schema.Struct<{
507
469
  readonly name: Schema.Literal<"bootstrap_failed">;
508
470
  readonly props: Schema.Struct<{
509
- readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
510
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
511
- readonly origin: Schema.optional<Schema.String>;
512
- readonly reason: Schema.optional<Schema.String>;
513
471
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
514
472
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
515
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
516
473
  readonly journey_id: Schema.optional<Schema.String>;
517
474
  readonly correlation_id: Schema.optional<Schema.String>;
518
475
  readonly sdk_version: Schema.optional<Schema.String>;
476
+ readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
477
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
478
+ readonly origin: Schema.optional<Schema.String>;
479
+ readonly reason: Schema.optional<Schema.String>;
519
480
  }>;
520
481
  }>;
521
482
  declare const MemberActivationStartedTelemetryEventSchema: Schema.Struct<{
522
483
  readonly name: Schema.Literal<"member_activation_started">;
523
484
  readonly props: Schema.Struct<{
524
- readonly $insert_id: Schema.String;
525
485
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
526
486
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
527
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
528
487
  readonly journey_id: Schema.optional<Schema.String>;
529
488
  readonly correlation_id: Schema.optional<Schema.String>;
530
489
  readonly sdk_version: Schema.optional<Schema.String>;
490
+ readonly $insert_id: Schema.String;
531
491
  }>;
532
492
  }>;
533
493
  declare const MemberActivationReadyTelemetryEventSchema: Schema.Struct<{
534
494
  readonly name: Schema.Literal<"member_activation_ready">;
535
495
  readonly props: Schema.Struct<{
536
- readonly $insert_id: Schema.String;
537
- readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
538
496
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
539
497
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
540
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
541
498
  readonly journey_id: Schema.optional<Schema.String>;
542
499
  readonly correlation_id: Schema.optional<Schema.String>;
543
500
  readonly sdk_version: Schema.optional<Schema.String>;
501
+ readonly $insert_id: Schema.String;
502
+ readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
544
503
  }>;
545
504
  }>;
546
505
  declare const MemberActivationFailedTelemetryEventSchema: Schema.Struct<{
547
506
  readonly name: Schema.Literal<"member_activation_failed">;
548
507
  readonly props: Schema.Struct<{
549
- readonly $insert_id: Schema.String;
550
- readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
551
- readonly error_code: Schema.String;
552
- readonly retryable: Schema.Boolean;
553
508
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
554
509
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
555
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
556
510
  readonly journey_id: Schema.optional<Schema.String>;
557
511
  readonly correlation_id: Schema.optional<Schema.String>;
558
512
  readonly sdk_version: Schema.optional<Schema.String>;
513
+ readonly $insert_id: Schema.String;
514
+ readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
515
+ readonly error_code: Schema.String;
516
+ readonly retryable: Schema.Boolean;
559
517
  }>;
560
518
  }>;
561
519
  declare const OrganizationCreationStartedTelemetryEventSchema: Schema.Struct<{
562
520
  readonly name: Schema.Literal<"organization_creation_started">;
563
521
  readonly props: Schema.Struct<{
564
- readonly $insert_id: Schema.String;
565
- readonly organization_id: Schema.Codec<string, string, never, never>;
566
- readonly attempt_number: Schema.refine<number, Schema.Number>;
567
522
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
568
523
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
569
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
570
524
  readonly journey_id: Schema.optional<Schema.String>;
571
525
  readonly correlation_id: Schema.optional<Schema.String>;
572
526
  readonly sdk_version: Schema.optional<Schema.String>;
527
+ readonly $insert_id: Schema.String;
528
+ readonly organization_id: Schema.Codec<string, string, never, never>;
529
+ readonly attempt_number: Schema.refine<number, Schema.Number>;
573
530
  }>;
574
531
  }>;
575
532
  declare const OrganizationCreationReadyTelemetryEventSchema: Schema.Struct<{
576
533
  readonly name: Schema.Literal<"organization_creation_ready">;
577
534
  readonly props: Schema.Struct<{
578
- readonly $insert_id: Schema.String;
579
- readonly organization_id: Schema.Codec<string, string, never, never>;
580
- readonly attempt_number: Schema.refine<number, Schema.Number>;
581
- readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
582
535
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
583
536
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
584
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
585
537
  readonly journey_id: Schema.optional<Schema.String>;
586
538
  readonly correlation_id: Schema.optional<Schema.String>;
587
539
  readonly sdk_version: Schema.optional<Schema.String>;
540
+ readonly $insert_id: Schema.String;
541
+ readonly organization_id: Schema.Codec<string, string, never, never>;
542
+ readonly attempt_number: Schema.refine<number, Schema.Number>;
543
+ readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
588
544
  }>;
589
545
  }>;
590
546
  declare const OrganizationCreationFailedTelemetryEventSchema: Schema.Struct<{
591
547
  readonly name: Schema.Literal<"organization_creation_failed">;
592
548
  readonly props: Schema.Struct<{
549
+ readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
550
+ readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
551
+ readonly journey_id: Schema.optional<Schema.String>;
552
+ readonly correlation_id: Schema.optional<Schema.String>;
553
+ readonly sdk_version: Schema.optional<Schema.String>;
593
554
  readonly $insert_id: Schema.String;
594
555
  readonly organization_id: Schema.Codec<string, string, never, never>;
595
556
  readonly attempt_number: Schema.refine<number, Schema.Number>;
596
557
  readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
597
558
  readonly error_code: Schema.String;
598
559
  readonly retryable: Schema.Boolean;
599
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
600
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
601
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
602
- readonly journey_id: Schema.optional<Schema.String>;
603
- readonly correlation_id: Schema.optional<Schema.String>;
604
- readonly sdk_version: Schema.optional<Schema.String>;
605
560
  }>;
606
561
  }>;
607
562
  declare const AccountBalanceReadTelemetryEventSchema: Schema.Struct<{
608
563
  readonly name: Schema.Literal<"account_balance_read">;
609
564
  readonly props: Schema.Struct<{
610
- readonly account_id: Schema.optional<Schema.Codec<AccountId, string, never, never>>;
611
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
612
- readonly balance_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
613
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
614
565
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
615
566
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
616
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
617
567
  readonly journey_id: Schema.optional<Schema.String>;
618
568
  readonly correlation_id: Schema.optional<Schema.String>;
619
569
  readonly sdk_version: Schema.optional<Schema.String>;
570
+ readonly account_id: Schema.optional<Schema.Codec<AccountId, string, never, never>>;
571
+ readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
572
+ readonly balance_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
573
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
620
574
  }>;
621
575
  }>;
622
576
  declare const AccountBalanceFailedTelemetryEventSchema: Schema.Struct<{
623
577
  readonly name: Schema.Literal<"account_balance_failed">;
624
578
  readonly props: Schema.Struct<{
625
- readonly reason: Schema.optional<Schema.String>;
626
579
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
627
580
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
628
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
629
581
  readonly journey_id: Schema.optional<Schema.String>;
630
582
  readonly correlation_id: Schema.optional<Schema.String>;
631
583
  readonly sdk_version: Schema.optional<Schema.String>;
584
+ readonly reason: Schema.optional<Schema.String>;
632
585
  }>;
633
586
  }>;
634
587
  declare const FaucetRequestedTelemetryEventSchema: Schema.Struct<{
635
588
  readonly name: Schema.Literal<"faucet_requested">;
636
589
  readonly props: Schema.Struct<{
637
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
638
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
639
590
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
640
591
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
641
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
642
592
  readonly journey_id: Schema.optional<Schema.String>;
643
593
  readonly correlation_id: Schema.optional<Schema.String>;
644
594
  readonly sdk_version: Schema.optional<Schema.String>;
595
+ readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
596
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
645
597
  }>;
646
598
  }>;
647
599
  declare const FaucetConfirmedTelemetryEventSchema: Schema.Struct<{
648
600
  readonly name: Schema.Literal<"faucet_confirmed">;
649
601
  readonly props: Schema.Struct<{
650
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
651
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
652
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
653
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
654
602
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
655
603
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
656
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
657
604
  readonly journey_id: Schema.optional<Schema.String>;
658
605
  readonly correlation_id: Schema.optional<Schema.String>;
659
606
  readonly sdk_version: Schema.optional<Schema.String>;
607
+ readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
608
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
609
+ readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
610
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
660
611
  }>;
661
612
  }>;
662
613
  declare const FaucetFailedTelemetryEventSchema: Schema.Struct<{
663
614
  readonly name: Schema.Literal<"faucet_failed">;
664
615
  readonly props: Schema.Struct<{
665
- readonly reason: Schema.optional<Schema.String>;
666
616
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
667
617
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
668
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
669
618
  readonly journey_id: Schema.optional<Schema.String>;
670
619
  readonly correlation_id: Schema.optional<Schema.String>;
671
620
  readonly sdk_version: Schema.optional<Schema.String>;
621
+ readonly reason: Schema.optional<Schema.String>;
672
622
  }>;
673
623
  }>;
674
- declare const SubaccountCreatedTelemetryEventSchema: Schema.Struct<{
675
- readonly name: Schema.Literal<"subaccount_created">;
624
+ declare const OrgCreateStartedTelemetryEventSchema: Schema.Struct<{
625
+ readonly name: Schema.Literal<"org_create_started">;
676
626
  readonly props: Schema.Struct<{
677
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
678
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
679
627
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
680
628
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
681
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
682
629
  readonly journey_id: Schema.optional<Schema.String>;
683
630
  readonly correlation_id: Schema.optional<Schema.String>;
684
631
  readonly sdk_version: Schema.optional<Schema.String>;
632
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
633
+ readonly email_domain: Schema.optional<Schema.String>;
634
+ readonly template: Schema.optional<Schema.String>;
685
635
  }>;
686
636
  }>;
687
- declare const SubaccountRenamedTelemetryEventSchema: Schema.Struct<{
688
- readonly name: Schema.Literal<"subaccount_renamed">;
637
+ declare const OrgSafeCreatedTelemetryEventSchema: Schema.Struct<{
638
+ readonly name: Schema.Literal<"org_safe_created">;
689
639
  readonly props: Schema.Struct<{
690
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
691
640
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
692
641
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
693
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
694
642
  readonly journey_id: Schema.optional<Schema.String>;
695
643
  readonly correlation_id: Schema.optional<Schema.String>;
696
644
  readonly sdk_version: Schema.optional<Schema.String>;
645
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
646
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
647
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
697
648
  }>;
698
649
  }>;
699
- declare const SubaccountDeletedTelemetryEventSchema: Schema.Struct<{
700
- readonly name: Schema.Literal<"subaccount_deleted">;
650
+ declare const OrgSafeConfirmedTelemetryEventSchema: Schema.Struct<{
651
+ readonly name: Schema.Literal<"org_safe_confirmed">;
701
652
  readonly props: Schema.Struct<{
702
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
703
653
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
704
654
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
705
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
706
655
  readonly journey_id: Schema.optional<Schema.String>;
707
656
  readonly correlation_id: Schema.optional<Schema.String>;
708
657
  readonly sdk_version: Schema.optional<Schema.String>;
658
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
659
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
660
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
661
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
709
662
  }>;
710
663
  }>;
711
- declare const SubaccountOpFailedTelemetryEventSchema: Schema.Struct<{
712
- readonly name: Schema.Literal<"subaccount_op_failed">;
664
+ declare const OrgRolesSeededTelemetryEventSchema: Schema.Struct<{
665
+ readonly name: Schema.Literal<"org_roles_seeded">;
713
666
  readonly props: Schema.Struct<{
714
- readonly op: Schema.optional<Schema.Literals<readonly ["create", "rename", "delete"]>>;
715
- readonly reason: Schema.optional<Schema.String>;
716
667
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
717
668
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
718
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
719
669
  readonly journey_id: Schema.optional<Schema.String>;
720
670
  readonly correlation_id: Schema.optional<Schema.String>;
721
671
  readonly sdk_version: Schema.optional<Schema.String>;
672
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
673
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
674
+ readonly role: Schema.optional<Schema.String>;
675
+ readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
722
676
  }>;
723
677
  }>;
724
- declare const TransferRequestedTelemetryEventSchema: Schema.Struct<{
725
- readonly name: Schema.Literal<"transfer_requested">;
678
+ declare const OrgCreatedTelemetryEventSchema: Schema.Struct<{
679
+ readonly name: Schema.Literal<"org_created">;
726
680
  readonly props: Schema.Struct<{
727
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
728
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
729
681
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
730
682
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
731
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
732
683
  readonly journey_id: Schema.optional<Schema.String>;
733
684
  readonly correlation_id: Schema.optional<Schema.String>;
734
685
  readonly sdk_version: Schema.optional<Schema.String>;
686
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
687
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
688
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
689
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
735
690
  }>;
736
691
  }>;
737
- declare const TransferBackendReceivedTelemetryEventSchema: Schema.Struct<{
738
- readonly name: Schema.Literal<"transfer_backend_received">;
692
+ declare const OrgCreateFailedTelemetryEventSchema: Schema.Struct<{
693
+ readonly name: Schema.Literal<"org_create_failed">;
739
694
  readonly props: Schema.Struct<{
740
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
741
695
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
742
696
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
743
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
744
697
  readonly journey_id: Schema.optional<Schema.String>;
745
698
  readonly correlation_id: Schema.optional<Schema.String>;
746
699
  readonly sdk_version: Schema.optional<Schema.String>;
700
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
701
+ readonly reason: Schema.optional<Schema.String>;
747
702
  }>;
748
703
  }>;
749
- declare const TransferConfirmedTelemetryEventSchema: Schema.Struct<{
750
- readonly name: Schema.Literal<"transfer_confirmed">;
704
+ declare const OrgInviteSentTelemetryEventSchema: Schema.Struct<{
705
+ readonly name: Schema.Literal<"org_invite_sent">;
751
706
  readonly props: Schema.Struct<{
752
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
753
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
754
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
755
- readonly txless: Schema.optional<Schema.Literal<true>>;
756
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
757
707
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
758
708
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
759
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
760
709
  readonly journey_id: Schema.optional<Schema.String>;
761
710
  readonly correlation_id: Schema.optional<Schema.String>;
762
711
  readonly sdk_version: Schema.optional<Schema.String>;
712
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
713
+ readonly email_domain: Schema.optional<Schema.String>;
714
+ readonly role: Schema.optional<Schema.String>;
715
+ readonly status: Schema.optional<Schema.String>;
763
716
  }>;
764
717
  }>;
765
- declare const TransferFailedTelemetryEventSchema: Schema.Struct<{
766
- readonly name: Schema.Literal<"transfer_failed">;
718
+ declare const OrgInviteAcceptedTelemetryEventSchema: Schema.Struct<{
719
+ readonly name: Schema.Literal<"org_invite_accepted">;
767
720
  readonly props: Schema.Struct<{
768
- readonly reason: Schema.optional<Schema.String>;
769
721
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
770
722
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
771
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
772
723
  readonly journey_id: Schema.optional<Schema.String>;
773
724
  readonly correlation_id: Schema.optional<Schema.String>;
774
725
  readonly sdk_version: Schema.optional<Schema.String>;
726
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
727
+ readonly role: Schema.optional<Schema.String>;
728
+ readonly status: Schema.optional<Schema.String>;
775
729
  }>;
776
730
  }>;
777
- declare const OrgCreateStartedTelemetryEventSchema: Schema.Struct<{
778
- readonly name: Schema.Literal<"org_create_started">;
731
+ declare const OrgInviteExpiredTelemetryEventSchema: Schema.Struct<{
732
+ readonly name: Schema.Literal<"org_invite_expired">;
779
733
  readonly props: Schema.Struct<{
780
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
781
- readonly email_domain: Schema.optional<Schema.String>;
782
- readonly template: Schema.optional<Schema.String>;
783
734
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
784
735
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
785
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
786
736
  readonly journey_id: Schema.optional<Schema.String>;
787
737
  readonly correlation_id: Schema.optional<Schema.String>;
788
738
  readonly sdk_version: Schema.optional<Schema.String>;
739
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
740
+ readonly email_domain: Schema.optional<Schema.String>;
741
+ readonly reason: Schema.optional<Schema.String>;
742
+ readonly role: Schema.optional<Schema.String>;
743
+ readonly status: Schema.optional<Schema.String>;
789
744
  }>;
790
745
  }>;
791
- declare const OrgSafeCreatedTelemetryEventSchema: Schema.Struct<{
792
- readonly name: Schema.Literal<"org_safe_created">;
746
+ declare const PaymentInitiatedTelemetryEventSchema: Schema.Struct<{
747
+ readonly name: Schema.Literal<"payment_initiated">;
793
748
  readonly props: Schema.Struct<{
794
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
795
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
796
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
797
749
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
798
750
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
799
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
800
751
  readonly journey_id: Schema.optional<Schema.String>;
801
752
  readonly correlation_id: Schema.optional<Schema.String>;
802
753
  readonly sdk_version: Schema.optional<Schema.String>;
754
+ readonly kind: Schema.String;
755
+ readonly payment_id: Schema.String;
803
756
  }>;
804
757
  }>;
805
- declare const OrgSafeConfirmedTelemetryEventSchema: Schema.Struct<{
806
- readonly name: Schema.Literal<"org_safe_confirmed">;
758
+ declare const PaymentSettledTelemetryEventSchema: Schema.Struct<{
759
+ readonly name: Schema.Literal<"payment_settled">;
807
760
  readonly props: Schema.Struct<{
808
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
809
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
810
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
811
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
812
761
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
813
762
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
814
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
815
763
  readonly journey_id: Schema.optional<Schema.String>;
816
764
  readonly correlation_id: Schema.optional<Schema.String>;
817
765
  readonly sdk_version: Schema.optional<Schema.String>;
766
+ readonly kind: Schema.String;
767
+ readonly chain_id: Schema.Number;
768
+ readonly settlement_id: Schema.String;
818
769
  }>;
819
770
  }>;
820
- declare const OrgRolesSeededTelemetryEventSchema: Schema.Struct<{
821
- readonly name: Schema.Literal<"org_roles_seeded">;
771
+ declare const PaymentFailedTelemetryEventSchema: Schema.Struct<{
772
+ readonly name: Schema.Literal<"payment_failed">;
822
773
  readonly props: Schema.Struct<{
823
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
824
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
825
- readonly role: Schema.optional<Schema.String>;
826
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
827
774
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
828
775
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
829
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
830
776
  readonly journey_id: Schema.optional<Schema.String>;
831
777
  readonly correlation_id: Schema.optional<Schema.String>;
832
778
  readonly sdk_version: Schema.optional<Schema.String>;
779
+ readonly kind: Schema.String;
780
+ readonly payment_id: Schema.String;
781
+ readonly reason_code: Schema.String;
833
782
  }>;
834
783
  }>;
835
- declare const OrgCreatedTelemetryEventSchema: Schema.Struct<{
836
- readonly name: Schema.Literal<"org_created">;
784
+ declare const DepositInitiatedTelemetryEventSchema: Schema.Struct<{
785
+ readonly name: Schema.Literal<"deposit_initiated">;
837
786
  readonly props: Schema.Struct<{
838
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
839
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
840
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
841
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
842
787
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
843
788
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
844
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
845
789
  readonly journey_id: Schema.optional<Schema.String>;
846
790
  readonly correlation_id: Schema.optional<Schema.String>;
847
791
  readonly sdk_version: Schema.optional<Schema.String>;
848
792
  }>;
849
793
  }>;
850
- declare const OrgCreateFailedTelemetryEventSchema: Schema.Struct<{
851
- readonly name: Schema.Literal<"org_create_failed">;
794
+ declare const DepositSettledTelemetryEventSchema: Schema.Struct<{
795
+ readonly name: Schema.Literal<"deposit_settled">;
852
796
  readonly props: Schema.Struct<{
853
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
854
- readonly reason: Schema.optional<Schema.String>;
855
797
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
856
798
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
857
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
858
799
  readonly journey_id: Schema.optional<Schema.String>;
859
800
  readonly correlation_id: Schema.optional<Schema.String>;
860
801
  readonly sdk_version: Schema.optional<Schema.String>;
802
+ readonly chain_id: Schema.Number;
803
+ readonly tx_hash: Schema.String;
804
+ readonly log_index: Schema.Number;
861
805
  }>;
862
806
  }>;
863
- declare const OrgInviteSentTelemetryEventSchema: Schema.Struct<{
864
- readonly name: Schema.Literal<"org_invite_sent">;
807
+ declare const PermissionMirrorVerificationTelemetryEventSchema: Schema.Struct<{
808
+ readonly name: Schema.Literal<"permission_mirror_verification">;
865
809
  readonly props: Schema.Struct<{
866
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
867
- readonly email_domain: Schema.optional<Schema.String>;
868
- readonly role: Schema.optional<Schema.String>;
869
- readonly status: Schema.optional<Schema.String>;
870
810
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
871
811
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
872
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
873
812
  readonly journey_id: Schema.optional<Schema.String>;
874
813
  readonly correlation_id: Schema.optional<Schema.String>;
875
814
  readonly sdk_version: Schema.optional<Schema.String>;
815
+ readonly outcome: Schema.String;
816
+ readonly reason: Schema.String;
817
+ readonly chain_id: Schema.Number;
818
+ readonly finality: Schema.String;
819
+ readonly lag_blocks: Schema.Number;
820
+ readonly retry_count: Schema.Number;
876
821
  }>;
877
822
  }>;
878
- declare const OrgInviteAcceptedTelemetryEventSchema: Schema.Struct<{
879
- readonly name: Schema.Literal<"org_invite_accepted">;
823
+ declare const MovementScanWindowTelemetryEventSchema: Schema.Struct<{
824
+ readonly name: Schema.Literal<"movement_scan_window">;
880
825
  readonly props: Schema.Struct<{
881
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
882
- readonly role: Schema.optional<Schema.String>;
883
- readonly status: Schema.optional<Schema.String>;
884
826
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
885
827
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
886
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
887
828
  readonly journey_id: Schema.optional<Schema.String>;
888
829
  readonly correlation_id: Schema.optional<Schema.String>;
889
830
  readonly sdk_version: Schema.optional<Schema.String>;
831
+ readonly chain_id: Schema.Number;
832
+ readonly token_address: Schema.String;
833
+ readonly from_block: Schema.Number;
834
+ readonly to_block: Schema.Number;
835
+ readonly log_count: Schema.Number;
836
+ readonly request_count: Schema.Number;
837
+ readonly outcome: Schema.String;
890
838
  }>;
891
839
  }>;
892
- declare const OrgRoleGrantedTelemetryEventSchema: Schema.Struct<{
893
- readonly name: Schema.Literal<"org_role_granted">;
840
+ declare const MovementScanCheckpointTelemetryEventSchema: Schema.Struct<{
841
+ readonly name: Schema.Literal<"movement_scan_checkpoint">;
894
842
  readonly props: Schema.Struct<{
895
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
896
- readonly role: Schema.optional<Schema.String>;
897
- readonly status: Schema.optional<Schema.String>;
898
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
899
843
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
900
844
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
901
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
902
845
  readonly journey_id: Schema.optional<Schema.String>;
903
846
  readonly correlation_id: Schema.optional<Schema.String>;
904
847
  readonly sdk_version: Schema.optional<Schema.String>;
848
+ readonly chain_id: Schema.Number;
849
+ readonly token_address: Schema.String;
850
+ readonly next_block: Schema.Number;
851
+ readonly anchor_block_number: Schema.Number;
905
852
  }>;
906
853
  }>;
907
- declare const OrgMemberActiveTelemetryEventSchema: Schema.Struct<{
908
- readonly name: Schema.Literal<"org_member_active">;
854
+ declare const MovementScanIncidentTelemetryEventSchema: Schema.Struct<{
855
+ readonly name: Schema.Literal<"movement_scan_incident">;
909
856
  readonly props: Schema.Struct<{
910
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
911
- readonly role: Schema.optional<Schema.String>;
912
- readonly status: Schema.optional<Schema.String>;
913
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
914
857
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
915
858
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
916
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
917
- readonly journey_id: Schema.optional<Schema.String>;
918
- readonly correlation_id: Schema.optional<Schema.String>;
919
- readonly sdk_version: Schema.optional<Schema.String>;
920
- }>;
921
- }>;
922
- declare const OrgMemberRemovedTelemetryEventSchema: Schema.Struct<{
923
- readonly name: Schema.Literal<"org_member_removed">;
924
- readonly props: Schema.Struct<{
925
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
926
- readonly role: Schema.optional<Schema.String>;
927
- readonly status: Schema.optional<Schema.String>;
928
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
929
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
930
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
931
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
932
- readonly journey_id: Schema.optional<Schema.String>;
933
- readonly correlation_id: Schema.optional<Schema.String>;
934
- readonly sdk_version: Schema.optional<Schema.String>;
935
- }>;
936
- }>;
937
- declare const OrgInviteExpiredTelemetryEventSchema: Schema.Struct<{
938
- readonly name: Schema.Literal<"org_invite_expired">;
939
- readonly props: Schema.Struct<{
940
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
941
- readonly email_domain: Schema.optional<Schema.String>;
942
- readonly reason: Schema.optional<Schema.String>;
943
- readonly role: Schema.optional<Schema.String>;
944
- readonly status: Schema.optional<Schema.String>;
945
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
946
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
947
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
948
- readonly journey_id: Schema.optional<Schema.String>;
949
- readonly correlation_id: Schema.optional<Schema.String>;
950
- readonly sdk_version: Schema.optional<Schema.String>;
951
- }>;
952
- }>;
953
- declare const OrgRoleGrantFailedTelemetryEventSchema: Schema.Struct<{
954
- readonly name: Schema.Literal<"org_role_grant_failed">;
955
- readonly props: Schema.Struct<{
956
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
957
- readonly reason: Schema.optional<Schema.String>;
958
- readonly role: Schema.optional<Schema.String>;
959
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
960
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
961
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
962
- readonly journey_id: Schema.optional<Schema.String>;
963
- readonly correlation_id: Schema.optional<Schema.String>;
964
- readonly sdk_version: Schema.optional<Schema.String>;
965
- }>;
966
- }>;
967
- declare const PaymentRequestedTelemetryEventSchema: Schema.Struct<{
968
- readonly name: Schema.Literal<"payment_requested">;
969
- readonly props: Schema.Struct<{
970
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
971
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
972
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
973
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
974
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
975
- readonly status: Schema.optional<Schema.String>;
976
- readonly reason: Schema.optional<Schema.String>;
977
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
978
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
979
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
980
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
981
- readonly journey_id: Schema.optional<Schema.String>;
982
- readonly correlation_id: Schema.optional<Schema.String>;
983
- readonly sdk_version: Schema.optional<Schema.String>;
984
- }>;
985
- }>;
986
- declare const PaymentResolvedTelemetryEventSchema: Schema.Struct<{
987
- readonly name: Schema.Literal<"payment_resolved">;
988
- readonly props: Schema.Struct<{
989
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
990
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
991
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
992
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
993
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
994
- readonly status: Schema.optional<Schema.String>;
995
- readonly reason: Schema.optional<Schema.String>;
996
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
997
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
998
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
999
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1000
- readonly journey_id: Schema.optional<Schema.String>;
1001
- readonly correlation_id: Schema.optional<Schema.String>;
1002
- readonly sdk_version: Schema.optional<Schema.String>;
1003
- }>;
1004
- }>;
1005
- declare const PaymentDocumentAttachedTelemetryEventSchema: Schema.Struct<{
1006
- readonly name: Schema.Literal<"payment_document_attached">;
1007
- readonly props: Schema.Struct<{
1008
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1009
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1010
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1011
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1012
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1013
- readonly status: Schema.optional<Schema.String>;
1014
- readonly reason: Schema.optional<Schema.String>;
1015
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1016
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1017
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1018
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1019
- readonly journey_id: Schema.optional<Schema.String>;
1020
- readonly correlation_id: Schema.optional<Schema.String>;
1021
- readonly sdk_version: Schema.optional<Schema.String>;
1022
- }>;
1023
- }>;
1024
- declare const PaymentSubmittedTelemetryEventSchema: Schema.Struct<{
1025
- readonly name: Schema.Literal<"payment_submitted">;
1026
- readonly props: Schema.Struct<{
1027
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1028
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1029
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1030
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1031
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1032
- readonly status: Schema.optional<Schema.String>;
1033
- readonly reason: Schema.optional<Schema.String>;
1034
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1035
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1036
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1037
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1038
- readonly journey_id: Schema.optional<Schema.String>;
1039
- readonly correlation_id: Schema.optional<Schema.String>;
1040
- readonly sdk_version: Schema.optional<Schema.String>;
1041
- }>;
1042
- }>;
1043
- declare const PaymentSettledTelemetryEventSchema: Schema.Struct<{
1044
- readonly name: Schema.Literal<"payment_settled">;
1045
- readonly props: Schema.Struct<{
1046
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1047
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1048
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1049
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1050
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1051
- readonly status: Schema.optional<Schema.String>;
1052
- readonly reason: Schema.optional<Schema.String>;
1053
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1054
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1055
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1056
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1057
- readonly journey_id: Schema.optional<Schema.String>;
1058
- readonly correlation_id: Schema.optional<Schema.String>;
1059
- readonly sdk_version: Schema.optional<Schema.String>;
1060
- }>;
1061
- }>;
1062
- declare const PaymentClaimedTelemetryEventSchema: Schema.Struct<{
1063
- readonly name: Schema.Literal<"payment_claimed">;
1064
- readonly props: Schema.Struct<{
1065
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1066
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1067
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1068
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1069
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1070
- readonly status: Schema.optional<Schema.String>;
1071
- readonly reason: Schema.optional<Schema.String>;
1072
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1073
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1074
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1075
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1076
- readonly journey_id: Schema.optional<Schema.String>;
1077
- readonly correlation_id: Schema.optional<Schema.String>;
1078
- readonly sdk_version: Schema.optional<Schema.String>;
1079
- }>;
1080
- }>;
1081
- declare const PaymentCancelledTelemetryEventSchema: Schema.Struct<{
1082
- readonly name: Schema.Literal<"payment_cancelled">;
1083
- readonly props: Schema.Struct<{
1084
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1085
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1086
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1087
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1088
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1089
- readonly status: Schema.optional<Schema.String>;
1090
- readonly reason: Schema.optional<Schema.String>;
1091
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1092
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1093
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1094
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1095
- readonly journey_id: Schema.optional<Schema.String>;
1096
- readonly correlation_id: Schema.optional<Schema.String>;
1097
- readonly sdk_version: Schema.optional<Schema.String>;
1098
- }>;
1099
- }>;
1100
- declare const PaymentRedirectedTelemetryEventSchema: Schema.Struct<{
1101
- readonly name: Schema.Literal<"payment_redirected">;
1102
- readonly props: Schema.Struct<{
1103
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1104
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1105
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1106
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1107
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1108
- readonly status: Schema.optional<Schema.String>;
1109
- readonly reason: Schema.optional<Schema.String>;
1110
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1111
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1112
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1113
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1114
- readonly journey_id: Schema.optional<Schema.String>;
1115
- readonly correlation_id: Schema.optional<Schema.String>;
1116
- readonly sdk_version: Schema.optional<Schema.String>;
1117
- }>;
1118
- }>;
1119
- declare const PaymentFailedTelemetryEventSchema: Schema.Struct<{
1120
- readonly name: Schema.Literal<"payment_failed">;
1121
- readonly props: Schema.Struct<{
1122
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1123
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1124
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1125
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1126
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1127
- readonly status: Schema.optional<Schema.String>;
1128
- readonly reason: Schema.optional<Schema.String>;
1129
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1130
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1131
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1132
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1133
- readonly journey_id: Schema.optional<Schema.String>;
1134
- readonly correlation_id: Schema.optional<Schema.String>;
1135
- readonly sdk_version: Schema.optional<Schema.String>;
1136
- }>;
1137
- }>;
1138
- declare const StreamCreatedTelemetryEventSchema: Schema.Struct<{
1139
- readonly name: Schema.Literal<"stream_created">;
1140
- readonly props: Schema.Struct<{
1141
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1142
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1143
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1144
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1145
- readonly status: Schema.optional<Schema.String>;
1146
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1147
- readonly reason: Schema.optional<Schema.String>;
1148
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1149
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1150
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1151
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1152
- readonly journey_id: Schema.optional<Schema.String>;
1153
- readonly correlation_id: Schema.optional<Schema.String>;
1154
- readonly sdk_version: Schema.optional<Schema.String>;
1155
- }>;
1156
- }>;
1157
- declare const StreamClaimedTelemetryEventSchema: Schema.Struct<{
1158
- readonly name: Schema.Literal<"stream_claimed">;
1159
- readonly props: Schema.Struct<{
1160
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1161
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1162
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1163
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1164
- readonly status: Schema.optional<Schema.String>;
1165
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1166
- readonly reason: Schema.optional<Schema.String>;
1167
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1168
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1169
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1170
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1171
- readonly journey_id: Schema.optional<Schema.String>;
1172
- readonly correlation_id: Schema.optional<Schema.String>;
1173
- readonly sdk_version: Schema.optional<Schema.String>;
1174
- }>;
1175
- }>;
1176
- declare const StreamCancelledTelemetryEventSchema: Schema.Struct<{
1177
- readonly name: Schema.Literal<"stream_cancelled">;
1178
- readonly props: Schema.Struct<{
1179
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1180
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1181
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1182
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1183
- readonly status: Schema.optional<Schema.String>;
1184
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1185
- readonly reason: Schema.optional<Schema.String>;
1186
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1187
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1188
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1189
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1190
- readonly journey_id: Schema.optional<Schema.String>;
1191
- readonly correlation_id: Schema.optional<Schema.String>;
1192
- readonly sdk_version: Schema.optional<Schema.String>;
1193
- }>;
1194
- }>;
1195
- declare const StreamCompletedTelemetryEventSchema: Schema.Struct<{
1196
- readonly name: Schema.Literal<"stream_completed">;
1197
- readonly props: Schema.Struct<{
1198
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1199
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1200
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1201
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1202
- readonly status: Schema.optional<Schema.String>;
1203
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1204
- readonly reason: Schema.optional<Schema.String>;
1205
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1206
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1207
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1208
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1209
- readonly journey_id: Schema.optional<Schema.String>;
1210
- readonly correlation_id: Schema.optional<Schema.String>;
1211
- readonly sdk_version: Schema.optional<Schema.String>;
1212
- }>;
1213
- }>;
1214
- declare const StreamFailedTelemetryEventSchema: Schema.Struct<{
1215
- readonly name: Schema.Literal<"stream_failed">;
1216
- readonly props: Schema.Struct<{
1217
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1218
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1219
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1220
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1221
- readonly status: Schema.optional<Schema.String>;
1222
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1223
- readonly reason: Schema.optional<Schema.String>;
1224
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1225
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1226
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1227
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1228
- readonly journey_id: Schema.optional<Schema.String>;
1229
- readonly correlation_id: Schema.optional<Schema.String>;
1230
- readonly sdk_version: Schema.optional<Schema.String>;
1231
- }>;
1232
- }>;
1233
- declare const WithdrawalRequestedTelemetryEventSchema: Schema.Struct<{
1234
- readonly name: Schema.Literal<"withdrawal_requested">;
1235
- readonly props: Schema.Struct<{
1236
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1237
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1238
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1239
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1240
- readonly status: Schema.optional<Schema.String>;
1241
- readonly reason: Schema.optional<Schema.String>;
1242
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1243
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1244
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1245
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1246
- readonly journey_id: Schema.optional<Schema.String>;
1247
- readonly correlation_id: Schema.optional<Schema.String>;
1248
- readonly sdk_version: Schema.optional<Schema.String>;
1249
- }>;
1250
- }>;
1251
- declare const WithdrawalSubmittedTelemetryEventSchema: Schema.Struct<{
1252
- readonly name: Schema.Literal<"withdrawal_submitted">;
1253
- readonly props: Schema.Struct<{
1254
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1255
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1256
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1257
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1258
- readonly status: Schema.optional<Schema.String>;
1259
- readonly reason: Schema.optional<Schema.String>;
1260
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1261
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1262
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1263
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1264
- readonly journey_id: Schema.optional<Schema.String>;
1265
- readonly correlation_id: Schema.optional<Schema.String>;
1266
- readonly sdk_version: Schema.optional<Schema.String>;
1267
- }>;
1268
- }>;
1269
- declare const WithdrawalSettledTelemetryEventSchema: Schema.Struct<{
1270
- readonly name: Schema.Literal<"withdrawal_settled">;
1271
- readonly props: Schema.Struct<{
1272
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1273
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1274
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1275
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1276
- readonly status: Schema.optional<Schema.String>;
1277
- readonly reason: Schema.optional<Schema.String>;
1278
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1279
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1280
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1281
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1282
- readonly journey_id: Schema.optional<Schema.String>;
1283
- readonly correlation_id: Schema.optional<Schema.String>;
1284
- readonly sdk_version: Schema.optional<Schema.String>;
1285
- }>;
1286
- }>;
1287
- declare const WithdrawalFailedTelemetryEventSchema: Schema.Struct<{
1288
- readonly name: Schema.Literal<"withdrawal_failed">;
1289
- readonly props: Schema.Struct<{
1290
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1291
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1292
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1293
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1294
- readonly status: Schema.optional<Schema.String>;
1295
- readonly reason: Schema.optional<Schema.String>;
1296
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1297
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1298
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1299
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1300
859
  readonly journey_id: Schema.optional<Schema.String>;
1301
860
  readonly correlation_id: Schema.optional<Schema.String>;
1302
861
  readonly sdk_version: Schema.optional<Schema.String>;
862
+ readonly chain_id: Schema.Number;
863
+ readonly token_address: Schema.String;
864
+ readonly incident_kind: Schema.String;
865
+ readonly anchor_block_number: Schema.Number;
1303
866
  }>;
1304
867
  }>;
1305
868
  declare const TELEMETRY_EVENT_SCHEMAS: {
1306
- readonly auth_otp_requested: Schema.Struct<{
1307
- readonly name: Schema.Literal<"auth_otp_requested">;
1308
- readonly props: Schema.Struct<{
1309
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
1310
- readonly email_domain: Schema.optional<Schema.String>;
1311
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1312
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1313
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1314
- readonly journey_id: Schema.optional<Schema.String>;
1315
- readonly correlation_id: Schema.optional<Schema.String>;
1316
- readonly sdk_version: Schema.optional<Schema.String>;
1317
- }>;
1318
- }>;
1319
- readonly auth_otp_delivered: Schema.Struct<{
1320
- readonly name: Schema.Literal<"auth_otp_delivered">;
1321
- readonly props: Schema.Struct<{
1322
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1323
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
1324
- readonly email_domain: Schema.optional<Schema.String>;
1325
- readonly resendMessageId: Schema.optional<Schema.String>;
1326
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1327
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1328
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1329
- readonly journey_id: Schema.optional<Schema.String>;
1330
- readonly correlation_id: Schema.optional<Schema.String>;
1331
- readonly sdk_version: Schema.optional<Schema.String>;
1332
- }>;
1333
- }>;
1334
- readonly auth_otp_expired: Schema.Struct<{
1335
- readonly name: Schema.Literal<"auth_otp_expired">;
1336
- readonly props: Schema.Struct<{
1337
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
1338
- readonly email_domain: Schema.optional<Schema.String>;
1339
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1340
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1341
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1342
- readonly journey_id: Schema.optional<Schema.String>;
1343
- readonly correlation_id: Schema.optional<Schema.String>;
1344
- readonly sdk_version: Schema.optional<Schema.String>;
1345
- }>;
1346
- }>;
1347
- readonly auth_verified: Schema.Struct<{
1348
- readonly name: Schema.Literal<"auth_verified">;
1349
- readonly props: Schema.Struct<{
1350
- readonly auth_type: Schema.optional<Schema.String>;
1351
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1352
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1353
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1354
- readonly journey_id: Schema.optional<Schema.String>;
1355
- readonly correlation_id: Schema.optional<Schema.String>;
1356
- readonly sdk_version: Schema.optional<Schema.String>;
1357
- }>;
1358
- }>;
1359
- readonly auth_failed: Schema.Struct<{
1360
- readonly name: Schema.Literal<"auth_failed">;
1361
- readonly props: Schema.Struct<{
1362
- readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
1363
- readonly auth_type: Schema.optional<Schema.String>;
1364
- readonly reason: Schema.optional<Schema.String>;
1365
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1366
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1367
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1368
- readonly journey_id: Schema.optional<Schema.String>;
1369
- readonly correlation_id: Schema.optional<Schema.String>;
1370
- readonly sdk_version: Schema.optional<Schema.String>;
1371
- }>;
1372
- }>;
1373
- readonly auth_signed_out: Schema.Struct<{
1374
- readonly name: Schema.Literal<"auth_signed_out">;
1375
- readonly props: Schema.Struct<{
1376
- capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1377
- producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1378
- capxul_e2e_run_id: Schema.optional<Schema.String>;
1379
- journey_id: Schema.optional<Schema.String>;
1380
- correlation_id: Schema.optional<Schema.String>;
1381
- sdk_version: Schema.optional<Schema.String>;
1382
- }>;
1383
- }>;
1384
- readonly onboarding_intent_selected: Schema.Struct<{
1385
- readonly name: Schema.Literal<"onboarding_intent_selected">;
1386
- readonly props: Schema.Struct<{
1387
- readonly journey_id: Schema.String;
1388
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
1389
- readonly entry_point: Schema.String;
1390
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1391
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1392
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1393
- readonly correlation_id: Schema.optional<Schema.String>;
1394
- readonly sdk_version: Schema.optional<Schema.String>;
1395
- }>;
1396
- }>;
1397
- readonly onboarding_profile_submitted: Schema.Struct<{
1398
- readonly name: Schema.Literal<"onboarding_profile_submitted">;
1399
- readonly props: Schema.Struct<{
1400
- readonly journey_id: Schema.String;
1401
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
1402
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1403
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1404
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1405
- readonly correlation_id: Schema.optional<Schema.String>;
1406
- readonly sdk_version: Schema.optional<Schema.String>;
1407
- }>;
1408
- }>;
1409
- readonly onboarding_organization_submitted: Schema.Struct<{
1410
- readonly name: Schema.Literal<"onboarding_organization_submitted">;
1411
- readonly props: Schema.Struct<{
1412
- readonly journey_id: Schema.String;
1413
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1414
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1415
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1416
- readonly correlation_id: Schema.optional<Schema.String>;
1417
- readonly sdk_version: Schema.optional<Schema.String>;
1418
- }>;
1419
- }>;
1420
- readonly onboarding_dashboard_reached: Schema.Struct<{
1421
- readonly name: Schema.Literal<"onboarding_dashboard_reached">;
1422
- readonly props: Schema.Struct<{
1423
- readonly journey_id: Schema.String;
1424
- readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
1425
- readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1426
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1427
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1428
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1429
- readonly correlation_id: Schema.optional<Schema.String>;
1430
- readonly sdk_version: Schema.optional<Schema.String>;
1431
- }>;
1432
- }>;
1433
- readonly provisioning_safe_created: Schema.Struct<{
1434
- readonly name: Schema.Literal<"provisioning_safe_created">;
1435
- readonly props: Schema.Struct<{
1436
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1437
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1438
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1439
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1440
- readonly journey_id: Schema.optional<Schema.String>;
1441
- readonly correlation_id: Schema.optional<Schema.String>;
1442
- readonly sdk_version: Schema.optional<Schema.String>;
1443
- }>;
1444
- }>;
1445
- readonly provisioning_safe_confirmed: Schema.Struct<{
1446
- readonly name: Schema.Literal<"provisioning_safe_confirmed">;
869
+ readonly auth_otp_requested: Schema.Struct<{
870
+ readonly name: Schema.Literal<"auth_otp_requested">;
1447
871
  readonly props: Schema.Struct<{
1448
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1449
- readonly deployedAt: Schema.optional<Schema.Codec<EpochMs, number, never, never>>;
1450
- readonly deployedAtBlock: Schema.optional<Schema.Codec<BlockNumber, number, never, never>>;
1451
- readonly deployTxHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1452
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1453
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1454
- readonly userOpHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1455
872
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1456
873
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1457
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1458
874
  readonly journey_id: Schema.optional<Schema.String>;
1459
875
  readonly correlation_id: Schema.optional<Schema.String>;
1460
876
  readonly sdk_version: Schema.optional<Schema.String>;
877
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
878
+ readonly email_domain: Schema.optional<Schema.String>;
1461
879
  }>;
1462
880
  }>;
1463
- readonly bootstrap_resolved: Schema.Struct<{
1464
- readonly name: Schema.Literal<"bootstrap_resolved">;
881
+ readonly auth_otp_delivered: Schema.Struct<{
882
+ readonly name: Schema.Literal<"auth_otp_delivered">;
1465
883
  readonly props: Schema.Struct<{
1466
- readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
1467
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1468
- readonly env: Schema.optional<Schema.String>;
1469
- readonly keyId: Schema.optional<Schema.Codec<PublishableKeyId, string, never, never>>;
1470
- readonly origin: Schema.optional<Schema.String>;
1471
884
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1472
885
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1473
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1474
886
  readonly journey_id: Schema.optional<Schema.String>;
1475
887
  readonly correlation_id: Schema.optional<Schema.String>;
1476
888
  readonly sdk_version: Schema.optional<Schema.String>;
889
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
890
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
891
+ readonly email_domain: Schema.optional<Schema.String>;
892
+ readonly resendMessageId: Schema.optional<Schema.String>;
1477
893
  }>;
1478
894
  }>;
1479
- readonly bootstrap_failed: Schema.Struct<{
1480
- readonly name: Schema.Literal<"bootstrap_failed">;
895
+ readonly auth_otp_expired: Schema.Struct<{
896
+ readonly name: Schema.Literal<"auth_otp_expired">;
1481
897
  readonly props: Schema.Struct<{
1482
- readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
1483
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1484
- readonly origin: Schema.optional<Schema.String>;
1485
- readonly reason: Schema.optional<Schema.String>;
1486
898
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1487
899
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1488
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1489
900
  readonly journey_id: Schema.optional<Schema.String>;
1490
901
  readonly correlation_id: Schema.optional<Schema.String>;
1491
902
  readonly sdk_version: Schema.optional<Schema.String>;
903
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
904
+ readonly email_domain: Schema.optional<Schema.String>;
1492
905
  }>;
1493
906
  }>;
1494
- readonly member_activation_started: Schema.Struct<{
1495
- readonly name: Schema.Literal<"member_activation_started">;
907
+ readonly auth_verified: Schema.Struct<{
908
+ readonly name: Schema.Literal<"auth_verified">;
1496
909
  readonly props: Schema.Struct<{
1497
- readonly $insert_id: Schema.String;
1498
910
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1499
911
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1500
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1501
912
  readonly journey_id: Schema.optional<Schema.String>;
1502
913
  readonly correlation_id: Schema.optional<Schema.String>;
1503
914
  readonly sdk_version: Schema.optional<Schema.String>;
915
+ readonly auth_type: Schema.optional<Schema.String>;
1504
916
  }>;
1505
917
  }>;
1506
- readonly member_activation_ready: Schema.Struct<{
1507
- readonly name: Schema.Literal<"member_activation_ready">;
918
+ readonly auth_failed: Schema.Struct<{
919
+ readonly name: Schema.Literal<"auth_failed">;
1508
920
  readonly props: Schema.Struct<{
1509
- readonly $insert_id: Schema.String;
1510
- readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
1511
921
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1512
922
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1513
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1514
923
  readonly journey_id: Schema.optional<Schema.String>;
1515
924
  readonly correlation_id: Schema.optional<Schema.String>;
1516
925
  readonly sdk_version: Schema.optional<Schema.String>;
926
+ readonly email: Schema.optional<Schema.brand<Schema.String, "PII">>;
927
+ readonly auth_type: Schema.optional<Schema.String>;
928
+ readonly reason: Schema.optional<Schema.String>;
1517
929
  }>;
1518
930
  }>;
1519
- readonly member_activation_failed: Schema.Struct<{
1520
- readonly name: Schema.Literal<"member_activation_failed">;
931
+ readonly auth_signed_out: Schema.Struct<{
932
+ readonly name: Schema.Literal<"auth_signed_out">;
1521
933
  readonly props: Schema.Struct<{
1522
- readonly $insert_id: Schema.String;
1523
- readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
1524
- readonly error_code: Schema.String;
1525
- readonly retryable: Schema.Boolean;
1526
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1527
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1528
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1529
- readonly journey_id: Schema.optional<Schema.String>;
1530
- readonly correlation_id: Schema.optional<Schema.String>;
1531
- readonly sdk_version: Schema.optional<Schema.String>;
934
+ capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
935
+ producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
936
+ journey_id: Schema.optional<Schema.String>;
937
+ correlation_id: Schema.optional<Schema.String>;
938
+ sdk_version: Schema.optional<Schema.String>;
1532
939
  }>;
1533
940
  }>;
1534
- readonly organization_creation_started: Schema.Struct<{
1535
- readonly name: Schema.Literal<"organization_creation_started">;
941
+ readonly onboarding_intent_selected: Schema.Struct<{
942
+ readonly name: Schema.Literal<"onboarding_intent_selected">;
1536
943
  readonly props: Schema.Struct<{
1537
- readonly $insert_id: Schema.String;
1538
- readonly organization_id: Schema.Codec<string, string, never, never>;
1539
- readonly attempt_number: Schema.refine<number, Schema.Number>;
1540
944
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1541
945
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1542
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1543
- readonly journey_id: Schema.optional<Schema.String>;
1544
946
  readonly correlation_id: Schema.optional<Schema.String>;
1545
947
  readonly sdk_version: Schema.optional<Schema.String>;
948
+ readonly journey_id: Schema.String;
949
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
950
+ readonly entry_point: Schema.String;
1546
951
  }>;
1547
952
  }>;
1548
- readonly organization_creation_ready: Schema.Struct<{
1549
- readonly name: Schema.Literal<"organization_creation_ready">;
953
+ readonly onboarding_profile_submitted: Schema.Struct<{
954
+ readonly name: Schema.Literal<"onboarding_profile_submitted">;
1550
955
  readonly props: Schema.Struct<{
1551
- readonly $insert_id: Schema.String;
1552
- readonly organization_id: Schema.Codec<string, string, never, never>;
1553
- readonly attempt_number: Schema.refine<number, Schema.Number>;
1554
- readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
1555
956
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1556
957
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1557
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1558
- readonly journey_id: Schema.optional<Schema.String>;
1559
958
  readonly correlation_id: Schema.optional<Schema.String>;
1560
959
  readonly sdk_version: Schema.optional<Schema.String>;
960
+ readonly journey_id: Schema.String;
961
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
1561
962
  }>;
1562
963
  }>;
1563
- readonly organization_creation_failed: Schema.Struct<{
1564
- readonly name: Schema.Literal<"organization_creation_failed">;
964
+ readonly onboarding_organization_submitted: Schema.Struct<{
965
+ readonly name: Schema.Literal<"onboarding_organization_submitted">;
1565
966
  readonly props: Schema.Struct<{
1566
- readonly $insert_id: Schema.String;
1567
- readonly organization_id: Schema.Codec<string, string, never, never>;
1568
- readonly attempt_number: Schema.refine<number, Schema.Number>;
1569
- readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
1570
- readonly error_code: Schema.String;
1571
- readonly retryable: Schema.Boolean;
1572
967
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1573
968
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1574
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1575
- readonly journey_id: Schema.optional<Schema.String>;
1576
969
  readonly correlation_id: Schema.optional<Schema.String>;
1577
970
  readonly sdk_version: Schema.optional<Schema.String>;
971
+ readonly journey_id: Schema.String;
1578
972
  }>;
1579
973
  }>;
1580
- readonly account_balance_read: Schema.Struct<{
1581
- readonly name: Schema.Literal<"account_balance_read">;
974
+ readonly onboarding_dashboard_reached: Schema.Struct<{
975
+ readonly name: Schema.Literal<"onboarding_dashboard_reached">;
1582
976
  readonly props: Schema.Struct<{
1583
- readonly account_id: Schema.optional<Schema.Codec<AccountId, string, never, never>>;
1584
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1585
- readonly balance_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1586
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1587
977
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1588
978
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1589
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1590
- readonly journey_id: Schema.optional<Schema.String>;
1591
979
  readonly correlation_id: Schema.optional<Schema.String>;
1592
980
  readonly sdk_version: Schema.optional<Schema.String>;
981
+ readonly journey_id: Schema.String;
982
+ readonly intent: Schema.Literals<readonly ["personal", "organization"]>;
983
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1593
984
  }>;
1594
985
  }>;
1595
- readonly account_balance_failed: Schema.Struct<{
1596
- readonly name: Schema.Literal<"account_balance_failed">;
986
+ readonly provisioning_safe_created: Schema.Struct<{
987
+ readonly name: Schema.Literal<"provisioning_safe_created">;
1597
988
  readonly props: Schema.Struct<{
1598
- readonly reason: Schema.optional<Schema.String>;
1599
989
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1600
990
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1601
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1602
991
  readonly journey_id: Schema.optional<Schema.String>;
1603
992
  readonly correlation_id: Schema.optional<Schema.String>;
1604
993
  readonly sdk_version: Schema.optional<Schema.String>;
994
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1605
995
  }>;
1606
996
  }>;
1607
- readonly faucet_requested: Schema.Struct<{
1608
- readonly name: Schema.Literal<"faucet_requested">;
997
+ readonly provisioning_safe_confirmed: Schema.Struct<{
998
+ readonly name: Schema.Literal<"provisioning_safe_confirmed">;
1609
999
  readonly props: Schema.Struct<{
1610
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1611
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1612
1000
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1613
1001
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1614
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1615
1002
  readonly journey_id: Schema.optional<Schema.String>;
1616
1003
  readonly correlation_id: Schema.optional<Schema.String>;
1617
1004
  readonly sdk_version: Schema.optional<Schema.String>;
1618
- }>;
1619
- }>;
1620
- readonly faucet_confirmed: Schema.Struct<{
1621
- readonly name: Schema.Literal<"faucet_confirmed">;
1622
- readonly props: Schema.Struct<{
1623
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1624
1005
  readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1625
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1006
+ readonly deployedAt: Schema.optional<Schema.Codec<EpochMs, number, never, never>>;
1007
+ readonly deployedAtBlock: Schema.optional<Schema.Codec<BlockNumber, number, never, never>>;
1008
+ readonly deployTxHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1626
1009
  readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1627
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1628
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1629
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1630
- readonly journey_id: Schema.optional<Schema.String>;
1631
- readonly correlation_id: Schema.optional<Schema.String>;
1632
- readonly sdk_version: Schema.optional<Schema.String>;
1010
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1011
+ readonly userOpHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1633
1012
  }>;
1634
1013
  }>;
1635
- readonly faucet_failed: Schema.Struct<{
1636
- readonly name: Schema.Literal<"faucet_failed">;
1014
+ readonly bootstrap_resolved: Schema.Struct<{
1015
+ readonly name: Schema.Literal<"bootstrap_resolved">;
1637
1016
  readonly props: Schema.Struct<{
1638
- readonly reason: Schema.optional<Schema.String>;
1639
1017
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1640
1018
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1641
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1642
1019
  readonly journey_id: Schema.optional<Schema.String>;
1643
1020
  readonly correlation_id: Schema.optional<Schema.String>;
1644
1021
  readonly sdk_version: Schema.optional<Schema.String>;
1645
- }>;
1646
- }>;
1647
- readonly subaccount_created: Schema.Struct<{
1648
- readonly name: Schema.Literal<"subaccount_created">;
1649
- readonly props: Schema.Struct<{
1650
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
1022
+ readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
1651
1023
  readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1652
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1653
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1654
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1655
- readonly journey_id: Schema.optional<Schema.String>;
1656
- readonly correlation_id: Schema.optional<Schema.String>;
1657
- readonly sdk_version: Schema.optional<Schema.String>;
1658
- }>;
1659
- }>;
1660
- readonly subaccount_renamed: Schema.Struct<{
1661
- readonly name: Schema.Literal<"subaccount_renamed">;
1662
- readonly props: Schema.Struct<{
1663
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
1664
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1665
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1666
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1667
- readonly journey_id: Schema.optional<Schema.String>;
1668
- readonly correlation_id: Schema.optional<Schema.String>;
1669
- readonly sdk_version: Schema.optional<Schema.String>;
1670
- }>;
1671
- }>;
1672
- readonly subaccount_deleted: Schema.Struct<{
1673
- readonly name: Schema.Literal<"subaccount_deleted">;
1674
- readonly props: Schema.Struct<{
1675
- readonly sub_account_id: Schema.optional<Schema.Codec<SubAccountId, string, never, never>>;
1676
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1677
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1678
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1679
- readonly journey_id: Schema.optional<Schema.String>;
1680
- readonly correlation_id: Schema.optional<Schema.String>;
1681
- readonly sdk_version: Schema.optional<Schema.String>;
1682
- }>;
1683
- }>;
1684
- readonly subaccount_op_failed: Schema.Struct<{
1685
- readonly name: Schema.Literal<"subaccount_op_failed">;
1686
- readonly props: Schema.Struct<{
1687
- readonly op: Schema.optional<Schema.Literals<readonly ["create", "rename", "delete"]>>;
1688
- readonly reason: Schema.optional<Schema.String>;
1689
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1690
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1691
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1692
- readonly journey_id: Schema.optional<Schema.String>;
1693
- readonly correlation_id: Schema.optional<Schema.String>;
1694
- readonly sdk_version: Schema.optional<Schema.String>;
1695
- }>;
1696
- }>;
1697
- readonly transfer_requested: Schema.Struct<{
1698
- readonly name: Schema.Literal<"transfer_requested">;
1699
- readonly props: Schema.Struct<{
1700
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1701
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
1702
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1703
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1704
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1705
- readonly journey_id: Schema.optional<Schema.String>;
1706
- readonly correlation_id: Schema.optional<Schema.String>;
1707
- readonly sdk_version: Schema.optional<Schema.String>;
1024
+ readonly env: Schema.optional<Schema.String>;
1025
+ readonly keyId: Schema.optional<Schema.Codec<PublishableKeyId, string, never, never>>;
1026
+ readonly origin: Schema.optional<Schema.String>;
1708
1027
  }>;
1709
1028
  }>;
1710
- readonly transfer_backend_received: Schema.Struct<{
1711
- readonly name: Schema.Literal<"transfer_backend_received">;
1029
+ readonly bootstrap_failed: Schema.Struct<{
1030
+ readonly name: Schema.Literal<"bootstrap_failed">;
1712
1031
  readonly props: Schema.Struct<{
1713
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
1714
1032
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1715
1033
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1716
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1717
1034
  readonly journey_id: Schema.optional<Schema.String>;
1718
1035
  readonly correlation_id: Schema.optional<Schema.String>;
1719
1036
  readonly sdk_version: Schema.optional<Schema.String>;
1720
- }>;
1721
- }>;
1722
- readonly transfer_confirmed: Schema.Struct<{
1723
- readonly name: Schema.Literal<"transfer_confirmed">;
1724
- readonly props: Schema.Struct<{
1725
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1726
- readonly direction: Schema.optional<Schema.Literals<readonly ["add", "out", "between"]>>;
1727
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1728
- readonly txless: Schema.optional<Schema.Literal<true>>;
1037
+ readonly applicationId: Schema.optional<Schema.Codec<AppId, string, never, never>>;
1729
1038
  readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1730
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1731
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1732
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1733
- readonly journey_id: Schema.optional<Schema.String>;
1734
- readonly correlation_id: Schema.optional<Schema.String>;
1735
- readonly sdk_version: Schema.optional<Schema.String>;
1736
- }>;
1737
- }>;
1738
- readonly transfer_failed: Schema.Struct<{
1739
- readonly name: Schema.Literal<"transfer_failed">;
1740
- readonly props: Schema.Struct<{
1039
+ readonly origin: Schema.optional<Schema.String>;
1741
1040
  readonly reason: Schema.optional<Schema.String>;
1742
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1743
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1744
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1745
- readonly journey_id: Schema.optional<Schema.String>;
1746
- readonly correlation_id: Schema.optional<Schema.String>;
1747
- readonly sdk_version: Schema.optional<Schema.String>;
1748
- }>;
1749
- }>;
1750
- readonly org_create_started: Schema.Struct<{
1751
- readonly name: Schema.Literal<"org_create_started">;
1752
- readonly props: Schema.Struct<{
1753
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1754
- readonly email_domain: Schema.optional<Schema.String>;
1755
- readonly template: Schema.optional<Schema.String>;
1756
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1757
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1758
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1759
- readonly journey_id: Schema.optional<Schema.String>;
1760
- readonly correlation_id: Schema.optional<Schema.String>;
1761
- readonly sdk_version: Schema.optional<Schema.String>;
1762
- }>;
1763
- }>;
1764
- readonly org_safe_created: Schema.Struct<{
1765
- readonly name: Schema.Literal<"org_safe_created">;
1766
- readonly props: Schema.Struct<{
1767
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1768
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1769
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1770
- readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1771
- readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1772
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1773
- readonly journey_id: Schema.optional<Schema.String>;
1774
- readonly correlation_id: Schema.optional<Schema.String>;
1775
- readonly sdk_version: Schema.optional<Schema.String>;
1776
1041
  }>;
1777
1042
  }>;
1778
- readonly org_safe_confirmed: Schema.Struct<{
1779
- readonly name: Schema.Literal<"org_safe_confirmed">;
1043
+ readonly member_activation_started: Schema.Struct<{
1044
+ readonly name: Schema.Literal<"member_activation_started">;
1780
1045
  readonly props: Schema.Struct<{
1781
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1782
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1783
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1784
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1785
1046
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1786
1047
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1787
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1788
1048
  readonly journey_id: Schema.optional<Schema.String>;
1789
1049
  readonly correlation_id: Schema.optional<Schema.String>;
1790
1050
  readonly sdk_version: Schema.optional<Schema.String>;
1051
+ readonly $insert_id: Schema.String;
1791
1052
  }>;
1792
1053
  }>;
1793
- readonly org_roles_seeded: Schema.Struct<{
1794
- readonly name: Schema.Literal<"org_roles_seeded">;
1795
- readonly props: Schema.Struct<{
1796
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1797
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1798
- readonly role: Schema.optional<Schema.String>;
1799
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1054
+ readonly member_activation_ready: Schema.Struct<{
1055
+ readonly name: Schema.Literal<"member_activation_ready">;
1056
+ readonly props: Schema.Struct<{
1800
1057
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1801
1058
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1802
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1803
1059
  readonly journey_id: Schema.optional<Schema.String>;
1804
1060
  readonly correlation_id: Schema.optional<Schema.String>;
1805
1061
  readonly sdk_version: Schema.optional<Schema.String>;
1062
+ readonly $insert_id: Schema.String;
1063
+ readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
1806
1064
  }>;
1807
1065
  }>;
1808
- readonly org_created: Schema.Struct<{
1809
- readonly name: Schema.Literal<"org_created">;
1066
+ readonly member_activation_failed: Schema.Struct<{
1067
+ readonly name: Schema.Literal<"member_activation_failed">;
1810
1068
  readonly props: Schema.Struct<{
1811
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1812
- readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1813
- readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1814
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1815
1069
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1816
1070
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1817
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1818
1071
  readonly journey_id: Schema.optional<Schema.String>;
1819
1072
  readonly correlation_id: Schema.optional<Schema.String>;
1820
1073
  readonly sdk_version: Schema.optional<Schema.String>;
1074
+ readonly $insert_id: Schema.String;
1075
+ readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
1076
+ readonly error_code: Schema.String;
1077
+ readonly retryable: Schema.Boolean;
1821
1078
  }>;
1822
1079
  }>;
1823
- readonly org_create_failed: Schema.Struct<{
1824
- readonly name: Schema.Literal<"org_create_failed">;
1080
+ readonly organization_creation_started: Schema.Struct<{
1081
+ readonly name: Schema.Literal<"organization_creation_started">;
1825
1082
  readonly props: Schema.Struct<{
1826
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1827
- readonly reason: Schema.optional<Schema.String>;
1828
1083
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1829
1084
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1830
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1831
1085
  readonly journey_id: Schema.optional<Schema.String>;
1832
1086
  readonly correlation_id: Schema.optional<Schema.String>;
1833
1087
  readonly sdk_version: Schema.optional<Schema.String>;
1088
+ readonly $insert_id: Schema.String;
1089
+ readonly organization_id: Schema.Codec<string, string, never, never>;
1090
+ readonly attempt_number: Schema.refine<number, Schema.Number>;
1834
1091
  }>;
1835
1092
  }>;
1836
- readonly org_invite_sent: Schema.Struct<{
1837
- readonly name: Schema.Literal<"org_invite_sent">;
1093
+ readonly organization_creation_ready: Schema.Struct<{
1094
+ readonly name: Schema.Literal<"organization_creation_ready">;
1838
1095
  readonly props: Schema.Struct<{
1839
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1840
- readonly email_domain: Schema.optional<Schema.String>;
1841
- readonly role: Schema.optional<Schema.String>;
1842
- readonly status: Schema.optional<Schema.String>;
1843
1096
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1844
1097
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1845
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1846
1098
  readonly journey_id: Schema.optional<Schema.String>;
1847
1099
  readonly correlation_id: Schema.optional<Schema.String>;
1848
1100
  readonly sdk_version: Schema.optional<Schema.String>;
1101
+ readonly $insert_id: Schema.String;
1102
+ readonly organization_id: Schema.Codec<string, string, never, never>;
1103
+ readonly attempt_number: Schema.refine<number, Schema.Number>;
1104
+ readonly duration_ms: Schema.Codec<DurationMs, number, never, never>;
1849
1105
  }>;
1850
1106
  }>;
1851
- readonly org_invite_accepted: Schema.Struct<{
1852
- readonly name: Schema.Literal<"org_invite_accepted">;
1107
+ readonly organization_creation_failed: Schema.Struct<{
1108
+ readonly name: Schema.Literal<"organization_creation_failed">;
1853
1109
  readonly props: Schema.Struct<{
1854
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1855
- readonly role: Schema.optional<Schema.String>;
1856
- readonly status: Schema.optional<Schema.String>;
1857
1110
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1858
1111
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1859
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1860
1112
  readonly journey_id: Schema.optional<Schema.String>;
1861
1113
  readonly correlation_id: Schema.optional<Schema.String>;
1862
1114
  readonly sdk_version: Schema.optional<Schema.String>;
1115
+ readonly $insert_id: Schema.String;
1116
+ readonly organization_id: Schema.Codec<string, string, never, never>;
1117
+ readonly attempt_number: Schema.refine<number, Schema.Number>;
1118
+ readonly stage: Schema.Literals<readonly ["profile", "accountProvisioning", "accountClaim", "preparingFounderAccount", "awaitingFounderAuthorization", "submittingBootstrap", "confirmingBootstrap"]>;
1119
+ readonly error_code: Schema.String;
1120
+ readonly retryable: Schema.Boolean;
1863
1121
  }>;
1864
1122
  }>;
1865
- readonly org_role_granted: Schema.Struct<{
1866
- readonly name: Schema.Literal<"org_role_granted">;
1123
+ readonly account_balance_read: Schema.Struct<{
1124
+ readonly name: Schema.Literal<"account_balance_read">;
1867
1125
  readonly props: Schema.Struct<{
1868
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1869
- readonly role: Schema.optional<Schema.String>;
1870
- readonly status: Schema.optional<Schema.String>;
1871
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1872
1126
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1873
1127
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1874
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1875
1128
  readonly journey_id: Schema.optional<Schema.String>;
1876
1129
  readonly correlation_id: Schema.optional<Schema.String>;
1877
1130
  readonly sdk_version: Schema.optional<Schema.String>;
1131
+ readonly account_id: Schema.optional<Schema.Codec<AccountId, string, never, never>>;
1132
+ readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1133
+ readonly balance_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
1134
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1878
1135
  }>;
1879
1136
  }>;
1880
- readonly org_member_active: Schema.Struct<{
1881
- readonly name: Schema.Literal<"org_member_active">;
1137
+ readonly account_balance_failed: Schema.Struct<{
1138
+ readonly name: Schema.Literal<"account_balance_failed">;
1882
1139
  readonly props: Schema.Struct<{
1883
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1884
- readonly role: Schema.optional<Schema.String>;
1885
- readonly status: Schema.optional<Schema.String>;
1886
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1887
1140
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1888
1141
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1889
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1890
1142
  readonly journey_id: Schema.optional<Schema.String>;
1891
1143
  readonly correlation_id: Schema.optional<Schema.String>;
1892
1144
  readonly sdk_version: Schema.optional<Schema.String>;
1145
+ readonly reason: Schema.optional<Schema.String>;
1893
1146
  }>;
1894
1147
  }>;
1895
- readonly org_member_removed: Schema.Struct<{
1896
- readonly name: Schema.Literal<"org_member_removed">;
1148
+ readonly faucet_requested: Schema.Struct<{
1149
+ readonly name: Schema.Literal<"faucet_requested">;
1897
1150
  readonly props: Schema.Struct<{
1898
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1899
- readonly role: Schema.optional<Schema.String>;
1900
- readonly status: Schema.optional<Schema.String>;
1901
- readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1902
1151
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1903
1152
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1904
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1905
1153
  readonly journey_id: Schema.optional<Schema.String>;
1906
1154
  readonly correlation_id: Schema.optional<Schema.String>;
1907
1155
  readonly sdk_version: Schema.optional<Schema.String>;
1156
+ readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1157
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1908
1158
  }>;
1909
1159
  }>;
1910
- readonly org_invite_expired: Schema.Struct<{
1911
- readonly name: Schema.Literal<"org_invite_expired">;
1160
+ readonly faucet_confirmed: Schema.Struct<{
1161
+ readonly name: Schema.Literal<"faucet_confirmed">;
1912
1162
  readonly props: Schema.Struct<{
1913
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1914
- readonly email_domain: Schema.optional<Schema.String>;
1915
- readonly reason: Schema.optional<Schema.String>;
1916
- readonly role: Schema.optional<Schema.String>;
1917
- readonly status: Schema.optional<Schema.String>;
1918
1163
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1919
1164
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1920
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1921
1165
  readonly journey_id: Schema.optional<Schema.String>;
1922
1166
  readonly correlation_id: Schema.optional<Schema.String>;
1923
1167
  readonly sdk_version: Schema.optional<Schema.String>;
1168
+ readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1169
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1170
+ readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
1171
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1924
1172
  }>;
1925
1173
  }>;
1926
- readonly org_role_grant_failed: Schema.Struct<{
1927
- readonly name: Schema.Literal<"org_role_grant_failed">;
1174
+ readonly faucet_failed: Schema.Struct<{
1175
+ readonly name: Schema.Literal<"faucet_failed">;
1928
1176
  readonly props: Schema.Struct<{
1929
- readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1930
- readonly reason: Schema.optional<Schema.String>;
1931
- readonly role: Schema.optional<Schema.String>;
1932
1177
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1933
1178
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1934
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1935
1179
  readonly journey_id: Schema.optional<Schema.String>;
1936
1180
  readonly correlation_id: Schema.optional<Schema.String>;
1937
1181
  readonly sdk_version: Schema.optional<Schema.String>;
1182
+ readonly reason: Schema.optional<Schema.String>;
1938
1183
  }>;
1939
1184
  }>;
1940
- readonly payment_requested: Schema.Struct<{
1941
- readonly name: Schema.Literal<"payment_requested">;
1185
+ readonly org_create_started: Schema.Struct<{
1186
+ readonly name: Schema.Literal<"org_create_started">;
1942
1187
  readonly props: Schema.Struct<{
1943
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1944
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1945
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1946
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1947
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1948
- readonly status: Schema.optional<Schema.String>;
1949
- readonly reason: Schema.optional<Schema.String>;
1950
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1951
1188
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1952
1189
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1953
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1954
1190
  readonly journey_id: Schema.optional<Schema.String>;
1955
1191
  readonly correlation_id: Schema.optional<Schema.String>;
1956
1192
  readonly sdk_version: Schema.optional<Schema.String>;
1193
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1194
+ readonly email_domain: Schema.optional<Schema.String>;
1195
+ readonly template: Schema.optional<Schema.String>;
1957
1196
  }>;
1958
1197
  }>;
1959
- readonly payment_resolved: Schema.Struct<{
1960
- readonly name: Schema.Literal<"payment_resolved">;
1198
+ readonly org_safe_created: Schema.Struct<{
1199
+ readonly name: Schema.Literal<"org_safe_created">;
1961
1200
  readonly props: Schema.Struct<{
1962
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1963
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1964
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1965
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1966
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1967
- readonly status: Schema.optional<Schema.String>;
1968
- readonly reason: Schema.optional<Schema.String>;
1969
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1970
1201
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1971
1202
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1972
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1973
1203
  readonly journey_id: Schema.optional<Schema.String>;
1974
1204
  readonly correlation_id: Schema.optional<Schema.String>;
1975
1205
  readonly sdk_version: Schema.optional<Schema.String>;
1206
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1207
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1208
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1976
1209
  }>;
1977
1210
  }>;
1978
- readonly payment_document_attached: Schema.Struct<{
1979
- readonly name: Schema.Literal<"payment_document_attached">;
1211
+ readonly org_safe_confirmed: Schema.Struct<{
1212
+ readonly name: Schema.Literal<"org_safe_confirmed">;
1980
1213
  readonly props: Schema.Struct<{
1981
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
1982
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
1983
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
1984
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
1985
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
1986
- readonly status: Schema.optional<Schema.String>;
1987
- readonly reason: Schema.optional<Schema.String>;
1988
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1989
1214
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
1990
1215
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
1991
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
1992
1216
  readonly journey_id: Schema.optional<Schema.String>;
1993
1217
  readonly correlation_id: Schema.optional<Schema.String>;
1994
1218
  readonly sdk_version: Schema.optional<Schema.String>;
1219
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1220
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1221
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1222
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
1995
1223
  }>;
1996
1224
  }>;
1997
- readonly payment_submitted: Schema.Struct<{
1998
- readonly name: Schema.Literal<"payment_submitted">;
1225
+ readonly org_roles_seeded: Schema.Struct<{
1226
+ readonly name: Schema.Literal<"org_roles_seeded">;
1999
1227
  readonly props: Schema.Struct<{
2000
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2001
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2002
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2003
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2004
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2005
- readonly status: Schema.optional<Schema.String>;
2006
- readonly reason: Schema.optional<Schema.String>;
2007
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2008
1228
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2009
1229
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2010
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2011
1230
  readonly journey_id: Schema.optional<Schema.String>;
2012
1231
  readonly correlation_id: Schema.optional<Schema.String>;
2013
1232
  readonly sdk_version: Schema.optional<Schema.String>;
1233
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1234
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1235
+ readonly role: Schema.optional<Schema.String>;
1236
+ readonly txHash: Schema.optional<Schema.Codec<TxHash, string, never, never>>;
2014
1237
  }>;
2015
1238
  }>;
2016
- readonly payment_settled: Schema.Struct<{
2017
- readonly name: Schema.Literal<"payment_settled">;
1239
+ readonly org_created: Schema.Struct<{
1240
+ readonly name: Schema.Literal<"org_created">;
2018
1241
  readonly props: Schema.Struct<{
2019
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2020
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2021
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2022
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2023
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2024
- readonly status: Schema.optional<Schema.String>;
2025
- readonly reason: Schema.optional<Schema.String>;
2026
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2027
1242
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2028
1243
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2029
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2030
1244
  readonly journey_id: Schema.optional<Schema.String>;
2031
1245
  readonly correlation_id: Schema.optional<Schema.String>;
2032
1246
  readonly sdk_version: Schema.optional<Schema.String>;
1247
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1248
+ readonly chainId: Schema.optional<Schema.Codec<ChainId, number, never, never>>;
1249
+ readonly safe_address: Schema.optional<Schema.Codec<Address, string, never, never>>;
1250
+ readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2033
1251
  }>;
2034
1252
  }>;
2035
- readonly payment_claimed: Schema.Struct<{
2036
- readonly name: Schema.Literal<"payment_claimed">;
1253
+ readonly org_create_failed: Schema.Struct<{
1254
+ readonly name: Schema.Literal<"org_create_failed">;
2037
1255
  readonly props: Schema.Struct<{
2038
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2039
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2040
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2041
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2042
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2043
- readonly status: Schema.optional<Schema.String>;
2044
- readonly reason: Schema.optional<Schema.String>;
2045
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2046
1256
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2047
1257
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2048
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2049
1258
  readonly journey_id: Schema.optional<Schema.String>;
2050
1259
  readonly correlation_id: Schema.optional<Schema.String>;
2051
1260
  readonly sdk_version: Schema.optional<Schema.String>;
1261
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1262
+ readonly reason: Schema.optional<Schema.String>;
2052
1263
  }>;
2053
1264
  }>;
2054
- readonly payment_cancelled: Schema.Struct<{
2055
- readonly name: Schema.Literal<"payment_cancelled">;
1265
+ readonly org_invite_sent: Schema.Struct<{
1266
+ readonly name: Schema.Literal<"org_invite_sent">;
2056
1267
  readonly props: Schema.Struct<{
2057
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2058
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2059
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2060
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2061
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2062
- readonly status: Schema.optional<Schema.String>;
2063
- readonly reason: Schema.optional<Schema.String>;
2064
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2065
1268
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2066
1269
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2067
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2068
1270
  readonly journey_id: Schema.optional<Schema.String>;
2069
1271
  readonly correlation_id: Schema.optional<Schema.String>;
2070
1272
  readonly sdk_version: Schema.optional<Schema.String>;
1273
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1274
+ readonly email_domain: Schema.optional<Schema.String>;
1275
+ readonly role: Schema.optional<Schema.String>;
1276
+ readonly status: Schema.optional<Schema.String>;
2071
1277
  }>;
2072
1278
  }>;
2073
- readonly payment_redirected: Schema.Struct<{
2074
- readonly name: Schema.Literal<"payment_redirected">;
1279
+ readonly org_invite_accepted: Schema.Struct<{
1280
+ readonly name: Schema.Literal<"org_invite_accepted">;
2075
1281
  readonly props: Schema.Struct<{
2076
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2077
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2078
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2079
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2080
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2081
- readonly status: Schema.optional<Schema.String>;
2082
- readonly reason: Schema.optional<Schema.String>;
2083
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2084
1282
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2085
1283
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2086
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2087
1284
  readonly journey_id: Schema.optional<Schema.String>;
2088
1285
  readonly correlation_id: Schema.optional<Schema.String>;
2089
1286
  readonly sdk_version: Schema.optional<Schema.String>;
1287
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1288
+ readonly role: Schema.optional<Schema.String>;
1289
+ readonly status: Schema.optional<Schema.String>;
2090
1290
  }>;
2091
1291
  }>;
2092
- readonly payment_failed: Schema.Struct<{
2093
- readonly name: Schema.Literal<"payment_failed">;
1292
+ readonly org_invite_expired: Schema.Struct<{
1293
+ readonly name: Schema.Literal<"org_invite_expired">;
2094
1294
  readonly props: Schema.Struct<{
2095
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2096
- readonly payee_id: Schema.optional<Schema.refine<string, Schema.String>>;
2097
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2098
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2099
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2100
- readonly status: Schema.optional<Schema.String>;
2101
- readonly reason: Schema.optional<Schema.String>;
2102
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2103
1295
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2104
1296
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2105
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2106
1297
  readonly journey_id: Schema.optional<Schema.String>;
2107
1298
  readonly correlation_id: Schema.optional<Schema.String>;
2108
1299
  readonly sdk_version: Schema.optional<Schema.String>;
1300
+ readonly org_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1301
+ readonly email_domain: Schema.optional<Schema.String>;
1302
+ readonly reason: Schema.optional<Schema.String>;
1303
+ readonly role: Schema.optional<Schema.String>;
1304
+ readonly status: Schema.optional<Schema.String>;
2109
1305
  }>;
2110
1306
  }>;
2111
- readonly stream_created: Schema.Struct<{
2112
- readonly name: Schema.Literal<"stream_created">;
1307
+ readonly payment_initiated: Schema.Struct<{
1308
+ readonly name: Schema.Literal<"payment_initiated">;
2113
1309
  readonly props: Schema.Struct<{
2114
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2115
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2116
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2117
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2118
- readonly status: Schema.optional<Schema.String>;
2119
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
2120
- readonly reason: Schema.optional<Schema.String>;
2121
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2122
1310
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2123
1311
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2124
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2125
1312
  readonly journey_id: Schema.optional<Schema.String>;
2126
1313
  readonly correlation_id: Schema.optional<Schema.String>;
2127
1314
  readonly sdk_version: Schema.optional<Schema.String>;
1315
+ readonly kind: Schema.String;
1316
+ readonly payment_id: Schema.String;
2128
1317
  }>;
2129
1318
  }>;
2130
- readonly stream_claimed: Schema.Struct<{
2131
- readonly name: Schema.Literal<"stream_claimed">;
1319
+ readonly payment_settled: Schema.Struct<{
1320
+ readonly name: Schema.Literal<"payment_settled">;
2132
1321
  readonly props: Schema.Struct<{
2133
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2134
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2135
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2136
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2137
- readonly status: Schema.optional<Schema.String>;
2138
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
2139
- readonly reason: Schema.optional<Schema.String>;
2140
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2141
1322
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2142
1323
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2143
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2144
1324
  readonly journey_id: Schema.optional<Schema.String>;
2145
1325
  readonly correlation_id: Schema.optional<Schema.String>;
2146
1326
  readonly sdk_version: Schema.optional<Schema.String>;
1327
+ readonly kind: Schema.String;
1328
+ readonly chain_id: Schema.Number;
1329
+ readonly settlement_id: Schema.String;
2147
1330
  }>;
2148
1331
  }>;
2149
- readonly stream_cancelled: Schema.Struct<{
2150
- readonly name: Schema.Literal<"stream_cancelled">;
1332
+ readonly payment_failed: Schema.Struct<{
1333
+ readonly name: Schema.Literal<"payment_failed">;
2151
1334
  readonly props: Schema.Struct<{
2152
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2153
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2154
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2155
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2156
- readonly status: Schema.optional<Schema.String>;
2157
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
2158
- readonly reason: Schema.optional<Schema.String>;
2159
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2160
1335
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2161
1336
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2162
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2163
1337
  readonly journey_id: Schema.optional<Schema.String>;
2164
1338
  readonly correlation_id: Schema.optional<Schema.String>;
2165
1339
  readonly sdk_version: Schema.optional<Schema.String>;
1340
+ readonly kind: Schema.String;
1341
+ readonly payment_id: Schema.String;
1342
+ readonly reason_code: Schema.String;
2166
1343
  }>;
2167
1344
  }>;
2168
- readonly stream_completed: Schema.Struct<{
2169
- readonly name: Schema.Literal<"stream_completed">;
1345
+ readonly deposit_initiated: Schema.Struct<{
1346
+ readonly name: Schema.Literal<"deposit_initiated">;
2170
1347
  readonly props: Schema.Struct<{
2171
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2172
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2173
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2174
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2175
- readonly status: Schema.optional<Schema.String>;
2176
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
2177
- readonly reason: Schema.optional<Schema.String>;
2178
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2179
1348
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2180
1349
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2181
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2182
1350
  readonly journey_id: Schema.optional<Schema.String>;
2183
1351
  readonly correlation_id: Schema.optional<Schema.String>;
2184
1352
  readonly sdk_version: Schema.optional<Schema.String>;
2185
1353
  }>;
2186
1354
  }>;
2187
- readonly stream_failed: Schema.Struct<{
2188
- readonly name: Schema.Literal<"stream_failed">;
1355
+ readonly deposit_settled: Schema.Struct<{
1356
+ readonly name: Schema.Literal<"deposit_settled">;
2189
1357
  readonly props: Schema.Struct<{
2190
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2191
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2192
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2193
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2194
- readonly status: Schema.optional<Schema.String>;
2195
- readonly available_bucket: Schema.optional<Schema.Literals<readonly ["zero", "nonzero"]>>;
2196
- readonly reason: Schema.optional<Schema.String>;
2197
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2198
1358
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2199
1359
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2200
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2201
1360
  readonly journey_id: Schema.optional<Schema.String>;
2202
1361
  readonly correlation_id: Schema.optional<Schema.String>;
2203
1362
  readonly sdk_version: Schema.optional<Schema.String>;
1363
+ readonly chain_id: Schema.Number;
1364
+ readonly tx_hash: Schema.String;
1365
+ readonly log_index: Schema.Number;
2204
1366
  }>;
2205
1367
  }>;
2206
- readonly withdrawal_requested: Schema.Struct<{
2207
- readonly name: Schema.Literal<"withdrawal_requested">;
1368
+ readonly permission_mirror_verification: Schema.Struct<{
1369
+ readonly name: Schema.Literal<"permission_mirror_verification">;
2208
1370
  readonly props: Schema.Struct<{
2209
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2210
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2211
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2212
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2213
- readonly status: Schema.optional<Schema.String>;
2214
- readonly reason: Schema.optional<Schema.String>;
2215
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2216
1371
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2217
1372
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2218
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2219
1373
  readonly journey_id: Schema.optional<Schema.String>;
2220
1374
  readonly correlation_id: Schema.optional<Schema.String>;
2221
1375
  readonly sdk_version: Schema.optional<Schema.String>;
1376
+ readonly outcome: Schema.String;
1377
+ readonly reason: Schema.String;
1378
+ readonly chain_id: Schema.Number;
1379
+ readonly finality: Schema.String;
1380
+ readonly lag_blocks: Schema.Number;
1381
+ readonly retry_count: Schema.Number;
2222
1382
  }>;
2223
1383
  }>;
2224
- readonly withdrawal_submitted: Schema.Struct<{
2225
- readonly name: Schema.Literal<"withdrawal_submitted">;
1384
+ readonly movement_scan_window: Schema.Struct<{
1385
+ readonly name: Schema.Literal<"movement_scan_window">;
2226
1386
  readonly props: Schema.Struct<{
2227
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2228
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2229
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2230
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2231
- readonly status: Schema.optional<Schema.String>;
2232
- readonly reason: Schema.optional<Schema.String>;
2233
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2234
1387
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2235
1388
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2236
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2237
1389
  readonly journey_id: Schema.optional<Schema.String>;
2238
1390
  readonly correlation_id: Schema.optional<Schema.String>;
2239
1391
  readonly sdk_version: Schema.optional<Schema.String>;
1392
+ readonly chain_id: Schema.Number;
1393
+ readonly token_address: Schema.String;
1394
+ readonly from_block: Schema.Number;
1395
+ readonly to_block: Schema.Number;
1396
+ readonly log_count: Schema.Number;
1397
+ readonly request_count: Schema.Number;
1398
+ readonly outcome: Schema.String;
2240
1399
  }>;
2241
1400
  }>;
2242
- readonly withdrawal_settled: Schema.Struct<{
2243
- readonly name: Schema.Literal<"withdrawal_settled">;
1401
+ readonly movement_scan_checkpoint: Schema.Struct<{
1402
+ readonly name: Schema.Literal<"movement_scan_checkpoint">;
2244
1403
  readonly props: Schema.Struct<{
2245
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2246
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2247
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2248
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2249
- readonly status: Schema.optional<Schema.String>;
2250
- readonly reason: Schema.optional<Schema.String>;
2251
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2252
1404
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2253
1405
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2254
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2255
1406
  readonly journey_id: Schema.optional<Schema.String>;
2256
1407
  readonly correlation_id: Schema.optional<Schema.String>;
2257
1408
  readonly sdk_version: Schema.optional<Schema.String>;
1409
+ readonly chain_id: Schema.Number;
1410
+ readonly token_address: Schema.String;
1411
+ readonly next_block: Schema.Number;
1412
+ readonly anchor_block_number: Schema.Number;
2258
1413
  }>;
2259
1414
  }>;
2260
- readonly withdrawal_failed: Schema.Struct<{
2261
- readonly name: Schema.Literal<"withdrawal_failed">;
1415
+ readonly movement_scan_incident: Schema.Struct<{
1416
+ readonly name: Schema.Literal<"movement_scan_incident">;
2262
1417
  readonly props: Schema.Struct<{
2263
- readonly payment_id: Schema.optional<Schema.refine<string, Schema.String>>;
2264
- readonly document_hash: Schema.optional<Schema.refine<string, Schema.String>>;
2265
- readonly amount: Schema.optional<Schema.Codec<WeiAmount, string, never, never>>;
2266
- readonly currency: Schema.optional<Schema.Codec<CurrencyCode, string, never, never>>;
2267
- readonly status: Schema.optional<Schema.String>;
2268
- readonly reason: Schema.optional<Schema.String>;
2269
- readonly durationMs: Schema.optional<Schema.Codec<DurationMs, number, never, never>>;
2270
1418
  readonly capxul_env: Schema.Literals<readonly ["development", "e2e", "staging", "production", "unknown"]>;
2271
1419
  readonly producer: Schema.Literals<readonly ["server", "browser", "sdk", "mcp", "e2e"]>;
2272
- readonly capxul_e2e_run_id: Schema.optional<Schema.String>;
2273
1420
  readonly journey_id: Schema.optional<Schema.String>;
2274
1421
  readonly correlation_id: Schema.optional<Schema.String>;
2275
1422
  readonly sdk_version: Schema.optional<Schema.String>;
1423
+ readonly chain_id: Schema.Number;
1424
+ readonly token_address: Schema.String;
1425
+ readonly incident_kind: Schema.String;
1426
+ readonly anchor_block_number: Schema.Number;
2276
1427
  }>;
2277
1428
  }>;
2278
1429
  };
2279
- declare const FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS: readonly [{
2280
- readonly eventName: "payment_requested";
2281
- readonly ownerIssue: 410;
2282
- readonly producer: "sdk-target";
2283
- }, {
2284
- readonly eventName: "payment_resolved";
2285
- readonly ownerIssue: 410;
2286
- readonly producer: "sdk-target";
2287
- }, {
2288
- readonly eventName: "payment_document_attached";
2289
- readonly ownerIssue: 486;
2290
- readonly producer: "sdk-target";
2291
- }, {
2292
- readonly eventName: "payment_submitted";
2293
- readonly ownerIssue: 410;
2294
- readonly producer: "sdk-target";
2295
- }, {
2296
- readonly eventName: "payment_failed";
2297
- readonly ownerIssue: 410;
2298
- readonly producer: "sdk-target";
2299
- }, {
2300
- readonly eventName: "stream_created";
2301
- readonly ownerIssue: 411;
2302
- readonly producer: "sdk-target";
2303
- }, {
2304
- readonly eventName: "stream_failed";
2305
- readonly ownerIssue: 411;
2306
- readonly producer: "sdk-target";
2307
- }, {
2308
- readonly eventName: "withdrawal_requested";
2309
- readonly ownerIssue: 410;
2310
- readonly producer: "sdk-target";
2311
- }, {
2312
- readonly eventName: "withdrawal_submitted";
2313
- readonly ownerIssue: 410;
2314
- readonly producer: "sdk-target";
2315
- }, {
2316
- readonly eventName: "withdrawal_failed";
2317
- readonly ownerIssue: 410;
2318
- readonly producer: "sdk-target";
2319
- }];
1430
+ declare const FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS: readonly [];
1431
+ /**
1432
+ * Contract-first events whose producer is owned by a later domain node.
1433
+ *
1434
+ * A domain node removes its entry when it adds the producer. The telemetry
1435
+ * gate rejects an entry that has a producer.
1436
+ */
1437
+ declare const CONTRACT_FIRST_TELEMETRY_EVENTS: readonly [];
2320
1438
  /**
2321
1439
  * Catalog events whose product mapper remains gated on the #1150 frontend
2322
1440
  * adoption. L1 S1 removes their retired SDK-flow producers without inventing
@@ -2514,5 +1632,4 @@ declare class InMemoryTelemetryBusAdapter implements TelemetryPort {
2514
1632
  reportHandledError(_error: CapxulError, _context?: HandledErrorReportContext): Effect.Effect<void, never>;
2515
1633
  }
2516
1634
  //#endregion
2517
- export { AccountBalanceFailedTelemetryEventSchema, AccountBalanceReadTelemetryEventSchema, AuthFailedTelemetryEventSchema, AuthOtpDeliveredTelemetryEventSchema, AuthOtpExpiredTelemetryEventSchema, AuthOtpRequestedTelemetryEventSchema, AuthSignedOutTelemetryEventSchema, AuthVerifiedTelemetryEventSchema, BROWSER_GATED_TELEMETRY_EVENTS, BootstrapFailedTelemetryEventSchema, BootstrapResolvedTelemetryEventSchema, CAPXUL_ENVS, CapxulBrowserAnalyticsInput, CapxulEnv, FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS, FaucetConfirmedTelemetryEventSchema, FaucetFailedTelemetryEventSchema, FaucetRequestedTelemetryEventSchema, FunnelJourney, FunnelStepPropertyFilter, type HandledErrorReportContext, InMemoryTelemetryBusAdapter, InitializePostHogBrowserAnalyticsInput, Journey, MemberActivationFailedTelemetryEventSchema, MemberActivationReadyTelemetryEventSchema, MemberActivationStartedTelemetryEventSchema, NonEmptyTelemetryEventNames, OnboardingDashboardReachedTelemetryEventSchema, OnboardingIntentSelectedTelemetryEventSchema, OnboardingOrganizationSubmittedTelemetryEventSchema, OnboardingProfileSubmittedTelemetryEventSchema, OrgCreateFailedTelemetryEventSchema, OrgCreateStartedTelemetryEventSchema, OrgCreatedTelemetryEventSchema, OrgInviteAcceptedTelemetryEventSchema, OrgInviteExpiredTelemetryEventSchema, OrgInviteSentTelemetryEventSchema, OrgMemberActiveTelemetryEventSchema, OrgMemberRemovedTelemetryEventSchema, OrgRoleGrantFailedTelemetryEventSchema, OrgRoleGrantedTelemetryEventSchema, OrgRolesSeededTelemetryEventSchema, OrgSafeConfirmedTelemetryEventSchema, OrgSafeCreatedTelemetryEventSchema, OrganizationCreationFailedTelemetryEventSchema, OrganizationCreationReadyTelemetryEventSchema, OrganizationCreationStartedTelemetryEventSchema, PII, PRODUCT_MAPPER_GATED_TELEMETRY_EVENTS, PaymentCancelledTelemetryEventSchema, PaymentClaimedTelemetryEventSchema, PaymentDocumentAttachedTelemetryEventSchema, PaymentFailedTelemetryEventSchema, PaymentRedirectedTelemetryEventSchema, PaymentRequestedTelemetryEventSchema, PaymentResolvedTelemetryEventSchema, PaymentSettledTelemetryEventSchema, PaymentSubmittedTelemetryEventSchema, PointEventJourney, PostHogBeforeSend, PostHogBrowserCapture, PostHogBrowserInitialize, PostHogBrowserOptions, PostHogBrowserPageviewClient, PostHogProductAppOptions, PostHogTelemetryAdapter, PostHogUtilityAppOptions, ProvisioningSafeConfirmedTelemetryEventSchema, ProvisioningSafeCreatedTelemetryEventSchema, RecordingTelemetryAdapter, SYNCABLE_CAPXUL_ENVS, StreamCancelledTelemetryEventSchema, StreamClaimedTelemetryEventSchema, StreamCompletedTelemetryEventSchema, StreamCreatedTelemetryEventSchema, StreamFailedTelemetryEventSchema, SubaccountCreatedTelemetryEventSchema, SubaccountDeletedTelemetryEventSchema, SubaccountOpFailedTelemetryEventSchema, SubaccountRenamedTelemetryEventSchema, TELEMETRY_EVENT_NAMES, TELEMETRY_EVENT_SCHEMAS, TELEMETRY_JOURNEYS, TELEMETRY_PRODUCERS, TelemetryEnvelopeDefaults, TelemetryEvent, TelemetryEventName, TelemetryGroupInput, TelemetryIdentifyInput, type TelemetryPort, TelemetryProducer, TelemetryProps, TelemetryRedactionOptions, TrackHandler, TransferBackendReceivedTelemetryEventSchema, TransferConfirmedTelemetryEventSchema, TransferFailedTelemetryEventSchema, TransferRequestedTelemetryEventSchema, WithdrawalFailedTelemetryEventSchema, WithdrawalRequestedTelemetryEventSchema, WithdrawalSettledTelemetryEventSchema, WithdrawalSubmittedTelemetryEventSchema, createCapxulBeforeSend, createPostHogBrowserPageviewTracker, getTrackHandler, initializeCapxulBrowserAnalytics, initializePostHogBrowserAnalytics, productAppAnalytics, redactTelemetryEvent, redactTelemetryProps, sanitizePostHogBrowserEvent, setTrackHandler, stampTelemetryEnvelope, track, utilityAppAnalytics };
2518
- //# sourceMappingURL=index.d.mts.map
1635
+ export { AccountBalanceFailedTelemetryEventSchema, AccountBalanceReadTelemetryEventSchema, AuthFailedTelemetryEventSchema, AuthOtpDeliveredTelemetryEventSchema, AuthOtpExpiredTelemetryEventSchema, AuthOtpRequestedTelemetryEventSchema, AuthSignedOutTelemetryEventSchema, AuthVerifiedTelemetryEventSchema, BROWSER_GATED_TELEMETRY_EVENTS, BootstrapFailedTelemetryEventSchema, BootstrapResolvedTelemetryEventSchema, CAPXUL_ENVS, CONTRACT_FIRST_TELEMETRY_EVENTS, CapxulBrowserAnalyticsInput, CapxulEnv, DepositInitiatedTelemetryEventSchema, DepositSettledTelemetryEventSchema, FINANCIAL_OPS_TARGET_TELEMETRY_PRODUCERS, FaucetConfirmedTelemetryEventSchema, FaucetFailedTelemetryEventSchema, FaucetRequestedTelemetryEventSchema, FunnelJourney, FunnelStepPropertyFilter, type HandledErrorReportContext, InMemoryTelemetryBusAdapter, InitializePostHogBrowserAnalyticsInput, Journey, MemberActivationFailedTelemetryEventSchema, MemberActivationReadyTelemetryEventSchema, MemberActivationStartedTelemetryEventSchema, MovementScanCheckpointTelemetryEventSchema, MovementScanIncidentTelemetryEventSchema, MovementScanWindowTelemetryEventSchema, NonEmptyTelemetryEventNames, OnboardingDashboardReachedTelemetryEventSchema, OnboardingIntentSelectedTelemetryEventSchema, OnboardingOrganizationSubmittedTelemetryEventSchema, OnboardingProfileSubmittedTelemetryEventSchema, OrgCreateFailedTelemetryEventSchema, OrgCreateStartedTelemetryEventSchema, OrgCreatedTelemetryEventSchema, OrgInviteAcceptedTelemetryEventSchema, OrgInviteExpiredTelemetryEventSchema, OrgInviteSentTelemetryEventSchema, OrgRolesSeededTelemetryEventSchema, OrgSafeConfirmedTelemetryEventSchema, OrgSafeCreatedTelemetryEventSchema, OrganizationCreationFailedTelemetryEventSchema, OrganizationCreationReadyTelemetryEventSchema, OrganizationCreationStartedTelemetryEventSchema, PII, PRODUCT_MAPPER_GATED_TELEMETRY_EVENTS, PaymentFailedTelemetryEventSchema, PaymentInitiatedTelemetryEventSchema, PaymentSettledTelemetryEventSchema, PermissionMirrorVerificationTelemetryEventSchema, PointEventJourney, PostHogBeforeSend, PostHogBrowserCapture, PostHogBrowserInitialize, PostHogBrowserOptions, PostHogBrowserPageviewClient, PostHogProductAppOptions, PostHogTelemetryAdapter, PostHogUtilityAppOptions, ProvisioningSafeConfirmedTelemetryEventSchema, ProvisioningSafeCreatedTelemetryEventSchema, RecordingTelemetryAdapter, 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, productAppAnalytics, redactTelemetryEvent, redactTelemetryProps, sanitizePostHogBrowserEvent, setTrackHandler, stampTelemetryEnvelope, track, utilityAppAnalytics };