cat-qw-lib 1.0.30 → 1.0.31
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/fesm2022/cat-qw-lib.mjs +6 -2
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/services/application-assignment.service.d.ts +18 -0
- package/lib/widget/components/widget-item/widget-item.component.d.ts +2 -0
- package/lib/widget/models/widget.model.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AppConfigService } from '../../shared/services/app-config.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ApplicationAssignmentService {
|
|
6
|
+
private http;
|
|
7
|
+
private appConfigService;
|
|
8
|
+
constructor(http: HttpClient, appConfigService: AppConfigService);
|
|
9
|
+
/**
|
|
10
|
+
* Assign an application to a user
|
|
11
|
+
* @param applicationId - The ID of the application to assign
|
|
12
|
+
* @param underWriterId - The ID of the user to assign the application to
|
|
13
|
+
* @returns Observable of the assignment response
|
|
14
|
+
*/
|
|
15
|
+
assignApplication(applicationId: string, underWriterId: string): Observable<any>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationAssignmentService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationAssignmentService>;
|
|
18
|
+
}
|