oro-sdk-apis 1.58.1 → 2.0.0
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/models/consult.d.ts +2 -1
- package/dist/models/practice.d.ts +4 -4
- package/dist/oro-sdk-apis.cjs.development.js +1 -0
- package/dist/oro-sdk-apis.cjs.development.js.map +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js +1 -1
- package/dist/oro-sdk-apis.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk-apis.esm.js +1 -0
- package/dist/oro-sdk-apis.esm.js.map +1 -1
- package/package.json +5 -4
- package/src/models/consult.ts +1 -0
- package/src/models/practice.ts +4 -4
- package/LICENSE +0 -21
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "
|
2
|
+
"version": "2.0.0",
|
3
3
|
"main": "dist/index.js",
|
4
4
|
"typings": "dist/index.d.ts",
|
5
5
|
"files": [
|
@@ -13,13 +13,14 @@
|
|
13
13
|
"scripts": {
|
14
14
|
"link:watch": "npm link && tsdx watch",
|
15
15
|
"start": "tsdx watch",
|
16
|
-
"build": "tsdx
|
16
|
+
"build:dep": "npm install tsdx@\"^0.14.1\"",
|
17
|
+
"build": "npm run build:dep && tsdx build",
|
17
18
|
"test": "tsdx test",
|
18
19
|
"lint": "tsdx lint",
|
19
|
-
"prepare": "
|
20
|
+
"prepare": "npm run build",
|
20
21
|
"size": "size-limit",
|
21
22
|
"analyze": "size-limit --why",
|
22
|
-
"package": "
|
23
|
+
"package": "npm run build && npm publish",
|
23
24
|
"pretty": "prettier --config ../../.prettierrc.yaml --write './src/**/*.{ts,js,json,md}' && prettier --write './*.md'"
|
24
25
|
},
|
25
26
|
"name": "oro-sdk-apis",
|
package/src/models/consult.ts
CHANGED
package/src/models/practice.ts
CHANGED
@@ -356,13 +356,13 @@ export type PracticeConfigPractitionerSearch = PracticeConfig<
|
|
356
356
|
PracticeConfigKind.PractitionerSearch,
|
357
357
|
{
|
358
358
|
/**
|
359
|
-
*
|
359
|
+
* Disable search indexing a consultation on its creation
|
360
360
|
*/
|
361
|
-
|
361
|
+
disableSearchIndexing?: boolean
|
362
362
|
/**
|
363
|
-
*
|
363
|
+
* Disable search for consultations from the ConsultList
|
364
364
|
*/
|
365
|
-
|
365
|
+
disableSearch?: boolean
|
366
366
|
}
|
367
367
|
>
|
368
368
|
|
package/LICENSE
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2021 ORO Health Inc.
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
13
|
-
copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
SOFTWARE.
|