cat-qw-lib 1.0.29 → 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/README.md +63 -63
- package/fesm2022/cat-qw-lib.mjs +412 -408
- 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
- package/src/assets/icons/confirm-icon.svg +4 -4
|
@@ -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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M0.959961 7.91992C0.959961 4.05393 4.09397 0.919922 7.95996 0.919922C11.826 0.919922 14.96 4.05393 14.96 7.91992C14.96 11.7859 11.826 14.9199 7.95996 14.9199C4.09397 14.9199 0.959961 11.7859 0.959961 7.91992Z" fill="#22C55E"/>
|
|
3
|
-
<path d="M7.12625 9.31121L11.1512 5.28621L11.7638 5.90746L7.12625 10.5537L4.34375 7.76246L4.95625 7.14996L7.12625 9.31121Z" fill="white"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0.959961 7.91992C0.959961 4.05393 4.09397 0.919922 7.95996 0.919922C11.826 0.919922 14.96 4.05393 14.96 7.91992C14.96 11.7859 11.826 14.9199 7.95996 14.9199C4.09397 14.9199 0.959961 11.7859 0.959961 7.91992Z" fill="#22C55E"/>
|
|
3
|
+
<path d="M7.12625 9.31121L11.1512 5.28621L11.7638 5.90746L7.12625 10.5537L4.34375 7.76246L4.95625 7.14996L7.12625 9.31121Z" fill="white"/>
|
|
4
|
+
</svg>
|