skyflow-js 1.30.3 → 1.31.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.
- package/CHANGELOG.md +14 -1
- package/README.md +4 -0
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +1 -1
- package/types/core/constants.d.ts +2 -0
- package/types/core/external/common/iframe.d.ts +1 -0
- package/types/core-utils/reveal.d.ts +2 -0
- package/types/utils/constants.d.ts +12 -0
- package/types/utils/logs.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [1.
|
|
5
|
+
## [1.31.0] - 2023-10-06
|
|
6
|
+
### Added
|
|
7
|
+
- `allowedFileType` option for file input element.
|
|
8
|
+
- `valueType` in detokenize and reveal response.
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- iFrame height resize.
|
|
12
|
+
## [1.30.3] - 2023-09-29
|
|
13
|
+
### Fixed
|
|
14
|
+
- removed assets from build and updated build config for core-js.
|
|
15
|
+
## [1.30.2] - 2023-09-26
|
|
16
|
+
### Fixed
|
|
17
|
+
- updated internal imports and removed unused dependencies.
|
|
18
|
+
## [1.30.1] - 2023-08-14
|
|
6
19
|
### Added
|
|
7
20
|
- Add requiredAsterisk style and global styles.
|
|
8
21
|
|
package/README.md
CHANGED
|
@@ -1797,10 +1797,12 @@ The sample response:
|
|
|
1797
1797
|
{
|
|
1798
1798
|
"token": "131e70dc-6f76-4319-bdd3-96281e051051",
|
|
1799
1799
|
"value": "1990-01-01",
|
|
1800
|
+
"valueType": "STRING"
|
|
1800
1801
|
},
|
|
1801
1802
|
{
|
|
1802
1803
|
"token": "1r434532-6f76-4319-bdd3-96281e051051",
|
|
1803
1804
|
"value": "xxxxxxer",
|
|
1805
|
+
"valueType": "STRING"
|
|
1804
1806
|
}
|
|
1805
1807
|
]
|
|
1806
1808
|
}
|
|
@@ -2164,10 +2166,12 @@ The response below shows that some tokens assigned to the reveal elements get re
|
|
|
2164
2166
|
{
|
|
2165
2167
|
"token": "b63ec4e0-bbad-4e43-96e6-6bd50f483f75",
|
|
2166
2168
|
"value": "xxxxxxxxx4163"
|
|
2169
|
+
"valueType": "STRING"
|
|
2167
2170
|
},
|
|
2168
2171
|
{
|
|
2169
2172
|
"token": "a4b24714-6a26-4256-b9d4-55ad69aa4047",
|
|
2170
2173
|
"value": "12/2098"
|
|
2174
|
+
"valueType": "STRING"
|
|
2171
2175
|
}
|
|
2172
2176
|
],
|
|
2173
2177
|
"errors": [
|