skyflow-js 1.24.0 → 1.24.1

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.
Binary file
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "skyflow-js",
3
3
  "preferGlobal": true,
4
4
  "analyze": false,
5
- "version": "1.24.0",
5
+ "version": "1.24.1",
6
6
  "author": "Skyflow",
7
7
  "description": "Skyflow JavaScript SDK",
8
8
  "homepage": "https://github.com/skyflowapi/skyflow-js",
@@ -531,5 +531,9 @@ declare const SKYFLOW_ERROR_CODE: {
531
531
  code: number;
532
532
  description: string;
533
533
  };
534
+ INVALID_BOOLEAN_OPTIONS: {
535
+ code: number;
536
+ description: string;
537
+ };
534
538
  };
535
539
  export default SKYFLOW_ERROR_CODE;
@@ -5,6 +5,8 @@ export declare function removeSpaces(inputString: string): string;
5
5
  export declare function formatVaultURL(vaultURL: any): any;
6
6
  export declare function checkIfDuplicateExists(arr: any): boolean;
7
7
  export declare const appendZeroToOne: (value: any) => any;
8
+ export declare const appendMonthFourDigitYears: (value: any) => any;
9
+ export declare const appendMonthTwoDigitYears: (value: any) => any;
8
10
  export declare const getReturnValue: (value: string | Blob, element: string, doesReturnValue: boolean) => string | Blob | undefined;
9
11
  export declare const copyToClipboard: (text: string) => void;
10
12
  export declare const handleCopyIconClick: (textToCopy: string, domCopy: any) => void;
@@ -213,6 +213,7 @@ declare const logs: {
213
213
  MISSING_COMPOSABLE_CONTAINER_OPTIONS: string;
214
214
  INVALID_COMPOSABLE_CONTAINER_OPTIONS: string;
215
215
  COMPOSABLE_CONTAINER_NOT_MOUNTED: string;
216
+ INVALID_BOOLEAN_OPTIONS: string;
216
217
  };
217
218
  warnLogs: {
218
219
  INVALID_EXPIRATION_DATE_FORMAT: string;
@@ -23,3 +23,4 @@ export declare const validateInitConfig: (initConfig: ISkyflow) => void;
23
23
  export declare const validateCollectElementInput: (input: CollectElementInput, logLevel: any) => void;
24
24
  export declare const validateUpsertOptions: (upsertOptions: any) => void;
25
25
  export declare const validateComposableContainerOptions: (options: any) => void;
26
+ export declare const validateBooleanOptions: (option: any) => boolean;