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
|
@@ -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;
|
package/types/utils/logs.d.ts
CHANGED
|
@@ -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;
|