@idsoftsource/initial-process 0.1.4 → 0.1.6
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
|
@@ -1804,6 +1804,13 @@ declare class ToolsComponent {
|
|
|
1804
1804
|
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, {}, never, never, false, never>;
|
|
1805
1805
|
}
|
|
1806
1806
|
|
|
1807
|
+
declare enum EmployeeDesignation {
|
|
1808
|
+
CEO = 0,
|
|
1809
|
+
Owner = 1,
|
|
1810
|
+
Employee = 2,
|
|
1811
|
+
IndependentContractor = 3
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1807
1814
|
declare class IndustryService {
|
|
1808
1815
|
private http;
|
|
1809
1816
|
private readonly baseUrl;
|
|
@@ -1821,6 +1828,7 @@ declare class ProvidersService {
|
|
|
1821
1828
|
getProviderUserMapping(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
1822
1829
|
changeStatus(model: any): Observable<Result>;
|
|
1823
1830
|
createProviderUserMapping(model: any): Observable<Result>;
|
|
1831
|
+
updateProviderUserMapping(model: any): Observable<Result>;
|
|
1824
1832
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
1825
1833
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
1826
1834
|
}
|
|
@@ -1839,7 +1847,7 @@ interface UserFormControls {
|
|
|
1839
1847
|
latitude: FormControl<any | null>;
|
|
1840
1848
|
longitude: FormControl<any | null>;
|
|
1841
1849
|
phoneNumber: FormControl<string | null>;
|
|
1842
|
-
userJobTitle: FormControl<
|
|
1850
|
+
userJobTitle: FormControl<any | null>;
|
|
1843
1851
|
yearsOfExperince: FormControl<any | null>;
|
|
1844
1852
|
industries: FormControl<any | null>;
|
|
1845
1853
|
}
|
|
@@ -1854,6 +1862,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
1854
1862
|
private fb;
|
|
1855
1863
|
previewUrl: string | null;
|
|
1856
1864
|
initialSelectedJobValue: any;
|
|
1865
|
+
previousEmployeeType: EmployeeDesignation;
|
|
1857
1866
|
selectedTab: any;
|
|
1858
1867
|
industries: any[];
|
|
1859
1868
|
selectedIndustries: any[];
|