@sap_oss/wdio-qmate-service 2.7.0 → 2.7.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.
|
@@ -14,7 +14,7 @@ export declare class Data {
|
|
|
14
14
|
* @returns {Object} The data object.
|
|
15
15
|
* @example const data = util.data.getData("myTest");
|
|
16
16
|
*/
|
|
17
|
-
getData(filename: string, source?: string):
|
|
17
|
+
getData(filename: string, source?: string): object;
|
|
18
18
|
/**
|
|
19
19
|
* @function getSecureData
|
|
20
20
|
* @memberOf util.data
|
|
@@ -24,7 +24,7 @@ export declare class Data {
|
|
|
24
24
|
* @returns {Object} The encrypted or local data object.
|
|
25
25
|
* @example const secureData = util.data.getSecureData("myTest");
|
|
26
26
|
*/
|
|
27
|
-
getSecureData(filename: string, source?: string):
|
|
27
|
+
getSecureData(filename: string, source?: string): object;
|
|
28
28
|
/**
|
|
29
29
|
* @function readDataFromFile
|
|
30
30
|
* @memberOf util.data
|
|
@@ -48,7 +48,7 @@ export declare class Data {
|
|
|
48
48
|
* @memberOf util.data
|
|
49
49
|
* @description Decrypts the passed input data.
|
|
50
50
|
* @param {String} data - The encrypted data to decrypt.
|
|
51
|
-
* @returns {
|
|
51
|
+
* @returns {String} The decrypted data.
|
|
52
52
|
* @example const decrypted = util.data.decrypt("d704004c262faa8ef4bdcf34c8a94883e15524872c7bef334d26a391a1934cf47338b749d99426980ee4cc7a81deaef21439c6894ab0324cdb29b9b6332635baca442651c5d37847f52bb90b8868e037271a7d456024b39b65fdf4dc62e8d82a3d5683a72e4324c59d339742fc79749f0ee74abef916d38e306218adc48e3547a2b346962249320c962d22cb46d9998de36d8219a2496c0997d0fc389f76fb1431a9b57c317886e9c9795c0a09ad98d9fa0b7687d10814dc7973397f3f72a227a04ead4c3d1d428c096a51922ffc4d7afc3952df1c130def5c5fb3e834605cbf1454885966cc65c77046343f4c678e74931fb2dd6cac8dae17837cf674f288d6550dd7fa6b01f5b7ea68aa6bd27d79dd5d53edb5fd4b4edce824bd31b3939352ad7a71a16bab8c54025c2bb92c54e022fcd23ff08bc54a17fc50d00dc3b884cadbfdefe1e75901fdf80e7324ad02a891f2c4863fa120ca238520b79126c65a03");
|
|
53
53
|
*/
|
|
54
54
|
decrypt(data: string): string;
|
|
@@ -144,7 +144,7 @@ class Data {
|
|
|
144
144
|
* @memberOf util.data
|
|
145
145
|
* @description Decrypts the passed input data.
|
|
146
146
|
* @param {String} data - The encrypted data to decrypt.
|
|
147
|
-
* @returns {
|
|
147
|
+
* @returns {String} The decrypted data.
|
|
148
148
|
* @example const decrypted = util.data.decrypt("d704004c262faa8ef4bdcf34c8a94883e15524872c7bef334d26a391a1934cf47338b749d99426980ee4cc7a81deaef21439c6894ab0324cdb29b9b6332635baca442651c5d37847f52bb90b8868e037271a7d456024b39b65fdf4dc62e8d82a3d5683a72e4324c59d339742fc79749f0ee74abef916d38e306218adc48e3547a2b346962249320c962d22cb46d9998de36d8219a2496c0997d0fc389f76fb1431a9b57c317886e9c9795c0a09ad98d9fa0b7687d10814dc7973397f3f72a227a04ead4c3d1d428c096a51922ffc4d7afc3952df1c130def5c5fb3e834605cbf1454885966cc65c77046343f4c678e74931fb2dd6cac8dae17837cf674f288d6550dd7fa6b01f5b7ea68aa6bd27d79dd5d53edb5fd4b4edce824bd31b3939352ad7a71a16bab8c54025c2bb92c54e022fcd23ff08bc54a17fc50d00dc3b884cadbfdefe1e75901fdf80e7324ad02a891f2c4863fa120ca238520b79126c65a03");
|
|
149
149
|
*/
|
|
150
150
|
decrypt(data) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap_oss/wdio-qmate-service",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.1",
|
|
4
4
|
"author": "SAP SE",
|
|
5
5
|
"types": "./@types/index.d.ts",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"license": "Apache-2.0",
|
|
130
130
|
"dependencies": {
|
|
131
131
|
"@sap_oss/odata-library": "^2.2.2",
|
|
132
|
-
"axios": "^1.
|
|
132
|
+
"axios": "^1.6.0",
|
|
133
133
|
"curl": "^0.1.4",
|
|
134
134
|
"deepmerge": "^4.2.2",
|
|
135
135
|
"fs-extra": "^10.0.0",
|