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