@integry/sdk 3.7.6 → 3.7.8
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_INTERNAL.md +23 -17
- package/dist/esm/index.csm.d.ts +1 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +1 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG_INTERNAL.md
CHANGED
|
@@ -5,63 +5,69 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [3.7.
|
|
8
|
+
## [3.7.7] - 2023-09-19
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Added support for deployment ID for legacy users. When a deployment ID is provided to the SDK, only `Published` flows will be listed.
|
|
13
|
+
|
|
14
|
+
## [3.7.6] - 2023-09-18
|
|
9
15
|
|
|
10
16
|
### Changed
|
|
11
17
|
|
|
12
|
-
-
|
|
18
|
+
- Updated SDK button color to Integry blue.
|
|
13
19
|
|
|
14
|
-
## [3.7.4] - 2023-18
|
|
20
|
+
## [3.7.4] - 2023-09-18
|
|
15
21
|
|
|
16
22
|
### Changed
|
|
17
23
|
|
|
18
|
-
- Made deployment ID
|
|
24
|
+
- Made deployment ID optional in SDK config.
|
|
19
25
|
|
|
20
|
-
## [3.7.2] - 2023-18
|
|
26
|
+
## [3.7.2] - 2023-09-18
|
|
21
27
|
|
|
22
28
|
### Added
|
|
23
29
|
|
|
24
|
-
-
|
|
30
|
+
- Refreshed SDK when authorization is deleted using the `removeAuthorization` function.
|
|
25
31
|
|
|
26
|
-
## [3.7.1] - 2023-14
|
|
32
|
+
## [3.7.1] - 2023-09-14
|
|
27
33
|
|
|
28
34
|
### Added
|
|
29
35
|
|
|
30
|
-
- Added
|
|
36
|
+
- Added 'did-app-load' event when App loading is completed.
|
|
31
37
|
|
|
32
|
-
## [3.6.9] - 2023-15
|
|
38
|
+
## [3.6.9] - 2023-09-15
|
|
33
39
|
|
|
34
40
|
### Added
|
|
35
41
|
|
|
36
|
-
- Added function called `removeAuthorization` to
|
|
42
|
+
- Added a function called `removeAuthorization` to delete end-user authorization.
|
|
37
43
|
|
|
38
|
-
## [3.6.7] - 2023-09-
|
|
44
|
+
## [3.6.7] - 2023-09-09
|
|
39
45
|
|
|
40
46
|
### Changed
|
|
41
47
|
|
|
42
|
-
-
|
|
48
|
+
- Changed button label to "Setup" for "Save and Execute Later" On-Demand Flow.
|
|
43
49
|
|
|
44
50
|
## [3.6.3] - 2023-09-08
|
|
45
51
|
|
|
46
52
|
### Fixed
|
|
47
53
|
|
|
48
|
-
-
|
|
54
|
+
- Hidden Tooltip on Flow setup button after account verification is completed.
|
|
49
55
|
|
|
50
56
|
## [3.6.2] - 2023-09-08
|
|
51
57
|
|
|
52
58
|
### Added
|
|
53
59
|
|
|
54
|
-
-
|
|
55
|
-
- Objects passed in SDK configuration will be used as payload when executing On-Demand Flow
|
|
60
|
+
- Added support to execute On-Demand Flow on save if Flow is configured as "Save and Execute."
|
|
61
|
+
- Objects passed in SDK configuration will be used as a payload when executing On-Demand Flow.
|
|
56
62
|
|
|
57
63
|
## [3.6.1] - 2023-09-08
|
|
58
64
|
|
|
59
65
|
### Fixed
|
|
60
66
|
|
|
61
|
-
- UI
|
|
67
|
+
- Minor UI Fixes.
|
|
62
68
|
|
|
63
69
|
## [3.6.0] - 2023-09-07
|
|
64
70
|
|
|
65
71
|
### Added
|
|
66
72
|
|
|
67
|
-
-
|
|
73
|
+
- Added support for SDK to accept Objects in SDK configuration for Incoming Webhook. These Objects will be used for field mapping.
|
package/dist/esm/index.csm.d.ts
CHANGED