@yuno-payments/sdk-web-types 1.19.0-beta.3 → 1.20.0-beta.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.
- package/dist/index.d.ts +2 -0
- package/dist/types.ts +2 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -508,6 +508,8 @@ interface YunoConfig {
|
|
|
508
508
|
enableRememberMe?: boolean;
|
|
509
509
|
recognitionToken?: string;
|
|
510
510
|
c2pFlowType?: string;
|
|
511
|
+
onRecognitionTokenCreated?(recognitionToken: string): void;
|
|
512
|
+
onRecognitionTokenDeleted?(): void;
|
|
511
513
|
};
|
|
512
514
|
texts?: TextsCustom;
|
|
513
515
|
issuersFormEnable?: boolean;
|
package/dist/types.ts
CHANGED
|
@@ -508,6 +508,8 @@ interface YunoConfig {
|
|
|
508
508
|
enableRememberMe?: boolean;
|
|
509
509
|
recognitionToken?: string;
|
|
510
510
|
c2pFlowType?: string;
|
|
511
|
+
onRecognitionTokenCreated?(recognitionToken: string): void;
|
|
512
|
+
onRecognitionTokenDeleted?(): void;
|
|
511
513
|
};
|
|
512
514
|
texts?: TextsCustom;
|
|
513
515
|
issuersFormEnable?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/sdk-web-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0-beta.1",
|
|
4
4
|
"types": "dist/index.d.ts",
|
|
5
5
|
"main": "dist/types.ts",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "rm -rf ./dist && rollup -c --bundleConfigAsCjs && node ./script.js",
|
|
15
|
-
"prepublishOnly": "npm run build"
|
|
15
|
+
"prepublishOnly": "npm run build",
|
|
16
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
16
17
|
},
|
|
17
18
|
"author": "",
|
|
18
19
|
"license": "ISC",
|