gdc-common-utils-ts 1.21.0 → 1.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/claims/claims-helpers-related-person.js +8 -2
- package/dist/constants/actor-session.d.ts +35 -2
- package/dist/constants/actor-session.js +180 -2
- package/dist/constants/data-capabilities.d.ts +102 -0
- package/dist/constants/data-capabilities.js +126 -0
- package/dist/constants/fhir-resource-types.d.ts +2 -0
- package/dist/constants/fhir-resource-types.js +1 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/lifecycle.d.ts +3 -0
- package/dist/constants/lifecycle.js +3 -0
- package/dist/constants/service-capabilities.d.ts +20 -0
- package/dist/constants/service-capabilities.js +24 -1
- package/dist/examples/consent-access.d.ts +2 -2
- package/dist/examples/ica-activation-proof.d.ts +8 -0
- package/dist/examples/ica-activation-proof.js +10 -0
- package/dist/examples/index.d.ts +1 -0
- package/dist/examples/index.js +1 -0
- package/dist/examples/individual-controller.d.ts +1 -1
- package/dist/examples/invoice.d.ts +37 -0
- package/dist/examples/invoice.js +72 -0
- package/dist/examples/lifecycle.d.ts +3 -0
- package/dist/examples/lifecycle.js +4 -0
- package/dist/examples/professional.d.ts +1 -1
- package/dist/examples/related-person.d.ts +21 -21
- package/dist/examples/related-person.js +7 -7
- package/dist/examples/shared.d.ts +50 -10
- package/dist/examples/shared.js +71 -5
- package/dist/models/confidential-storage.d.ts +36 -1
- package/dist/models/fhir-documents.d.ts +35 -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/invoice-claims.d.ts +277 -0
- package/dist/models/interoperable-claims/invoice-claims.js +357 -0
- package/dist/models/interoperable-claims/observation-claims.d.ts +2 -2
- package/dist/models/interoperable-claims/observation-claims.js +2 -2
- package/dist/models/interoperable-claims/related-person-claims.d.ts +2 -0
- package/dist/models/interoperable-claims/related-person-claims.js +4 -1
- package/dist/models/interoperable-claims.d.ts +1 -1
- package/dist/models/interoperable-claims.js +1 -1
- package/dist/utils/activation-policy.d.ts +48 -0
- package/dist/utils/activation-policy.js +92 -0
- package/dist/utils/confidential-storage-persistence.d.ts +60 -0
- package/dist/utils/confidential-storage-persistence.js +64 -0
- package/dist/utils/confidential-storage-test-data.d.ts +19 -0
- package/dist/utils/confidential-storage-test-data.js +63 -0
- package/dist/utils/did-resolution.js +3 -3
- package/dist/utils/did.d.ts +81 -11
- package/dist/utils/did.js +111 -17
- package/dist/utils/family-registration-test-data.d.ts +48 -0
- package/dist/utils/family-registration-test-data.js +70 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.js +5 -0
- package/dist/utils/invoice-bundle.d.ts +82 -0
- package/dist/utils/invoice-bundle.js +240 -0
- package/dist/utils/object-sanitize.d.ts +18 -0
- package/dist/utils/object-sanitize.js +31 -0
- package/dist/utils/related-person-list.js +1 -1
- package/package.json +2 -2
|
@@ -13,10 +13,16 @@ export function removeRelatedPersonClaimList(claims, claimKey, values) {
|
|
|
13
13
|
return removeClaimValues(claims, claimKey, values);
|
|
14
14
|
}
|
|
15
15
|
export function getRelatedPersonIdentifier(claims) {
|
|
16
|
-
return normalizeClaimScalar(claims[RelatedPersonClaim.
|
|
16
|
+
return normalizeClaimScalar(claims[RelatedPersonClaim.IdentifierValue]
|
|
17
|
+
?? claims[RelatedPersonClaim.Identifier]);
|
|
17
18
|
}
|
|
18
19
|
export function setRelatedPersonIdentifier(claims, value) {
|
|
19
|
-
|
|
20
|
+
const normalizedValue = normalizeClaimScalar(value);
|
|
21
|
+
return {
|
|
22
|
+
...claims,
|
|
23
|
+
[RelatedPersonClaim.IdentifierValue]: normalizedValue,
|
|
24
|
+
[RelatedPersonClaim.Identifier]: normalizedValue,
|
|
25
|
+
};
|
|
20
26
|
}
|
|
21
27
|
/**
|
|
22
28
|
* Returns the current active flag as a boolean when present.
|
|
@@ -11,13 +11,24 @@ export declare const ActorKinds: Readonly<{
|
|
|
11
11
|
}>;
|
|
12
12
|
/**
|
|
13
13
|
* Canonical capability vocabulary shared across SDK packages.
|
|
14
|
+
*
|
|
15
|
+
* Naming rule:
|
|
16
|
+
* - `Hosting...`: host-registry and hosting-operator workflows
|
|
17
|
+
* - `Organization...`: tenant/provider controller workflows
|
|
18
|
+
* - `Individual...`: family/individual controller workflows
|
|
19
|
+
* - `Professional...`: professional actor workflows
|
|
20
|
+
* - `Consent...` / `Token...`: cross-cutting workflows
|
|
14
21
|
*/
|
|
15
22
|
export declare const ActorCapabilities: Readonly<{
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
23
|
+
readonly HostingActivateOrganization: "hosting.activate_organization";
|
|
24
|
+
readonly HostingConfirmOrder: "hosting.confirm_order";
|
|
25
|
+
readonly HostingDisableHost: "hosting.disable_host";
|
|
26
|
+
readonly HostingPurgeHost: "hosting.purge_host";
|
|
18
27
|
readonly OrganizationCreateEmployee: "organization.create_employee";
|
|
19
28
|
readonly OrganizationDisableEmployee: "organization.disable_employee";
|
|
20
29
|
readonly OrganizationPurgeEmployee: "organization.purge_employee";
|
|
30
|
+
readonly OrganizationDisableTenant: "organization.disable_tenant";
|
|
31
|
+
readonly OrganizationPurgeTenant: "organization.purge_tenant";
|
|
21
32
|
readonly OrganizationActivateDevice: "organization.activate_device";
|
|
22
33
|
readonly OrganizationIssueActivationCode: "organization.issue_activation_code";
|
|
23
34
|
readonly OrganizationRequestSmartToken: "organization.request_smart_token";
|
|
@@ -38,3 +49,25 @@ export declare const ActorCapabilities: Readonly<{
|
|
|
38
49
|
}>;
|
|
39
50
|
export type ActorKindsValue = typeof ActorKinds[keyof typeof ActorKinds];
|
|
40
51
|
export type ActorCapabilitiesValue = typeof ActorCapabilities[keyof typeof ActorCapabilities];
|
|
52
|
+
/**
|
|
53
|
+
* Structured documentation for one actor capability.
|
|
54
|
+
*
|
|
55
|
+
* Frontends and backend runtimes can use this metadata to:
|
|
56
|
+
* - explain why one facade method is available or blocked
|
|
57
|
+
* - render help text/tooltips without hardcoded literals
|
|
58
|
+
* - keep docs aligned with the shared capability vocabulary
|
|
59
|
+
*/
|
|
60
|
+
export type ActorCapabilityDoc = {
|
|
61
|
+
actorKind: ActorKindsValue;
|
|
62
|
+
summary: string;
|
|
63
|
+
programmingHint: string;
|
|
64
|
+
relatedMethods: readonly string[];
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Canonical per-capability documentation shared across SDK packages.
|
|
68
|
+
*/
|
|
69
|
+
export declare const ActorCapabilityDocs: Readonly<Record<ActorCapabilitiesValue, ActorCapabilityDoc>>;
|
|
70
|
+
/**
|
|
71
|
+
* Reads the canonical documentation entry for one capability.
|
|
72
|
+
*/
|
|
73
|
+
export declare function getActorCapabilityDoc(capability: ActorCapabilitiesValue): ActorCapabilityDoc;
|
|
@@ -13,13 +13,24 @@ export const ActorKinds = Object.freeze({
|
|
|
13
13
|
});
|
|
14
14
|
/**
|
|
15
15
|
* Canonical capability vocabulary shared across SDK packages.
|
|
16
|
+
*
|
|
17
|
+
* Naming rule:
|
|
18
|
+
* - `Hosting...`: host-registry and hosting-operator workflows
|
|
19
|
+
* - `Organization...`: tenant/provider controller workflows
|
|
20
|
+
* - `Individual...`: family/individual controller workflows
|
|
21
|
+
* - `Professional...`: professional actor workflows
|
|
22
|
+
* - `Consent...` / `Token...`: cross-cutting workflows
|
|
16
23
|
*/
|
|
17
24
|
export const ActorCapabilities = Object.freeze({
|
|
18
|
-
|
|
19
|
-
|
|
25
|
+
HostingActivateOrganization: 'hosting.activate_organization',
|
|
26
|
+
HostingConfirmOrder: 'hosting.confirm_order',
|
|
27
|
+
HostingDisableHost: 'hosting.disable_host',
|
|
28
|
+
HostingPurgeHost: 'hosting.purge_host',
|
|
20
29
|
OrganizationCreateEmployee: 'organization.create_employee',
|
|
21
30
|
OrganizationDisableEmployee: 'organization.disable_employee',
|
|
22
31
|
OrganizationPurgeEmployee: 'organization.purge_employee',
|
|
32
|
+
OrganizationDisableTenant: 'organization.disable_tenant',
|
|
33
|
+
OrganizationPurgeTenant: 'organization.purge_tenant',
|
|
23
34
|
OrganizationActivateDevice: 'organization.activate_device',
|
|
24
35
|
OrganizationIssueActivationCode: 'organization.issue_activation_code',
|
|
25
36
|
OrganizationRequestSmartToken: 'organization.request_smart_token',
|
|
@@ -38,3 +49,170 @@ export const ActorCapabilities = Object.freeze({
|
|
|
38
49
|
ProfessionalRequestSmartToken: 'professional.request_smart_token',
|
|
39
50
|
TokenRequestSmart: 'token.request_smart',
|
|
40
51
|
});
|
|
52
|
+
/**
|
|
53
|
+
* Canonical per-capability documentation shared across SDK packages.
|
|
54
|
+
*/
|
|
55
|
+
export const ActorCapabilityDocs = Object.freeze({
|
|
56
|
+
[ActorCapabilities.HostingActivateOrganization]: {
|
|
57
|
+
actorKind: ActorKinds.HostOnboarding,
|
|
58
|
+
summary: 'Activates one hosted organization/provider in the host registry from ICA proof material.',
|
|
59
|
+
programmingHint: 'Use this before any tenant/provider lifecycle. Supply service category/serviceType claims authorized by ICA.',
|
|
60
|
+
relatedMethods: ['activateOrganizationInGatewayFromIcaProof'],
|
|
61
|
+
},
|
|
62
|
+
[ActorCapabilities.HostingConfirmOrder]: {
|
|
63
|
+
actorKind: ActorKinds.HostOnboarding,
|
|
64
|
+
summary: 'Confirms one already-paid host-side commercial order in the host registry.',
|
|
65
|
+
programmingHint: 'Use this only after the external payment step has already accepted the order.',
|
|
66
|
+
relatedMethods: ['confirmLegalOrganizationOrder'],
|
|
67
|
+
},
|
|
68
|
+
[ActorCapabilities.HostingDisableHost]: {
|
|
69
|
+
actorKind: ActorKinds.HostOnboarding,
|
|
70
|
+
summary: 'Disables the host publication lifecycle once no hosted tenants remain registered.',
|
|
71
|
+
programmingHint: 'Expect discovery and DCAT publication to become unavailable after success.',
|
|
72
|
+
relatedMethods: ['disableHost'],
|
|
73
|
+
},
|
|
74
|
+
[ActorCapabilities.HostingPurgeHost]: {
|
|
75
|
+
actorKind: ActorKinds.HostOnboarding,
|
|
76
|
+
summary: 'Purges the disabled host registration after hosted tenants have been purged.',
|
|
77
|
+
programmingHint: 'Call this only after host disable and only when the hosted tenant registry is empty.',
|
|
78
|
+
relatedMethods: ['purgeHost'],
|
|
79
|
+
},
|
|
80
|
+
[ActorCapabilities.OrganizationCreateEmployee]: {
|
|
81
|
+
actorKind: ActorKinds.OrganizationController,
|
|
82
|
+
summary: 'Creates one employee/professional seat under the current hosted tenant.',
|
|
83
|
+
programmingHint: 'Use the organization-controller facade and pass employee identity/controller claims explicitly.',
|
|
84
|
+
relatedMethods: ['createOrganizationEmployee'],
|
|
85
|
+
},
|
|
86
|
+
[ActorCapabilities.OrganizationDisableEmployee]: {
|
|
87
|
+
actorKind: ActorKinds.OrganizationController,
|
|
88
|
+
summary: 'Disables one employee without purging its audit trail.',
|
|
89
|
+
programmingHint: 'Disable first when the lifecycle requires a prior non-destructive state change before purge.',
|
|
90
|
+
relatedMethods: ['disableOrganizationEmployee', 'disableEmployee'],
|
|
91
|
+
},
|
|
92
|
+
[ActorCapabilities.OrganizationPurgeEmployee]: {
|
|
93
|
+
actorKind: ActorKinds.OrganizationController,
|
|
94
|
+
summary: 'Purges one disabled employee and releases the associated seat.',
|
|
95
|
+
programmingHint: 'Use the explicit purge route after disable, not the legacy DELETE-in-batch semantics.',
|
|
96
|
+
relatedMethods: ['purgeOrganizationEmployee', 'purgeEmployee'],
|
|
97
|
+
},
|
|
98
|
+
[ActorCapabilities.OrganizationDisableTenant]: {
|
|
99
|
+
actorKind: ActorKinds.OrganizationController,
|
|
100
|
+
summary: 'Disables one hosted tenant/provider after descendants are cleaned.',
|
|
101
|
+
programmingHint: 'New individuals/employees should stop being creatable and tenant discovery publication should disappear.',
|
|
102
|
+
relatedMethods: ['disableTenant'],
|
|
103
|
+
},
|
|
104
|
+
[ActorCapabilities.OrganizationPurgeTenant]: {
|
|
105
|
+
actorKind: ActorKinds.OrganizationController,
|
|
106
|
+
summary: 'Purges one disabled hosted tenant/provider after descendants are purged.',
|
|
107
|
+
programmingHint: 'Expect a conflict if any employee, individual, or member lifecycle record still remains.',
|
|
108
|
+
relatedMethods: ['purgeTenant'],
|
|
109
|
+
},
|
|
110
|
+
[ActorCapabilities.OrganizationActivateDevice]: {
|
|
111
|
+
actorKind: ActorKinds.OrganizationEmployee,
|
|
112
|
+
summary: 'Activates one organization employee device from an activation request or code.',
|
|
113
|
+
programmingHint: 'Use this from the employee-side runtime after the controller has already issued the activation material.',
|
|
114
|
+
relatedMethods: ['activateEmployeeDeviceWithActivationRequest'],
|
|
115
|
+
},
|
|
116
|
+
[ActorCapabilities.OrganizationIssueActivationCode]: {
|
|
117
|
+
actorKind: ActorKinds.OrganizationEmployee,
|
|
118
|
+
summary: 'Represents the employee-side ability to consume issued activation material.',
|
|
119
|
+
programmingHint: 'Keep this aligned with the runtime activation flow even if the current facade exposes the request/consume step split.',
|
|
120
|
+
relatedMethods: ['activateEmployeeDeviceWithActivationRequest'],
|
|
121
|
+
},
|
|
122
|
+
[ActorCapabilities.OrganizationRequestSmartToken]: {
|
|
123
|
+
actorKind: ActorKinds.OrganizationController,
|
|
124
|
+
summary: 'Requests a SMART token for one organization-scoped actor.',
|
|
125
|
+
programmingHint: 'Pass actorDid/providerDid consistently so downstream FHIR/SMART calls stay actor-scoped.',
|
|
126
|
+
relatedMethods: ['requestSmartToken'],
|
|
127
|
+
},
|
|
128
|
+
[ActorCapabilities.IndividualBootstrap]: {
|
|
129
|
+
actorKind: ActorKinds.IndividualController,
|
|
130
|
+
summary: 'Creates and confirms one hosted individual/family onboarding flow.',
|
|
131
|
+
programmingHint: 'Use the same canonical individual identifiers through registration, order confirmation, and later lifecycle steps.',
|
|
132
|
+
relatedMethods: ['startIndividualOrganization', 'confirmIndividualOrganizationOrder'],
|
|
133
|
+
},
|
|
134
|
+
[ActorCapabilities.IndividualDisable]: {
|
|
135
|
+
actorKind: ActorKinds.IndividualController,
|
|
136
|
+
summary: 'Disables one individual/family registration before purge.',
|
|
137
|
+
programmingHint: 'Use the same subject/individual identifiers that storage and consent lifecycles use for cleanup.',
|
|
138
|
+
relatedMethods: ['disableIndividualOrganization', 'disableIndividual'],
|
|
139
|
+
},
|
|
140
|
+
[ActorCapabilities.IndividualPurge]: {
|
|
141
|
+
actorKind: ActorKinds.IndividualController,
|
|
142
|
+
summary: 'Purges one disabled individual/family registration and its managed storage footprint.',
|
|
143
|
+
programmingHint: 'This should include indexed sections and referenced blobs for the subject lifecycle being cleaned.',
|
|
144
|
+
relatedMethods: ['purgeIndividualOrganization', 'purgeIndividual'],
|
|
145
|
+
},
|
|
146
|
+
[ActorCapabilities.IndividualImportIps]: {
|
|
147
|
+
actorKind: ActorKinds.IndividualController,
|
|
148
|
+
summary: 'Imports IPS/FHIR content into the subject index lifecycle.',
|
|
149
|
+
programmingHint: 'Use the canonical subject identity and section filters expected by clinical search helpers.',
|
|
150
|
+
relatedMethods: ['importIpsOrFhirAndUpdateIndex', 'getLatestIps'],
|
|
151
|
+
},
|
|
152
|
+
[ActorCapabilities.IndividualGenerateDigitalTwin]: {
|
|
153
|
+
actorKind: ActorKinds.IndividualController,
|
|
154
|
+
summary: 'Generates digital-twin material from subject data.',
|
|
155
|
+
programmingHint: 'Treat this as a higher-level projection over already-indexed subject resources.',
|
|
156
|
+
relatedMethods: ['generateDigitalTwinFromSubjectData'],
|
|
157
|
+
},
|
|
158
|
+
[ActorCapabilities.IndividualIngestCommunication]: {
|
|
159
|
+
actorKind: ActorKinds.IndividualController,
|
|
160
|
+
summary: 'Ingests one communication payload and updates the individual clinical index.',
|
|
161
|
+
programmingHint: 'Choose the route family carefully (`api`, `didcomm-plain`, `legacy-fhir`) to match the runtime transport profile.',
|
|
162
|
+
relatedMethods: ['ingestCommunicationAndUpdateIndex'],
|
|
163
|
+
},
|
|
164
|
+
[ActorCapabilities.IndividualUpsertRelatedPerson]: {
|
|
165
|
+
actorKind: ActorKinds.IndividualController,
|
|
166
|
+
summary: 'Creates or updates one related-person/member relationship for the individual scope.',
|
|
167
|
+
programmingHint: 'Keep `RelatedPerson.identifier.value` canonical and do not rely on legacy identifier aliases in new code.',
|
|
168
|
+
relatedMethods: ['upsertRelatedPersonAndPoll'],
|
|
169
|
+
},
|
|
170
|
+
[ActorCapabilities.IndividualMemberDisable]: {
|
|
171
|
+
actorKind: ActorKinds.IndividualController,
|
|
172
|
+
summary: 'Disables one related-person/member relationship.',
|
|
173
|
+
programmingHint: 'Use the exact relationship identifier and subject reference that the upsert path stored.',
|
|
174
|
+
relatedMethods: ['disableIndividualMember'],
|
|
175
|
+
},
|
|
176
|
+
[ActorCapabilities.IndividualMemberPurge]: {
|
|
177
|
+
actorKind: ActorKinds.IndividualController,
|
|
178
|
+
summary: 'Purges one disabled related-person/member relationship.',
|
|
179
|
+
programmingHint: 'Purge after disable so the tenant/individual parent lifecycle can later be purged without descendant conflicts.',
|
|
180
|
+
relatedMethods: ['purgeIndividualMember'],
|
|
181
|
+
},
|
|
182
|
+
[ActorCapabilities.ConsentGrantProfessionalAccess]: {
|
|
183
|
+
actorKind: ActorKinds.IndividualController,
|
|
184
|
+
summary: 'Grants one professional consent/access scope from the individual side.',
|
|
185
|
+
programmingHint: 'Use explicit actor identifiers and purpose codes so later revoke/close flows can target the same consent cleanly.',
|
|
186
|
+
relatedMethods: ['grantProfessionalAccess'],
|
|
187
|
+
},
|
|
188
|
+
[ActorCapabilities.ProfessionalMedication]: {
|
|
189
|
+
actorKind: ActorKinds.Professional,
|
|
190
|
+
summary: 'Allows medication-oriented professional workflows over authorized patient data.',
|
|
191
|
+
programmingHint: 'Keep this distinct from administrative/provider-controller capabilities.',
|
|
192
|
+
relatedMethods: ['searchClinicalBundle', 'ingestCommunicationAndUpdateIndex'],
|
|
193
|
+
},
|
|
194
|
+
[ActorCapabilities.ProfessionalAppointment]: {
|
|
195
|
+
actorKind: ActorKinds.Professional,
|
|
196
|
+
summary: 'Allows appointment-oriented professional workflows.',
|
|
197
|
+
programmingHint: 'This capability remains actor-scoped even when transport and SMART token handling are shared.',
|
|
198
|
+
relatedMethods: ['requestSmartToken'],
|
|
199
|
+
},
|
|
200
|
+
[ActorCapabilities.ProfessionalRequestSmartToken]: {
|
|
201
|
+
actorKind: ActorKinds.Professional,
|
|
202
|
+
summary: 'Requests a SMART token for one professional-scoped actor.',
|
|
203
|
+
programmingHint: 'Use this instead of organization-scoped token requests when the actor identity is a professional/member profile.',
|
|
204
|
+
relatedMethods: ['requestSmartToken'],
|
|
205
|
+
},
|
|
206
|
+
[ActorCapabilities.TokenRequestSmart]: {
|
|
207
|
+
actorKind: ActorKinds.Professional,
|
|
208
|
+
summary: 'Cross-cutting token-exchange capability used by runtimes that expose SMART token requests generically.',
|
|
209
|
+
programmingHint: 'Treat this as transport/token plumbing, not as business authorization by itself.',
|
|
210
|
+
relatedMethods: ['requestSmartToken'],
|
|
211
|
+
},
|
|
212
|
+
});
|
|
213
|
+
/**
|
|
214
|
+
* Reads the canonical documentation entry for one capability.
|
|
215
|
+
*/
|
|
216
|
+
export function getActorCapabilityDoc(capability) {
|
|
217
|
+
return ActorCapabilityDocs[capability];
|
|
218
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Canonical operation vocabulary for data authorization.
|
|
3
|
+
*
|
|
4
|
+
* This axis answers:
|
|
5
|
+
* - what the actor wants to do with the data
|
|
6
|
+
*
|
|
7
|
+
* Keep this separate from actor/workflow capabilities such as
|
|
8
|
+
* `HostingDisableHost` or `IndividualBootstrap`.
|
|
9
|
+
*/
|
|
10
|
+
export declare const DataCapabilityActions: Readonly<{
|
|
11
|
+
readonly View: "View";
|
|
12
|
+
readonly Create: "Create";
|
|
13
|
+
readonly Update: "Update";
|
|
14
|
+
readonly Send: "Send";
|
|
15
|
+
readonly Search: "Search";
|
|
16
|
+
readonly Index: "Index";
|
|
17
|
+
readonly Purge: "Purge";
|
|
18
|
+
}>;
|
|
19
|
+
/**
|
|
20
|
+
* Canonical semantic domains for data authorization.
|
|
21
|
+
*
|
|
22
|
+
* This axis answers:
|
|
23
|
+
* - which business or clinical domain the data belongs to
|
|
24
|
+
*
|
|
25
|
+
* Important modeling rule:
|
|
26
|
+
* - a `Bundle` of `Appointment` data is not equivalent to a `Bundle` of
|
|
27
|
+
* `Health`, `Veterinary`, `Research`, or `Insurance` data
|
|
28
|
+
* - the real authorization decision depends on the semantic domain carried by
|
|
29
|
+
* the payload, not just on the FHIR envelope or transport shape
|
|
30
|
+
*/
|
|
31
|
+
export declare const DataCapabilityDomains: Readonly<{
|
|
32
|
+
readonly Appointment: "Appointment";
|
|
33
|
+
readonly Health: "Health";
|
|
34
|
+
readonly Veterinary: "Veterinary";
|
|
35
|
+
readonly Research: "Research";
|
|
36
|
+
readonly Insurance: "Insurance";
|
|
37
|
+
readonly Billing: "Billing";
|
|
38
|
+
readonly Identity: "Identity";
|
|
39
|
+
readonly Consent: "Consent";
|
|
40
|
+
}>;
|
|
41
|
+
/**
|
|
42
|
+
* Canonical representation or transport vocabulary for data authorization.
|
|
43
|
+
*
|
|
44
|
+
* This axis answers:
|
|
45
|
+
* - how the data is represented or exchanged technically
|
|
46
|
+
*
|
|
47
|
+
* A `Bundle` is only the FHIR container or exchange envelope.
|
|
48
|
+
* Authorization must still look at the semantic domain of the contained data.
|
|
49
|
+
*/
|
|
50
|
+
export declare const DataCapabilityRepresentations: Readonly<{
|
|
51
|
+
readonly Bundle: "Bundle";
|
|
52
|
+
readonly Resource: "Resource";
|
|
53
|
+
readonly DocumentReference: "DocumentReference";
|
|
54
|
+
readonly Attachment: "Attachment";
|
|
55
|
+
readonly Claims: "Claims";
|
|
56
|
+
readonly Invoice: "Invoice";
|
|
57
|
+
readonly Communication: "Communication";
|
|
58
|
+
}>;
|
|
59
|
+
export type DataCapabilityAction = typeof DataCapabilityActions[keyof typeof DataCapabilityActions];
|
|
60
|
+
export type DataCapabilityDomain = typeof DataCapabilityDomains[keyof typeof DataCapabilityDomains];
|
|
61
|
+
export type DataCapabilityRepresentation = typeof DataCapabilityRepresentations[keyof typeof DataCapabilityRepresentations];
|
|
62
|
+
/**
|
|
63
|
+
* Structured data-authorization capability.
|
|
64
|
+
*
|
|
65
|
+
* Preferred for policy engines and role matrices because each axis remains
|
|
66
|
+
* queryable independently.
|
|
67
|
+
*/
|
|
68
|
+
export type DataCapability = {
|
|
69
|
+
action: DataCapabilityAction;
|
|
70
|
+
representation: DataCapabilityRepresentation;
|
|
71
|
+
domain: DataCapabilityDomain;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Canonical string form for one data capability.
|
|
75
|
+
*
|
|
76
|
+
* Example:
|
|
77
|
+
* - `Create.Bundle.Appointment`
|
|
78
|
+
* - `Send.DocumentReference.Insurance`
|
|
79
|
+
* - `View.Invoice.Billing`
|
|
80
|
+
*/
|
|
81
|
+
export type DataCapabilityKey = `${DataCapabilityAction}.${DataCapabilityRepresentation}.${DataCapabilityDomain}`;
|
|
82
|
+
/**
|
|
83
|
+
* Builds the canonical string key for one data capability descriptor.
|
|
84
|
+
*/
|
|
85
|
+
export declare function buildDataCapabilityKey(input: DataCapability): DataCapabilityKey;
|
|
86
|
+
/**
|
|
87
|
+
* Parses one canonical string capability back into its structured form.
|
|
88
|
+
*/
|
|
89
|
+
export declare function parseDataCapabilityKey(input: string): DataCapability | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* Reference examples kept in code so authorization discussions do not get lost
|
|
92
|
+
* in docs or chat history.
|
|
93
|
+
*/
|
|
94
|
+
export declare const ExampleDataCapabilities: Readonly<{
|
|
95
|
+
readonly CreateBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
96
|
+
readonly SendBundleAppointment: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
97
|
+
readonly ViewResourceHealth: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
98
|
+
readonly ViewBundleHealth: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
99
|
+
readonly SendDocumentReferenceInsurance: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
100
|
+
readonly ViewInvoiceBilling: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
101
|
+
readonly SearchBundleResearch: "View.Bundle.Appointment" | "View.Bundle.Health" | "View.Bundle.Veterinary" | "View.Bundle.Research" | "View.Bundle.Insurance" | "View.Bundle.Billing" | "View.Bundle.Identity" | "View.Bundle.Consent" | "View.Resource.Appointment" | "View.Resource.Health" | "View.Resource.Veterinary" | "View.Resource.Research" | "View.Resource.Insurance" | "View.Resource.Billing" | "View.Resource.Identity" | "View.Resource.Consent" | "View.DocumentReference.Appointment" | "View.DocumentReference.Health" | "View.DocumentReference.Veterinary" | "View.DocumentReference.Research" | "View.DocumentReference.Insurance" | "View.DocumentReference.Billing" | "View.DocumentReference.Identity" | "View.DocumentReference.Consent" | "View.Attachment.Appointment" | "View.Attachment.Health" | "View.Attachment.Veterinary" | "View.Attachment.Research" | "View.Attachment.Insurance" | "View.Attachment.Billing" | "View.Attachment.Identity" | "View.Attachment.Consent" | "View.Claims.Appointment" | "View.Claims.Health" | "View.Claims.Veterinary" | "View.Claims.Research" | "View.Claims.Insurance" | "View.Claims.Billing" | "View.Claims.Identity" | "View.Claims.Consent" | "View.Invoice.Appointment" | "View.Invoice.Health" | "View.Invoice.Veterinary" | "View.Invoice.Research" | "View.Invoice.Insurance" | "View.Invoice.Billing" | "View.Invoice.Identity" | "View.Invoice.Consent" | "View.Communication.Appointment" | "View.Communication.Health" | "View.Communication.Veterinary" | "View.Communication.Research" | "View.Communication.Insurance" | "View.Communication.Billing" | "View.Communication.Identity" | "View.Communication.Consent" | "Create.Bundle.Appointment" | "Create.Bundle.Health" | "Create.Bundle.Veterinary" | "Create.Bundle.Research" | "Create.Bundle.Insurance" | "Create.Bundle.Billing" | "Create.Bundle.Identity" | "Create.Bundle.Consent" | "Create.Resource.Appointment" | "Create.Resource.Health" | "Create.Resource.Veterinary" | "Create.Resource.Research" | "Create.Resource.Insurance" | "Create.Resource.Billing" | "Create.Resource.Identity" | "Create.Resource.Consent" | "Create.DocumentReference.Appointment" | "Create.DocumentReference.Health" | "Create.DocumentReference.Veterinary" | "Create.DocumentReference.Research" | "Create.DocumentReference.Insurance" | "Create.DocumentReference.Billing" | "Create.DocumentReference.Identity" | "Create.DocumentReference.Consent" | "Create.Attachment.Appointment" | "Create.Attachment.Health" | "Create.Attachment.Veterinary" | "Create.Attachment.Research" | "Create.Attachment.Insurance" | "Create.Attachment.Billing" | "Create.Attachment.Identity" | "Create.Attachment.Consent" | "Create.Claims.Appointment" | "Create.Claims.Health" | "Create.Claims.Veterinary" | "Create.Claims.Research" | "Create.Claims.Insurance" | "Create.Claims.Billing" | "Create.Claims.Identity" | "Create.Claims.Consent" | "Create.Invoice.Appointment" | "Create.Invoice.Health" | "Create.Invoice.Veterinary" | "Create.Invoice.Research" | "Create.Invoice.Insurance" | "Create.Invoice.Billing" | "Create.Invoice.Identity" | "Create.Invoice.Consent" | "Create.Communication.Appointment" | "Create.Communication.Health" | "Create.Communication.Veterinary" | "Create.Communication.Research" | "Create.Communication.Insurance" | "Create.Communication.Billing" | "Create.Communication.Identity" | "Create.Communication.Consent" | "Update.Bundle.Appointment" | "Update.Bundle.Health" | "Update.Bundle.Veterinary" | "Update.Bundle.Research" | "Update.Bundle.Insurance" | "Update.Bundle.Billing" | "Update.Bundle.Identity" | "Update.Bundle.Consent" | "Update.Resource.Appointment" | "Update.Resource.Health" | "Update.Resource.Veterinary" | "Update.Resource.Research" | "Update.Resource.Insurance" | "Update.Resource.Billing" | "Update.Resource.Identity" | "Update.Resource.Consent" | "Update.DocumentReference.Appointment" | "Update.DocumentReference.Health" | "Update.DocumentReference.Veterinary" | "Update.DocumentReference.Research" | "Update.DocumentReference.Insurance" | "Update.DocumentReference.Billing" | "Update.DocumentReference.Identity" | "Update.DocumentReference.Consent" | "Update.Attachment.Appointment" | "Update.Attachment.Health" | "Update.Attachment.Veterinary" | "Update.Attachment.Research" | "Update.Attachment.Insurance" | "Update.Attachment.Billing" | "Update.Attachment.Identity" | "Update.Attachment.Consent" | "Update.Claims.Appointment" | "Update.Claims.Health" | "Update.Claims.Veterinary" | "Update.Claims.Research" | "Update.Claims.Insurance" | "Update.Claims.Billing" | "Update.Claims.Identity" | "Update.Claims.Consent" | "Update.Invoice.Appointment" | "Update.Invoice.Health" | "Update.Invoice.Veterinary" | "Update.Invoice.Research" | "Update.Invoice.Insurance" | "Update.Invoice.Billing" | "Update.Invoice.Identity" | "Update.Invoice.Consent" | "Update.Communication.Appointment" | "Update.Communication.Health" | "Update.Communication.Veterinary" | "Update.Communication.Research" | "Update.Communication.Insurance" | "Update.Communication.Billing" | "Update.Communication.Identity" | "Update.Communication.Consent" | "Send.Bundle.Appointment" | "Send.Bundle.Health" | "Send.Bundle.Veterinary" | "Send.Bundle.Research" | "Send.Bundle.Insurance" | "Send.Bundle.Billing" | "Send.Bundle.Identity" | "Send.Bundle.Consent" | "Send.Resource.Appointment" | "Send.Resource.Health" | "Send.Resource.Veterinary" | "Send.Resource.Research" | "Send.Resource.Insurance" | "Send.Resource.Billing" | "Send.Resource.Identity" | "Send.Resource.Consent" | "Send.DocumentReference.Appointment" | "Send.DocumentReference.Health" | "Send.DocumentReference.Veterinary" | "Send.DocumentReference.Research" | "Send.DocumentReference.Insurance" | "Send.DocumentReference.Billing" | "Send.DocumentReference.Identity" | "Send.DocumentReference.Consent" | "Send.Attachment.Appointment" | "Send.Attachment.Health" | "Send.Attachment.Veterinary" | "Send.Attachment.Research" | "Send.Attachment.Insurance" | "Send.Attachment.Billing" | "Send.Attachment.Identity" | "Send.Attachment.Consent" | "Send.Claims.Appointment" | "Send.Claims.Health" | "Send.Claims.Veterinary" | "Send.Claims.Research" | "Send.Claims.Insurance" | "Send.Claims.Billing" | "Send.Claims.Identity" | "Send.Claims.Consent" | "Send.Invoice.Appointment" | "Send.Invoice.Health" | "Send.Invoice.Veterinary" | "Send.Invoice.Research" | "Send.Invoice.Insurance" | "Send.Invoice.Billing" | "Send.Invoice.Identity" | "Send.Invoice.Consent" | "Send.Communication.Appointment" | "Send.Communication.Health" | "Send.Communication.Veterinary" | "Send.Communication.Research" | "Send.Communication.Insurance" | "Send.Communication.Billing" | "Send.Communication.Identity" | "Send.Communication.Consent" | "Search.Bundle.Appointment" | "Search.Bundle.Health" | "Search.Bundle.Veterinary" | "Search.Bundle.Research" | "Search.Bundle.Insurance" | "Search.Bundle.Billing" | "Search.Bundle.Identity" | "Search.Bundle.Consent" | "Search.Resource.Appointment" | "Search.Resource.Health" | "Search.Resource.Veterinary" | "Search.Resource.Research" | "Search.Resource.Insurance" | "Search.Resource.Billing" | "Search.Resource.Identity" | "Search.Resource.Consent" | "Search.DocumentReference.Appointment" | "Search.DocumentReference.Health" | "Search.DocumentReference.Veterinary" | "Search.DocumentReference.Research" | "Search.DocumentReference.Insurance" | "Search.DocumentReference.Billing" | "Search.DocumentReference.Identity" | "Search.DocumentReference.Consent" | "Search.Attachment.Appointment" | "Search.Attachment.Health" | "Search.Attachment.Veterinary" | "Search.Attachment.Research" | "Search.Attachment.Insurance" | "Search.Attachment.Billing" | "Search.Attachment.Identity" | "Search.Attachment.Consent" | "Search.Claims.Appointment" | "Search.Claims.Health" | "Search.Claims.Veterinary" | "Search.Claims.Research" | "Search.Claims.Insurance" | "Search.Claims.Billing" | "Search.Claims.Identity" | "Search.Claims.Consent" | "Search.Invoice.Appointment" | "Search.Invoice.Health" | "Search.Invoice.Veterinary" | "Search.Invoice.Research" | "Search.Invoice.Insurance" | "Search.Invoice.Billing" | "Search.Invoice.Identity" | "Search.Invoice.Consent" | "Search.Communication.Appointment" | "Search.Communication.Health" | "Search.Communication.Veterinary" | "Search.Communication.Research" | "Search.Communication.Insurance" | "Search.Communication.Billing" | "Search.Communication.Identity" | "Search.Communication.Consent" | "Index.Bundle.Appointment" | "Index.Bundle.Health" | "Index.Bundle.Veterinary" | "Index.Bundle.Research" | "Index.Bundle.Insurance" | "Index.Bundle.Billing" | "Index.Bundle.Identity" | "Index.Bundle.Consent" | "Index.Resource.Appointment" | "Index.Resource.Health" | "Index.Resource.Veterinary" | "Index.Resource.Research" | "Index.Resource.Insurance" | "Index.Resource.Billing" | "Index.Resource.Identity" | "Index.Resource.Consent" | "Index.DocumentReference.Appointment" | "Index.DocumentReference.Health" | "Index.DocumentReference.Veterinary" | "Index.DocumentReference.Research" | "Index.DocumentReference.Insurance" | "Index.DocumentReference.Billing" | "Index.DocumentReference.Identity" | "Index.DocumentReference.Consent" | "Index.Attachment.Appointment" | "Index.Attachment.Health" | "Index.Attachment.Veterinary" | "Index.Attachment.Research" | "Index.Attachment.Insurance" | "Index.Attachment.Billing" | "Index.Attachment.Identity" | "Index.Attachment.Consent" | "Index.Claims.Appointment" | "Index.Claims.Health" | "Index.Claims.Veterinary" | "Index.Claims.Research" | "Index.Claims.Insurance" | "Index.Claims.Billing" | "Index.Claims.Identity" | "Index.Claims.Consent" | "Index.Invoice.Appointment" | "Index.Invoice.Health" | "Index.Invoice.Veterinary" | "Index.Invoice.Research" | "Index.Invoice.Insurance" | "Index.Invoice.Billing" | "Index.Invoice.Identity" | "Index.Invoice.Consent" | "Index.Communication.Appointment" | "Index.Communication.Health" | "Index.Communication.Veterinary" | "Index.Communication.Research" | "Index.Communication.Insurance" | "Index.Communication.Billing" | "Index.Communication.Identity" | "Index.Communication.Consent" | "Purge.Bundle.Appointment" | "Purge.Bundle.Health" | "Purge.Bundle.Veterinary" | "Purge.Bundle.Research" | "Purge.Bundle.Insurance" | "Purge.Bundle.Billing" | "Purge.Bundle.Identity" | "Purge.Bundle.Consent" | "Purge.Resource.Appointment" | "Purge.Resource.Health" | "Purge.Resource.Veterinary" | "Purge.Resource.Research" | "Purge.Resource.Insurance" | "Purge.Resource.Billing" | "Purge.Resource.Identity" | "Purge.Resource.Consent" | "Purge.DocumentReference.Appointment" | "Purge.DocumentReference.Health" | "Purge.DocumentReference.Veterinary" | "Purge.DocumentReference.Research" | "Purge.DocumentReference.Insurance" | "Purge.DocumentReference.Billing" | "Purge.DocumentReference.Identity" | "Purge.DocumentReference.Consent" | "Purge.Attachment.Appointment" | "Purge.Attachment.Health" | "Purge.Attachment.Veterinary" | "Purge.Attachment.Research" | "Purge.Attachment.Insurance" | "Purge.Attachment.Billing" | "Purge.Attachment.Identity" | "Purge.Attachment.Consent" | "Purge.Claims.Appointment" | "Purge.Claims.Health" | "Purge.Claims.Veterinary" | "Purge.Claims.Research" | "Purge.Claims.Insurance" | "Purge.Claims.Billing" | "Purge.Claims.Identity" | "Purge.Claims.Consent" | "Purge.Invoice.Appointment" | "Purge.Invoice.Health" | "Purge.Invoice.Veterinary" | "Purge.Invoice.Research" | "Purge.Invoice.Insurance" | "Purge.Invoice.Billing" | "Purge.Invoice.Identity" | "Purge.Invoice.Consent" | "Purge.Communication.Appointment" | "Purge.Communication.Health" | "Purge.Communication.Veterinary" | "Purge.Communication.Research" | "Purge.Communication.Insurance" | "Purge.Communication.Billing" | "Purge.Communication.Identity" | "Purge.Communication.Consent";
|
|
102
|
+
}>;
|