@hmcts/rpx-xui-common-lib 1.7.16 → 1.7.18
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/bundles/hmcts-rpx-xui-common-lib.umd.js +2 -4
- package/bundles/hmcts-rpx-xui-common-lib.umd.js.map +1 -1
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js +1 -1
- package/bundles/hmcts-rpx-xui-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/models/person.model.js +1 -3
- package/esm2015/lib/services/find-person/find-person.service.js +3 -3
- package/esm5/lib/models/person.model.js +1 -3
- package/esm5/lib/services/find-person/find-person.service.js +3 -3
- package/fesm2015/hmcts-rpx-xui-common-lib.js +2 -4
- package/fesm2015/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/fesm5/hmcts-rpx-xui-common-lib.js +2 -4
- package/fesm5/hmcts-rpx-xui-common-lib.js.map +1 -1
- package/lib/models/person.model.d.ts +0 -2
- package/package.json +1 -1
|
@@ -3833,7 +3833,6 @@
|
|
|
3833
3833
|
JUDICIAL: "Judicial",
|
|
3834
3834
|
CASEWORKER: "Legal Ops",
|
|
3835
3835
|
ADMIN: "Admin",
|
|
3836
|
-
CTSC: "CTSC User",
|
|
3837
3836
|
ALL: "All",
|
|
3838
3837
|
};
|
|
3839
3838
|
/** @enum {string} */
|
|
@@ -3841,7 +3840,6 @@
|
|
|
3841
3840
|
JUDICIAL: "JUDICIAL",
|
|
3842
3841
|
CASEWORKER: "LEGAL_OPERATIONS",
|
|
3843
3842
|
ADMIN: "ADMIN",
|
|
3844
|
-
CTSC: "CTSC",
|
|
3845
3843
|
ALL: "ALL",
|
|
3846
3844
|
};
|
|
3847
3845
|
|
|
@@ -4821,7 +4819,7 @@
|
|
|
4821
4819
|
this.userId = userInfo.id ? userInfo.id : userInfo.uid;
|
|
4822
4820
|
}
|
|
4823
4821
|
this.assignedUser = searchOptions.assignedUser ? searchOptions.assignedUser : null;
|
|
4824
|
-
return this.http.post('/
|
|
4822
|
+
return this.http.post('/workallocation/findPerson', { searchOptions: searchOptions })
|
|
4825
4823
|
.pipe(operators.map(( /**
|
|
4826
4824
|
* @param {?} judiciary
|
|
4827
4825
|
* @return {?}
|
|
@@ -4879,7 +4877,7 @@
|
|
|
4879
4877
|
return rxjs.of(this.searchInCaseworkers(storedCaseworkers, searchOptions));
|
|
4880
4878
|
}
|
|
4881
4879
|
// all serviceIds passed in as node layer getting used anyway and caseworkers also stored there
|
|
4882
|
-
return this.http.post('/
|
|
4880
|
+
return this.http.post('/workallocation/retrieveCaseWorkersForServices', { fullServices: fullServices }).pipe(operators.tap(( /**
|
|
4883
4881
|
* @param {?} caseworkersByService
|
|
4884
4882
|
* @return {?}
|
|
4885
4883
|
*/function (caseworkersByService) {
|