skyflow-js 1.12.1 → 1.12.2
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/CHANGELOG.md +14 -0
- package/README.md +17 -10
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +3 -2
- package/types/utils/helpers/index.d.ts +3 -0
|
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.12.
|
|
5
|
+
"version": "1.12.2",
|
|
6
6
|
"author": "Skyflow",
|
|
7
7
|
"description": "Skyflow JavaScript SDK",
|
|
8
8
|
"homepage": "https://github.com/skyflowapi/skyflow-js",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"dist/sdkNodeBuild",
|
|
13
13
|
"types"
|
|
14
14
|
],
|
|
15
|
+
"license": "MIT",
|
|
15
16
|
"keywords": [
|
|
16
17
|
"client",
|
|
17
18
|
"sdk",
|
|
@@ -71,7 +72,7 @@
|
|
|
71
72
|
"eslint": "^7.32.0",
|
|
72
73
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
73
74
|
"eslint-config-airbnb-typescript": "^14.0.0",
|
|
74
|
-
"eslint-plugin-import": "^2.
|
|
75
|
+
"eslint-plugin-import": "^2.25.4",
|
|
75
76
|
"fork-ts-checker-webpack-plugin": "^6.3.2",
|
|
76
77
|
"html-webpack-plugin": "^5.5.0",
|
|
77
78
|
"jest": "^27.2.1",
|
|
@@ -10,3 +10,6 @@ export declare function replaceIdInXml(xml: string, elementLookup: any, errors:
|
|
|
10
10
|
export declare function replaceIdInResponseXml(xml: string, elementLookup: any, errors: any): string;
|
|
11
11
|
export declare function getIframeNamesInSoapRequest(requestXml: string): string[] | undefined;
|
|
12
12
|
export declare function replaceIframeNameWithValues(requestXml: string, elementValuesLookup: any): string;
|
|
13
|
+
export declare function lowercaseKeys(obj: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
}): any;
|