@medplum/core 5.1.5 → 5.1.7

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.
@@ -950,9 +950,7 @@ export declare interface CreateDocumentReferenceOptions extends CreateBinaryOpti
950
950
  * @param versionId - The current `versionId` of the anchor context. For example, in `DiagnosticReport-update`, it's the `versionId` of the `DiagnosticReport`.
951
951
  * @returns A serializable `FhircastMessagePayload`.
952
952
  */
953
- export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionOptional>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId?: never): FhircastMessagePayload<EventName>;
954
-
955
- export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionRequired>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId: string): FhircastMessagePayload<EventName>;
953
+ export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionOptional | FhircastEventVersionRequired>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId?: string): FhircastMessagePayload<EventName>;
956
954
 
957
955
  export declare interface CreateMediaOptions extends CreateBinaryOptions {
958
956
  /**
@@ -5476,6 +5474,10 @@ export declare interface MedplumInfraConfig {
5476
5474
  storageWafIpSetArn?: string;
5477
5475
  storageLoggingBucket?: string;
5478
5476
  storageLoggingPrefix?: string;
5477
+ mtlsDomainName?: string;
5478
+ mtlsSslCertArn?: string;
5479
+ mtlsInternetFacing?: boolean;
5480
+ mtlsWafIpSetArn?: string;
5479
5481
  baseUrl: string;
5480
5482
  maxAzs: number;
5481
5483
  rdsInstances: number;
@@ -5688,6 +5690,10 @@ export declare interface MedplumSourceInfraConfig {
5688
5690
  storageBucketName: ValueOrExternalSecret<string>;
5689
5691
  storageDomainName: ValueOrExternalSecret<string>;
5690
5692
  storageSslCertArn: ValueOrExternalSecret<string>;
5693
+ mtlsDomainName?: ValueOrExternalSecret<string>;
5694
+ mtlsSslCertArn?: ValueOrExternalSecret<string>;
5695
+ mtlsInternetFacing?: ValueOrExternalSecret<boolean>;
5696
+ mtlsWafIpSetArn?: ValueOrExternalSecret<string>;
5691
5697
  signingKeyId: ValueOrExternalSecret<string>;
5692
5698
  storagePublicKey: ValueOrExternalSecret<string>;
5693
5699
  storageWafIpSetArn: ValueOrExternalSecret<string>;
@@ -5911,6 +5917,9 @@ export declare interface NewUserRequest {
5911
5917
  readonly clientId?: string;
5912
5918
  }
5913
5919
 
5920
+ /** No operation function. */
5921
+ export declare const NOOP: () => void;
5922
+
5914
5923
  /**
5915
5924
  * Normalizes an `ArrayBufferLike` (eg. an `ArrayBuffer`) to a raw `ArrayBufferLike` (without a view). If the passed buffer is a view, it gives the raw `ArrayBufferLike`.
5916
5925
  *
@@ -950,9 +950,7 @@ export declare interface CreateDocumentReferenceOptions extends CreateBinaryOpti
950
950
  * @param versionId - The current `versionId` of the anchor context. For example, in `DiagnosticReport-update`, it's the `versionId` of the `DiagnosticReport`.
951
951
  * @returns A serializable `FhircastMessagePayload`.
952
952
  */
953
- export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionOptional>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId?: never): FhircastMessagePayload<EventName>;
954
-
955
- export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionRequired>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId: string): FhircastMessagePayload<EventName>;
953
+ export declare function createFhircastMessagePayload<EventName extends FhircastEventVersionOptional | FhircastEventVersionRequired>(topic: string, event: EventName, context: FhircastEventContext<EventName> | FhircastEventContext<EventName>[], versionId?: string): FhircastMessagePayload<EventName>;
956
954
 
957
955
  export declare interface CreateMediaOptions extends CreateBinaryOptions {
958
956
  /**
@@ -5476,6 +5474,10 @@ export declare interface MedplumInfraConfig {
5476
5474
  storageWafIpSetArn?: string;
5477
5475
  storageLoggingBucket?: string;
5478
5476
  storageLoggingPrefix?: string;
5477
+ mtlsDomainName?: string;
5478
+ mtlsSslCertArn?: string;
5479
+ mtlsInternetFacing?: boolean;
5480
+ mtlsWafIpSetArn?: string;
5479
5481
  baseUrl: string;
5480
5482
  maxAzs: number;
5481
5483
  rdsInstances: number;
@@ -5688,6 +5690,10 @@ export declare interface MedplumSourceInfraConfig {
5688
5690
  storageBucketName: ValueOrExternalSecret<string>;
5689
5691
  storageDomainName: ValueOrExternalSecret<string>;
5690
5692
  storageSslCertArn: ValueOrExternalSecret<string>;
5693
+ mtlsDomainName?: ValueOrExternalSecret<string>;
5694
+ mtlsSslCertArn?: ValueOrExternalSecret<string>;
5695
+ mtlsInternetFacing?: ValueOrExternalSecret<boolean>;
5696
+ mtlsWafIpSetArn?: ValueOrExternalSecret<string>;
5691
5697
  signingKeyId: ValueOrExternalSecret<string>;
5692
5698
  storagePublicKey: ValueOrExternalSecret<string>;
5693
5699
  storageWafIpSetArn: ValueOrExternalSecret<string>;
@@ -5911,6 +5917,9 @@ export declare interface NewUserRequest {
5911
5917
  readonly clientId?: string;
5912
5918
  }
5913
5919
 
5920
+ /** No operation function. */
5921
+ export declare const NOOP: () => void;
5922
+
5914
5923
  /**
5915
5924
  * Normalizes an `ArrayBufferLike` (eg. an `ArrayBuffer`) to a raw `ArrayBufferLike` (without a view). If the passed buffer is a view, it gives the raw `ArrayBufferLike`.
5916
5925
  *