@medplum/core 5.1.6 → 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.
- package/dist/cjs/index.cjs +6 -6
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +11 -0
- package/dist/esm/index.d.ts +11 -0
- 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
|
@@ -5474,6 +5474,10 @@ export declare interface MedplumInfraConfig {
|
|
|
5474
5474
|
storageWafIpSetArn?: string;
|
|
5475
5475
|
storageLoggingBucket?: string;
|
|
5476
5476
|
storageLoggingPrefix?: string;
|
|
5477
|
+
mtlsDomainName?: string;
|
|
5478
|
+
mtlsSslCertArn?: string;
|
|
5479
|
+
mtlsInternetFacing?: boolean;
|
|
5480
|
+
mtlsWafIpSetArn?: string;
|
|
5477
5481
|
baseUrl: string;
|
|
5478
5482
|
maxAzs: number;
|
|
5479
5483
|
rdsInstances: number;
|
|
@@ -5686,6 +5690,10 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
5686
5690
|
storageBucketName: ValueOrExternalSecret<string>;
|
|
5687
5691
|
storageDomainName: ValueOrExternalSecret<string>;
|
|
5688
5692
|
storageSslCertArn: ValueOrExternalSecret<string>;
|
|
5693
|
+
mtlsDomainName?: ValueOrExternalSecret<string>;
|
|
5694
|
+
mtlsSslCertArn?: ValueOrExternalSecret<string>;
|
|
5695
|
+
mtlsInternetFacing?: ValueOrExternalSecret<boolean>;
|
|
5696
|
+
mtlsWafIpSetArn?: ValueOrExternalSecret<string>;
|
|
5689
5697
|
signingKeyId: ValueOrExternalSecret<string>;
|
|
5690
5698
|
storagePublicKey: ValueOrExternalSecret<string>;
|
|
5691
5699
|
storageWafIpSetArn: ValueOrExternalSecret<string>;
|
|
@@ -5909,6 +5917,9 @@ export declare interface NewUserRequest {
|
|
|
5909
5917
|
readonly clientId?: string;
|
|
5910
5918
|
}
|
|
5911
5919
|
|
|
5920
|
+
/** No operation function. */
|
|
5921
|
+
export declare const NOOP: () => void;
|
|
5922
|
+
|
|
5912
5923
|
/**
|
|
5913
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`.
|
|
5914
5925
|
*
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -5474,6 +5474,10 @@ export declare interface MedplumInfraConfig {
|
|
|
5474
5474
|
storageWafIpSetArn?: string;
|
|
5475
5475
|
storageLoggingBucket?: string;
|
|
5476
5476
|
storageLoggingPrefix?: string;
|
|
5477
|
+
mtlsDomainName?: string;
|
|
5478
|
+
mtlsSslCertArn?: string;
|
|
5479
|
+
mtlsInternetFacing?: boolean;
|
|
5480
|
+
mtlsWafIpSetArn?: string;
|
|
5477
5481
|
baseUrl: string;
|
|
5478
5482
|
maxAzs: number;
|
|
5479
5483
|
rdsInstances: number;
|
|
@@ -5686,6 +5690,10 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
5686
5690
|
storageBucketName: ValueOrExternalSecret<string>;
|
|
5687
5691
|
storageDomainName: ValueOrExternalSecret<string>;
|
|
5688
5692
|
storageSslCertArn: ValueOrExternalSecret<string>;
|
|
5693
|
+
mtlsDomainName?: ValueOrExternalSecret<string>;
|
|
5694
|
+
mtlsSslCertArn?: ValueOrExternalSecret<string>;
|
|
5695
|
+
mtlsInternetFacing?: ValueOrExternalSecret<boolean>;
|
|
5696
|
+
mtlsWafIpSetArn?: ValueOrExternalSecret<string>;
|
|
5689
5697
|
signingKeyId: ValueOrExternalSecret<string>;
|
|
5690
5698
|
storagePublicKey: ValueOrExternalSecret<string>;
|
|
5691
5699
|
storageWafIpSetArn: ValueOrExternalSecret<string>;
|
|
@@ -5909,6 +5917,9 @@ export declare interface NewUserRequest {
|
|
|
5909
5917
|
readonly clientId?: string;
|
|
5910
5918
|
}
|
|
5911
5919
|
|
|
5920
|
+
/** No operation function. */
|
|
5921
|
+
export declare const NOOP: () => void;
|
|
5922
|
+
|
|
5912
5923
|
/**
|
|
5913
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`.
|
|
5914
5925
|
*
|