web-core-tcm 0.0.19 → 0.0.20

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/api/index.ts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-core-tcm",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "Core",
5
5
  "productName": "Core",
6
6
  "author": "wywywywywywywywywy <qa123456_0714@qq.com>",
package/src/api/index.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export * as AlgorithmApi from './algorithm/index'
2
- export * as AuthorizationApi from './authorization/index'
2
+ import * as AuthorizationApi from './authorization/index'
3
3
  export * as CheckApi from './check/index'
4
4
  export * as ConfigApi from './config/index'
5
- export * as DoctorApi from './doctor/index'
5
+ import * as DoctorApi from './doctor/index'
6
6
  export * as MetricApi from './metric/index'
7
7
  export * as OAuthApi from './oauth/index'
8
8
  export * as OutPatientApi from './outpatient/index'
@@ -11,3 +11,5 @@ export * as PrescriptionApi from './prescription/index'
11
11
  export * as ScientistApi from './scientist/index'
12
12
  export * as DeviceApi from './device/device'
13
13
 
14
+ export { DoctorApi , AuthorizationApi}
15
+