mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-10 11:24:58 +00:00
fix(auth): billing backoff + cooldown UX
This commit is contained in:
@@ -1198,6 +1198,16 @@ export const ClawdbotSchema = z
|
||||
)
|
||||
.optional(),
|
||||
order: z.record(z.string(), z.array(z.string())).optional(),
|
||||
cooldowns: z
|
||||
.object({
|
||||
billingBackoffHours: z.number().positive().optional(),
|
||||
billingBackoffHoursByProvider: z
|
||||
.record(z.string(), z.number().positive())
|
||||
.optional(),
|
||||
billingMaxHours: z.number().positive().optional(),
|
||||
failureWindowHours: z.number().positive().optional(),
|
||||
})
|
||||
.optional(),
|
||||
})
|
||||
.optional(),
|
||||
models: ModelsConfigSchema,
|
||||
|
||||
Reference in New Issue
Block a user