@capxul/observability 4.1.0 → 4.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1743,6 +1743,19 @@ declare const DepositInitiatedTelemetryEventSchema: Schema.Struct<{
1743
1743
  readonly journey_id: Schema.optional<Schema.String>;
1744
1744
  readonly correlation_id: Schema.optional<Schema.String>;
1745
1745
  readonly sdk_version: Schema.optional<Schema.String>;
1746
+ readonly scope_kind: Schema.optional<Schema.Literals<readonly ["account", "organization"]>>;
1747
+ readonly account_kind: Schema.optional<Schema.Literals<readonly ["personalSafe", "orgTreasury"]>>;
1748
+ readonly chain_id: Schema.optional<Schema.Number>;
1749
+ readonly network: Schema.optional<Schema.Literal<"base-sepolia">>;
1750
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
1751
+ readonly $groups: Schema.optional<Schema.Struct<{
1752
+ readonly organization: Schema.optional<Schema.Codec<string, string, never, never>>;
1753
+ }>>;
1754
+ readonly actor_id: Schema.optional<Schema.String>;
1755
+ readonly actor_kind: Schema.optional<Schema.Literal<"authenticated">>;
1756
+ readonly distinct_id: Schema.optional<Schema.String>;
1757
+ readonly trace_id: Schema.optional<Schema.String>;
1758
+ readonly span_id: Schema.optional<Schema.String>;
1746
1759
  }>;
1747
1760
  }>;
1748
1761
  declare const DepositSettledTelemetryEventSchema: Schema.Struct<{
@@ -3023,6 +3036,19 @@ declare const TELEMETRY_EVENT_SCHEMAS: {
3023
3036
  readonly journey_id: Schema.optional<Schema.String>;
3024
3037
  readonly correlation_id: Schema.optional<Schema.String>;
3025
3038
  readonly sdk_version: Schema.optional<Schema.String>;
3039
+ readonly scope_kind: Schema.optional<Schema.Literals<readonly ["account", "organization"]>>;
3040
+ readonly account_kind: Schema.optional<Schema.Literals<readonly ["personalSafe", "orgTreasury"]>>;
3041
+ readonly chain_id: Schema.optional<Schema.Number>;
3042
+ readonly network: Schema.optional<Schema.Literal<"base-sepolia">>;
3043
+ readonly organization_id: Schema.optional<Schema.Codec<string, string, never, never>>;
3044
+ readonly $groups: Schema.optional<Schema.Struct<{
3045
+ readonly organization: Schema.optional<Schema.Codec<string, string, never, never>>;
3046
+ }>>;
3047
+ readonly actor_id: Schema.optional<Schema.String>;
3048
+ readonly actor_kind: Schema.optional<Schema.Literal<"authenticated">>;
3049
+ readonly distinct_id: Schema.optional<Schema.String>;
3050
+ readonly trace_id: Schema.optional<Schema.String>;
3051
+ readonly span_id: Schema.optional<Schema.String>;
3026
3052
  }>;
3027
3053
  }>;
3028
3054
  readonly deposit_settled: Schema.Struct<{
package/dist/index.mjs CHANGED
@@ -1266,7 +1266,20 @@ const QuickPayExternalAddressAcknowledgedProps = Schema.Struct({
1266
1266
  external_address_acknowledged: Schema.Literal(true),
1267
1267
  organization_id: OptionalOrgId
1268
1268
  });
1269
- const DepositInitiatedProps = Schema.Struct({ ...TelemetryEnvelopeProps });
1269
+ const DepositInitiatedProps = Schema.Struct({
1270
+ ...TelemetryEnvelopeProps,
1271
+ scope_kind: Schema.optional(Schema.Literals(["account", "organization"])),
1272
+ account_kind: Schema.optional(Schema.Literals(["personalSafe", "orgTreasury"])),
1273
+ chain_id: Schema.optional(Schema.Number),
1274
+ network: Schema.optional(Schema.Literal("base-sepolia")),
1275
+ organization_id: OptionalOrgId,
1276
+ $groups: Schema.optional(Schema.Struct({ organization: OptionalOrgId })),
1277
+ actor_id: OptionalString,
1278
+ actor_kind: Schema.optional(Schema.Literal("authenticated")),
1279
+ distinct_id: OptionalString,
1280
+ trace_id: OptionalString,
1281
+ span_id: OptionalString
1282
+ });
1270
1283
  const DepositSettledProps = Schema.Struct({
1271
1284
  ...TelemetryEnvelopeProps,
1272
1285
  chain_id: Schema.Number,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capxul/observability",
3
- "version": "4.1.0",
3
+ "version": "4.1.2",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",