gdc-common-utils-ts 2.7.5 → 2.7.6
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/constants/Schemas.d.ts +2 -0
- package/dist/constants/Schemas.js +2 -0
- package/dist/constants/composition.d.ts +13 -0
- package/dist/constants/composition.js +15 -0
- package/dist/constants/data-capabilities.d.ts +7 -7
- package/dist/constants/didcomm.d.ts +4 -0
- package/dist/constants/didcomm.js +4 -0
- package/dist/constants/fhir-resource-types.d.ts +55 -0
- package/dist/constants/fhir-resource-types.js +14 -0
- package/dist/constants/gateway-response.d.ts +100 -0
- package/dist/constants/gateway-response.js +104 -0
- package/dist/constants/http.d.ts +14 -0
- package/dist/constants/http.js +14 -0
- package/dist/constants/index.d.ts +3 -0
- package/dist/constants/index.js +3 -0
- package/dist/constants/jsonld.d.ts +5 -0
- package/dist/constants/jsonld.js +5 -0
- package/dist/constants/schemaorg.d.ts +5 -0
- package/dist/constants/schemaorg.js +5 -0
- package/dist/constants/urn.d.ts +2 -0
- package/dist/constants/urn.js +2 -0
- package/dist/examples/index.d.ts +1 -0
- package/dist/examples/index.js +1 -0
- package/dist/examples/researcher-working-selection.d.ts +68 -0
- package/dist/examples/researcher-working-selection.js +59 -0
- package/dist/examples/shared.d.ts +1 -0
- package/dist/examples/shared.js +1 -0
- package/dist/models/bundle-editor-types.d.ts +3 -0
- package/dist/models/bundle-editor-types.js +3 -0
- package/dist/models/interoperable-claims/index.d.ts +1 -0
- package/dist/models/interoperable-claims/index.js +1 -0
- package/dist/models/interoperable-claims/research-subject-claims.d.ts +4 -0
- package/dist/models/interoperable-claims/research-subject-claims.js +4 -0
- package/package.json +1 -1
|
@@ -40,9 +40,11 @@ export declare const Resource: {
|
|
|
40
40
|
export type Resource = typeof Resource[keyof typeof Resource];
|
|
41
41
|
export declare const JobAction: {
|
|
42
42
|
readonly BATCH: "_batch";
|
|
43
|
+
readonly BATCH_RESPONSE: "_batch-response";
|
|
43
44
|
readonly CREATE: "_create";
|
|
44
45
|
readonly DISCOVERY: "_discovery";
|
|
45
46
|
readonly SEARCH: "_search";
|
|
47
|
+
readonly SEARCH_RESPONSE: "_search-response";
|
|
46
48
|
};
|
|
47
49
|
export type JobAction = typeof JobAction[keyof typeof JobAction];
|
|
48
50
|
export declare const knownDomainsReversed: readonly ["org.schema", "org.hl7.fhir", "org.ilo.isco", "net.openid"];
|
|
@@ -39,9 +39,11 @@ export const Resource = {
|
|
|
39
39
|
};
|
|
40
40
|
export const JobAction = {
|
|
41
41
|
BATCH: '_batch',
|
|
42
|
+
BATCH_RESPONSE: '_batch-response',
|
|
42
43
|
CREATE: '_create',
|
|
43
44
|
DISCOVERY: '_discovery',
|
|
44
45
|
SEARCH: '_search',
|
|
46
|
+
SEARCH_RESPONSE: '_search-response',
|
|
45
47
|
};
|
|
46
48
|
export const knownDomainsReversed = [
|
|
47
49
|
'org.schema',
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Semantic `@type` values used by Composition profiles across GW and SDK writers. */
|
|
2
|
+
export declare const CompositionSemanticTypes: Readonly<{
|
|
3
|
+
readonly ResearcherWorkingSelection: "Composition:ResearcherWorkingSelection";
|
|
4
|
+
}>;
|
|
5
|
+
/** Relative request paths owned by shared Composition write contracts. */
|
|
6
|
+
export declare const CompositionRequestPaths: Readonly<{
|
|
7
|
+
readonly ResearcherWorkingSelection: "digitaltwin/org.hl7.fhir.r4/Composition";
|
|
8
|
+
}>;
|
|
9
|
+
/** Search parameter names supported by the shared Composition selection contract. */
|
|
10
|
+
export declare const CompositionSearchParameterNames: Readonly<{
|
|
11
|
+
readonly MetaTag: "Composition.meta-tag";
|
|
12
|
+
readonly Section: "section";
|
|
13
|
+
}>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Format } from './Schemas.js';
|
|
2
|
+
import { ResourceTypesFhirR4 } from './fhir-resource-types.js';
|
|
3
|
+
/** Semantic `@type` values used by Composition profiles across GW and SDK writers. */
|
|
4
|
+
export const CompositionSemanticTypes = Object.freeze({
|
|
5
|
+
ResearcherWorkingSelection: 'Composition:ResearcherWorkingSelection',
|
|
6
|
+
});
|
|
7
|
+
/** Relative request paths owned by shared Composition write contracts. */
|
|
8
|
+
export const CompositionRequestPaths = Object.freeze({
|
|
9
|
+
ResearcherWorkingSelection: `digitaltwin/${Format.FHIR_R4}/${ResourceTypesFhirR4.Composition}`,
|
|
10
|
+
});
|
|
11
|
+
/** Search parameter names supported by the shared Composition selection contract. */
|
|
12
|
+
export const CompositionSearchParameterNames = Object.freeze({
|
|
13
|
+
MetaTag: 'Composition.meta-tag',
|
|
14
|
+
Section: 'section',
|
|
15
|
+
});
|
|
@@ -92,11 +92,11 @@ export declare function parseDataCapabilityKey(input: string): DataCapability |
|
|
|
92
92
|
* in docs or chat history.
|
|
93
93
|
*/
|
|
94
94
|
export declare const ExampleDataCapabilities: Readonly<{
|
|
95
|
-
readonly CreateBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
96
|
-
readonly SendBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
97
|
-
readonly ViewResourceHealth: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
98
|
-
readonly ViewBundleHealth: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
99
|
-
readonly SendDocumentReferenceInsurance: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
100
|
-
readonly ViewInvoiceBilling: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
101
|
-
readonly SearchBundleResearch: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
95
|
+
readonly CreateBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
96
|
+
readonly SendBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
97
|
+
readonly ViewResourceHealth: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
98
|
+
readonly ViewBundleHealth: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
99
|
+
readonly SendDocumentReferenceInsurance: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
100
|
+
readonly ViewInvoiceBilling: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
101
|
+
readonly SearchBundleResearch: "View.Bundle.Appointment" | "View.Bundle.Consent" | "View.Bundle.Research" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Communication.Appointment" | "View.Communication.Consent" | "View.Communication.Research" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.DocumentReference.Appointment" | "View.DocumentReference.Consent" | "View.DocumentReference.Research" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.Invoice.Appointment" | "View.Invoice.Consent" | "View.Invoice.Research" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Attachment.Appointment" | "View.Attachment.Consent" | "View.Attachment.Research" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Resource.Appointment" | "View.Resource.Consent" | "View.Resource.Research" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Claims.Appointment" | "View.Claims.Consent" | "View.Claims.Research" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "Create.Bundle.Appointment" | "Create.Bundle.Consent" | "Create.Bundle.Research" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Communication.Appointment" | "Create.Communication.Consent" | "Create.Communication.Research" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Consent" | "Create.DocumentReference.Research" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.Invoice.Appointment" | "Create.Invoice.Consent" | "Create.Invoice.Research" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Attachment.Appointment" | "Create.Attachment.Consent" | "Create.Attachment.Research" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Resource.Appointment" | "Create.Resource.Consent" | "Create.Resource.Research" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Claims.Appointment" | "Create.Claims.Consent" | "Create.Claims.Research" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Update.Bundle.Appointment" | "Update.Bundle.Consent" | "Update.Bundle.Research" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Communication.Appointment" | "Update.Communication.Consent" | "Update.Communication.Research" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Consent" | "Update.DocumentReference.Research" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.Invoice.Appointment" | "Update.Invoice.Consent" | "Update.Invoice.Research" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Attachment.Appointment" | "Update.Attachment.Consent" | "Update.Attachment.Research" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Resource.Appointment" | "Update.Resource.Consent" | "Update.Resource.Research" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Claims.Appointment" | "Update.Claims.Consent" | "Update.Claims.Research" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Send.Bundle.Appointment" | "Send.Bundle.Consent" | "Send.Bundle.Research" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Communication.Appointment" | "Send.Communication.Consent" | "Send.Communication.Research" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Consent" | "Send.DocumentReference.Research" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.Invoice.Appointment" | "Send.Invoice.Consent" | "Send.Invoice.Research" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Attachment.Appointment" | "Send.Attachment.Consent" | "Send.Attachment.Research" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Resource.Appointment" | "Send.Resource.Consent" | "Send.Resource.Research" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Claims.Appointment" | "Send.Claims.Consent" | "Send.Claims.Research" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Search.Bundle.Appointment" | "Search.Bundle.Consent" | "Search.Bundle.Research" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Communication.Appointment" | "Search.Communication.Consent" | "Search.Communication.Research" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Consent" | "Search.DocumentReference.Research" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.Invoice.Appointment" | "Search.Invoice.Consent" | "Search.Invoice.Research" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Attachment.Appointment" | "Search.Attachment.Consent" | "Search.Attachment.Research" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Resource.Appointment" | "Search.Resource.Consent" | "Search.Resource.Research" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Claims.Appointment" | "Search.Claims.Consent" | "Search.Claims.Research" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Index.Bundle.Appointment" | "Index.Bundle.Consent" | "Index.Bundle.Research" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Communication.Appointment" | "Index.Communication.Consent" | "Index.Communication.Research" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Consent" | "Index.DocumentReference.Research" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.Invoice.Appointment" | "Index.Invoice.Consent" | "Index.Invoice.Research" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Attachment.Appointment" | "Index.Attachment.Consent" | "Index.Attachment.Research" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Resource.Appointment" | "Index.Resource.Consent" | "Index.Resource.Research" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Claims.Appointment" | "Index.Claims.Consent" | "Index.Claims.Research" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Purge.Bundle.Appointment" | "Purge.Bundle.Consent" | "Purge.Bundle.Research" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Communication.Appointment" | "Purge.Communication.Consent" | "Purge.Communication.Research" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Consent" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.Invoice.Appointment" | "Purge.Invoice.Consent" | "Purge.Invoice.Research" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Attachment.Appointment" | "Purge.Attachment.Consent" | "Purge.Attachment.Research" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Resource.Appointment" | "Purge.Resource.Consent" | "Purge.Resource.Research" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Claims.Appointment" | "Purge.Claims.Consent" | "Purge.Claims.Research" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity";
|
|
102
102
|
}>;
|
|
@@ -12,6 +12,10 @@ export declare const DidcommMessageTypes: Readonly<{
|
|
|
12
12
|
readonly CommunicationResponse: "Communication-response-v1.0";
|
|
13
13
|
readonly SmartTokenRequest: "Smart-token-request-v1.0";
|
|
14
14
|
}>;
|
|
15
|
+
/** Payload model discriminators used by the extended DIDComm transport. */
|
|
16
|
+
export declare const DidcommPayloadTypes: Readonly<{
|
|
17
|
+
readonly ExtendedCommunicationMessage: "CommMsgExtended";
|
|
18
|
+
}>;
|
|
15
19
|
/**
|
|
16
20
|
* Canonical low-level DIDComm acknowledgement body keys used in shared tests
|
|
17
21
|
* and examples.
|
|
@@ -12,6 +12,10 @@ export const DidcommMessageTypes = Object.freeze({
|
|
|
12
12
|
CommunicationResponse: 'Communication-response-v1.0',
|
|
13
13
|
SmartTokenRequest: 'Smart-token-request-v1.0',
|
|
14
14
|
});
|
|
15
|
+
/** Payload model discriminators used by the extended DIDComm transport. */
|
|
16
|
+
export const DidcommPayloadTypes = Object.freeze({
|
|
17
|
+
ExtendedCommunicationMessage: 'CommMsgExtended',
|
|
18
|
+
});
|
|
15
19
|
/**
|
|
16
20
|
* Canonical low-level DIDComm acknowledgement body keys used in shared tests
|
|
17
21
|
* and examples.
|