priceos 0.0.24 → 0.0.25

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.cts CHANGED
@@ -1048,6 +1048,10 @@ interface paths {
1048
1048
  idempotencyKey?: string;
1049
1049
  /** @description Unix timestamp (ms) when the event occurred. */
1050
1050
  occurredAt?: number;
1051
+ /** @description Optional metadata for the event (string key/value pairs). */
1052
+ metadata?: {
1053
+ [key: string]: string;
1054
+ };
1051
1055
  };
1052
1056
  };
1053
1057
  };
package/dist/index.d.ts CHANGED
@@ -1048,6 +1048,10 @@ interface paths {
1048
1048
  idempotencyKey?: string;
1049
1049
  /** @description Unix timestamp (ms) when the event occurred. */
1050
1050
  occurredAt?: number;
1051
+ /** @description Optional metadata for the event (string key/value pairs). */
1052
+ metadata?: {
1053
+ [key: string]: string;
1054
+ };
1051
1055
  };
1052
1056
  };
1053
1057
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "priceos",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",