(pluginId: number, imageId: string)
| 262 | } |
| 263 | |
| 264 | async deletePluginImage(pluginId: number, imageId: string) { |
| 265 | return await this.delete(`/api/user/plugins/${pluginId}/images/${imageId}`) |
| 266 | } |
| 267 | |
| 268 | async createStripeCheckoutSession(tier: PremiumSlotTier): Promise<ApiResult<UrlResponse>> { |
| 269 | return await this.post(`/api/stripe/create_checkout_session`, { |
no test coverage detected