@nestjs-mod/webhook-afat
Version:
Webhook UI components and tools for AFAT (Angular, Formly, Antd, Transloco) and rest-sdk for work with backend of this module from Angular appliaction
18 lines (17 loc) • 1.07 kB
TypeScript
import { RequestMeta } from '@nestjs-mod/misc';
import { WebhookRestSdkAngularService } from '../generated/webhook-rest_sdk-angular.module';
import { WebhookLogMapperService } from './webhook-log-mapper.service';
import * as i0 from "@angular/core";
export declare class WebhookLogService {
private readonly ssoRestSdkAngularService;
private readonly webhookLogMapperService;
constructor(ssoRestSdkAngularService: WebhookRestSdkAngularService, webhookLogMapperService: WebhookLogMapperService);
findOne(id: string): import("rxjs").Observable<import("./webhook-log-mapper.service").WebhookLogModel>;
findMany({ filters, meta, }: {
filters: Record<string, string>;
meta?: RequestMeta;
}): import("rxjs").Observable<import("../generated/rest-sdk").FindManyWebhookLogResponseInterface>;
deleteOne(id: string): import("rxjs").Observable<import("../generated/rest-sdk").StatusResponseInterface>;
static ɵfac: i0.ɵɵFactoryDeclaration<WebhookLogService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<WebhookLogService>;
}