@bahmni/services 0.0.1-dev.246 → 0.0.1-dev.260
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/dist/allergyService/allergyService.d.ts.map +1 -1
- package/dist/allergyService/models.d.ts +4 -0
- package/dist/allergyService/models.d.ts.map +1 -1
- package/dist/api/api.d.ts +3 -1
- package/dist/api/api.d.ts.map +1 -1
- package/dist/api/client.d.ts.map +1 -1
- package/dist/api/constants.d.ts +1 -0
- package/dist/api/constants.d.ts.map +1 -1
- package/dist/conditionService/conditionService.d.ts +7 -0
- package/dist/conditionService/conditionService.d.ts.map +1 -1
- package/dist/conditionService/constants.d.ts +1 -0
- package/dist/conditionService/constants.d.ts.map +1 -1
- package/dist/conditionService/index.d.ts +1 -1
- package/dist/conditionService/index.d.ts.map +1 -1
- package/dist/encounterService/__mocks__/mocks.d.ts +4 -87
- package/dist/encounterService/__mocks__/mocks.d.ts.map +1 -1
- package/dist/encounterService/constants.d.ts.map +1 -1
- package/dist/encounterSessionService/encounterSessionStore.d.ts +30 -0
- package/dist/encounterSessionService/encounterSessionStore.d.ts.map +1 -0
- package/dist/encounterSessionService/index.d.ts +1 -0
- package/dist/encounterSessionService/index.d.ts.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2009 -1916
- package/dist/patientService/constants.d.ts +2 -0
- package/dist/patientService/constants.d.ts.map +1 -1
- package/dist/patientService/index.d.ts +1 -1
- package/dist/patientService/index.d.ts.map +1 -1
- package/dist/patientService/models.d.ts +2 -0
- package/dist/patientService/models.d.ts.map +1 -1
- package/dist/patientService/patientService.d.ts +11 -4
- package/dist/patientService/patientService.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"allergyService.d.ts","sourceRoot":"","sources":["../../src/allergyService/allergyService.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,EAAE,MAAM,EAAY,MAAM,SAAS,CAAC;AAQ5E,OAAO,EAAE,eAAe,EAAgB,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAkD3E;;;;;;GAMG;AACH,eAAO,MAAM,8BAA8B,GACzC,iBAAiB,MAAM,EACvB,WAAW,MAAM,EACjB,kBAAkB,MAAM,KACvB,OAAO,CAAC,eAAe,EAAE,CA6B3B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,GAChC,eAAe,MAAM,KACpB,OAAO,CAAC,MAAM,EAAE,CAIlB,CAAC;AACF;;;;GAIG;AACH,wBAAsB,yBAAyB,CAC7C,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,MAAM,CAAC,CAEjB;AAED;;;;GAIG;AACH,wBAAsB,YAAY,CAChC,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAO/B;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAC7B,SAAS,EAAE,kBAAkB,EAAE,GAC9B,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"allergyService.d.ts","sourceRoot":"","sources":["../../src/allergyService/allergyService.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,EAAE,MAAM,EAAY,MAAM,SAAS,CAAC;AAQ5E,OAAO,EAAE,eAAe,EAAgB,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAkD3E;;;;;;GAMG;AACH,eAAO,MAAM,8BAA8B,GACzC,iBAAiB,MAAM,EACvB,WAAW,MAAM,EACjB,kBAAkB,MAAM,KACvB,OAAO,CAAC,eAAe,EAAE,CA6B3B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,GAChC,eAAe,MAAM,KACpB,OAAO,CAAC,MAAM,EAAE,CAIlB,CAAC;AACF;;;;GAIG;AACH,wBAAsB,yBAAyB,CAC7C,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,MAAM,CAAC,CAEjB;AAED;;;;GAIG;AACH,wBAAsB,YAAY,CAChC,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,kBAAkB,EAAE,CAAC,CAO/B;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAC7B,SAAS,EAAE,kBAAkB,EAAE,GAC9B,gBAAgB,EAAE,CAuCpB;AAED;;;;GAIG;AACH,wBAAsB,qBAAqB,CACzC,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAG7B"}
|
|
@@ -13,6 +13,8 @@ export declare enum AllergySeverity {
|
|
|
13
13
|
*/
|
|
14
14
|
export interface FormattedAllergy {
|
|
15
15
|
readonly id: string;
|
|
16
|
+
/** FHIR AllergyIntolerance resource UUID — required for PUT (edit existing allergy). */
|
|
17
|
+
readonly resourceId?: string;
|
|
16
18
|
readonly display: string;
|
|
17
19
|
readonly category?: ReadonlyArray<string>;
|
|
18
20
|
readonly criticality?: string;
|
|
@@ -21,6 +23,8 @@ export interface FormattedAllergy {
|
|
|
21
23
|
readonly recorder?: string;
|
|
22
24
|
readonly reactions?: ReadonlyArray<{
|
|
23
25
|
readonly manifestation: string[];
|
|
26
|
+
/** FHIR Codings for each manifestation — needed to rebuild selectedReactions on edit. */
|
|
27
|
+
readonly manifestationCodings?: ReadonlyArray<Coding>;
|
|
24
28
|
readonly severity?: AllergySeverity;
|
|
25
29
|
}>;
|
|
26
30
|
readonly severity?: AllergySeverity;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/allergyService/models.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEtC,oBAAY,aAAa;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB;AAED,oBAAY,eAAe;IACzB,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAED;;GAEG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,QAAQ,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;IAC1C,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,MAAM,EAAE,aAAa,CAAC;IAC/B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,SAAS,CAAC,EAAE,aAAa,CAAC;QACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,EAAE,CAAC;QACjC,QAAQ,CAAC,QAAQ,CAAC,EAAE,eAAe,CAAC;KACrC,CAAC,CAAC;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,eAAe,CAAC;IACpC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,EAAE;QACN,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,YAAY,GAAG,aAAa,CAAC;AAEjE,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,YAAY,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE;QACV,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,OAAO,CAAC;KAClB,EAAE,CAAC;CACL"}
|
|
1
|
+
{"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/allergyService/models.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEtC,oBAAY,aAAa;IACvB,MAAM,WAAW;IACjB,QAAQ,aAAa;CACtB;AAED,oBAAY,eAAe;IACzB,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAED;;GAEG;AAEH,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,wFAAwF;IACxF,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,QAAQ,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;IAC1C,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,MAAM,EAAE,aAAa,CAAC;IAC/B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,SAAS,CAAC,EAAE,aAAa,CAAC;QACjC,QAAQ,CAAC,aAAa,EAAE,MAAM,EAAE,CAAC;QACjC,yFAAyF;QACzF,QAAQ,CAAC,oBAAoB,CAAC,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;QACtD,QAAQ,CAAC,QAAQ,CAAC,EAAE,eAAe,CAAC;KACrC,CAAC,CAAC;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,eAAe,CAAC;IACpC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,EAAE;QACN,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,GAAG,YAAY,GAAG,aAAa,CAAC;AAEjE,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,YAAY,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE;QACV,IAAI,EAAE,MAAM,CAAC;QACb,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE,OAAO,CAAC;KAClB,EAAE,CAAC;CACL"}
|
package/dist/api/api.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { AxiosRequestConfig } from 'axios';
|
|
1
2
|
/**
|
|
2
3
|
* HTTP GET request
|
|
3
4
|
* @param url - The URL to send the GET request to
|
|
5
|
+
* @param options - Optional Axios request config
|
|
4
6
|
* @returns Promise resolving to the response data
|
|
5
7
|
*/
|
|
6
|
-
export declare const get: <T = unknown>(url: string) => Promise<T>;
|
|
8
|
+
export declare const get: <T = unknown>(url: string, options?: AxiosRequestConfig) => Promise<T>;
|
|
7
9
|
/**
|
|
8
10
|
* HTTP POST request
|
|
9
11
|
* @param url - The URL to send the POST request to
|
package/dist/api/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api/api.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../src/api/api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAiB,MAAM,OAAO,CAAC;AAG1D;;;;;GAKG;AACH,eAAO,MAAM,GAAG,GAAU,CAAC,GAAG,OAAO,EACnC,KAAK,MAAM,EACX,UAAU,kBAAkB,KAC3B,OAAO,CAAC,CAAC,CAGX,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,IAAI,GAAU,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,OAAO,EACjD,KAAK,MAAM,EACX,MAAM,CAAC,KACN,OAAO,CAAC,CAAC,CAGX,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,GAAG,GAAU,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,OAAO,EAChD,KAAK,MAAM,EACX,MAAM,CAAC,KACN,OAAO,CAAC,CAAC,CAGX,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,KAAK,GAAU,CAAC,GAAG,OAAO,EAAE,CAAC,GAAG,OAAO,EAClD,KAAK,MAAM,EACX,MAAM,CAAC,KACN,OAAO,CAAC,CAAC,CAGX,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,GAAG,GAAU,CAAC,GAAG,OAAO,EAAE,KAAK,MAAM,KAAG,OAAO,CAAC,CAAC,CAG7D,CAAC"}
|
package/dist/api/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAS7C,QAAA,MAAM,MAAM,EAAE,aAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/api/client.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAS7C,QAAA,MAAM,MAAM,EAAE,aAA8B,CAAC;AAgD7C,eAAe,MAAM,CAAC"}
|
package/dist/api/constants.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/api/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,mCAAmC,CAAC"}
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/api/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,mCAAmC,CAAC;AAE3D,eAAO,MAAM,qBAAqB,UAAW,CAAC"}
|
|
@@ -24,4 +24,11 @@ export interface ConditionPage {
|
|
|
24
24
|
* @returns Promise resolving to a ConditionPage with conditions and total count
|
|
25
25
|
*/
|
|
26
26
|
export declare function getConditionPage(patientUUID: string, count?: number, page?: number): Promise<ConditionPage>;
|
|
27
|
+
/**
|
|
28
|
+
* Marks a condition as inactive via FHIR PUT.
|
|
29
|
+
* Preserves all existing fields from the raw resource; only clinicalStatus is changed.
|
|
30
|
+
* @param condition - The full raw FHIR Condition resource to update
|
|
31
|
+
* @returns Promise resolving to the updated Condition resource
|
|
32
|
+
*/
|
|
33
|
+
export declare function markConditionAsInactive(condition: Condition): Promise<Condition>;
|
|
27
34
|
//# sourceMappingURL=conditionService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conditionService.d.ts","sourceRoot":"","sources":["../../src/conditionService/conditionService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"conditionService.d.ts","sourceRoot":"","sources":["../../src/conditionService/conditionService.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAS5C;;;;GAIG;AACH,wBAAsB,mBAAmB,CACvC,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,MAAM,CAAC,CAEjB;AAED;;;;GAIG;AACH,wBAAsB,aAAa,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,EAAE,CAAC,CAQ7E;AAED,MAAM,WAAW,aAAa;IAC5B,UAAU,EAAE,SAAS,EAAE,CAAC;IACxB,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;CAC3B;AAED;;;;;;;GAOG;AACH,wBAAsB,gBAAgB,CACpC,WAAW,EAAE,MAAM,EACnB,KAAK,GAAE,MAAW,EAClB,IAAI,GAAE,MAAU,GACf,OAAO,CAAC,aAAa,CAAC,CAaxB;AAED;;;;;GAKG;AACH,wBAAsB,uBAAuB,CAC3C,SAAS,EAAE,SAAS,GACnB,OAAO,CAAC,SAAS,CAAC,CAkBpB"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const CONDITION_RESOURCE_URL: string;
|
|
1
2
|
export declare const PATIENT_CONDITION_RESOURCE_URL: (patientUUID: string) => string;
|
|
2
3
|
export declare const PATIENT_CONDITION_PAGE_URL: (patientUUID: string, count?: number, offset?: number) => string;
|
|
3
4
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/conditionService/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/conditionService/constants.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,sBAAsB,QAAiC,CAAC;AAGrE,eAAO,MAAM,8BAA8B,GAAI,aAAa,MAAM,WAEoD,CAAC;AAGvH,eAAO,MAAM,0BAA0B,GACrC,aAAa,MAAM,EACnB,QAAO,MAAW,EAClB,SAAQ,MAAU,WAGiI,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { getConditions, getConditionPage, type ConditionPage, } from './conditionService';
|
|
1
|
+
export { getConditions, getConditionPage, markConditionAsInactive, type ConditionPage, } from './conditionService';
|
|
2
2
|
export { type ConditionInputEntry } from './models';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/conditionService/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,KAAK,aAAa,GACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/conditionService/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,gBAAgB,EAChB,uBAAuB,EACvB,KAAK,aAAa,GACnB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC"}
|
|
@@ -10,50 +10,7 @@ export declare const mockVisitBundle: {
|
|
|
10
10
|
relation: string;
|
|
11
11
|
url: string;
|
|
12
12
|
}[];
|
|
13
|
-
entry:
|
|
14
|
-
fullUrl: string;
|
|
15
|
-
resource: {
|
|
16
|
-
resourceType: string;
|
|
17
|
-
id: string;
|
|
18
|
-
meta: {
|
|
19
|
-
versionId: string;
|
|
20
|
-
lastUpdated: string;
|
|
21
|
-
tag: {
|
|
22
|
-
system: string;
|
|
23
|
-
code: string;
|
|
24
|
-
display: string;
|
|
25
|
-
}[];
|
|
26
|
-
};
|
|
27
|
-
status: string;
|
|
28
|
-
class: {
|
|
29
|
-
system: string;
|
|
30
|
-
code: string;
|
|
31
|
-
};
|
|
32
|
-
type: {
|
|
33
|
-
coding: {
|
|
34
|
-
system: string;
|
|
35
|
-
code: string;
|
|
36
|
-
display: string;
|
|
37
|
-
}[];
|
|
38
|
-
}[];
|
|
39
|
-
subject: {
|
|
40
|
-
reference: string;
|
|
41
|
-
type: string;
|
|
42
|
-
display: string;
|
|
43
|
-
};
|
|
44
|
-
period: {
|
|
45
|
-
start: string;
|
|
46
|
-
end: string;
|
|
47
|
-
};
|
|
48
|
-
location: {
|
|
49
|
-
location: {
|
|
50
|
-
reference: string;
|
|
51
|
-
type: string;
|
|
52
|
-
display: string;
|
|
53
|
-
};
|
|
54
|
-
}[];
|
|
55
|
-
};
|
|
56
|
-
} | {
|
|
13
|
+
entry: {
|
|
57
14
|
fullUrl: string;
|
|
58
15
|
resource: {
|
|
59
16
|
resourceType: string;
|
|
@@ -86,7 +43,7 @@ export declare const mockVisitBundle: {
|
|
|
86
43
|
};
|
|
87
44
|
period: {
|
|
88
45
|
start: string;
|
|
89
|
-
end?:
|
|
46
|
+
end?: string;
|
|
90
47
|
};
|
|
91
48
|
location: {
|
|
92
49
|
location: {
|
|
@@ -96,7 +53,7 @@ export declare const mockVisitBundle: {
|
|
|
96
53
|
};
|
|
97
54
|
}[];
|
|
98
55
|
};
|
|
99
|
-
}
|
|
56
|
+
}[];
|
|
100
57
|
};
|
|
101
58
|
export declare const mockActiveVisit: {
|
|
102
59
|
resourceType: string;
|
|
@@ -129,47 +86,7 @@ export declare const mockActiveVisit: {
|
|
|
129
86
|
};
|
|
130
87
|
period: {
|
|
131
88
|
start: string;
|
|
132
|
-
end
|
|
133
|
-
};
|
|
134
|
-
location: {
|
|
135
|
-
location: {
|
|
136
|
-
reference: string;
|
|
137
|
-
type: string;
|
|
138
|
-
display: string;
|
|
139
|
-
};
|
|
140
|
-
}[];
|
|
141
|
-
} | {
|
|
142
|
-
resourceType: string;
|
|
143
|
-
id: string;
|
|
144
|
-
meta: {
|
|
145
|
-
versionId: string;
|
|
146
|
-
lastUpdated: string;
|
|
147
|
-
tag: {
|
|
148
|
-
system: string;
|
|
149
|
-
code: string;
|
|
150
|
-
display: string;
|
|
151
|
-
}[];
|
|
152
|
-
};
|
|
153
|
-
status: string;
|
|
154
|
-
class: {
|
|
155
|
-
system: string;
|
|
156
|
-
code: string;
|
|
157
|
-
};
|
|
158
|
-
type: {
|
|
159
|
-
coding: {
|
|
160
|
-
system: string;
|
|
161
|
-
code: string;
|
|
162
|
-
display: string;
|
|
163
|
-
}[];
|
|
164
|
-
}[];
|
|
165
|
-
subject: {
|
|
166
|
-
reference: string;
|
|
167
|
-
type: string;
|
|
168
|
-
display: string;
|
|
169
|
-
};
|
|
170
|
-
period: {
|
|
171
|
-
start: string;
|
|
172
|
-
end?: undefined;
|
|
89
|
+
end?: string;
|
|
173
90
|
};
|
|
174
91
|
location: {
|
|
175
92
|
location: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mocks.d.ts","sourceRoot":"","sources":["../../../src/encounterService/__mocks__/mocks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mocks.d.ts","sourceRoot":"","sources":["../../../src/encounterService/__mocks__/mocks.ts"],"names":[],"mappings":"AAyDA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAnDT,MAAM;sBAAQ,MAAM;;;;;;;;;;;CA4GtC,CAAC;AAGF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA/GT,MAAM;cAAQ,MAAM;;;;;;;;;CA+GyB,CAAC;AAEjE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;CA8B9B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/encounterService/constants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,GAAI,aAAa,MAAM,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/encounterService/constants.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,GAAI,aAAa,MAAM,WAEsB,CAAC;AAE7E,eAAO,MAAM,kCAAkC,GAAI,eAAe,MAAM,WACA,CAAC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Encounter } from 'fhir/r4';
|
|
2
|
+
import { MatchReasonCode } from './constants';
|
|
3
|
+
export interface EncounterSessionState {
|
|
4
|
+
matchReasons: MatchReasonCode[];
|
|
5
|
+
activeEncounter: Encounter | null;
|
|
6
|
+
/** true when button should be shown (MATCHED | LOCATION_MISMATCH | PROVIDER_MISMATCH) */
|
|
7
|
+
canEditOrCreate: boolean;
|
|
8
|
+
isLoading: boolean;
|
|
9
|
+
}
|
|
10
|
+
type Listener = () => void;
|
|
11
|
+
/** Subscribe to store changes — compatible with useSyncExternalStore. */
|
|
12
|
+
export declare function subscribeEncounterSession(listener: Listener): () => void;
|
|
13
|
+
/** Read current snapshot — compatible with useSyncExternalStore. */
|
|
14
|
+
export declare function getEncounterSessionSnapshot(): EncounterSessionState;
|
|
15
|
+
/** Write encounter match decision into the store (called by PatientHeader). */
|
|
16
|
+
export declare function setEncounterSessionDecision(decision: {
|
|
17
|
+
reasons: MatchReasonCode[];
|
|
18
|
+
encounter: Encounter | null;
|
|
19
|
+
}): void;
|
|
20
|
+
/** Mark as loading while encounter session is being resolved. */
|
|
21
|
+
export declare function setEncounterSessionLoading(isLoading: boolean): void;
|
|
22
|
+
/** Reset to initial state — called by PatientHeader on patient UUID change. */
|
|
23
|
+
export declare function resetEncounterSession(): void;
|
|
24
|
+
/**
|
|
25
|
+
* React hook that subscribes to the encounter session store and returns
|
|
26
|
+
* the current state, re-rendering on every store update.
|
|
27
|
+
*/
|
|
28
|
+
export declare function useEncounterSessionStore(): EncounterSessionState;
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=encounterSessionStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"encounterSessionStore.d.ts","sourceRoot":"","sources":["../../src/encounterSessionService/encounterSessionStore.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAEzC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAEnD,MAAM,WAAW,qBAAqB;IACpC,YAAY,EAAE,eAAe,EAAE,CAAC;IAChC,eAAe,EAAE,SAAS,GAAG,IAAI,CAAC;IAClC,yFAAyF;IACzF,eAAe,EAAE,OAAO,CAAC;IACzB,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,KAAK,QAAQ,GAAG,MAAM,IAAI,CAAC;AA2B3B,yEAAyE;AACzE,wBAAgB,yBAAyB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,IAAI,CAKxE;AAED,oEAAoE;AACpE,wBAAgB,2BAA2B,IAAI,qBAAqB,CAEnE;AAED,+EAA+E;AAC/E,wBAAgB,2BAA2B,CAAC,QAAQ,EAAE;IACpD,OAAO,EAAE,eAAe,EAAE,CAAC;IAC3B,SAAS,EAAE,SAAS,GAAG,IAAI,CAAC;CAC7B,GAAG,IAAI,CAWP;AAED,iEAAiE;AACjE,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,OAAO,GAAG,IAAI,CAGnE;AAED,+EAA+E;AAC/E,wBAAgB,qBAAqB,IAAI,IAAI,CAG5C;AAED;;;GAGG;AACH,wBAAgB,wBAAwB,IAAI,qBAAqB,CAKhE"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { findActiveEncounterInSession } from './encounterSessionService';
|
|
2
2
|
export { CONSULTATION_ENCOUNTER_TYPE_UUID } from './constants';
|
|
3
3
|
export { resolveEncounterMatchDecision, canResumeOwnInSessionEncounter, type EncounterMatchDecision, type MatchReasonCode, MATCH_REASON_MESSAGES, } from './encounterMatchDecisionMapper';
|
|
4
|
+
export { useEncounterSessionStore, setEncounterSessionDecision, setEncounterSessionLoading, resetEncounterSession, subscribeEncounterSession, getEncounterSessionSnapshot, type EncounterSessionState, } from './encounterSessionStore';
|
|
4
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/encounterSessionService/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EACL,6BAA6B,EAC7B,8BAA8B,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,qBAAqB,GACtB,MAAM,gCAAgC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/encounterSessionService/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAC;AACzE,OAAO,EAAE,gCAAgC,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EACL,6BAA6B,EAC7B,8BAA8B,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,eAAe,EACpB,qBAAqB,GACtB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,wBAAwB,EACxB,2BAA2B,EAC3B,0BAA0B,EAC1B,qBAAqB,EACrB,yBAAyB,EACzB,2BAA2B,EAC3B,KAAK,qBAAqB,GAC3B,MAAM,yBAAyB,CAAC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { get, post, put, patch, del } from './api';
|
|
2
2
|
export { initAppI18n, useTranslation, normalizeTranslationKey, getUserPreferredLocale, } from './i18n';
|
|
3
3
|
export { useCamera } from './cameraService';
|
|
4
|
-
export { getPatientById, getFormattedPatientById, searchPatientByNameOrId, searchPatientByCustomAttribute, getIdentifierTypes, getPrimaryIdentifierType, createPatient, updatePatient, getIdentifierData, getGenders, getAddressHierarchyEntries, getOrderedAddressHierarchyLevels,
|
|
4
|
+
export { getPatientById, getFormattedPatientById, searchPatientByNameOrId, searchPatientByCustomAttribute, getIdentifierTypes, getPrimaryIdentifierType, createPatient, updatePatient, createFhirPatient, updateFhirPatient, generateIdentifier, getIdentifierData, getGenders, getAddressHierarchyEntries, getOrderedAddressHierarchyLevels, getPatientPhotoDataUrl, getPatientProfile, getPersonAttributeTypes, getRelationshipTypes, type FormattedPatientData, type PatientSearchResult, type PatientSearchResultBundle, type IdentifierSource, type IdentifierType, type IdentifierTypesResponse, type CreatePatientRequest, type CreatePatientResponse, type PatientName, type PatientAddress, type PatientIdentifier, type PatientAttribute, type AddressHierarchyEntry, type OrderedAddressHierarchyLevel, type OrderedAddressHierarchyLevels, type PatientProfileResponse, type PersonAttributeType, type PersonAttributeTypesResponse, type ConceptAnswer, type PersonAttributeConcept, type PatientSearchField, type AppointmentSearchField, type ExpectedFieldConfig, type SearchActionConfig, AttributeFormat, AttributeInputType, getInputTypeForFormat, isBooleanFormat, isConceptFormat, isNumberFormat, isDateFormat, isTextFormat, MAX_PATIENT_AGE_YEARS, MAX_NAME_LENGTH, MAX_PHONE_NUMBER_LENGTH, } from './patientService';
|
|
5
5
|
export { getVisitTypes, checkIfActiveVisitExists, createVisitForPatient, getActiveVisitByPatient, type VisitType, type VisitTypes, type VisitData, type ActiveVisit, } from './visitService';
|
|
6
6
|
export { searchAppointmentsByAttribute, updateAppointmentStatus, getAppointmentById, getUpcomingAppointments, getPastAppointments, getUpcomingAppointmentsPage, getPastAppointmentsPage, type AppointmentPage, getAllAppointmentServices, deleteAppointmentService, APPOINTMENT_STATUSES, APPOINTMENT_IDENTIFIER_SYSTEM, type AppointmentService, } from './appointmentService';
|
|
7
7
|
export { getFormattedError } from './errorHandling';
|
|
@@ -9,7 +9,7 @@ export { capitalize, generateId, generateUUID, getCookieByName, deleteCookie, se
|
|
|
9
9
|
export { type FormatDateResult, calculateAge, formatDateTime, formatDateDistance, calculateOnsetDate, sortByDate, DEFAULT_DATE_FORMAT, DEFAULT_DATE_FORMAT_STORAGE_KEY, DEFAULT_TIME_FORMAT, getTodayDate, getFormattedAge, DURATION_UNIT_TO_DAYS, calculateEndDate, doDateRangesOverlap, } from './date';
|
|
10
10
|
export { type Notification, notificationService } from './notification';
|
|
11
11
|
export { type FormattedAllergy, AllergyStatus, AllergySeverity, type AllergenType, getAllergies, getFormattedAllergies, fetchAndFormatAllergenConcepts, fetchReactionConcepts, } from './allergyService';
|
|
12
|
-
export { getConditions, getConditionPage, type ConditionPage, type ConditionInputEntry, } from './conditionService';
|
|
12
|
+
export { getConditions, getConditionPage, markConditionAsInactive, type ConditionPage, type ConditionInputEntry, } from './conditionService';
|
|
13
13
|
export { getPatientDiagnoses, getDiagnosesPage, type DiagnosisPage, type Diagnosis, type DiagnosisInputEntry, type DiagnosesByDate, } from './diagnosesService';
|
|
14
14
|
export { searchConcepts, searchFHIRConcepts, searchFHIRConceptsByName, getConceptById, searchConceptByName, type ConceptSearch, type ConceptClass, type ConceptData, } from './conceptService';
|
|
15
15
|
export { getPatientMedications, getPatientMedicationBundle, fetchMedicationOrdersMetadata, searchMedications, getVaccinations, type FormattedMedicationRequest, type MedicationRequest, MedicationStatus, type MedicationOrdersMetadataResponse, type Frequency as MedicationFrequency, type OrderAttribute, } from './medicationRequestService';
|
|
@@ -23,7 +23,7 @@ export { getCurrentUser, getUserLoginLocation, getAvailableLocations, getDefault
|
|
|
23
23
|
export { USER_PINNED_PREFERENCE_URL } from './observationFormsService/constants';
|
|
24
24
|
export { getPatientObservationsBundle, getPatientObservationsWithEncounterBundle, getPatientObservations, } from './observationService';
|
|
25
25
|
export { getCurrentProvider, type Provider, type Person, } from './providerService';
|
|
26
|
-
export { findActiveEncounterInSession, resolveEncounterMatchDecision, canResumeOwnInSessionEncounter, type EncounterMatchDecision, type MatchReasonCode, MATCH_REASON_MESSAGES, CONSULTATION_ENCOUNTER_TYPE_UUID, } from './encounterSessionService';
|
|
26
|
+
export { findActiveEncounterInSession, resolveEncounterMatchDecision, canResumeOwnInSessionEncounter, type EncounterMatchDecision, type MatchReasonCode, MATCH_REASON_MESSAGES, CONSULTATION_ENCOUNTER_TYPE_UUID, useEncounterSessionStore, setEncounterSessionDecision, setEncounterSessionLoading, resetEncounterSession, subscribeEncounterSession, getEncounterSessionSnapshot, type EncounterSessionState, } from './encounterSessionService';
|
|
27
27
|
export { getActiveVisit, shouldEnableEncounterFilter, getObservationsBundleByEncounterUuid, type FormsEncounter, } from './encounterService';
|
|
28
28
|
export { getEncountersAndVisitsForEOC, type EpisodeOfCareDataType, } from './episodeOfCareService';
|
|
29
29
|
export { dispatchAuditEvent, AUDIT_LOG_EVENT_DETAILS, initializeAuditListener, type AuditEventType, logAuditEvent, } from './auditLogService';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,OAAO,CAAC;AACnD,OAAO,EACL,WAAW,EACX,cAAc,EACd,uBAAuB,EACvB,sBAAsB,GACvB,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,uBAAuB,EACvB,8BAA8B,EAC9B,kBAAkB,EAClB,wBAAwB,EACxB,aAAa,EACb,aAAa,EACb,iBAAiB,EACjB,UAAU,EACV,0BAA0B,EAC1B,gCAAgC,EAChC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|