/** * SubscriptionsService * AUTO-GENERATED — public merchant surface from filtered OpenAPI */ export declare class SubscriptionsService { /** * OpenAPI operationId: `SubscriptionsController_cancel`. * Résilier un abonnement */ static cancel(id: string, body?: unknown): Promise; /** * OpenAPI operationId: `SubscriptionsController_changePlan`. * Changer le plan tarifaire */ static changePlan(id: string, body?: unknown): Promise; /** * OpenAPI operationId: `SubscriptionsController_findByCustomer`. * Abonnements d’un client */ static findByCustomer(customerId: string): Promise; /** * OpenAPI operationId: `SubscriptionsController_findOne`. * Obtenir un abonnement par ID */ static get(id: string): Promise; /** * OpenAPI operationId: `SubscriptionsController_findAll`. * Lister les abonnements */ static list(options?: Record): Promise; /** * OpenAPI operationId: `SubscriptionsController_uncancel`. * Annuler une résiliation planifiée */ static uncancel(id: string): Promise; /** * OpenAPI operationId: `SubscriptionsController_update`. * Mettre à jour un abonnement */ static update(id: string): Promise; } //# sourceMappingURL=SubscriptionsService.d.ts.map