@flipdish/events 1.26023.0 → 1.26027.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/metadata.js CHANGED
@@ -26,7 +26,8 @@ export const metadataSchema = z.object({
26
26
  initiator: z.string().optional(),
27
27
  specversion: z.string(),
28
28
  'target-zeus-environment': z.string().optional(),
29
- time: z.string().datetime(), // Assuming ISO datetime string
29
+ stage: z.string().optional(),
30
+ time: z.string().datetime(),
30
31
  type: z.string(),
31
32
  'x-span-id': z.string(),
32
33
  'x-trace-id': z.string(),
package/metadata.ts CHANGED
@@ -30,7 +30,8 @@ export const metadataSchema = z.object({
30
30
  initiator: z.string().optional(),
31
31
  specversion: z.string(),
32
32
  'target-zeus-environment': z.string().optional(),
33
- time: z.string().datetime(), // Assuming ISO datetime string
33
+ stage: z.string().optional(),
34
+ time: z.string().datetime(),
34
35
  type: z.string(),
35
36
  'x-span-id': z.string(),
36
37
  'x-trace-id': z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flipdish/events",
3
- "version": "1.26023.0",
3
+ "version": "1.26027.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --max-old-space-size=4096 --max-semi-space-size=512 ./node_modules/.bin/jest --config=jest.config.ts --verbose",