@medplum/core 5.0.4 → 5.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +5 -5
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +23 -2
- package/dist/esm/index.d.ts +23 -2
- package/dist/esm/index.mjs +5 -5
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +3 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ import type { Quantity } from '@medplum/fhirtypes';
|
|
|
45
45
|
import type { QuestionnaireResponse } from '@medplum/fhirtypes';
|
|
46
46
|
import type { QuestionnaireResponseItemAnswer } from '@medplum/fhirtypes';
|
|
47
47
|
import type { Range as Range_2 } from '@medplum/fhirtypes';
|
|
48
|
-
import type { Readable } from 'stream';
|
|
48
|
+
import type { Readable } from 'node:stream';
|
|
49
49
|
import type { Reference } from '@medplum/fhirtypes';
|
|
50
50
|
import type { RelatedPerson } from '@medplum/fhirtypes';
|
|
51
51
|
import type { Resource } from '@medplum/fhirtypes';
|
|
@@ -5413,6 +5413,22 @@ export declare const OAuthGrantType: {
|
|
|
5413
5413
|
|
|
5414
5414
|
export declare type OAuthGrantType = (typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
5415
5415
|
|
|
5416
|
+
/**
|
|
5417
|
+
* OAuth Signing Algorithms
|
|
5418
|
+
* See {@link https://datatracker.ietf.org/doc/html/rfc7519 | RFC 7519} for full details.
|
|
5419
|
+
*/
|
|
5420
|
+
export declare const OAuthSigningAlgorithm: {
|
|
5421
|
+
readonly ES256: "ES256";
|
|
5422
|
+
readonly ES384: "ES384";
|
|
5423
|
+
readonly ES512: "ES512";
|
|
5424
|
+
readonly HS256: "HS256";
|
|
5425
|
+
readonly RS256: "RS256";
|
|
5426
|
+
readonly RS384: "RS384";
|
|
5427
|
+
readonly RS512: "RS512";
|
|
5428
|
+
};
|
|
5429
|
+
|
|
5430
|
+
export declare type OAuthSigningAlgorithm = (typeof OAuthSigningAlgorithm)[keyof typeof OAuthSigningAlgorithm];
|
|
5431
|
+
|
|
5416
5432
|
/**
|
|
5417
5433
|
* OAuth 2.0 Client Authentication Methods
|
|
5418
5434
|
* See: https://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication
|
|
@@ -5774,7 +5790,7 @@ export declare class ParserBuilder {
|
|
|
5774
5790
|
|
|
5775
5791
|
/**
|
|
5776
5792
|
* List of property types.
|
|
5777
|
-
* http://www.hl7.org/fhir/valueset-defined-types.html
|
|
5793
|
+
* http://www.hl7.org/fhir/R4/valueset-defined-types.html
|
|
5778
5794
|
* The list here includes additions found from StructureDefinition resources.
|
|
5779
5795
|
*/
|
|
5780
5796
|
export declare const PropertyType: {
|
|
@@ -5793,6 +5809,8 @@ export declare class ParserBuilder {
|
|
|
5793
5809
|
readonly Distance: "Distance";
|
|
5794
5810
|
readonly Dosage: "Dosage";
|
|
5795
5811
|
readonly Duration: "Duration";
|
|
5812
|
+
readonly Element: "Element";
|
|
5813
|
+
readonly ElementDefinition: "ElementDefinition";
|
|
5796
5814
|
readonly Expression: "Expression";
|
|
5797
5815
|
readonly Extension: "Extension";
|
|
5798
5816
|
readonly HumanName: "HumanName";
|
|
@@ -5800,6 +5818,7 @@ export declare class ParserBuilder {
|
|
|
5800
5818
|
readonly MarketingStatus: "MarketingStatus";
|
|
5801
5819
|
readonly Meta: "Meta";
|
|
5802
5820
|
readonly Money: "Money";
|
|
5821
|
+
readonly MoneyQuantity: "MoneyQuantity";
|
|
5803
5822
|
readonly Narrative: "Narrative";
|
|
5804
5823
|
readonly ParameterDefinition: "ParameterDefinition";
|
|
5805
5824
|
readonly Period: "Period";
|
|
@@ -5813,6 +5832,7 @@ export declare class ParserBuilder {
|
|
|
5813
5832
|
readonly RelatedArtifact: "RelatedArtifact";
|
|
5814
5833
|
readonly SampledData: "SampledData";
|
|
5815
5834
|
readonly Signature: "Signature";
|
|
5835
|
+
readonly SimpleQuantity: "SimpleQuantity";
|
|
5816
5836
|
readonly SubstanceAmount: "SubstanceAmount";
|
|
5817
5837
|
readonly SystemString: "http://hl7.org/fhirpath/System.String";
|
|
5818
5838
|
readonly Timing: "Timing";
|
|
@@ -5837,6 +5857,7 @@ export declare class ParserBuilder {
|
|
|
5837
5857
|
readonly uri: "uri";
|
|
5838
5858
|
readonly url: "url";
|
|
5839
5859
|
readonly uuid: "uuid";
|
|
5860
|
+
readonly xhtml: "xhtml";
|
|
5840
5861
|
};
|
|
5841
5862
|
|
|
5842
5863
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ import type { Quantity } from '@medplum/fhirtypes';
|
|
|
45
45
|
import type { QuestionnaireResponse } from '@medplum/fhirtypes';
|
|
46
46
|
import type { QuestionnaireResponseItemAnswer } from '@medplum/fhirtypes';
|
|
47
47
|
import type { Range as Range_2 } from '@medplum/fhirtypes';
|
|
48
|
-
import type { Readable } from 'stream';
|
|
48
|
+
import type { Readable } from 'node:stream';
|
|
49
49
|
import type { Reference } from '@medplum/fhirtypes';
|
|
50
50
|
import type { RelatedPerson } from '@medplum/fhirtypes';
|
|
51
51
|
import type { Resource } from '@medplum/fhirtypes';
|
|
@@ -5413,6 +5413,22 @@ export declare const OAuthGrantType: {
|
|
|
5413
5413
|
|
|
5414
5414
|
export declare type OAuthGrantType = (typeof OAuthGrantType)[keyof typeof OAuthGrantType];
|
|
5415
5415
|
|
|
5416
|
+
/**
|
|
5417
|
+
* OAuth Signing Algorithms
|
|
5418
|
+
* See {@link https://datatracker.ietf.org/doc/html/rfc7519 | RFC 7519} for full details.
|
|
5419
|
+
*/
|
|
5420
|
+
export declare const OAuthSigningAlgorithm: {
|
|
5421
|
+
readonly ES256: "ES256";
|
|
5422
|
+
readonly ES384: "ES384";
|
|
5423
|
+
readonly ES512: "ES512";
|
|
5424
|
+
readonly HS256: "HS256";
|
|
5425
|
+
readonly RS256: "RS256";
|
|
5426
|
+
readonly RS384: "RS384";
|
|
5427
|
+
readonly RS512: "RS512";
|
|
5428
|
+
};
|
|
5429
|
+
|
|
5430
|
+
export declare type OAuthSigningAlgorithm = (typeof OAuthSigningAlgorithm)[keyof typeof OAuthSigningAlgorithm];
|
|
5431
|
+
|
|
5416
5432
|
/**
|
|
5417
5433
|
* OAuth 2.0 Client Authentication Methods
|
|
5418
5434
|
* See: https://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication
|
|
@@ -5774,7 +5790,7 @@ export declare class ParserBuilder {
|
|
|
5774
5790
|
|
|
5775
5791
|
/**
|
|
5776
5792
|
* List of property types.
|
|
5777
|
-
* http://www.hl7.org/fhir/valueset-defined-types.html
|
|
5793
|
+
* http://www.hl7.org/fhir/R4/valueset-defined-types.html
|
|
5778
5794
|
* The list here includes additions found from StructureDefinition resources.
|
|
5779
5795
|
*/
|
|
5780
5796
|
export declare const PropertyType: {
|
|
@@ -5793,6 +5809,8 @@ export declare class ParserBuilder {
|
|
|
5793
5809
|
readonly Distance: "Distance";
|
|
5794
5810
|
readonly Dosage: "Dosage";
|
|
5795
5811
|
readonly Duration: "Duration";
|
|
5812
|
+
readonly Element: "Element";
|
|
5813
|
+
readonly ElementDefinition: "ElementDefinition";
|
|
5796
5814
|
readonly Expression: "Expression";
|
|
5797
5815
|
readonly Extension: "Extension";
|
|
5798
5816
|
readonly HumanName: "HumanName";
|
|
@@ -5800,6 +5818,7 @@ export declare class ParserBuilder {
|
|
|
5800
5818
|
readonly MarketingStatus: "MarketingStatus";
|
|
5801
5819
|
readonly Meta: "Meta";
|
|
5802
5820
|
readonly Money: "Money";
|
|
5821
|
+
readonly MoneyQuantity: "MoneyQuantity";
|
|
5803
5822
|
readonly Narrative: "Narrative";
|
|
5804
5823
|
readonly ParameterDefinition: "ParameterDefinition";
|
|
5805
5824
|
readonly Period: "Period";
|
|
@@ -5813,6 +5832,7 @@ export declare class ParserBuilder {
|
|
|
5813
5832
|
readonly RelatedArtifact: "RelatedArtifact";
|
|
5814
5833
|
readonly SampledData: "SampledData";
|
|
5815
5834
|
readonly Signature: "Signature";
|
|
5835
|
+
readonly SimpleQuantity: "SimpleQuantity";
|
|
5816
5836
|
readonly SubstanceAmount: "SubstanceAmount";
|
|
5817
5837
|
readonly SystemString: "http://hl7.org/fhirpath/System.String";
|
|
5818
5838
|
readonly Timing: "Timing";
|
|
@@ -5837,6 +5857,7 @@ export declare class ParserBuilder {
|
|
|
5837
5857
|
readonly uri: "uri";
|
|
5838
5858
|
readonly url: "url";
|
|
5839
5859
|
readonly uuid: "uuid";
|
|
5860
|
+
readonly xhtml: "xhtml";
|
|
5840
5861
|
};
|
|
5841
5862
|
|
|
5842
5863
|
/**
|