skyflow-js 1.37.1 → 1.38.0
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
package/types/skyflow.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ declare class Skyflow {
|
|
|
19
19
|
#private;
|
|
20
20
|
constructor(config: ISkyflow);
|
|
21
21
|
static init(config: ISkyflow): Skyflow;
|
|
22
|
-
container(type: ContainerType, options?: Record<string, any>): CollectContainer |
|
|
22
|
+
container(type: ContainerType, options?: Record<string, any>): CollectContainer | ComposableContainer | RevealContainer;
|
|
23
23
|
insert(records: IInsertRecordInput, options?: IInsertOptions): Promise<any>;
|
|
24
24
|
detokenize(detokenizeInput: IDetokenizeInput): Promise<IRevealResponseType>;
|
|
25
25
|
getById(getByIdInput: IGetByIdInput): Promise<unknown>;
|
|
@@ -53,4 +53,8 @@ export declare function checkAndSetForCustomUrl(config: ISkyflow): void;
|
|
|
53
53
|
export declare const generateUploadFileName: (fileName: string) => string;
|
|
54
54
|
export declare const getValueFromName: (name: string, index: number) => string;
|
|
55
55
|
export declare const getAtobValue: (encodedValue: string) => string;
|
|
56
|
+
export declare const getSDKLanguageAndVersion: () => {
|
|
57
|
+
sdkLanguageAndVersion: string;
|
|
58
|
+
sdkOwner: string;
|
|
59
|
+
};
|
|
56
60
|
export {};
|
package/types/utils/logs.d.ts
CHANGED
|
@@ -161,7 +161,6 @@ declare const logs: {
|
|
|
161
161
|
INVALID_FORMAT_VALUE_REVEAL: string;
|
|
162
162
|
INVALID_REDACTION_TYPE_REVEAL: string;
|
|
163
163
|
ELEMENTS_NOT_MOUNTED_REVEAL: string;
|
|
164
|
-
ELEMENT_NOT_MOUNTED_RENDER: string;
|
|
165
164
|
EMPTY_TABLE_IN_ADDITIONAL_FIELDS: string;
|
|
166
165
|
EMPTY_FIELDS_IN_ADDITIONAL_FIELDS: string;
|
|
167
166
|
EMPTY_TOKEN_IN_DETOKENIZE: string;
|
|
@@ -178,6 +177,7 @@ declare const logs: {
|
|
|
178
177
|
MISSING_TABLE_IN_COLLECT: string;
|
|
179
178
|
EMPTY_TABLE_IN_COLLECT: string;
|
|
180
179
|
EMPTY_SKYFLOW_ID_IN_ADDITIONAL_FIELDS: string;
|
|
180
|
+
EMPTY_SKYFLOW_ID_COLLECT: string;
|
|
181
181
|
INVALID_TABLE_IN_COLLECT: string;
|
|
182
182
|
INVALID_SKYFLOWID_IN_COLLECT: string;
|
|
183
183
|
MISSING_COLUMN_IN_COLLECT: string;
|