@medplum/core 4.1.8 → 4.1.9

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.
@@ -763,6 +763,13 @@ export declare type DataTypesMap = {
763
763
  */
764
764
  export declare function decodeBase64(data: string): string;
765
765
 
766
+ /**
767
+ * Decodes a string from Base64URL format.
768
+ * @param data - The Base64URL encoded input string.
769
+ * @returns The decoded string.
770
+ */
771
+ export declare function decodeBase64Url(data: string): string;
772
+
766
773
  /**
767
774
  * Creates a deep clone of the input value.
768
775
  *
@@ -879,6 +886,14 @@ export declare class EmptySetAtom implements Atom {
879
886
  */
880
887
  export declare function encodeBase64(data: string): string;
881
888
 
889
+ /**
890
+ * Encodes a string into Base64URL format.
891
+ * This is the encoding required for JWT parts.
892
+ * @param data - The unencoded input string.
893
+ * @returns The Base64URL encoded string.
894
+ */
895
+ export declare function encodeBase64Url(data: string): string;
896
+
882
897
  /**
883
898
  * Encrypts a string with SHA256 encryption.
884
899
  * @param str - The unencrypted input string.
@@ -4862,6 +4877,8 @@ export declare interface MedplumInfraConfig {
4862
4877
  clamscanLoggingPrefix: string;
4863
4878
  skipDns?: boolean;
4864
4879
  hostedZoneName?: string;
4880
+ wafLogGroupName?: string;
4881
+ wafLogGroupCreate?: boolean;
4865
4882
  additionalContainers?: {
4866
4883
  name: string;
4867
4884
  image: string;
@@ -4996,6 +5013,8 @@ export declare interface MedplumSourceInfraConfig {
4996
5013
  clamscanLoggingPrefix: ValueOrExternalSecret<string>;
4997
5014
  skipDns?: ValueOrExternalSecret<boolean>;
4998
5015
  hostedZoneName?: ValueOrExternalSecret<string>;
5016
+ wafLogGroupName?: ValueOrExternalSecret<string>;
5017
+ wafLogGroupCreate?: ValueOrExternalSecret<boolean>;
4999
5018
  additionalContainers?: {
5000
5019
  name: ValueOrExternalSecret<string>;
5001
5020
  image: ValueOrExternalSecret<string>;
@@ -763,6 +763,13 @@ export declare type DataTypesMap = {
763
763
  */
764
764
  export declare function decodeBase64(data: string): string;
765
765
 
766
+ /**
767
+ * Decodes a string from Base64URL format.
768
+ * @param data - The Base64URL encoded input string.
769
+ * @returns The decoded string.
770
+ */
771
+ export declare function decodeBase64Url(data: string): string;
772
+
766
773
  /**
767
774
  * Creates a deep clone of the input value.
768
775
  *
@@ -879,6 +886,14 @@ export declare class EmptySetAtom implements Atom {
879
886
  */
880
887
  export declare function encodeBase64(data: string): string;
881
888
 
889
+ /**
890
+ * Encodes a string into Base64URL format.
891
+ * This is the encoding required for JWT parts.
892
+ * @param data - The unencoded input string.
893
+ * @returns The Base64URL encoded string.
894
+ */
895
+ export declare function encodeBase64Url(data: string): string;
896
+
882
897
  /**
883
898
  * Encrypts a string with SHA256 encryption.
884
899
  * @param str - The unencrypted input string.
@@ -4862,6 +4877,8 @@ export declare interface MedplumInfraConfig {
4862
4877
  clamscanLoggingPrefix: string;
4863
4878
  skipDns?: boolean;
4864
4879
  hostedZoneName?: string;
4880
+ wafLogGroupName?: string;
4881
+ wafLogGroupCreate?: boolean;
4865
4882
  additionalContainers?: {
4866
4883
  name: string;
4867
4884
  image: string;
@@ -4996,6 +5013,8 @@ export declare interface MedplumSourceInfraConfig {
4996
5013
  clamscanLoggingPrefix: ValueOrExternalSecret<string>;
4997
5014
  skipDns?: ValueOrExternalSecret<boolean>;
4998
5015
  hostedZoneName?: ValueOrExternalSecret<string>;
5016
+ wafLogGroupName?: ValueOrExternalSecret<string>;
5017
+ wafLogGroupCreate?: ValueOrExternalSecret<boolean>;
4999
5018
  additionalContainers?: {
5000
5019
  name: ValueOrExternalSecret<string>;
5001
5020
  image: ValueOrExternalSecret<string>;