oro-sdk 2.31.0 → 3.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/client.d.ts +3 -2
- package/dist/index.d.ts +2 -1
- package/dist/oro-sdk.cjs.development.js +7 -3
- package/dist/oro-sdk.cjs.development.js.map +1 -1
- package/dist/oro-sdk.cjs.production.min.js +1 -1
- package/dist/oro-sdk.cjs.production.min.js.map +1 -1
- package/dist/oro-sdk.esm.js +7 -3
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2 -0
- package/src/index.ts +5 -0
package/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"version": "
|
2
|
+
"version": "3.0.0",
|
3
3
|
"main": "dist/index.js",
|
4
4
|
"typings": "dist/index.d.ts",
|
5
5
|
"files": [
|
@@ -54,7 +54,7 @@
|
|
54
54
|
"form-data": "^4.0.0",
|
55
55
|
"formdata-node": "^4.3.1",
|
56
56
|
"idb-keyval": "^5.0.6",
|
57
|
-
"oro-sdk-apis": "1.
|
57
|
+
"oro-sdk-apis": "1.37.0",
|
58
58
|
"oro-toolbox": "0.0.6",
|
59
59
|
"uuid": "^8.3.2"
|
60
60
|
}
|
package/src/client.ts
CHANGED
@@ -29,6 +29,7 @@ import {
|
|
29
29
|
PracticeService,
|
30
30
|
PreferenceMeta,
|
31
31
|
RecoveryMeta,
|
32
|
+
SearchService,
|
32
33
|
SecretShard,
|
33
34
|
TellerService,
|
34
35
|
TokenData,
|
@@ -76,6 +77,7 @@ export class OroClient {
|
|
76
77
|
public tellerClient: TellerService,
|
77
78
|
public vaultClient: VaultService,
|
78
79
|
public guardClient: GuardService,
|
80
|
+
public searchClient: SearchService,
|
79
81
|
public practiceClient: PracticeService,
|
80
82
|
public consultClient: ConsultService,
|
81
83
|
public workflowClient: WorkflowService,
|
package/src/index.ts
CHANGED
@@ -12,6 +12,7 @@ export let wasmPath = 'node_modules/oro-toolbox'
|
|
12
12
|
* @param tellerBaseURL the teller service base URL
|
13
13
|
* @param vaultBaseURL the vault service base URL
|
14
14
|
* @param guardBaseURL the guard service base URL
|
15
|
+
* @param searchbaseURL the search service base URL
|
15
16
|
* @param practiceBaseURL the practice service base URL
|
16
17
|
* @param consultBaseURL the consult service base URL
|
17
18
|
* @param workflowBaseURL the workflow service base URL
|
@@ -24,6 +25,7 @@ const init = (
|
|
24
25
|
tellerBaseURL: string,
|
25
26
|
vaultBaseURL: string,
|
26
27
|
guardBaseURL: string,
|
28
|
+
searchBaseURL: string,
|
27
29
|
practiceBaseURL: string,
|
28
30
|
consultBaseURL: string,
|
29
31
|
workflowBaseURL: string,
|
@@ -36,6 +38,7 @@ const init = (
|
|
36
38
|
consultService,
|
37
39
|
vaultService,
|
38
40
|
guardService,
|
41
|
+
searchService,
|
39
42
|
workflowService,
|
40
43
|
diagnosisService,
|
41
44
|
} = initApis(
|
@@ -43,6 +46,7 @@ const init = (
|
|
43
46
|
tellerBaseURL,
|
44
47
|
vaultBaseURL,
|
45
48
|
guardBaseURL,
|
49
|
+
searchBaseURL,
|
46
50
|
practiceBaseURL,
|
47
51
|
consultBaseURL,
|
48
52
|
workflowBaseURL,
|
@@ -56,6 +60,7 @@ const init = (
|
|
56
60
|
tellerService!,
|
57
61
|
vaultService!,
|
58
62
|
guardService!,
|
63
|
+
searchService!,
|
59
64
|
practiceService!,
|
60
65
|
consultService!,
|
61
66
|
workflowService!,
|