@idsoftsource/initial-process 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -551,30 +551,17 @@ declare class SignaturePad {
|
|
|
551
551
|
private _toSVG;
|
|
552
552
|
}
|
|
553
553
|
|
|
554
|
-
declare class ProvidersService {
|
|
554
|
+
declare class ProvidersService$1 {
|
|
555
555
|
private http;
|
|
556
556
|
private baseUrl;
|
|
557
557
|
constructor(http: HttpClient);
|
|
558
558
|
private generateParams;
|
|
559
|
-
private generateGridParams;
|
|
560
|
-
getProducerDocumentCounts(query: any): Observable<GridResult<any>>;
|
|
561
|
-
getProviders(): Observable<any[]>;
|
|
562
|
-
getProviderDetails(query: any): Observable<GridResult<any>>;
|
|
563
|
-
getProviderNames(query: any): Observable<any[]>;
|
|
564
|
-
getProviderName(providerId?: string): Observable<LookupItem[]>;
|
|
565
|
-
getVendorBasedServiceProviders(query: any): Observable<any[]>;
|
|
566
|
-
getProviderVendorAndUpdate(query: any): Observable<any[]>;
|
|
567
|
-
getDashboardCount(query: any): Observable<any>;
|
|
568
559
|
getContractors(query: any): Observable<GridResult<any>>;
|
|
569
|
-
getGlobalProviderNames(query: any): Observable<any[]>;
|
|
570
560
|
getUserDetail(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
571
561
|
adminCreateProvider(model: any): Observable<Result>;
|
|
572
562
|
changeStatus(model: any): Observable<Result>;
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
getProducerWithFee(model: any): Observable<Result1<any>>;
|
|
576
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
577
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService$1, never>;
|
|
564
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService$1>;
|
|
578
565
|
}
|
|
579
566
|
|
|
580
567
|
declare enum UserProviderMappingStatus {
|
|
@@ -797,7 +784,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
797
784
|
}[];
|
|
798
785
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
799
786
|
appBrandingMap: Record<string, AppBranding>;
|
|
800
|
-
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, libConfig: LibraryConfig);
|
|
787
|
+
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService$1, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, libConfig: LibraryConfig);
|
|
801
788
|
selectedContract: any;
|
|
802
789
|
changeContractor(event?: any[]): void;
|
|
803
790
|
selectAll(event: any, items: any[]): void;
|
|
@@ -1826,6 +1813,18 @@ declare class IndustryService {
|
|
|
1826
1813
|
static ɵprov: i0.ɵɵInjectableDeclaration<IndustryService>;
|
|
1827
1814
|
}
|
|
1828
1815
|
|
|
1816
|
+
declare class ProvidersService {
|
|
1817
|
+
private http;
|
|
1818
|
+
private baseUrl;
|
|
1819
|
+
constructor(http: HttpClient);
|
|
1820
|
+
private generateParams;
|
|
1821
|
+
getProviderUserMapping(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
1822
|
+
changeStatus(model: any): Observable<Result>;
|
|
1823
|
+
createProviderUserMapping(model: any): Observable<Result>;
|
|
1824
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
1825
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1829
1828
|
interface UserFormControls {
|
|
1830
1829
|
firstName: FormControl<string | null>;
|
|
1831
1830
|
lastName: FormControl<string | null>;
|
|
@@ -1850,9 +1849,11 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1850
1849
|
private industrydata;
|
|
1851
1850
|
private userDetailService;
|
|
1852
1851
|
private fileService;
|
|
1852
|
+
private provideruser;
|
|
1853
1853
|
private tokenService;
|
|
1854
1854
|
private fb;
|
|
1855
1855
|
previewUrl: string | null;
|
|
1856
|
+
initialSelectedJobValue: any;
|
|
1856
1857
|
selectedTab: any;
|
|
1857
1858
|
industries: any[];
|
|
1858
1859
|
selectedIndustries: any[];
|
|
@@ -1864,6 +1865,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1864
1865
|
private readonly uploadToAws;
|
|
1865
1866
|
backToParent: EventEmitter<void>;
|
|
1866
1867
|
roleData: any;
|
|
1868
|
+
jobTypes: LookupItem1<number>[];
|
|
1867
1869
|
userId: any;
|
|
1868
1870
|
user: any;
|
|
1869
1871
|
userError: any;
|
|
@@ -1888,16 +1890,17 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1888
1890
|
};
|
|
1889
1891
|
private initialJobValue;
|
|
1890
1892
|
useremail: any;
|
|
1891
|
-
jobTypes: LookupItem1<number>[];
|
|
1892
1893
|
selectedJobs: i0.WritableSignal<string[]>;
|
|
1893
1894
|
selectedJobValues: number[];
|
|
1894
1895
|
provider: ProviderModel;
|
|
1895
|
-
constructor(store: CredentialingStore, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, tokenService: TokenService, fb: FormBuilder);
|
|
1896
|
+
constructor(store: CredentialingStore, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
|
|
1896
1897
|
cloudfrontUrl: string;
|
|
1897
1898
|
providerId: string;
|
|
1898
1899
|
providerName: string;
|
|
1899
1900
|
ngOnInit(): Promise<void>;
|
|
1900
1901
|
getYears(): void;
|
|
1902
|
+
getusermapping(): void;
|
|
1903
|
+
prefillJob(employeeType: number): void;
|
|
1901
1904
|
getIndustries(): void;
|
|
1902
1905
|
saveUserIndustries(): void;
|
|
1903
1906
|
setSelectedIndustries(ids: string[]): void;
|
|
@@ -1914,6 +1917,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1914
1917
|
go(): void;
|
|
1915
1918
|
saveAWSHeadShot(): Promise<void>;
|
|
1916
1919
|
saveFinal(): void;
|
|
1920
|
+
saveProviderUserMapping(): void;
|
|
1917
1921
|
bindUserDetails(): UserDetailModel;
|
|
1918
1922
|
formatDateTime(date: Date): {
|
|
1919
1923
|
mmddyyyy: string;
|