agent-afk 5.177.1 → 5.177.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.
@@ -79,10 +79,10 @@ export declare const WorldChangesSchema: z.ZodObject<{
79
79
  mutated: z.ZodBoolean;
80
80
  }, z.core.$strip>;
81
81
  export declare const TokenBreakdownSchema: z.ZodObject<{
82
- input: z.ZodOptional<z.ZodNumber>;
83
- output: z.ZodOptional<z.ZodNumber>;
84
- cache_read: z.ZodOptional<z.ZodNumber>;
85
- cache_creation: z.ZodOptional<z.ZodNumber>;
82
+ input: z.ZodNumber;
83
+ output: z.ZodNumber;
84
+ cache_read: z.ZodNumber;
85
+ cache_creation: z.ZodNumber;
86
86
  cost_usd: z.ZodNumber;
87
87
  }, z.core.$strip>;
88
88
  export type TokenBreakdown = z.infer<typeof TokenBreakdownSchema>;
@@ -142,10 +142,10 @@ export declare const SessionFacetSchema: z.ZodObject<{
142
142
  mutated: z.ZodBoolean;
143
143
  }, z.core.$strip>;
144
144
  token_breakdown: z.ZodOptional<z.ZodObject<{
145
- input: z.ZodOptional<z.ZodNumber>;
146
- output: z.ZodOptional<z.ZodNumber>;
147
- cache_read: z.ZodOptional<z.ZodNumber>;
148
- cache_creation: z.ZodOptional<z.ZodNumber>;
145
+ input: z.ZodNumber;
146
+ output: z.ZodNumber;
147
+ cache_read: z.ZodNumber;
148
+ cache_creation: z.ZodNumber;
149
149
  cost_usd: z.ZodNumber;
150
150
  }, z.core.$strip>>;
151
151
  decisions: z.ZodArray<z.ZodString>;