/** * CustomersService * AUTO-GENERATED — public merchant surface from filtered OpenAPI */ export declare class CustomersService { /** * OpenAPI operationId: `CustomersController_create`. * Créer un client */ static create(body?: unknown): Promise; /** * OpenAPI operationId: `CustomersController_createPortalLaunchSession`. * Créer une session de lancement du portail client */ static createPortalLaunchSession(id: string, body?: unknown): Promise; /** * OpenAPI operationId: `CustomersController_remove`. * Supprimer un client */ static delete(id: string): Promise; /** * OpenAPI operationId: `CustomersController_findOne`. * Obtenir un client par ID */ static get(id: string): Promise; /** * OpenAPI operationId: `CustomersController_getPortalAudit`. * Hosted customer portal audit */ static getPortalAudit(id: string, options?: Record): Promise; /** * OpenAPI operationId: `CustomersController_getTransactions`. * Transactions du client */ static getTransactions(id: string): Promise; /** * OpenAPI operationId: `CustomersController_findAll`. * Lister les clients */ static list(options?: Record): Promise; /** * OpenAPI operationId: `CustomersController_update`. * Mettre à jour un client */ static update(id: string, body?: unknown): Promise; } //# sourceMappingURL=CustomersService.d.ts.map