(pricing: Partial<ModelPricing> & { model: string })
| 129 | } |
| 130 | |
| 131 | async updatePricing(pricing: Partial<ModelPricing> & { model: string }): Promise<{ model: string; pricing: ModelPricing }> { |
| 132 | return this.fetch('/dashboard/pricing', { |
| 133 | method: 'PUT', |
| 134 | body: JSON.stringify(pricing), |
| 135 | }); |
| 136 | } |
| 137 | |
| 138 | // Sessions |
| 139 | async getSessions(opts: SessionQueryOpts = {}): Promise<SessionListResult> { |
no test coverage detected