From 105543bfa4698c91fe8d9929c5e848c5fa771a1a Mon Sep 17 00:00:00 2001 From: Vladimir Ignatov Date: Fri, 25 Sep 2020 09:50:29 -0400 Subject: [PATCH] Docs --- docs/client.md | 6 +- ...apters_browseradapter_.browseradapter.html | 26 ++++---- .../_adapters_hapiadapter_.hapiadapter.html | 32 ++++----- .../_adapters_nodeadapter_.nodeadapter.html | 26 ++++---- docs/typedoc/classes/_client_.client.html | 66 +++++++++---------- .../classes/_httperror_.httperror.html | 12 ++-- .../_storage_browserstorage_.storage.html | 6 +- ..._storage_serverstorage_.serverstorage.html | 10 +-- ...pters_hapiadapter_.hapiadapteroptions.html | 6 +- ...pters_nodeadapter_.nodeadapteroptions.html | 6 +- .../interfaces/_httperror_.errorresponse.html | 2 +- docs/typedoc/interfaces/_smart_.task.html | 6 +- .../_types_d_.fhirclient.adapter.html | 18 ++--- .../_types_d_.fhirclient.authorizeparams.html | 32 ++++----- ...pes_d_.fhirclient.browserfhirsettings.html | 6 +- .../_types_d_.fhirclient.clientstate.html | 26 ++++---- .../_types_d_.fhirclient.codevalue.html | 4 +- ...es_d_.fhirclient.fhir.backboneelement.html | 6 +- .../_types_d_.fhirclient.fhir.bundle.html | 20 +++--- ..._types_d_.fhirclient.fhir.bundleentry.html | 10 +-- .../_types_d_.fhirclient.fhir.bundlelink.html | 10 +-- ..._.fhirclient.fhir.capabilitystatement.html | 6 +- ...es_d_.fhirclient.fhir.codeableconcept.html | 8 +-- .../_types_d_.fhirclient.fhir.coding.html | 14 ++-- .../_types_d_.fhirclient.fhir.element.html | 4 +- .../_types_d_.fhirclient.fhir.encounter.html | 10 +-- .../_types_d_.fhirclient.fhir.extension.html | 6 +- .../_types_d_.fhirclient.fhir.identifier.html | 16 ++--- .../_types_d_.fhirclient.fhir.meta.html | 6 +- ..._types_d_.fhirclient.fhir.observation.html | 10 +-- .../_types_d_.fhirclient.fhir.patient.html | 10 +-- .../_types_d_.fhirclient.fhir.period.html | 8 +-- ...types_d_.fhirclient.fhir.practitioner.html | 10 +-- .../_types_d_.fhirclient.fhir.reference.html | 10 +-- ...ypes_d_.fhirclient.fhir.relatedperson.html | 10 +-- .../_types_d_.fhirclient.fhir.resource.html | 10 +-- .../_types_d_.fhirclient.fhiroptions.html | 12 ++-- .../_types_d_.fhirclient.idtoken.html | 12 ++-- ...d_.fhirclient.oauthsecurityextensions.html | 6 +- .../_types_d_.fhirclient.requestoptions.html | 2 +- ...ypes_d_.fhirclient.requestwithsession.html | 2 +- .../_types_d_.fhirclient.smart.html | 12 ++-- .../_types_d_.fhirclient.storage.html | 6 +- .../_types_d_.fhirclient.tokenresponse.html | 22 +++---- ...hirclient.wellknownsmartconfiguration.html | 20 +++--- ...l_dist_abortcontroller_polyfill_only_.html | 4 +- ...ontroller_polyfill_dist_cjs_ponyfill_.html | 4 +- docs/typedoc/modules/_client_.html | 12 ++-- docs/typedoc/modules/_entry_browser_.html | 28 ++++---- docs/typedoc/modules/_entry_hapi_.html | 2 +- docs/typedoc/modules/_entry_node_.html | 4 +- docs/typedoc/modules/_lib_.html | 50 +++++++------- docs/typedoc/modules/_settings_.html | 38 +++++------ docs/typedoc/modules/_smart_.html | 30 ++++----- .../modules/_types_d_.fhirclient.fhir.html | 14 ++-- .../typedoc/modules/_types_d_.fhirclient.html | 26 ++++---- 56 files changed, 391 insertions(+), 389 deletions(-) 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 @@

constructor

  • @@ -169,7 +169,7 @@

    Private _storage

    _storage: Storage | null = null
    @@ -184,7 +184,7 @@

    Private _url

    _url: URL | null = null
    @@ -200,7 +200,7 @@

    options

    @@ -222,7 +222,7 @@

    fhir

  • @@ -250,7 +250,7 @@

    atob

    @@ -279,7 +279,7 @@

    btoa

    @@ -308,7 +308,7 @@

    getAbortController

    @@ -352,7 +352,7 @@

    getSmartApi

    @@ -379,7 +379,7 @@

    getStorage

    @@ -403,7 +403,7 @@

    getUrl

    @@ -427,7 +427,7 @@

    redirect

    @@ -457,7 +457,7 @@

    relative

    diff --git a/docs/typedoc/classes/_adapters_hapiadapter_.hapiadapter.html b/docs/typedoc/classes/_adapters_hapiadapter_.hapiadapter.html index e48b4a80..ebfca460 100644 --- a/docs/typedoc/classes/_adapters_hapiadapter_.hapiadapter.html +++ b/docs/typedoc/classes/_adapters_hapiadapter_.hapiadapter.html @@ -136,7 +136,7 @@

    constructor

    @@ -165,7 +165,7 @@

    Private _request

    _request: Request
    @@ -175,7 +175,7 @@

    Private _responseToolkit_responseToolkit: ResponseToolkit

    @@ -186,7 +186,7 @@

    Protected _storage

    @@ -203,7 +203,7 @@

    options

    Implementation of Adapter.options

    Inherited from NodeAdapter.options

    @@ -227,7 +227,7 @@

    atob

    Implementation of Adapter.atob

    Inherited from NodeAdapter.atob

    @@ -257,7 +257,7 @@

    btoa

    Implementation of Adapter.btoa

    Inherited from NodeAdapter.btoa

    @@ -287,7 +287,7 @@

    getAbortController

    Implementation of Adapter.getAbortController

    Inherited from NodeAdapter.getAbortController

    @@ -307,7 +307,7 @@
    constructor: function
  • Returns AbortController

    @@ -331,7 +331,7 @@

    getProtocol

    @@ -355,7 +355,7 @@

    getSmartApi

    Implementation of Adapter.getSmartApi

    Inherited from NodeAdapter.getSmartApi

    @@ -383,7 +383,7 @@

    getStorage

    Implementation of Adapter.getStorage

    Overrides NodeAdapter.getStorage

    @@ -407,7 +407,7 @@

    getUrl

    Implementation of Adapter.getUrl

    Inherited from NodeAdapter.getUrl

    @@ -432,7 +432,7 @@

    redirect

    Implementation of Adapter.redirect

    Overrides NodeAdapter.redirect

    @@ -466,7 +466,7 @@

    relative

    Implementation of Adapter.relative

    Inherited from NodeAdapter.relative

    @@ -494,7 +494,7 @@

    Static smart

  • 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 @@

    constructor

  • @@ -168,7 +168,7 @@

    Protected _storage

    _storage: Storage | null = null
    @@ -184,7 +184,7 @@

    options

    @@ -207,7 +207,7 @@

    atob

    @@ -236,7 +236,7 @@

    btoa

    @@ -265,7 +265,7 @@

    getAbortController

    @@ -285,7 +285,7 @@
    constructor: function
  • Returns AbortController

    @@ -308,7 +308,7 @@

    getProtocol

  • @@ -331,7 +331,7 @@

    getSmartApi

    @@ -358,7 +358,7 @@

    getStorage

    @@ -381,7 +381,7 @@

    getUrl

    @@ -405,7 +405,7 @@

    redirect

    @@ -438,7 +438,7 @@

    relative

    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 @@

    constructor

  • @@ -192,7 +192,7 @@

    Private _refreshTask

    _refreshTask: Promise<any> | null
    @@ -212,7 +212,7 @@

    api

    api: JsonObject | undefined
    @@ -229,7 +229,7 @@

    encounter

    encounter: object
    @@ -292,7 +292,7 @@

    environment

    environment: Adapter
    @@ -312,7 +312,7 @@

    patient

    patient: object
    @@ -415,7 +415,7 @@

    state

    @@ -433,7 +433,7 @@

    user

    user: object
    @@ -527,7 +527,7 @@

    units

    units: object = units
    @@ -544,7 +544,7 @@
    any: function
  • Parameters

    @@ -565,7 +565,7 @@
    cm: function
  • Parameters

    @@ -594,7 +594,7 @@
    kg: function
  • Parameters

    @@ -630,7 +630,7 @@

    Private _clearState

  • @@ -653,7 +653,7 @@

    connect

  • @@ -686,7 +686,7 @@

    getAuthorizationHeader

  • @@ -712,7 +712,7 @@

    getEncounterId

  • @@ -740,7 +740,7 @@

    getFhirRelease

  • @@ -768,7 +768,7 @@

    getFhirUser

  • @@ -795,7 +795,7 @@

    getFhirVersion

  • @@ -818,7 +818,7 @@

    getIdToken

  • @@ -845,7 +845,7 @@

    getPatientId

  • @@ -871,7 +871,7 @@

    getState

  • @@ -908,7 +908,7 @@

    getUserId

  • @@ -933,7 +933,7 @@

    getUserType

  • @@ -962,7 +962,7 @@

    create

  • @@ -1001,7 +1001,7 @@

    delete

  • @@ -1045,7 +1045,7 @@

    refresh

  • @@ -1082,7 +1082,7 @@

    refreshIfNeeded

  • @@ -1117,7 +1117,7 @@

    request

  • @@ -1164,7 +1164,7 @@

    update

  • @@ -1211,7 +1211,7 @@

    byCode

  • @@ -1261,7 +1261,7 @@

    byCodes

  • @@ -1330,7 +1330,7 @@

    getPath

  • 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 @@

    constructor

  • Parameters

    @@ -185,7 +185,7 @@

    status

    status: number
    @@ -202,7 +202,7 @@

    statusCode

    statusCode: number
    @@ -217,7 +217,7 @@

    statusText

    statusText: string
    @@ -249,7 +249,7 @@

    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

  • @@ -131,7 +131,7 @@

    set

  • @@ -163,7 +163,7 @@

    unset

  • 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 @@

    constructor

  • @@ -144,7 +144,7 @@

    request

    @@ -161,7 +161,7 @@

    get

  • @@ -190,7 +190,7 @@

    set

  • @@ -222,7 +222,7 @@

    unset

  • 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: Request
    @@ -108,7 +108,7 @@

    responseToolkit

    responseToolkit: ResponseToolkit
    @@ -118,7 +118,7 @@

    Optional storage

    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

    request: IncomingMessage
    @@ -108,7 +108,7 @@

    response

    response: ServerResponse
    @@ -118,7 +118,7 @@

    Optional storage

    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 @@

    Optional error

    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 @@

    Optional complete

    complete: undefined | false | true
    @@ -108,7 +108,7 @@

    controller

    controller: AbortController
    @@ -118,7 +118,7 @@

    promise

    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

    @@ -142,7 +142,7 @@

    atob

  • @@ -170,7 +170,7 @@

    btoa

  • @@ -198,7 +198,7 @@

    getAbortController

  • @@ -240,7 +240,7 @@

    getSmartApi

  • @@ -266,7 +266,7 @@

    getStorage

  • @@ -288,7 +288,7 @@

    getUrl

  • @@ -311,7 +311,7 @@

    redirect

  • @@ -343,7 +343,7 @@

    relative

  • 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 @@

    Optional clientId

    clientId: undefined | string
    @@ -144,7 +144,7 @@

    Optional clientSecret

    clientSecret: undefined | string
    @@ -161,7 +161,7 @@

    Optional client_id

    client_id: undefined | string
    @@ -186,7 +186,7 @@

    Optional completeInTarget
    completeInTarget: undefined | false | true
    @@ -203,7 +203,7 @@

    Optional encounterId

    encounterId: undefined | string
    @@ -222,7 +222,7 @@

    Optional fakeTokenRe
    fakeTokenResponse: undefined | object
    @@ -240,7 +240,7 @@

    Optional fhirService
    fhirServiceUrl: undefined | string
    @@ -259,7 +259,7 @@

    Optional height

    height: undefined | number
    @@ -275,7 +275,7 @@

    Optional iss

    iss: undefined | string
    @@ -295,7 +295,7 @@

    Optional launch

    launch: undefined | string
    @@ -312,7 +312,7 @@

    Optional patientId

    patientId: undefined | string
    @@ -330,7 +330,7 @@

    Optional redirectUri

    redirectUri: undefined | string
    @@ -350,7 +350,7 @@

    Optional redirect_uri

    redirect_uri: undefined | string
    @@ -372,7 +372,7 @@

    Optional scope

    scope: undefined | string
    @@ -388,7 +388,7 @@

    Optional target

    target: WindowTarget
    @@ -416,7 +416,7 @@

    Optional width

    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 fullSession
    fullSessionStorageSupport: undefined | false | true
    @@ -131,7 +131,7 @@

    Optional refreshTokenrefreshTokenWithCredentials: "omit" | "include" | "same-origin"

    @@ -158,7 +158,7 @@

    Optional replaceBrowserreplaceBrowserHistory: undefined | false | true

    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 @@

    Optional authorizeUri

    authorizeUri: undefined | string
    @@ -134,7 +134,7 @@

    Optional clientId

    clientId: undefined | string
    @@ -150,7 +150,7 @@

    Optional clientSecret

    clientSecret: undefined | string
    @@ -165,7 +165,7 @@

    Optional completeInTarget
    completeInTarget: undefined | false | true
    @@ -182,7 +182,7 @@

    Optional key

    key: undefined | string
    @@ -197,7 +197,7 @@

    Optional password

    password: undefined | string
    @@ -212,7 +212,7 @@

    Optional redirectUri

    redirectUri: undefined | string
    @@ -228,7 +228,7 @@

    Optional registrationUri<
    registrationUri: undefined | string
    @@ -244,7 +244,7 @@

    Optional scope

    scope: undefined | string
    @@ -264,7 +264,7 @@

    serverUrl

    serverUrl: string
    @@ -280,7 +280,7 @@

    Optional tokenResponsetokenResponse: TokenResponse

    @@ -296,7 +296,7 @@

    Optional tokenUri

    tokenUri: undefined | string
    @@ -312,7 +312,7 @@

    Optional username

    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

    code: string
    @@ -110,7 +110,7 @@

    value

    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 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 @@

    Optional entry

    entry: BundleEntry[]
    @@ -131,7 +131,7 @@

    Optional id

    @@ -146,7 +146,7 @@

    Optional identifier

    identifier: Identifier
    @@ -162,7 +162,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -178,7 +178,7 @@

    Optional language

    @@ -193,7 +193,7 @@

    link

    link: BundleLink[]
    @@ -204,7 +204,7 @@

    Optional meta

    @@ -220,7 +220,7 @@

    Optional resourceType

    Inherited from Resource.resourceType

    @@ -230,7 +230,7 @@

    Optional total

    @@ -240,7 +240,7 @@

    type

    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 @@

    Optional extension

    @@ -122,7 +122,7 @@

    fullUrl

    fullUrl: string
    @@ -133,7 +133,7 @@

    Optional id

    @@ -144,7 +144,7 @@

    Optional modifierExtensio @@ -154,7 +154,7 @@

    resource

    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 @@

    Optional extension

    @@ -123,7 +123,7 @@

    Optional id

    @@ -134,7 +134,7 @@

    Optional modifierExtensio @@ -144,7 +144,7 @@

    relation

    relation: string
    @@ -154,7 +154,7 @@

    url

    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

    fhirVersion: string
    @@ -114,7 +114,7 @@

    resourceType

    resourceType: string
    @@ -124,7 +124,7 @@

    rest

    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 @@

    Optional coding

    coding: Coding[]
    @@ -126,7 +126,7 @@

    Optional extension

    @@ -137,7 +137,7 @@

    Optional id

    @@ -147,7 +147,7 @@

    Optional text

    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 @@

    Optional code

    code: code
    @@ -128,7 +128,7 @@

    Optional display

    display: undefined | string
    @@ -144,7 +144,7 @@

    Optional extension

    @@ -155,7 +155,7 @@

    Optional id

    @@ -165,7 +165,7 @@

    Optional system

    system: uri
    @@ -180,7 +180,7 @@

    Optional userSelected

    userSelected: undefined | false | true
    @@ -195,7 +195,7 @@

    Optional version

    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 @@

    Optional extension

    extension: Array<Extension<valueX>>
    @@ -139,7 +139,7 @@

    Optional id

    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 @@

    Optional id

    @@ -132,7 +132,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -148,7 +148,7 @@

    Optional language

    @@ -164,7 +164,7 @@

    Optional meta

    @@ -180,7 +180,7 @@

    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

    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 @@

    Optional assigner

    assigner: Reference
    @@ -130,7 +130,7 @@

    Optional extension

    @@ -141,7 +141,7 @@

    Optional id

    @@ -151,7 +151,7 @@

    Optional period

    period: Period
    @@ -166,7 +166,7 @@

    Optional system

    system: uri
    @@ -181,7 +181,7 @@

    Optional type

    @@ -196,7 +196,7 @@

    Optional use

    use: "usual" | "official" | "temp" | "secondary"
    @@ -206,7 +206,7 @@

    Optional value

    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 @@

    Optional extension

    @@ -121,7 +121,7 @@

    Optional id

    @@ -131,7 +131,7 @@

    lastUpdated

    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 @@

    Optional id

    @@ -132,7 +132,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -148,7 +148,7 @@

    Optional language

    @@ -164,7 +164,7 @@

    Optional meta

    @@ -180,7 +180,7 @@

    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

    @@ -132,7 +132,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -148,7 +148,7 @@

    Optional language

    @@ -164,7 +164,7 @@

    Optional meta

    @@ -180,7 +180,7 @@

    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

    @@ -126,7 +126,7 @@

    Optional extension

    @@ -137,7 +137,7 @@

    Optional id

    @@ -147,7 +147,7 @@

    Optional start

    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 @@

    Optional id

    @@ -132,7 +132,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -148,7 +148,7 @@

    Optional language

    @@ -164,7 +164,7 @@

    Optional meta

    @@ -180,7 +180,7 @@

    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

    display: undefined | string
    @@ -127,7 +127,7 @@

    Optional extension

    @@ -138,7 +138,7 @@

    Optional id

    @@ -148,7 +148,7 @@

    Optional identifier

    identifier: Identifier
    @@ -163,7 +163,7 @@

    Optional reference

    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 @@

    Optional id

    @@ -132,7 +132,7 @@

    Optional implicitRules

    Inherited from Resource.implicitRules

    @@ -148,7 +148,7 @@

    Optional language

    @@ -164,7 +164,7 @@

    Optional meta

    @@ -180,7 +180,7 @@

    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

    id: id
    @@ -150,7 +150,7 @@

    Optional implicitRulesimplicitRules: uri

    @@ -165,7 +165,7 @@

    Optional language

    language: code
    @@ -180,7 +180,7 @@

    Optional meta

    meta: Meta
    @@ -195,7 +195,7 @@

    Optional resourceType

    resourceType: 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 @@

    Optional flat

    flat: undefined | false | true
    @@ -145,7 +145,7 @@

    Optional graph

    graph: undefined | false | true
    @@ -162,7 +162,7 @@

    Optional onPage

    onPage: undefined | function
    @@ -203,7 +203,7 @@

    Optional pageLimit

    pageLimit: undefined | number
    @@ -226,7 +226,7 @@

    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

    aud: string
    @@ -118,7 +118,7 @@

    exp

    exp: number
    @@ -128,7 +128,7 @@

    iat

    iat: number
    @@ -138,7 +138,7 @@

    iss

    iss: string
    @@ -148,7 +148,7 @@

    profile

    profile: string
    @@ -158,7 +158,7 @@

    sub

    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

    authorizeUri: string
    @@ -124,7 +124,7 @@

    registrationUri

    registrationUri: string
    @@ -140,7 +140,7 @@

    tokenUri

    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

    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

    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

    @@ -125,7 +125,7 @@

    authorize

  • @@ -165,7 +165,7 @@

    client

  • @@ -194,7 +194,7 @@

    init

  • @@ -243,7 +243,7 @@

    ready

  • @@ -258,7 +258,7 @@

    Returns Promise

    Parameters

    diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.storage.html b/docs/typedoc/interfaces/_types_d_.fhirclient.storage.html index 3b37a3ca..a64810c6 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.storage.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.storage.html @@ -108,7 +108,7 @@

    get

    get: function
    @@ -145,7 +145,7 @@

    set

    set: function
    @@ -185,7 +185,7 @@

    unset

    unset: function
    diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.tokenresponse.html b/docs/typedoc/interfaces/_types_d_.fhirclient.tokenresponse.html index 885e265b..6426660d 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.tokenresponse.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.tokenresponse.html @@ -133,7 +133,7 @@

    Optional access_token

    access_token: undefined | string
    @@ -148,7 +148,7 @@

    Optional client_id

    client_id: undefined | string
    @@ -167,7 +167,7 @@

    Optional encounter

    encounter: undefined | string
    @@ -184,7 +184,7 @@

    Optional expires_in

    expires_in: undefined | number
    @@ -200,7 +200,7 @@

    Optional id_token

    id_token: undefined | string
    @@ -215,7 +215,7 @@

    Optional need_patient_need_patient_banner: undefined | false | true

    @@ -233,7 +233,7 @@

    Optional patient

    patient: undefined | string
    @@ -249,7 +249,7 @@

    Optional refresh_tokenrefresh_token: undefined | string

    @@ -265,7 +265,7 @@

    Optional scope

    scope: undefined | string
    @@ -281,7 +281,7 @@

    Optional smart_style_smart_style_url: undefined | string

    @@ -303,7 +303,7 @@

    Optional token_type

    token_type: "bearer" | "Bearer"
    diff --git a/docs/typedoc/interfaces/_types_d_.fhirclient.wellknownsmartconfiguration.html b/docs/typedoc/interfaces/_types_d_.fhirclient.wellknownsmartconfiguration.html index 5541c3e5..516d425a 100644 --- a/docs/typedoc/interfaces/_types_d_.fhirclient.wellknownsmartconfiguration.html +++ b/docs/typedoc/interfaces/_types_d_.fhirclient.wellknownsmartconfiguration.html @@ -108,7 +108,7 @@

    authorization_endpoint

    authorization_endpoint: string
    @@ -123,7 +123,7 @@

    capabilities

    @@ -139,7 +139,7 @@

    Optional introspection_en
    introspection_endpoint: undefined | string
    @@ -155,7 +155,7 @@

    Optional management_endpo
    management_endpoint: undefined | string
    @@ -171,7 +171,7 @@

    Optional registration_end
    registration_endpoint: undefined | string
    @@ -187,7 +187,7 @@

    Optional response_types_<
    response_types_supported: string[]
    @@ -202,7 +202,7 @@

    Optional revocation_endpo
    revocation_endpoint: undefined | string
    @@ -218,7 +218,7 @@

    Optional scopes_supported
    scopes_supported: string[]
    @@ -233,7 +233,7 @@

    token_endpoint

    token_endpoint: string
    @@ -248,7 +248,7 @@

    Optional token_endpoint_<
    token_endpoint_auth_methods: SMARTAuthenticationMethod[]
    diff --git a/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html b/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html index a5345274..0d4836ac 100644 --- a/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html +++ b/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html @@ -88,7 +88,7 @@

    Const AbortController

    AbortController: object
    @@ -103,7 +103,7 @@
    constructor: function
  • Returns AbortController

    diff --git a/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_cjs_ponyfill_.html b/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_cjs_ponyfill_.html index 7aaeee7a..d300d3f2 100644 --- a/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_cjs_ponyfill_.html +++ b/docs/typedoc/modules/_abortcontroller_polyfill_d_._abortcontroller_polyfill_dist_cjs_ponyfill_.html @@ -88,7 +88,7 @@

    Const AbortController

    AbortController: object
    @@ -103,7 +103,7 @@
    constructor: function
  • Returns AbortController

    diff --git a/docs/typedoc/modules/_client_.html b/docs/typedoc/modules/_client_.html index 92ef17b1..3a95ce15 100644 --- a/docs/typedoc/modules/_client_.html +++ b/docs/typedoc/modules/_client_.html @@ -101,7 +101,7 @@

    Response

    Response: any
    @@ -111,7 +111,7 @@

    Const debug

    debug: any = _debug.extend("client")
    @@ -128,7 +128,7 @@

    contextualize

  • @@ -167,7 +167,7 @@

    Private getRef

  • @@ -211,7 +211,7 @@

    resolveRef

  • @@ -260,7 +260,7 @@

    Private resolveRefs

  • diff --git a/docs/typedoc/modules/_entry_browser_.html b/docs/typedoc/modules/_entry_browser_.html index f8fb9fe3..635944dc 100644 --- a/docs/typedoc/modules/_entry_browser_.html +++ b/docs/typedoc/modules/_entry_browser_.html @@ -96,7 +96,7 @@

    Const adapter

    adapter: BrowserAdapter = new BrowserAdapter()
    @@ -106,7 +106,7 @@

    authorize

    authorize: authorize
    @@ -116,7 +116,7 @@

    client

    client: client
    @@ -126,7 +126,7 @@

    init

    init: init
    @@ -136,7 +136,7 @@

    options

    @@ -146,7 +146,7 @@

    ready

    ready: ready
    @@ -159,7 +159,7 @@

    Const FHIR: object

    @@ -168,7 +168,7 @@

    AbortController

    AbortController: object = window.AbortController
    @@ -201,7 +201,7 @@

    client

    client: client
    @@ -211,7 +211,7 @@

    oauth2

    oauth2: object
    @@ -220,7 +220,7 @@

    authorize

    authorize: authorize
    @@ -230,7 +230,7 @@

    init

    init: init
    @@ -240,7 +240,7 @@

    ready

    ready: ready
    @@ -250,7 +250,7 @@

    settings

    settings: BrowserFHIRSettings = options
    diff --git a/docs/typedoc/modules/_entry_hapi_.html b/docs/typedoc/modules/_entry_hapi_.html index 9a56dd9e..305ec4ec 100644 --- a/docs/typedoc/modules/_entry_hapi_.html +++ b/docs/typedoc/modules/_entry_hapi_.html @@ -89,7 +89,7 @@

    Export assignment sma
  • Parameters

    diff --git a/docs/typedoc/modules/_entry_node_.html b/docs/typedoc/modules/_entry_node_.html index 50dad4e6..abcb1483 100644 --- a/docs/typedoc/modules/_entry_node_.html +++ b/docs/typedoc/modules/_entry_node_.html @@ -91,7 +91,7 @@

    storageFactory

    storageFactory: function
    @@ -129,7 +129,7 @@

    Export assignment sma
  • Parameters

    diff --git a/docs/typedoc/modules/_lib_.html b/docs/typedoc/modules/_lib_.html index 70f6407c..3dc34f47 100644 --- a/docs/typedoc/modules/_lib_.html +++ b/docs/typedoc/modules/_lib_.html @@ -119,7 +119,7 @@

    Const _debug

    _debug: any = debug("FHIR")
    @@ -129,7 +129,7 @@

    Const cache

    cache: JsonObject
    @@ -144,7 +144,7 @@

    Const debug

    debug: any = require("debug")
    @@ -154,7 +154,7 @@

    fetch

    fetch: any
    @@ -171,7 +171,7 @@

    absolute

  • @@ -209,7 +209,7 @@

    byCode

  • @@ -251,7 +251,7 @@

    byCodes

  • @@ -312,7 +312,7 @@

    checkResponse

  • @@ -340,7 +340,7 @@

    ensureNumerical

  • @@ -376,7 +376,7 @@

    fetchConformanceStatement

  • @@ -412,7 +412,7 @@

    getAndCache

  • @@ -457,7 +457,7 @@

    getPath

  • @@ -498,7 +498,7 @@

    getPatientParam

  • @@ -530,7 +530,7 @@

    getTargetWindow

  • @@ -571,7 +571,7 @@

    humanizeError

  • @@ -602,7 +602,7 @@

    request

  • @@ -648,7 +648,7 @@

    responseToJSON

  • @@ -678,7 +678,7 @@

    setPath

  • @@ -731,7 +731,7 @@

    jwtDecode

  • @@ -768,7 +768,7 @@

    makeArray

  • @@ -806,7 +806,7 @@

    randomString

  • @@ -844,7 +844,7 @@

    Const units

    units: object
    @@ -862,7 +862,7 @@

    any

  • Parameters

    @@ -885,7 +885,7 @@

    cm

  • Parameters

    @@ -916,7 +916,7 @@

    kg

  • Parameters

    diff --git a/docs/typedoc/modules/_settings_.html b/docs/typedoc/modules/_settings_.html index 13b4be8b..3e9a3e58 100644 --- a/docs/typedoc/modules/_settings_.html +++ b/docs/typedoc/modules/_settings_.html @@ -93,7 +93,7 @@

    Const SMART_KEY

    SMART_KEY: "SMART_KEY" = "SMART_KEY"
    @@ -108,7 +108,7 @@

    Const patientCompartment

    patientCompartment: string[] = ["Account","AdverseEvent","AllergyIntolerance","Appointment","AppointmentResponse","AuditEvent","Basic","BodySite","BodyStructure","CarePlan","CareTeam","ChargeItem","Claim","ClaimResponse","ClinicalImpression","Communication","CommunicationRequest","Composition","Condition","Consent","Coverage","CoverageEligibilityRequest","CoverageEligibilityResponse","DetectedIssue","DeviceRequest","DeviceUseRequest","DeviceUseStatement","DiagnosticOrder","DiagnosticReport","DocumentManifest","DocumentReference","EligibilityRequest","Encounter","EnrollmentRequest","EpisodeOfCare","ExplanationOfBenefit","FamilyMemberHistory","Flag","Goal","Group","ImagingManifest","ImagingObjectSelection","ImagingStudy","Immunization","ImmunizationEvaluation","ImmunizationRecommendation","Invoice","List","MeasureReport","Media","MedicationAdministration","MedicationDispense","MedicationOrder","MedicationRequest","MedicationStatement","MolecularSequence","NutritionOrder","Observation","Order","Patient","Person","Procedure","ProcedureRequest","Provenance","QuestionnaireResponse","ReferralRequest","RelatedPerson","RequestGroup","ResearchSubject","RiskAssessment","Schedule","ServiceRequest","Specimen","SupplyDelivery","SupplyRequest","VisionPrescription"]
    @@ -123,7 +123,7 @@

    Const patientParams

    patientParams: string[] = ["patient","subject","requester","member","actor","beneficiary"]
    @@ -142,7 +142,7 @@

    Const fhirVersions

    fhirVersions: object
    @@ -156,7 +156,7 @@

    0.4.0

    0.4.0: number = 2
    @@ -166,7 +166,7 @@

    0.5.0

    0.5.0: number = 2
    @@ -176,7 +176,7 @@

    1.0.0

    1.0.0: number = 2
    @@ -186,7 +186,7 @@

    1.0.1

    1.0.1: number = 2
    @@ -196,7 +196,7 @@

    1.0.2

    1.0.2: number = 2
    @@ -206,7 +206,7 @@

    1.1.0

    1.1.0: number = 3
    @@ -216,7 +216,7 @@

    1.4.0

    1.4.0: number = 3
    @@ -226,7 +226,7 @@

    1.6.0

    1.6.0: number = 3
    @@ -236,7 +236,7 @@

    1.8.0

    1.8.0: number = 3
    @@ -246,7 +246,7 @@

    3.0.0

    3.0.0: number = 3
    @@ -256,7 +256,7 @@

    3.0.1

    3.0.1: number = 3
    @@ -266,7 +266,7 @@

    3.3.0

    3.3.0: number = 4
    @@ -276,7 +276,7 @@

    3.5.0

    3.5.0: number = 4
    @@ -286,7 +286,7 @@

    4.0.0

    4.0.0: number = 4
    @@ -296,7 +296,7 @@

    4.0.1

    4.0.1: number = 4
    diff --git a/docs/typedoc/modules/_smart_.html b/docs/typedoc/modules/_smart_.html index 4d6dfdbd..dd805bc3 100644 --- a/docs/typedoc/modules/_smart_.html +++ b/docs/typedoc/modules/_smart_.html @@ -110,7 +110,7 @@

    Const debug

    debug: any = _debug.extend("oauth2")
    @@ -127,7 +127,7 @@

    any

  • @@ -159,7 +159,7 @@

    authorize

  • @@ -200,7 +200,7 @@

    buildTokenRequest

  • @@ -235,7 +235,7 @@

    completeAuth

  • @@ -265,7 +265,7 @@

    fetchWellKnownJson

  • @@ -301,7 +301,7 @@

    getSecurityExtensions

  • @@ -335,7 +335,7 @@

    getSecurityExtensionsFromConformanceStatement

  • @@ -366,7 +366,7 @@

    getSecurityExtensionsFromWellKnownJson

  • @@ -397,7 +397,7 @@

    init

  • @@ -459,7 +459,7 @@

    isBrowser

  • Returns boolean

    @@ -476,7 +476,7 @@

    isInFrame

  • @@ -501,7 +501,7 @@

    isInPopUp

  • @@ -529,7 +529,7 @@

    onMessage

  • @@ -561,7 +561,7 @@

    ready

  • diff --git a/docs/typedoc/modules/_types_d_.fhirclient.fhir.html b/docs/typedoc/modules/_types_d_.fhirclient.fhir.html index fc1cf00c..71d89a0e 100644 --- a/docs/typedoc/modules/_types_d_.fhirclient.fhir.html +++ b/docs/typedoc/modules/_types_d_.fhirclient.fhir.html @@ -121,7 +121,7 @@

    code

    code: string
    @@ -140,7 +140,7 @@

    dateTime

    dateTime: string
    @@ -172,7 +172,7 @@

    id

    id: string
    @@ -191,7 +191,7 @@

    instant

    instant: string
    @@ -215,7 +215,7 @@

    unsignedInt

    unsignedInt: number
    @@ -231,7 +231,7 @@

    uri

    uri: string
    @@ -249,7 +249,7 @@

    valueX

    valueX: "valueInteger" | "valueUnsignedInt" | "valuePositiveInt" | "valueDecimal" | "valueDateTime" | "valueDate" | "valueTime" | "valueInstant" | "valueString" | "valueUri" | "valueOid" | "valueUuid" | "valueId" | "valueBoolean" | "valueCode" | "valueMarkdown" | "valueBase64Binary" | "valueCoding" | "valueCodeableConcept" | "valueAttachment" | "valueIdentifier" | "valueQuantity" | "valueSampledData" | "valueRange" | "valuePeriod" | "valueRatio" | "valueHumanName" | "valueAddress" | "valueContactPoint" | "valueTiming" | "valueReference" | "valueAnnotation" | "valueSignature" | "valueMeta"
    diff --git a/docs/typedoc/modules/_types_d_.fhirclient.html b/docs/typedoc/modules/_types_d_.fhirclient.html index 23cdfe27..36535465 100644 --- a/docs/typedoc/modules/_types_d_.fhirclient.html +++ b/docs/typedoc/modules/_types_d_.fhirclient.html @@ -131,7 +131,7 @@

    SMARTAuthenticationMethod

    SMARTAuthenticationMethod: "client_secret_post" | "client_secret_basic"
    @@ -141,7 +141,7 @@

    WindowTarget

    @@ -151,7 +151,7 @@

    WindowTargetVariable

    WindowTargetVariable: "_self" | "_top" | "_parent" | "_blank" | "popup" | string | number | Window
    @@ -161,7 +161,7 @@

    clientType

    clientType: "client-public" | "client-confidential-symmetric"
    @@ -171,7 +171,7 @@

    launchContext

    launchContext: "context-banner" | "context-style"
    @@ -181,7 +181,7 @@

    launchContextEHR

    launchContextEHR: "context-ehr-patient" | "context-ehr-encounter"
    @@ -191,7 +191,7 @@

    launchContextStandalone

    launchContextStandalone: "context-standalone-patient" | "context-standalone-encounter"
    @@ -201,7 +201,7 @@

    launchMode

    launchMode: "launch-ehr" | "launch-standalone"
    @@ -211,7 +211,7 @@

    permissions

    permissions: "permission-offline" | "permission-patient" | "permission-user"
    @@ -221,7 +221,7 @@

    singleSignOn

    singleSignOn: "sso-openid-connect"
    @@ -231,7 +231,7 @@

    storageFactory

    storageFactory: function
    @@ -270,7 +270,7 @@

    WindowTargetFunction

  • Returns WindowTargetVariable

    @@ -278,7 +278,7 @@

    Returns

    Returns Promise<WindowTargetVariable>