@mmnto/totem 1.57.0 → 1.58.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.
@@ -75,8 +75,6 @@ export declare const CacheEntrySchema: z.ZodObject<{
75
75
  compiledAt: z.ZodString;
76
76
  }, "strip", z.ZodTypeAny, {
77
77
  compiledAt: string;
78
- sourceHash: string;
79
- fingerprint: string;
80
78
  output: z.objectOutputType<{
81
79
  status: z.ZodLiteral<"compiled">;
82
80
  rule: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -89,11 +87,11 @@ export declare const CacheEntrySchema: z.ZodObject<{
89
87
  }, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
90
88
  status: z.ZodLiteral<"noop">;
91
89
  }, z.ZodTypeAny, "passthrough">;
90
+ sourceHash: string;
91
+ fingerprint: string;
92
92
  stableId?: string | undefined;
93
93
  }, {
94
94
  compiledAt: string;
95
- sourceHash: string;
96
- fingerprint: string;
97
95
  output: z.objectInputType<{
98
96
  status: z.ZodLiteral<"compiled">;
99
97
  rule: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -106,6 +104,8 @@ export declare const CacheEntrySchema: z.ZodObject<{
106
104
  }, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
107
105
  status: z.ZodLiteral<"noop">;
108
106
  }, z.ZodTypeAny, "passthrough">;
107
+ sourceHash: string;
108
+ fingerprint: string;
109
109
  stableId?: string | undefined;
110
110
  }>;
111
111
  export type CacheEntry = Omit<z.infer<typeof CacheEntrySchema>, 'output'> & {