diff --git a/docs/client.md b/docs/client.md index 612c3e6e..dd32c4fc 100644 --- a/docs/client.md +++ b/docs/client.md @@ -40,6 +40,7 @@ The **fhirOptions** object is optional and can contain the following properties: - If the target is an array of references (E.g. [Patient.generalPractitioner](http://hl7.org/fhir/R4/patient-definitions.html#Patient.generalPractitioner)), you can request one or more of them by index (E.g. `generalPractitioner.0`). If the index is not specified, all the references in the array will be resolved. - The order in which the reference paths are specified does not matter. For example, if you use `["subject", "encounter.serviceProvider", "encounter"]`, the library should figure out that `encounter.serviceProvider` must be fetched after `encounter`. In fact, in this case it will first fetch subject and encounter in parallel, and then proceed to encounter.serviceProvider. - This option does not work with contained references (they are "already resolved" anyway). + - You can use `..` to loop through arrays. For example `identifier..assigner` will match if `identifier` is an array of objects having an `assigner` reference property. This is not recursive, meaning that `..` can only be used once in each path expression and paths like `identifier..assigner..whatever` will not work. - **useRefreshToken** `Boolean` - **Defaults to `true`**. If the client is authorized, it will possess an access token and pass it with the requests it makes. When that token expires, you should get back a `401 Unauthorized` response. To prevent this from happening, the client will check the access token expiration time before making requests. If the token is expired, or if it is about to expire in the next 10 seconds, a refresh call will be made to obtain new access token before making the actual request. By setting `useRefreshToken` to `false` you can disable this behavior. There are `refresh` and `refreshIfNeeded` methods on the client (described below) that can be called manually to renew the access token. ***Examples:*** @@ -96,8 +97,9 @@ client.request( resolveReferences: [ "context", // The Encounter "context.serviceProvider", // The Organization (hospital) - "performer.0", // The Practitioner - "subject" // The Patient + "performer.0", // The Practitioner (or use "performer" to get all practitioners) + "subject", // The Patient + "identifier..assigner" // All identifier assigners ] ); ``` diff --git a/docs/typedoc/classes/_adapters_browseradapter_.browseradapter.html b/docs/typedoc/classes/_adapters_browseradapter_.browseradapter.html index 1d174451..e76d6d62 100644 --- a/docs/typedoc/classes/_adapters_browseradapter_.browseradapter.html +++ b/docs/typedoc/classes/_adapters_browseradapter_.browseradapter.html @@ -140,7 +140,7 @@
Private _storage
Private _url
options
fhir
atob
btoa
getAbortController
getSmartApi
getStorage
getUrl
redirect
relative
constructor
Private _request
Private _responseToolkit
_responseToolkit: ResponseToolkit
@@ -186,7 +186,7 @@
@@ -203,7 +203,7 @@
@@ -227,7 +227,7 @@
@@ -257,7 +257,7 @@
@@ -287,7 +287,7 @@
@@ -307,7 +307,7 @@
@@ -355,7 +355,7 @@
@@ -383,7 +383,7 @@
@@ -407,7 +407,7 @@
@@ -432,7 +432,7 @@
@@ -466,7 +466,7 @@
@@ -494,7 +494,7 @@
diff --git a/docs/typedoc/classes/_adapters_nodeadapter_.nodeadapter.html b/docs/typedoc/classes/_adapters_nodeadapter_.nodeadapter.html
index b7b26c92..8ecbaeb2 100644
--- a/docs/typedoc/classes/_adapters_nodeadapter_.nodeadapter.html
+++ b/docs/typedoc/classes/_adapters_nodeadapter_.nodeadapter.html
@@ -139,7 +139,7 @@
@@ -168,7 +168,7 @@ _storage: Storage | null = null
@@ -184,7 +184,7 @@
@@ -207,7 +207,7 @@
@@ -236,7 +236,7 @@
@@ -265,7 +265,7 @@
@@ -285,7 +285,7 @@
@@ -331,7 +331,7 @@
@@ -358,7 +358,7 @@
@@ -381,7 +381,7 @@
@@ -405,7 +405,7 @@
@@ -438,7 +438,7 @@
diff --git a/docs/typedoc/classes/_client_.client.html b/docs/typedoc/classes/_client_.client.html
index 96318aa5..1dcb9bba 100644
--- a/docs/typedoc/classes/_client_.client.html
+++ b/docs/typedoc/classes/_client_.client.html
@@ -161,7 +161,7 @@
@@ -192,7 +192,7 @@ _refreshTask: Promise<any> | null
@@ -212,7 +212,7 @@ api: JsonObject | undefined
@@ -229,7 +229,7 @@ encounter: object
@@ -292,7 +292,7 @@ environment: Adapter
@@ -312,7 +312,7 @@ patient: object
@@ -415,7 +415,7 @@ state: ClientState
@@ -433,7 +433,7 @@ user: object
@@ -527,7 +527,7 @@ units: object = units
@@ -544,7 +544,7 @@
@@ -653,7 +653,7 @@
@@ -686,7 +686,7 @@
@@ -712,7 +712,7 @@
@@ -740,7 +740,7 @@
@@ -768,7 +768,7 @@
@@ -795,7 +795,7 @@
@@ -818,7 +818,7 @@
@@ -845,7 +845,7 @@
@@ -871,7 +871,7 @@
@@ -908,7 +908,7 @@
@@ -933,7 +933,7 @@
@@ -962,7 +962,7 @@
@@ -1001,7 +1001,7 @@
@@ -1045,7 +1045,7 @@
@@ -1082,7 +1082,7 @@
@@ -1117,7 +1117,7 @@
@@ -1164,7 +1164,7 @@
@@ -1211,7 +1211,7 @@
@@ -1261,7 +1261,7 @@
@@ -1330,7 +1330,7 @@
diff --git a/docs/typedoc/classes/_httperror_.httperror.html b/docs/typedoc/classes/_httperror_.httperror.html
index c99d36dd..2ea3a5a4 100644
--- a/docs/typedoc/classes/_httperror_.httperror.html
+++ b/docs/typedoc/classes/_httperror_.httperror.html
@@ -124,7 +124,7 @@
status: number
@@ -202,7 +202,7 @@ statusCode: number
@@ -217,7 +217,7 @@ statusText: string
@@ -249,7 +249,7 @@
@@ -131,7 +131,7 @@
@@ -163,7 +163,7 @@
diff --git a/docs/typedoc/classes/_storage_serverstorage_.serverstorage.html b/docs/typedoc/classes/_storage_serverstorage_.serverstorage.html
index ed2fb695..f0bf0eb4 100644
--- a/docs/typedoc/classes/_storage_serverstorage_.serverstorage.html
+++ b/docs/typedoc/classes/_storage_serverstorage_.serverstorage.html
@@ -114,7 +114,7 @@
@@ -144,7 +144,7 @@ request: RequestWithSession
@@ -161,7 +161,7 @@
@@ -190,7 +190,7 @@
@@ -222,7 +222,7 @@
diff --git a/docs/typedoc/interfaces/_adapters_hapiadapter_.hapiadapteroptions.html b/docs/typedoc/interfaces/_adapters_hapiadapter_.hapiadapteroptions.html
index f710c6a7..b7860046 100644
--- a/docs/typedoc/interfaces/_adapters_hapiadapter_.hapiadapteroptions.html
+++ b/docs/typedoc/interfaces/_adapters_hapiadapter_.hapiadapteroptions.html
@@ -98,7 +98,7 @@ request: Request
@@ -108,7 +108,7 @@ responseToolkit: ResponseToolkit
@@ -118,7 +118,7 @@ storage: Storage | storageFactory
diff --git a/docs/typedoc/interfaces/_adapters_nodeadapter_.nodeadapteroptions.html b/docs/typedoc/interfaces/_adapters_nodeadapter_.nodeadapteroptions.html
index cea73339..03b79eef 100644
--- a/docs/typedoc/interfaces/_adapters_nodeadapter_.nodeadapteroptions.html
+++ b/docs/typedoc/interfaces/_adapters_nodeadapter_.nodeadapteroptions.html
@@ -98,7 +98,7 @@ request: IncomingMessage
@@ -108,7 +108,7 @@ response: ServerResponse
@@ -118,7 +118,7 @@ storage: Storage | storageFactory
diff --git a/docs/typedoc/interfaces/_httperror_.errorresponse.html b/docs/typedoc/interfaces/_httperror_.errorresponse.html
index 467fdcd6..20890883 100644
--- a/docs/typedoc/interfaces/_httperror_.errorresponse.html
+++ b/docs/typedoc/interfaces/_httperror_.errorresponse.html
@@ -96,7 +96,7 @@ error: undefined | object
diff --git a/docs/typedoc/interfaces/_smart_.task.html b/docs/typedoc/interfaces/_smart_.task.html
index 28d5b64d..0390c616 100644
--- a/docs/typedoc/interfaces/_smart_.task.html
+++ b/docs/typedoc/interfaces/_smart_.task.html
@@ -98,7 +98,7 @@ complete: undefined | false | true
@@ -108,7 +108,7 @@ controller: AbortController
@@ -118,7 +118,7 @@ promise: Promise<any>
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.adapter.html b/docs/typedoc/interfaces/_types_d_.fhirclient.adapter.html
index 17f125c6..87c5d93c 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.adapter.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.adapter.html
@@ -120,7 +120,7 @@ options: BrowserFHIRSettings
@@ -142,7 +142,7 @@
@@ -170,7 +170,7 @@
@@ -198,7 +198,7 @@
@@ -240,7 +240,7 @@
@@ -266,7 +266,7 @@
@@ -288,7 +288,7 @@
@@ -311,7 +311,7 @@
@@ -343,7 +343,7 @@
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.authorizeparams.html b/docs/typedoc/interfaces/_types_d_.fhirclient.authorizeparams.html
index fa56ef41..23d53c74 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.authorizeparams.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.authorizeparams.html
@@ -121,7 +121,7 @@ clientId: undefined | string
@@ -144,7 +144,7 @@ Secret: undefined | string
@@ -161,7 +161,7 @@ client_id: undefined | string
@@ -186,7 +186,7 @@
Protected _storage
options
Implementation of Adapter.options
Inherited from NodeAdapter.options
-- Defined in src/adapters/NodeAdapter.ts:29
+ - Defined in src/adapters/NodeAdapter.ts:29
atob
Implementation of Adapter.atob
Inherited from NodeAdapter.atob
-- Defined in src/adapters/NodeAdapter.ts:121
+ - Defined in src/adapters/NodeAdapter.ts:121
btoa
Implementation of Adapter.btoa
Inherited from NodeAdapter.btoa
-- Defined in src/adapters/NodeAdapter.ts:111
+ - Defined in src/adapters/NodeAdapter.ts:111
getAbortController
Implementation of Adapter.getAbortController
Inherited from NodeAdapter.getAbortController
-- Defined in src/adapters/NodeAdapter.ts:132
+ - Defined in src/adapters/NodeAdapter.ts:132
constructor: function
Returns AbortController
@@ -331,7 +331,7 @@getProtocol
getSmartApi
Implementation of Adapter.getSmartApi
Inherited from NodeAdapter.getSmartApi
-- Defined in src/adapters/NodeAdapter.ts:144
+ - Defined in src/adapters/NodeAdapter.ts:144
getStorage
Implementation of Adapter.getStorage
Overrides NodeAdapter.getStorage
-- Defined in src/adapters/HapiAdapter.ts:41
+ - Defined in src/adapters/HapiAdapter.ts:41
getUrl
Implementation of Adapter.getUrl
Inherited from NodeAdapter.getUrl
-- Defined in src/adapters/NodeAdapter.ts:61
+ - Defined in src/adapters/NodeAdapter.ts:61
redirect
Implementation of Adapter.redirect
Overrides NodeAdapter.redirect
-- Defined in src/adapters/HapiAdapter.ts:62
+ - Defined in src/adapters/HapiAdapter.ts:62
relative
Implementation of Adapter.relative
Inherited from NodeAdapter.relative
-- Defined in src/adapters/NodeAdapter.ts:42
+ - Defined in src/adapters/NodeAdapter.ts:42
Static smart
constructor
Protected _storage
options
atob
btoa
getAbortController
constructor: function
Returns AbortController
@@ -308,7 +308,7 @@getProtocol
getSmartApi
getStorage
getUrl
redirect
relative
constructor
Private _refreshTask
api
encounter
environment
patient
state
user
units
any: function
Parameters
@@ -565,7 +565,7 @@cm: function
Parameters
@@ -594,7 +594,7 @@kg: function
Parameters
@@ -630,7 +630,7 @@Private _clearState
connect
getAuthorizationHeader
getEncounterId
getFhirRelease
getFhirUser
getFhirVersion
getIdToken
getPatientId
getState
getUserId
getUserType
create
delete
refresh
refreshIfNeeded
request
update
byCode
byCodes
getPath
constructor
Parameters
@@ -185,7 +185,7 @@status
statusCode
statusText
toJSON
Returns object
@@ -283,7 +283,7 @@Static create
Parameters
diff --git a/docs/typedoc/classes/_storage_browserstorage_.storage.html b/docs/typedoc/classes/_storage_browserstorage_.storage.html index 9ead7f23..9f6e3c98 100644 --- a/docs/typedoc/classes/_storage_browserstorage_.storage.html +++ b/docs/typedoc/classes/_storage_browserstorage_.storage.html @@ -102,7 +102,7 @@get
set
unset
constructor
request
get
set
unset
request
responseToolkit
Optional storage
request
response
Optional storage
Optional error
Optional complete
controller
promise
options
atob
btoa
getAbortController
getSmartApi
getStorage
getUrl
redirect
relative
Optional clientId
Optional clientSecret
clientOptional client_id
Optional completeInTarget
completeInTarget: undefined | false | true
@@ -203,7 +203,7 @@ encounterId: undefined | string
@@ -222,7 +222,7 @@
Optional encounterId
Optional fakeTokenRe
fakeTokenResponse: undefined | object
@@ -240,7 +240,7 @@
Optional fhirService
fhirServiceUrl: undefined | string
@@ -259,7 +259,7 @@ height: undefined | number
@@ -275,7 +275,7 @@ iss: undefined | string
@@ -295,7 +295,7 @@ launch: undefined | string
@@ -312,7 +312,7 @@ patientId: undefined | string
@@ -330,7 +330,7 @@ redirectUri: undefined | string
@@ -350,7 +350,7 @@ uri: undefined | string
@@ -372,7 +372,7 @@ scope: undefined | string
@@ -388,7 +388,7 @@ target: WindowTarget
@@ -416,7 +416,7 @@ width: undefined | number
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.browserfhirsettings.html b/docs/typedoc/interfaces/_types_d_.fhirclient.browserfhirsettings.html
index 1b4d5692..de91aa29 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.browserfhirsettings.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.browserfhirsettings.html
@@ -110,7 +110,7 @@
Optional height
Optional iss
Optional launch
Optional patientId
Optional redirectUri
Optional redirect_uri
redirect_Optional scope
Optional target
Optional width
Optional fullSession
fullSessionStorageSupport: undefined | false | true
@@ -131,7 +131,7 @@
@@ -158,7 +158,7 @@
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.clientstate.html b/docs/typedoc/interfaces/_types_d_.fhirclient.clientstate.html
index 68d55a85..b1662a0a 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.clientstate.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.clientstate.html
@@ -119,7 +119,7 @@ Uri: undefined | string
@@ -134,7 +134,7 @@ clientId: undefined | string
@@ -150,7 +150,7 @@ Secret: undefined | string
@@ -165,7 +165,7 @@
Optional refreshTokenrefreshTokenWithCredentials: "omit" | "include" | "same-origin"
Optional replaceBrowserreplaceBrowserHistory: undefined | false | true
Optional authorizeUri
authorizeOptional clientId
Optional clientSecret
clientOptional completeInTarget
completeInTarget: undefined | false | true
@@ -182,7 +182,7 @@ key: undefined | string
@@ -197,7 +197,7 @@ password: undefined | string
@@ -212,7 +212,7 @@ redirectUri: undefined | string
@@ -228,7 +228,7 @@
Optional key
Optional password
Optional redirectUri
Optional registrationUri<
registrationUri: undefined | string
@@ -244,7 +244,7 @@ scope: undefined | string
@@ -264,7 +264,7 @@ serverUrl: string
@@ -280,7 +280,7 @@
@@ -296,7 +296,7 @@ tokenUri: undefined | string
@@ -312,7 +312,7 @@ username: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.codevalue.html b/docs/typedoc/interfaces/_types_d_.fhirclient.codevalue.html
index 8076f390..33630104 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.codevalue.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.codevalue.html
@@ -100,7 +100,7 @@ code: string
@@ -110,7 +110,7 @@ value: number
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.backboneelement.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.backboneelement.html
index 3453229e..9cd32b36 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.backboneelement.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.backboneelement.html
@@ -118,7 +118,7 @@
Optional scope
serverUrl
Optional tokenResponsetokenResponse: TokenResponse
Optional tokenUri
Optional username
code
value
Optional extension
@@ -129,7 +129,7 @@Optional id
@@ -139,7 +139,7 @@Optional modifierExtensio
modifierExtension: Extension[]
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundle.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundle.html
index b87f3e40..97d73bf9 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundle.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundle.html
@@ -120,7 +120,7 @@ entry: BundleEntry[]
@@ -131,7 +131,7 @@
@@ -146,7 +146,7 @@ identifier: Identifier
@@ -162,7 +162,7 @@
Optional entry
Optional id
Optional identifier
Optional implicitRules
@@ -178,7 +178,7 @@
@@ -193,7 +193,7 @@ link: BundleLink[]
@@ -204,7 +204,7 @@
@@ -220,7 +220,7 @@ total: unsignedInt
@@ -240,7 +240,7 @@ type: "document" | "message" | "transaction" | "transaction-response" | "batch" | "batch-response" | "history" | "searchset" | "collection"
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundleentry.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundleentry.html
index 27f0db02..d6fd0d4d 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundleentry.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundleentry.html
@@ -112,7 +112,7 @@ fullUrl: string
@@ -133,7 +133,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
link
Optional meta
Optional resourceType
Inherited from Resource.resourceType
-- Defined in src/types.d.ts:872
+ - Defined in src/types.d.ts:872
@@ -230,7 +230,7 @@Optional total
type
Optional extension
@@ -122,7 +122,7 @@fullUrl
Optional id
@@ -144,7 +144,7 @@Optional modifierExtensio
@@ -154,7 +154,7 @@ resource: Resource
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundlelink.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundlelink.html
index 055b6769..1846a37c 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundlelink.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.bundlelink.html
@@ -112,7 +112,7 @@
resource
Optional extension
@@ -123,7 +123,7 @@Optional id
@@ -134,7 +134,7 @@Optional modifierExtensio
@@ -144,7 +144,7 @@ relation: string
@@ -154,7 +154,7 @@ url: uri
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.capabilitystatement.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.capabilitystatement.html
index 30169843..812a3467 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.capabilitystatement.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.capabilitystatement.html
@@ -104,7 +104,7 @@ fhirVersion: string
@@ -114,7 +114,7 @@ resourceType: string
@@ -124,7 +124,7 @@ rest: Array<object>
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.codeableconcept.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.codeableconcept.html
index 3c90aa1c..75a227a9 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.codeableconcept.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.codeableconcept.html
@@ -110,7 +110,7 @@ coding: Coding[]
@@ -126,7 +126,7 @@ text: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.coding.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.coding.html
index 6dda771d..46a1d1f8 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.coding.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.coding.html
@@ -113,7 +113,7 @@ code: code
@@ -128,7 +128,7 @@ display: undefined | string
@@ -144,7 +144,7 @@ system: uri
@@ -180,7 +180,7 @@ Selected: undefined | false | true
@@ -195,7 +195,7 @@ version: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.element.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.element.html
index cabfe7a9..fdd40b50 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.element.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.element.html
@@ -129,7 +129,7 @@ extension: Array<Extension<valueX>>
@@ -139,7 +139,7 @@ id: id
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.encounter.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.encounter.html
index 2b22df3d..917e27e3 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.encounter.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.encounter.html
@@ -116,7 +116,7 @@
@@ -132,7 +132,7 @@
relation
url
fhirVersion
resourceType
rest
Optional coding
Optional extension
@@ -137,7 +137,7 @@Optional id
@@ -147,7 +147,7 @@Optional text
Optional code
Optional display
Optional extension
@@ -155,7 +155,7 @@Optional id
@@ -165,7 +165,7 @@Optional system
Optional userSelected
userOptional version
Optional extension
Optional id
Optional id
Optional implicitRules
@@ -148,7 +148,7 @@
@@ -164,7 +164,7 @@
@@ -180,7 +180,7 @@ url: uri
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.identifier.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.identifier.html
index eaa80772..37d6b64f 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.identifier.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.identifier.html
@@ -114,7 +114,7 @@ assigner: Reference
@@ -130,7 +130,7 @@ period: Period
@@ -166,7 +166,7 @@ system: uri
@@ -181,7 +181,7 @@ type: CodeableConcept
@@ -196,7 +196,7 @@ use: "usual" | "official" | "temp" | "secondary"
@@ -206,7 +206,7 @@ value: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.meta.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.meta.html
index a9ef9b26..0efe0802 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.meta.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.meta.html
@@ -110,7 +110,7 @@ lastUpdated: instant
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.observation.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.observation.html
index 41218007..0668b25f 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.observation.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.observation.html
@@ -116,7 +116,7 @@
@@ -132,7 +132,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
Optional meta
resourceType
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.extension.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.extension.html index 193e923f..49bfd1bd 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.extension.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.extension.html @@ -122,7 +122,7 @@Optional extension
@@ -133,7 +133,7 @@Optional id
@@ -143,7 +143,7 @@url
Optional assigner
Optional extension
@@ -141,7 +141,7 @@Optional id
@@ -151,7 +151,7 @@Optional period
Optional system
Optional type
Optional use
Optional value
Optional extension
@@ -121,7 +121,7 @@Optional id
@@ -131,7 +131,7 @@lastUpdated
Optional id
Optional implicitRules
@@ -148,7 +148,7 @@
@@ -164,7 +164,7 @@
@@ -180,7 +180,7 @@
@@ -132,7 +132,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
Optional meta
resourceType
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.patient.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.patient.html index 81b1753e..72fa4b90 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.patient.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.patient.html @@ -116,7 +116,7 @@Optional id
Optional implicitRules
@@ -148,7 +148,7 @@
@@ -164,7 +164,7 @@
@@ -180,7 +180,7 @@ end: dateTime
@@ -126,7 +126,7 @@ start: dateTime
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.practitioner.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.practitioner.html
index fc1dfe45..245f854c 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.practitioner.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.practitioner.html
@@ -116,7 +116,7 @@
@@ -132,7 +132,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
Optional meta
resourceType
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.period.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.period.html index 89981e42..e4336ec2 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.period.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.period.html @@ -110,7 +110,7 @@Optional end
Optional extension
@@ -137,7 +137,7 @@Optional id
@@ -147,7 +147,7 @@Optional start
Optional id
Optional implicitRules
@@ -148,7 +148,7 @@
@@ -164,7 +164,7 @@
@@ -180,7 +180,7 @@ display: undefined | string
@@ -127,7 +127,7 @@ identifier: Identifier
@@ -163,7 +163,7 @@ reference: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.relatedperson.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.relatedperson.html
index cb887349..96d8eba0 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.relatedperson.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.relatedperson.html
@@ -116,7 +116,7 @@
@@ -132,7 +132,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
Optional meta
resourceType
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.reference.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.reference.html index f883e78b..b8e9b36d 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.reference.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.reference.html @@ -111,7 +111,7 @@Optional display
Optional extension
@@ -138,7 +138,7 @@Optional id
@@ -148,7 +148,7 @@Optional identifier
Optional reference
Optional id
Optional implicitRules
@@ -148,7 +148,7 @@
@@ -164,7 +164,7 @@
@@ -180,7 +180,7 @@ id: id
@@ -150,7 +150,7 @@
@@ -165,7 +165,7 @@ language: code
@@ -180,7 +180,7 @@ meta: Meta
@@ -195,7 +195,7 @@ Type: undefined | string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhiroptions.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhiroptions.html
index 86aea7ed..335079aa 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhiroptions.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhiroptions.html
@@ -112,7 +112,7 @@ flat: undefined | false | true
@@ -145,7 +145,7 @@ graph: undefined | false | true
@@ -162,7 +162,7 @@ onPage: undefined | function
@@ -203,7 +203,7 @@ pageLimit: undefined | number
@@ -226,7 +226,7 @@
Inherited from Resource.implicitRules
-- Defined in src/types.d.ts:882
+ - Defined in src/types.d.ts:882
Optional language
Optional meta
resourceType
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.resource.html b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.resource.html index 92ce732a..cca0a13a 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.resource.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.fhir.resource.html @@ -135,7 +135,7 @@Optional id
Optional implicitRulesimplicitRules: uri
Optional language
Optional meta
Optional resourceType
resourceOptional flat
Optional graph
Optional onPage
Optional pageLimit
Optional resolveReference
resolveReferences: string | string[]
@@ -259,7 +259,7 @@
Optional useRefreshT
useRefreshToken: undefined | false | true
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.idtoken.html b/docs/typedoc/interfaces/_types_d_.fhirclient.idtoken.html
index e083930d..4a3b72cf 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.idtoken.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.idtoken.html
@@ -108,7 +108,7 @@ aud: string
@@ -118,7 +118,7 @@ exp: number
@@ -128,7 +128,7 @@ iat: number
@@ -138,7 +138,7 @@ iss: string
@@ -148,7 +148,7 @@ profile: string
@@ -158,7 +158,7 @@ sub: string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.oauthsecurityextensions.html b/docs/typedoc/interfaces/_types_d_.fhirclient.oauthsecurityextensions.html
index 326e0ba3..9f959df0 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.oauthsecurityextensions.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.oauthsecurityextensions.html
@@ -109,7 +109,7 @@ authorizeUri: string
@@ -124,7 +124,7 @@ registrationUri: string
@@ -140,7 +140,7 @@ tokenUri: string
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.requestoptions.html b/docs/typedoc/interfaces/_types_d_.fhirclient.requestoptions.html
index 9d2e2fdb..24a37291 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.requestoptions.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.requestoptions.html
@@ -317,7 +317,7 @@ url: string | URL
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.requestwithsession.html b/docs/typedoc/interfaces/_types_d_.fhirclient.requestwithsession.html
index a10f4552..52d6e408 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.requestwithsession.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.requestwithsession.html
@@ -413,7 +413,7 @@ session: JsonObject
diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.smart.html b/docs/typedoc/interfaces/_types_d_.fhirclient.smart.html
index d610b048..5f933303 100644
--- a/docs/typedoc/interfaces/_types_d_.fhirclient.smart.html
+++ b/docs/typedoc/interfaces/_types_d_.fhirclient.smart.html
@@ -108,7 +108,7 @@ options: BrowserFHIRSettings
@@ -125,7 +125,7 @@
@@ -165,7 +165,7 @@
aud
exp
iat
iss
profile
sub
authorizeUri
registrationUri
tokenUri
url
session
options
authorize
client