skyflow-js 2.3.3 → 2.4.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/CHANGELOG.md +26 -0
- package/dist/sdkNodeBuild/index.js +1 -1
- package/dist/sdkNodeBuild/index.js.gz +0 -0
- package/package.json +1 -1
- package/types/core/external/collect/collect-container.d.ts +4 -24
- package/types/core/external/collect/collect-element.d.ts +4 -4
- package/types/core/external/collect/compose-collect-container.d.ts +5 -25
- package/types/core/external/collect/compose-collect-element.d.ts +3 -2
- package/types/core/external/reveal/reveal-container.d.ts +2 -2
- package/types/core/external/reveal/reveal-element.d.ts +4 -4
- package/types/core/external/skyflow-container.d.ts +6 -6
- package/types/core-utils/reveal.d.ts +2 -7
- package/types/index-node.d.ts +12 -0
- package/types/skyflow.d.ts +9 -9
- package/types/utils/common/index.d.ts +146 -1
- package/types/utils/validators/index.d.ts +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.4.1] - 2025-06-19
|
|
6
|
+
### Fixed
|
|
7
|
+
- Make `scheme` optional in `CardMetadata`.
|
|
8
|
+
|
|
9
|
+
## [2.4.0] - 2025-06-19
|
|
10
|
+
### Added
|
|
11
|
+
- Typescript support for public interfaces.
|
|
12
|
+
|
|
13
|
+
## [2.3.3] - 2025-06-16
|
|
14
|
+
### Fixed
|
|
15
|
+
- Expiration date validations.
|
|
16
|
+
|
|
17
|
+
## [2.3.2] - 2025-06-12
|
|
18
|
+
### Fixed
|
|
19
|
+
- Refactor stale elements code.
|
|
20
|
+
|
|
21
|
+
## [2.3.1] - 2025-06-03
|
|
22
|
+
### Fixed
|
|
23
|
+
- Add check for empty container for collect and reveal.
|
|
24
|
+
### Changed
|
|
25
|
+
- Update 3DS browser details helper function.
|
|
26
|
+
|
|
27
|
+
## [2.3.0] - 2025-05-26
|
|
28
|
+
### Added
|
|
29
|
+
- Iframe refactoring.
|
|
30
|
+
|
|
5
31
|
## [2.2.3] - 2025-05-08
|
|
6
32
|
### Added
|
|
7
33
|
- Add overloading method signatures for container initialisation.
|