ngx-sp-infra
Version:
Biblioteca de utilitários da Infra.
21 lines (20 loc) • 1.01 kB
TypeScript
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { RetRecordsCombobox } from '../../../models/combobox/ret-records-combobox';
import { RetError } from '../../../models/utils/ret-error';
import { RetInfraLDAP } from '../models/RetInfraLDAP';
import { InfraLDAP } from '../models/InfraLDAP';
import { LDAPValidateUser } from '../models/LDAPValidateUser';
import * as i0 from "@angular/core";
export declare class IntegracaoAdLdapService {
private httpClient;
private readonly _BASE_URL;
constructor(httpClient: HttpClient);
TENANT_ID: number;
getByTenantId(): Observable<RetInfraLDAP>;
GetGrupoDefaultIdList(): Observable<RetRecordsCombobox>;
createOrUpdate(record: InfraLDAP): Observable<RetInfraLDAP>;
validateUserinLDAP(ldapValidateUser: LDAPValidateUser): Observable<RetError>;
static ɵfac: i0.ɵɵFactoryDeclaration<IntegracaoAdLdapService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<IntegracaoAdLdapService>;
}