@openmrs/esm-emr-api 9.0.3-pre.4208 → 9.0.3-pre.4211
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/.turbo/turbo-build.log +1 -1
- package/dist/location.js +1 -1
- package/dist/visit-type.js +1 -1
- package/package.json +4 -4
- package/src/location.ts +1 -1
- package/src/visit-type.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/dist/location.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** @module @category API */ import { openmrsObservableFetch, restBaseUrl } from "@openmrs/esm-api";
|
|
2
|
-
import { map, take } from "rxjs/operators";
|
|
2
|
+
import { map, take } from "rxjs/operators/index.js";
|
|
3
3
|
export function toLocationObject(openmrsRestForm) {
|
|
4
4
|
return {
|
|
5
5
|
uuid: openmrsRestForm.uuid,
|
package/dist/visit-type.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** @module @category API */ import { openmrsObservableFetch, restBaseUrl } from "@openmrs/esm-api";
|
|
2
|
-
import { map, take } from "rxjs/operators";
|
|
2
|
+
import { map, take } from "rxjs/operators/index.js";
|
|
3
3
|
export function toVisitTypeObject(openmrsRestForm) {
|
|
4
4
|
return {
|
|
5
5
|
uuid: openmrsRestForm.uuid,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-emr-api",
|
|
3
|
-
"version": "9.0.3-pre.
|
|
3
|
+
"version": "9.0.3-pre.4211",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "The javascript module for interacting with the OpenMRS API",
|
|
6
6
|
"type": "module",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"@openmrs/esm-state": "9.x"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@openmrs/esm-api": "9.0.3-pre.
|
|
66
|
-
"@openmrs/esm-offline": "9.0.3-pre.
|
|
67
|
-
"@openmrs/esm-state": "9.0.3-pre.
|
|
65
|
+
"@openmrs/esm-api": "9.0.3-pre.4211",
|
|
66
|
+
"@openmrs/esm-offline": "9.0.3-pre.4211",
|
|
67
|
+
"@openmrs/esm-state": "9.0.3-pre.4211",
|
|
68
68
|
"@swc/cli": "0.8.0",
|
|
69
69
|
"@swc/core": "1.15.18",
|
|
70
70
|
"@vitest/coverage-v8": "^4.0.18",
|
package/src/location.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @module @category API */
|
|
2
2
|
import { openmrsObservableFetch, restBaseUrl } from '@openmrs/esm-api';
|
|
3
3
|
import type { Observable } from 'rxjs';
|
|
4
|
-
import { map, take } from 'rxjs/operators';
|
|
4
|
+
import { map, take } from 'rxjs/operators/index.js';
|
|
5
5
|
import type { Location } from './types';
|
|
6
6
|
|
|
7
7
|
export function toLocationObject(openmrsRestForm: any): Location {
|
package/src/visit-type.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @module @category API */
|
|
2
2
|
import { openmrsObservableFetch, restBaseUrl } from '@openmrs/esm-api';
|
|
3
3
|
import type { Observable } from 'rxjs';
|
|
4
|
-
import { map, take } from 'rxjs/operators';
|
|
4
|
+
import { map, take } from 'rxjs/operators/index.js';
|
|
5
5
|
import { type VisitType } from './types';
|
|
6
6
|
|
|
7
7
|
export function toVisitTypeObject(openmrsRestForm: any): VisitType {
|