oro-sdk 2.30.0 → 3.1.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 +502 -921
- 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 +502 -921
- package/dist/oro-sdk.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +2 -0
- package/src/index.ts +5 -0
- package/LICENSE +0 -21
package/dist/client.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Consult, ConsultRequest, ConsultService, DataCreateResponse, DiagnosisService, Document, DocumentType, Grant, GuardService, IdentityResponse, LocalizedData, LockboxManifest, Meta, Metadata, MetadataCategory, PopulatedWorkflowData, Practice, PracticeService, TellerService, TokenData, TosAndCpAcceptanceRequest, Uuid, VaultIndex, VaultService, WorkflowData, WorkflowService } from 'oro-sdk-apis';
|
1
|
+
import { Consult, ConsultRequest, ConsultService, DataCreateResponse, DiagnosisService, Document, DocumentType, Grant, GuardService, IdentityResponse, LocalizedData, LockboxManifest, Meta, Metadata, MetadataCategory, PopulatedWorkflowData, Practice, PracticeService, SearchService, TellerService, TokenData, TosAndCpAcceptanceRequest, Uuid, VaultIndex, VaultService, WorkflowData, WorkflowService } from 'oro-sdk-apis';
|
2
2
|
import * as OroToolbox from 'oro-toolbox';
|
3
3
|
import { LocalEncryptedData, RecoveryData, RegisterPatientOutput, UserPreference } from './models';
|
4
4
|
export declare class OroClient {
|
@@ -6,6 +6,7 @@ export declare class OroClient {
|
|
6
6
|
tellerClient: TellerService;
|
7
7
|
vaultClient: VaultService;
|
8
8
|
guardClient: GuardService;
|
9
|
+
searchClient: SearchService;
|
9
10
|
practiceClient: PracticeService;
|
10
11
|
consultClient: ConsultService;
|
11
12
|
workflowClient: WorkflowService;
|
@@ -16,7 +17,7 @@ export declare class OroClient {
|
|
16
17
|
private cachedMetadataGrants;
|
17
18
|
private cachedManifest;
|
18
19
|
private vaultIndex?;
|
19
|
-
constructor(toolbox: typeof OroToolbox, tellerClient: TellerService, vaultClient: VaultService, guardClient: GuardService, practiceClient: PracticeService, consultClient: ConsultService, workflowClient: WorkflowService, diagnosisClient: DiagnosisService, authenticationCallback?: ((err: Error) => void) | undefined);
|
20
|
+
constructor(toolbox: typeof OroToolbox, tellerClient: TellerService, vaultClient: VaultService, guardClient: GuardService, searchClient: SearchService, practiceClient: PracticeService, consultClient: ConsultService, workflowClient: WorkflowService, diagnosisClient: DiagnosisService, authenticationCallback?: ((err: Error) => void) | undefined);
|
20
21
|
/**
|
21
22
|
* clears the vaultIndex and cached metadata grants
|
22
23
|
*/
|
package/dist/index.d.ts
CHANGED
@@ -8,6 +8,7 @@ export declare let wasmPath: string;
|
|
8
8
|
* @param tellerBaseURL the teller service base URL
|
9
9
|
* @param vaultBaseURL the vault service base URL
|
10
10
|
* @param guardBaseURL the guard service base URL
|
11
|
+
* @param searchbaseURL the search service base URL
|
11
12
|
* @param practiceBaseURL the practice service base URL
|
12
13
|
* @param consultBaseURL the consult service base URL
|
13
14
|
* @param workflowBaseURL the workflow service base URL
|
@@ -15,7 +16,7 @@ export declare let wasmPath: string;
|
|
15
16
|
* @param authenticationCallback (optional) authenticationCallback the authentification callback
|
16
17
|
* @returns an instance of OroClient
|
17
18
|
*/
|
18
|
-
declare const init: (toolbox: OroToolbox, tellerBaseURL: string, vaultBaseURL: string, guardBaseURL: string, practiceBaseURL: string, consultBaseURL: string, workflowBaseURL: string, diagnosisBaseURL: string, authenticationCallback?: ((err: Error) => void) | undefined) => OroClient;
|
19
|
+
declare const init: (toolbox: OroToolbox, tellerBaseURL: string, vaultBaseURL: string, guardBaseURL: string, searchBaseURL: string, practiceBaseURL: string, consultBaseURL: string, workflowBaseURL: string, diagnosisBaseURL: string, authenticationCallback?: ((err: Error) => void) | undefined) => OroClient;
|
19
20
|
export { OroClient } from './client';
|
20
21
|
export * from 'oro-sdk-apis';
|
21
22
|
export * from './models';
|