@kushki/js 1.37.0 → 1.37.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/lib/KushkiInfo.js CHANGED
@@ -11,7 +11,7 @@ const UtilsService_1 = require("./../lib/service/UtilsService");
11
11
  */
12
12
  class KInfo {
13
13
  static buildKushkiInfo(kushkiInfo) {
14
- const kushki_js_version = "1.37.0";
14
+ const kushki_js_version = "1.37.1";
15
15
  if (kushkiInfo) {
16
16
  if (UtilsService_1.UtilsService.sIsEmpty(kushkiInfo.platformVersion))
17
17
  kushkiInfo.platformVersion = kushki_js_version;
@@ -9,9 +9,9 @@ export type CardBrandingRequest = VisaBrandingRequest | MasterCardBrandingReques
9
9
  export interface VisaBrandingRequest {
10
10
  brand: "visa";
11
11
  /**
12
- * ("white" | "blue" | "blur") [default = "white"] The background of animation.
12
+ * ("white" | "blue" | "blur" | "transparent") [default = "white"] The background of animation.
13
13
  */
14
- color?: "white" | "blue" | "blur";
14
+ color?: "white" | "blue" | "blur" | "transparent";
15
15
  /**
16
16
  * (boolean) [default= false] The container visualization.
17
17
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kushki/js",
3
- "version": "1.37.0",
3
+ "version": "1.37.1",
4
4
  "description": "kushki-js",
5
5
  "main": "lib/lib.js",
6
6
  "types": "lib/lib.d.ts",
@@ -1,32 +0,0 @@
1
- /* tslint:disable:all */
2
- /* tslint:disable:all */
3
-
4
- /**
5
- * Visa animation properties
6
- */
7
- export interface VisaBrandingRequest {
8
- /**
9
- * ("white" | "blue" | "blur" | "transparent") [default = "white"] The background of animation.
10
- */
11
- color?: "white" | "blue" | "blur" | "transparent";
12
- /**
13
- * (boolean) [default= false] The container visualization.
14
- */
15
- constrained?: boolean;
16
- /**
17
- * (boolean) [default = false] The activation of the sound.
18
- */
19
- sound?: boolean;
20
- /**
21
- * ("none" | "checkmark" | "checkmarkWithText") [default = "none"] The visualization of checkmark.
22
- */
23
- checkmark?: "none" | "checkmark" | "checkmarkWithText";
24
- /**
25
- * ("approved" | "success" | "complete") [default = "approved"] The text to appear if checkmarkWithText is enabled.
26
- */
27
- checkmarkTextOption?: "approved" | "success" | "complete";
28
- /**
29
- * ("es" | "en" | "pt_br") [default = "es"] The language of the checkmark text.
30
- */
31
- languageCode?: "es" | "en" | "pt_br";
32
- }