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/dist/oro-sdk.esm.js
CHANGED
@@ -1905,11 +1905,12 @@ function _buildLegacyVaultIndex() {
|
|
1905
1905
|
}
|
1906
1906
|
|
1907
1907
|
var OroClient = /*#__PURE__*/function () {
|
1908
|
-
function OroClient(toolbox, tellerClient, vaultClient, guardClient, practiceClient, consultClient, workflowClient, diagnosisClient, authenticationCallback) {
|
1908
|
+
function OroClient(toolbox, tellerClient, vaultClient, guardClient, searchClient, practiceClient, consultClient, workflowClient, diagnosisClient, authenticationCallback) {
|
1909
1909
|
this.toolbox = toolbox;
|
1910
1910
|
this.tellerClient = tellerClient;
|
1911
1911
|
this.vaultClient = vaultClient;
|
1912
1912
|
this.guardClient = guardClient;
|
1913
|
+
this.searchClient = searchClient;
|
1913
1914
|
this.practiceClient = practiceClient;
|
1914
1915
|
this.consultClient = consultClient;
|
1915
1916
|
this.workflowClient = workflowClient;
|
@@ -5143,6 +5144,7 @@ var wasmPath = 'node_modules/oro-toolbox';
|
|
5143
5144
|
* @param tellerBaseURL the teller service base URL
|
5144
5145
|
* @param vaultBaseURL the vault service base URL
|
5145
5146
|
* @param guardBaseURL the guard service base URL
|
5147
|
+
* @param searchbaseURL the search service base URL
|
5146
5148
|
* @param practiceBaseURL the practice service base URL
|
5147
5149
|
* @param consultBaseURL the consult service base URL
|
5148
5150
|
* @param workflowBaseURL the workflow service base URL
|
@@ -5151,11 +5153,12 @@ var wasmPath = 'node_modules/oro-toolbox';
|
|
5151
5153
|
* @returns an instance of OroClient
|
5152
5154
|
*/
|
5153
5155
|
|
5154
|
-
var init = function init(toolbox, tellerBaseURL, vaultBaseURL, guardBaseURL, practiceBaseURL, consultBaseURL, workflowBaseURL, diagnosisBaseURL, authenticationCallback) {
|
5156
|
+
var init = function init(toolbox, tellerBaseURL, vaultBaseURL, guardBaseURL, searchBaseURL, practiceBaseURL, consultBaseURL, workflowBaseURL, diagnosisBaseURL, authenticationCallback) {
|
5155
5157
|
var _initApis = initApis__default({
|
5156
5158
|
tellerBaseURL: tellerBaseURL,
|
5157
5159
|
vaultBaseURL: vaultBaseURL,
|
5158
5160
|
guardBaseURL: guardBaseURL,
|
5161
|
+
searchBaseURL: searchBaseURL,
|
5159
5162
|
practiceBaseURL: practiceBaseURL,
|
5160
5163
|
consultBaseURL: consultBaseURL,
|
5161
5164
|
workflowBaseURL: workflowBaseURL,
|
@@ -5166,10 +5169,11 @@ var init = function init(toolbox, tellerBaseURL, vaultBaseURL, guardBaseURL, pra
|
|
5166
5169
|
consultService = _initApis.consultService,
|
5167
5170
|
vaultService = _initApis.vaultService,
|
5168
5171
|
guardService = _initApis.guardService,
|
5172
|
+
searchService = _initApis.searchService,
|
5169
5173
|
workflowService = _initApis.workflowService,
|
5170
5174
|
diagnosisService = _initApis.diagnosisService;
|
5171
5175
|
|
5172
|
-
var client = new OroClient(toolbox, tellerService, vaultService, guardService, practiceService, consultService, workflowService, diagnosisService, authenticationCallback);
|
5176
|
+
var client = new OroClient(toolbox, tellerService, vaultService, guardService, searchService, practiceService, consultService, workflowService, diagnosisService, authenticationCallback);
|
5173
5177
|
return client;
|
5174
5178
|
};
|
5175
5179
|
|