@idsoftsource/initial-process 0.1.2 → 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 {
|
|
@@ -662,6 +649,7 @@ interface LibraryConfig {
|
|
|
662
649
|
cloudfrontUrl: any;
|
|
663
650
|
providerId: any;
|
|
664
651
|
providerName: any;
|
|
652
|
+
isLogout: any;
|
|
665
653
|
}
|
|
666
654
|
declare const LIBRARY_CONFIG: InjectionToken<LibraryConfig>;
|
|
667
655
|
|
|
@@ -727,6 +715,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
727
715
|
publicUrl: null;
|
|
728
716
|
};
|
|
729
717
|
points: never[];
|
|
718
|
+
showlogout: boolean;
|
|
730
719
|
pointsChange: EventEmitter<string>;
|
|
731
720
|
cleared: EventEmitter<any>;
|
|
732
721
|
companyForm: FormGroup;
|
|
@@ -795,7 +784,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
795
784
|
}[];
|
|
796
785
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
797
786
|
appBrandingMap: Record<string, AppBranding>;
|
|
798
|
-
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);
|
|
799
788
|
selectedContract: any;
|
|
800
789
|
changeContractor(event?: any[]): void;
|
|
801
790
|
selectAll(event: any, items: any[]): void;
|
|
@@ -1824,6 +1813,18 @@ declare class IndustryService {
|
|
|
1824
1813
|
static ɵprov: i0.ɵɵInjectableDeclaration<IndustryService>;
|
|
1825
1814
|
}
|
|
1826
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
|
+
|
|
1827
1828
|
interface UserFormControls {
|
|
1828
1829
|
firstName: FormControl<string | null>;
|
|
1829
1830
|
lastName: FormControl<string | null>;
|
|
@@ -1848,9 +1849,11 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1848
1849
|
private industrydata;
|
|
1849
1850
|
private userDetailService;
|
|
1850
1851
|
private fileService;
|
|
1852
|
+
private provideruser;
|
|
1851
1853
|
private tokenService;
|
|
1852
1854
|
private fb;
|
|
1853
1855
|
previewUrl: string | null;
|
|
1856
|
+
initialSelectedJobValue: any;
|
|
1854
1857
|
selectedTab: any;
|
|
1855
1858
|
industries: any[];
|
|
1856
1859
|
selectedIndustries: any[];
|
|
@@ -1862,6 +1865,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1862
1865
|
private readonly uploadToAws;
|
|
1863
1866
|
backToParent: EventEmitter<void>;
|
|
1864
1867
|
roleData: any;
|
|
1868
|
+
jobTypes: LookupItem1<number>[];
|
|
1865
1869
|
userId: any;
|
|
1866
1870
|
user: any;
|
|
1867
1871
|
userError: any;
|
|
@@ -1886,16 +1890,17 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1886
1890
|
};
|
|
1887
1891
|
private initialJobValue;
|
|
1888
1892
|
useremail: any;
|
|
1889
|
-
jobTypes: LookupItem1<number>[];
|
|
1890
1893
|
selectedJobs: i0.WritableSignal<string[]>;
|
|
1891
1894
|
selectedJobValues: number[];
|
|
1892
1895
|
provider: ProviderModel;
|
|
1893
|
-
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);
|
|
1894
1897
|
cloudfrontUrl: string;
|
|
1895
1898
|
providerId: string;
|
|
1896
1899
|
providerName: string;
|
|
1897
1900
|
ngOnInit(): Promise<void>;
|
|
1898
1901
|
getYears(): void;
|
|
1902
|
+
getusermapping(): void;
|
|
1903
|
+
prefillJob(employeeType: number): void;
|
|
1899
1904
|
getIndustries(): void;
|
|
1900
1905
|
saveUserIndustries(): void;
|
|
1901
1906
|
setSelectedIndustries(ids: string[]): void;
|
|
@@ -1912,6 +1917,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1912
1917
|
go(): void;
|
|
1913
1918
|
saveAWSHeadShot(): Promise<void>;
|
|
1914
1919
|
saveFinal(): void;
|
|
1920
|
+
saveProviderUserMapping(): void;
|
|
1915
1921
|
bindUserDetails(): UserDetailModel;
|
|
1916
1922
|
formatDateTime(date: Date): {
|
|
1917
1923
|
mmddyyyy: string;
|