├── .eslintignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── browser.yml │ └── node.yml ├── .gitignore ├── .labrc.js ├── .npmignore ├── .nvmrc ├── LICENSE ├── README.md ├── babel.config.js ├── dist ├── LICENSE ├── README.md ├── build │ ├── bundle.dev.html │ ├── bundle.prod.html │ ├── bundle.pure.dev.html │ ├── bundle.pure.prod.html │ ├── fhir-client.js │ ├── fhir-client.js.map │ ├── fhir-client.min.js │ ├── fhir-client.min.js.LICENSE.txt │ ├── fhir-client.min.js.map │ ├── fhir-client.pure.js │ ├── fhir-client.pure.js.map │ ├── fhir-client.pure.min.js │ ├── fhir-client.pure.min.js.LICENSE.txt │ └── fhir-client.pure.min.js.map ├── changelog.md ├── index.d.ts ├── lib │ ├── Client.d.ts │ ├── Client.js │ ├── FhirClient.d.ts │ ├── FhirClient.js │ ├── HttpError.d.ts │ ├── HttpError.js │ ├── adapters │ │ ├── BrowserAdapter.d.ts │ │ ├── BrowserAdapter.js │ │ ├── HapiAdapter.d.ts │ │ ├── HapiAdapter.js │ │ ├── NodeAdapter.d.ts │ │ └── NodeAdapter.js │ ├── entry │ │ ├── browser.d.ts │ │ ├── browser.js │ │ ├── hapi.d.ts │ │ ├── hapi.js │ │ ├── node.d.ts │ │ └── node.js │ ├── lib.d.ts │ ├── lib.js │ ├── security │ │ ├── browser.d.ts │ │ ├── browser.js │ │ ├── server.d.ts │ │ └── server.js │ ├── settings.d.ts │ ├── settings.js │ ├── smart.d.ts │ ├── smart.js │ ├── storage │ │ ├── BrowserStorage.d.ts │ │ ├── BrowserStorage.js │ │ ├── ServerStorage.d.ts │ │ └── ServerStorage.js │ ├── strings.d.ts │ ├── strings.js │ └── types.d.ts └── package.json ├── docs ├── README.md ├── _config.yml ├── api.md ├── assets │ ├── prism.css │ └── prism.js ├── client.md ├── fhir_client.md ├── fhirjs-equivalents.md ├── migration.md ├── node.md ├── open_servers.md ├── request.html ├── targets.md ├── typedoc-theme │ └── assets │ │ ├── css │ │ └── main.css │ │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ │ └── js │ │ └── main.js ├── typedoc │ ├── .nojekyll │ ├── assets │ │ ├── highlight.css │ │ ├── icons.css │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── main.js │ │ ├── search.js │ │ ├── style.css │ │ ├── widgets.png │ │ └── widgets@2x.png │ ├── classes │ │ ├── Client.default.html │ │ ├── FhirClient.default.html │ │ ├── HttpError.default.html │ │ ├── adapters_BrowserAdapter.default.html │ │ ├── adapters_HapiAdapter.default.html │ │ ├── adapters_NodeAdapter.default.html │ │ ├── storage_BrowserStorage.default.html │ │ └── storage_ServerStorage.default.html │ ├── index.html │ ├── interfaces │ │ ├── types.fhirclient.Adapter.html │ │ ├── types.fhirclient.AuthorizeParams.html │ │ ├── types.fhirclient.BrowserFHIRSettings.html │ │ ├── types.fhirclient.ClientState.html │ │ ├── types.fhirclient.CodeValue.html │ │ ├── types.fhirclient.CombinedFetchResult.html │ │ ├── types.fhirclient.ES384JWK.html │ │ ├── types.fhirclient.FHIR.BackboneElement.html │ │ ├── types.fhirclient.FHIR.Bundle.html │ │ ├── types.fhirclient.FHIR.BundleEntry.html │ │ ├── types.fhirclient.FHIR.BundleLink.html │ │ ├── types.fhirclient.FHIR.CapabilityStatement.html │ │ ├── types.fhirclient.FHIR.CodeableConcept.html │ │ ├── types.fhirclient.FHIR.Coding.html │ │ ├── types.fhirclient.FHIR.Element.html │ │ ├── types.fhirclient.FHIR.Encounter.html │ │ ├── types.fhirclient.FHIR.Extension.html │ │ ├── types.fhirclient.FHIR.Identifier.html │ │ ├── types.fhirclient.FHIR.Meta.html │ │ ├── types.fhirclient.FHIR.Observation.html │ │ ├── types.fhirclient.FHIR.Patient.html │ │ ├── types.fhirclient.FHIR.Period.html │ │ ├── types.fhirclient.FHIR.Practitioner.html │ │ ├── types.fhirclient.FHIR.Reference.html │ │ ├── types.fhirclient.FHIR.RelatedPerson.html │ │ ├── types.fhirclient.FHIR.Resource.html │ │ ├── types.fhirclient.FetchOptions.html │ │ ├── types.fhirclient.FhirOptions.html │ │ ├── types.fhirclient.IDToken.html │ │ ├── types.fhirclient.IncludeResponseHint.html │ │ ├── types.fhirclient.JsonObject.html │ │ ├── types.fhirclient.JsonPatchAdd.html │ │ ├── types.fhirclient.JsonPatchCopy.html │ │ ├── types.fhirclient.JsonPatchMove.html │ │ ├── types.fhirclient.JsonPatchRemove.html │ │ ├── types.fhirclient.JsonPatchReplace.html │ │ ├── types.fhirclient.JsonPatchTest.html │ │ ├── types.fhirclient.OAuthSecurityExtensions.html │ │ ├── types.fhirclient.ObservationMap.html │ │ ├── types.fhirclient.RS384JWK.html │ │ ├── types.fhirclient.ReadyOptions.html │ │ ├── types.fhirclient.RequestOptions.html │ │ ├── types.fhirclient.RequestWithSession.html │ │ ├── types.fhirclient.SMART.html │ │ ├── types.fhirclient.Storage.html │ │ ├── types.fhirclient.TokenResponse.html │ │ └── types.fhirclient.WellKnownSmartConfiguration.html │ ├── modules.html │ └── modules │ │ ├── Client.html │ │ ├── FhirClient.html │ │ ├── HttpError.html │ │ ├── abortcontroller_polyfill._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html │ │ ├── abortcontroller_polyfill._abortcontroller_polyfill_dist_cjs_ponyfill_.html │ │ ├── abortcontroller_polyfill.html │ │ ├── adapters_BrowserAdapter.html │ │ ├── adapters_HapiAdapter.html │ │ ├── adapters_NodeAdapter.html │ │ ├── entry_browser.html │ │ ├── entry_hapi.export_.html │ │ ├── entry_hapi.html │ │ ├── entry_node.export_.html │ │ ├── entry_node.html │ │ ├── lib.html │ │ ├── security_browser.html │ │ ├── security_server.html │ │ ├── settings.html │ │ ├── smart.html │ │ ├── storage_BrowserStorage.html │ │ ├── storage_ServerStorage.html │ │ ├── strings.html │ │ ├── types.fhirclient.FHIR.html │ │ ├── types.fhirclient.html │ │ └── types.html └── v2.md ├── lib └── nativeFhir.js ├── nightwatch.conf.js ├── package.json ├── src ├── Client.ts ├── FhirClient.ts ├── HttpError.ts ├── abortcontroller-polyfill.d.ts ├── adapters │ ├── BrowserAdapter.ts │ ├── HapiAdapter.ts │ └── NodeAdapter.ts ├── entry │ ├── browser.ts │ ├── hapi.ts │ └── node.ts ├── lib.ts ├── security │ ├── browser.ts │ └── server.ts ├── settings.ts ├── smart.ts ├── storage │ ├── BrowserStorage.ts │ └── ServerStorage.ts ├── strings.ts └── types.d.ts ├── test ├── Client.test.ts ├── FhirClient.test.ts ├── HttpError.test.ts ├── browser.test.ts ├── browser_security.html ├── lib.test.ts ├── mocks │ ├── BrowserEnvironment.ts │ ├── BrowserEnvironmentWithFhirJs.ts │ ├── HttpRequest.ts │ ├── HttpResponse.ts │ ├── Location.ts │ ├── MemoryStorage.ts │ ├── Observation-1.json │ ├── Observation-2.json │ ├── Patient-1.json │ ├── Patient-2.json │ ├── Screen.ts │ ├── ServerEnvironment.ts │ ├── SessionStorage.ts │ ├── Window.ts │ ├── json.png │ ├── mockDebug.ts │ ├── mockServer.ts │ └── mockServer2.js ├── security.test.ts ├── server.test.ts ├── smart.test.ts ├── specs │ ├── index.html │ ├── launch.html │ └── smart.e2e.js └── test-compartment.js.txt ├── tsconfig.json ├── tsconfig.module.json ├── typedoc.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/browser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.github/workflows/browser.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.labrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.labrc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/build/bundle.dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/bundle.dev.html -------------------------------------------------------------------------------- /dist/build/bundle.prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/bundle.prod.html -------------------------------------------------------------------------------- /dist/build/bundle.pure.dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/bundle.pure.dev.html -------------------------------------------------------------------------------- /dist/build/bundle.pure.prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/bundle.pure.prod.html -------------------------------------------------------------------------------- /dist/build/fhir-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.js -------------------------------------------------------------------------------- /dist/build/fhir-client.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.js.map -------------------------------------------------------------------------------- /dist/build/fhir-client.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.min.js -------------------------------------------------------------------------------- /dist/build/fhir-client.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.min.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/build/fhir-client.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.min.js.map -------------------------------------------------------------------------------- /dist/build/fhir-client.pure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.pure.js -------------------------------------------------------------------------------- /dist/build/fhir-client.pure.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.pure.js.map -------------------------------------------------------------------------------- /dist/build/fhir-client.pure.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.pure.min.js -------------------------------------------------------------------------------- /dist/build/fhir-client.pure.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.pure.min.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/build/fhir-client.pure.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/build/fhir-client.pure.min.js.map -------------------------------------------------------------------------------- /dist/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/changelog.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/lib/Client.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/Client.d.ts -------------------------------------------------------------------------------- /dist/lib/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/Client.js -------------------------------------------------------------------------------- /dist/lib/FhirClient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/FhirClient.d.ts -------------------------------------------------------------------------------- /dist/lib/FhirClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/FhirClient.js -------------------------------------------------------------------------------- /dist/lib/HttpError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/HttpError.d.ts -------------------------------------------------------------------------------- /dist/lib/HttpError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/HttpError.js -------------------------------------------------------------------------------- /dist/lib/adapters/BrowserAdapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/BrowserAdapter.d.ts -------------------------------------------------------------------------------- /dist/lib/adapters/BrowserAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/BrowserAdapter.js -------------------------------------------------------------------------------- /dist/lib/adapters/HapiAdapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/HapiAdapter.d.ts -------------------------------------------------------------------------------- /dist/lib/adapters/HapiAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/HapiAdapter.js -------------------------------------------------------------------------------- /dist/lib/adapters/NodeAdapter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/NodeAdapter.d.ts -------------------------------------------------------------------------------- /dist/lib/adapters/NodeAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/adapters/NodeAdapter.js -------------------------------------------------------------------------------- /dist/lib/entry/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/browser.d.ts -------------------------------------------------------------------------------- /dist/lib/entry/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/browser.js -------------------------------------------------------------------------------- /dist/lib/entry/hapi.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/hapi.d.ts -------------------------------------------------------------------------------- /dist/lib/entry/hapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/hapi.js -------------------------------------------------------------------------------- /dist/lib/entry/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/node.d.ts -------------------------------------------------------------------------------- /dist/lib/entry/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/entry/node.js -------------------------------------------------------------------------------- /dist/lib/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/lib.d.ts -------------------------------------------------------------------------------- /dist/lib/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/lib.js -------------------------------------------------------------------------------- /dist/lib/security/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/security/browser.d.ts -------------------------------------------------------------------------------- /dist/lib/security/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/security/browser.js -------------------------------------------------------------------------------- /dist/lib/security/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/security/server.d.ts -------------------------------------------------------------------------------- /dist/lib/security/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/security/server.js -------------------------------------------------------------------------------- /dist/lib/settings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/settings.d.ts -------------------------------------------------------------------------------- /dist/lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/settings.js -------------------------------------------------------------------------------- /dist/lib/smart.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/smart.d.ts -------------------------------------------------------------------------------- /dist/lib/smart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/smart.js -------------------------------------------------------------------------------- /dist/lib/storage/BrowserStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/storage/BrowserStorage.d.ts -------------------------------------------------------------------------------- /dist/lib/storage/BrowserStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/storage/BrowserStorage.js -------------------------------------------------------------------------------- /dist/lib/storage/ServerStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/storage/ServerStorage.d.ts -------------------------------------------------------------------------------- /dist/lib/storage/ServerStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/storage/ServerStorage.js -------------------------------------------------------------------------------- /dist/lib/strings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/strings.d.ts -------------------------------------------------------------------------------- /dist/lib/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/strings.js -------------------------------------------------------------------------------- /dist/lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/lib/types.d.ts -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/dist/package.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/assets/prism.css -------------------------------------------------------------------------------- /docs/assets/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/assets/prism.js -------------------------------------------------------------------------------- /docs/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/client.md -------------------------------------------------------------------------------- /docs/fhir_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/fhir_client.md -------------------------------------------------------------------------------- /docs/fhirjs-equivalents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/fhirjs-equivalents.md -------------------------------------------------------------------------------- /docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/migration.md -------------------------------------------------------------------------------- /docs/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/node.md -------------------------------------------------------------------------------- /docs/open_servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/open_servers.md -------------------------------------------------------------------------------- /docs/request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/request.html -------------------------------------------------------------------------------- /docs/targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/targets.md -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/css/main.css -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/images/icons.png -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/typedoc-theme/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc-theme/assets/js/main.js -------------------------------------------------------------------------------- /docs/typedoc/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/.nojekyll -------------------------------------------------------------------------------- /docs/typedoc/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/highlight.css -------------------------------------------------------------------------------- /docs/typedoc/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/icons.css -------------------------------------------------------------------------------- /docs/typedoc/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/icons.png -------------------------------------------------------------------------------- /docs/typedoc/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/typedoc/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/main.js -------------------------------------------------------------------------------- /docs/typedoc/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/search.js -------------------------------------------------------------------------------- /docs/typedoc/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/style.css -------------------------------------------------------------------------------- /docs/typedoc/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/widgets.png -------------------------------------------------------------------------------- /docs/typedoc/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/typedoc/classes/Client.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/Client.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/FhirClient.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/FhirClient.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/HttpError.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/HttpError.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/adapters_BrowserAdapter.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/adapters_BrowserAdapter.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/adapters_HapiAdapter.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/adapters_HapiAdapter.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/adapters_NodeAdapter.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/adapters_NodeAdapter.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/storage_BrowserStorage.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/storage_BrowserStorage.default.html -------------------------------------------------------------------------------- /docs/typedoc/classes/storage_ServerStorage.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/classes/storage_ServerStorage.default.html -------------------------------------------------------------------------------- /docs/typedoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/index.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.Adapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.Adapter.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.AuthorizeParams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.AuthorizeParams.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.BrowserFHIRSettings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.BrowserFHIRSettings.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.ClientState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.ClientState.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.CodeValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.CodeValue.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.CombinedFetchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.CombinedFetchResult.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.ES384JWK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.ES384JWK.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.BackboneElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.BackboneElement.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Bundle.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.BundleEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.BundleEntry.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.BundleLink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.BundleLink.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.CapabilityStatement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.CapabilityStatement.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.CodeableConcept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.CodeableConcept.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Coding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Coding.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Element.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Encounter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Encounter.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Extension.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Identifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Identifier.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Meta.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Observation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Observation.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Patient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Patient.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Period.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Period.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Practitioner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Practitioner.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Reference.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.RelatedPerson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.RelatedPerson.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FHIR.Resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FHIR.Resource.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FetchOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FetchOptions.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.FhirOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.FhirOptions.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.IDToken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.IDToken.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.IncludeResponseHint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.IncludeResponseHint.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonObject.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchAdd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchAdd.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchCopy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchCopy.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchMove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchMove.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchRemove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchRemove.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchReplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchReplace.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.JsonPatchTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.JsonPatchTest.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.OAuthSecurityExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.OAuthSecurityExtensions.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.ObservationMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.ObservationMap.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.RS384JWK.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.RS384JWK.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.ReadyOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.ReadyOptions.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.RequestOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.RequestOptions.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.RequestWithSession.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.RequestWithSession.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.SMART.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.SMART.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.Storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.Storage.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.TokenResponse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.TokenResponse.html -------------------------------------------------------------------------------- /docs/typedoc/interfaces/types.fhirclient.WellKnownSmartConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/interfaces/types.fhirclient.WellKnownSmartConfiguration.html -------------------------------------------------------------------------------- /docs/typedoc/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules.html -------------------------------------------------------------------------------- /docs/typedoc/modules/Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/Client.html -------------------------------------------------------------------------------- /docs/typedoc/modules/FhirClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/FhirClient.html -------------------------------------------------------------------------------- /docs/typedoc/modules/HttpError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/HttpError.html -------------------------------------------------------------------------------- /docs/typedoc/modules/abortcontroller_polyfill._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/abortcontroller_polyfill._abortcontroller_polyfill_dist_abortcontroller_polyfill_only_.html -------------------------------------------------------------------------------- /docs/typedoc/modules/abortcontroller_polyfill._abortcontroller_polyfill_dist_cjs_ponyfill_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/abortcontroller_polyfill._abortcontroller_polyfill_dist_cjs_ponyfill_.html -------------------------------------------------------------------------------- /docs/typedoc/modules/abortcontroller_polyfill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/abortcontroller_polyfill.html -------------------------------------------------------------------------------- /docs/typedoc/modules/adapters_BrowserAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/adapters_BrowserAdapter.html -------------------------------------------------------------------------------- /docs/typedoc/modules/adapters_HapiAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/adapters_HapiAdapter.html -------------------------------------------------------------------------------- /docs/typedoc/modules/adapters_NodeAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/adapters_NodeAdapter.html -------------------------------------------------------------------------------- /docs/typedoc/modules/entry_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/entry_browser.html -------------------------------------------------------------------------------- /docs/typedoc/modules/entry_hapi.export_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/entry_hapi.export_.html -------------------------------------------------------------------------------- /docs/typedoc/modules/entry_hapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/entry_hapi.html -------------------------------------------------------------------------------- /docs/typedoc/modules/entry_node.export_.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/entry_node.export_.html -------------------------------------------------------------------------------- /docs/typedoc/modules/entry_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/entry_node.html -------------------------------------------------------------------------------- /docs/typedoc/modules/lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/lib.html -------------------------------------------------------------------------------- /docs/typedoc/modules/security_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/security_browser.html -------------------------------------------------------------------------------- /docs/typedoc/modules/security_server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/security_server.html -------------------------------------------------------------------------------- /docs/typedoc/modules/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/settings.html -------------------------------------------------------------------------------- /docs/typedoc/modules/smart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/smart.html -------------------------------------------------------------------------------- /docs/typedoc/modules/storage_BrowserStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/storage_BrowserStorage.html -------------------------------------------------------------------------------- /docs/typedoc/modules/storage_ServerStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/storage_ServerStorage.html -------------------------------------------------------------------------------- /docs/typedoc/modules/strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/strings.html -------------------------------------------------------------------------------- /docs/typedoc/modules/types.fhirclient.FHIR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/types.fhirclient.FHIR.html -------------------------------------------------------------------------------- /docs/typedoc/modules/types.fhirclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/types.fhirclient.html -------------------------------------------------------------------------------- /docs/typedoc/modules/types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/typedoc/modules/types.html -------------------------------------------------------------------------------- /docs/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/docs/v2.md -------------------------------------------------------------------------------- /lib/nativeFhir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/lib/nativeFhir.js -------------------------------------------------------------------------------- /nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/nightwatch.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/Client.ts -------------------------------------------------------------------------------- /src/FhirClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/FhirClient.ts -------------------------------------------------------------------------------- /src/HttpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/HttpError.ts -------------------------------------------------------------------------------- /src/abortcontroller-polyfill.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/abortcontroller-polyfill.d.ts -------------------------------------------------------------------------------- /src/adapters/BrowserAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/adapters/BrowserAdapter.ts -------------------------------------------------------------------------------- /src/adapters/HapiAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/adapters/HapiAdapter.ts -------------------------------------------------------------------------------- /src/adapters/NodeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/adapters/NodeAdapter.ts -------------------------------------------------------------------------------- /src/entry/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/entry/browser.ts -------------------------------------------------------------------------------- /src/entry/hapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/entry/hapi.ts -------------------------------------------------------------------------------- /src/entry/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/entry/node.ts -------------------------------------------------------------------------------- /src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/lib.ts -------------------------------------------------------------------------------- /src/security/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/security/browser.ts -------------------------------------------------------------------------------- /src/security/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/security/server.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/smart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/smart.ts -------------------------------------------------------------------------------- /src/storage/BrowserStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/storage/BrowserStorage.ts -------------------------------------------------------------------------------- /src/storage/ServerStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/storage/ServerStorage.ts -------------------------------------------------------------------------------- /src/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/strings.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /test/Client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/Client.test.ts -------------------------------------------------------------------------------- /test/FhirClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/FhirClient.test.ts -------------------------------------------------------------------------------- /test/HttpError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/HttpError.test.ts -------------------------------------------------------------------------------- /test/browser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/browser.test.ts -------------------------------------------------------------------------------- /test/browser_security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/browser_security.html -------------------------------------------------------------------------------- /test/lib.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/lib.test.ts -------------------------------------------------------------------------------- /test/mocks/BrowserEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/BrowserEnvironment.ts -------------------------------------------------------------------------------- /test/mocks/BrowserEnvironmentWithFhirJs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/BrowserEnvironmentWithFhirJs.ts -------------------------------------------------------------------------------- /test/mocks/HttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/HttpRequest.ts -------------------------------------------------------------------------------- /test/mocks/HttpResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/HttpResponse.ts -------------------------------------------------------------------------------- /test/mocks/Location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Location.ts -------------------------------------------------------------------------------- /test/mocks/MemoryStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/MemoryStorage.ts -------------------------------------------------------------------------------- /test/mocks/Observation-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Observation-1.json -------------------------------------------------------------------------------- /test/mocks/Observation-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Observation-2.json -------------------------------------------------------------------------------- /test/mocks/Patient-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Patient-1.json -------------------------------------------------------------------------------- /test/mocks/Patient-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Patient-2.json -------------------------------------------------------------------------------- /test/mocks/Screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Screen.ts -------------------------------------------------------------------------------- /test/mocks/ServerEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/ServerEnvironment.ts -------------------------------------------------------------------------------- /test/mocks/SessionStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/SessionStorage.ts -------------------------------------------------------------------------------- /test/mocks/Window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/Window.ts -------------------------------------------------------------------------------- /test/mocks/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/json.png -------------------------------------------------------------------------------- /test/mocks/mockDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/mockDebug.ts -------------------------------------------------------------------------------- /test/mocks/mockServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/mockServer.ts -------------------------------------------------------------------------------- /test/mocks/mockServer2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/mocks/mockServer2.js -------------------------------------------------------------------------------- /test/security.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/security.test.ts -------------------------------------------------------------------------------- /test/server.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/server.test.ts -------------------------------------------------------------------------------- /test/smart.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/smart.test.ts -------------------------------------------------------------------------------- /test/specs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/specs/index.html -------------------------------------------------------------------------------- /test/specs/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/specs/launch.html -------------------------------------------------------------------------------- /test/specs/smart.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/specs/smart.e2e.js -------------------------------------------------------------------------------- /test/test-compartment.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/test/test-compartment.js.txt -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/tsconfig.module.json -------------------------------------------------------------------------------- /typedoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/typedoc.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smart-on-fhir/client-js/HEAD/webpack.config.js --------------------------------------------------------------------------------