@medplum/fhirtypes 3.0.9 → 3.0.11
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/AuditEvent.d.ts +3 -1
- package/dist/ProjectMembership.d.ts +24 -12
- package/package.json +1 -1
package/dist/AuditEvent.d.ts
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
* Do not edit manually.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
import { Bot } from './Bot';
|
|
7
|
+
import { ClientApplication } from './ClientApplication';
|
|
6
8
|
import { CodeableConcept } from './CodeableConcept';
|
|
7
9
|
import { Coding } from './Coding';
|
|
8
10
|
import { Device } from './Device';
|
|
@@ -523,7 +525,7 @@ export interface AuditEventSource {
|
|
|
523
525
|
/**
|
|
524
526
|
* Identifier of the source where the event was detected.
|
|
525
527
|
*/
|
|
526
|
-
observer: Reference<PractitionerRole | Practitioner | Organization | Device | Patient | RelatedPerson>;
|
|
528
|
+
observer: Reference<PractitionerRole | Practitioner | Organization | Device | Patient | RelatedPerson | Bot | ClientApplication>;
|
|
527
529
|
|
|
528
530
|
/**
|
|
529
531
|
* Code specifying the type of source where event originated.
|
|
@@ -74,18 +74,30 @@ export interface ProjectMembership {
|
|
|
74
74
|
profile: Reference<Bot | ClientApplication | Patient | Practitioner | RelatedPerson>;
|
|
75
75
|
|
|
76
76
|
/**
|
|
77
|
-
* A
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
*
|
|
83
|
-
*
|
|
84
|
-
*
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
77
|
+
* SCIM userName. A service provider's unique identifier for the user,
|
|
78
|
+
* typically used by the user to directly authenticate to the service
|
|
79
|
+
* provider. Often displayed to the user as their unique identifier
|
|
80
|
+
* within the system (as opposed to "id" or "externalId", which are
|
|
81
|
+
* generally opaque and not user-friendly identifiers). Each User MUST
|
|
82
|
+
* include a non-empty userName value. This identifier MUST be unique
|
|
83
|
+
* across the service provider's entire set of Users. This attribute is
|
|
84
|
+
* REQUIRED and is case insensitive.
|
|
85
|
+
*/
|
|
86
|
+
userName?: string;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* SCIM externalId. A String that is an identifier for the resource as
|
|
90
|
+
* defined by the provisioning client. The "externalId" may simplify
|
|
91
|
+
* identification of a resource between the provisioning client and the
|
|
92
|
+
* service provider by allowing the client to use a filter to locate the
|
|
93
|
+
* resource with an identifier from the provisioning domain, obviating
|
|
94
|
+
* the need to store a local mapping between the provisioning domain's
|
|
95
|
+
* identifier of the resource and the identifier used by the service
|
|
96
|
+
* provider. Each resource MAY include a non-empty "externalId" value.
|
|
97
|
+
* The value of the "externalId" attribute is always issued by the
|
|
98
|
+
* provisioning client and MUST NOT be specified by the service provider.
|
|
99
|
+
* The service provider MUST always interpret the externalId as scoped
|
|
100
|
+
* to the provisioning domain.
|
|
89
101
|
*/
|
|
90
102
|
externalId?: string;
|
|
91
103
|
|