@flowcore/sdk 1.10.3 → 1.11.2
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 +113 -83
- package/README.md +655 -18
- package/esm/_dnt.shims.d.ts +9 -0
- package/esm/_dnt.shims.d.ts.map +1 -0
- package/esm/_dnt.shims.js +64 -0
- package/esm/common/notification-client.d.ts +80 -0
- package/esm/common/notification-client.d.ts.map +1 -0
- package/esm/common/notification-client.js +213 -0
- package/esm/mod.d.ts +1 -0
- package/esm/mod.d.ts.map +1 -1
- package/esm/mod.js +1 -0
- package/esm/utils/logger.d.ts +8 -0
- package/esm/utils/logger.d.ts.map +1 -0
- package/esm/utils/logger.js +14 -0
- package/package.json +7 -3
- package/script/_dnt.shims.d.ts +9 -0
- package/script/_dnt.shims.d.ts.map +1 -0
- package/script/_dnt.shims.js +72 -0
- package/script/common/notification-client.d.ts +80 -0
- package/script/common/notification-client.d.ts.map +1 -0
- package/script/common/notification-client.js +240 -0
- package/script/mod.d.ts +1 -0
- package/script/mod.d.ts.map +1 -1
- package/script/mod.js +1 -0
- package/script/utils/logger.d.ts +8 -0
- package/script/utils/logger.d.ts.map +1 -0
- package/script/utils/logger.js +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,237 +1,267 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [1.
|
|
3
|
+
## [1.11.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.1...v1.11.2) (2025-02-12)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* import node buffer ([6e6caa0](https://github.com/flowcore-io/flowcore-sdk/commit/6e6caa0707bb58987939e39898b32e574e7194f8))
|
|
9
9
|
|
|
10
|
-
## [1.
|
|
10
|
+
## [1.11.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.0...v1.11.1) (2025-02-12)
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
### Bug Fixes
|
|
14
14
|
|
|
15
|
-
*
|
|
15
|
+
* fix import of rxjs ([3dcc724](https://github.com/flowcore-io/flowcore-sdk/commit/3dcc724d1ae1884441ba26b9c3abf5d24c67edd0))
|
|
16
16
|
|
|
17
|
-
## [1.
|
|
17
|
+
## [1.11.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.10.3...v1.11.0) (2025-02-11)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* Add notification client with WebSocket support ([f573957](https://github.com/flowcore-io/flowcore-sdk/commit/f57395798baecfb4f5385820912c996e5bc7e641))
|
|
23
|
+
* Enhance NotificationClient with dynamic data fetching ([7398919](https://github.com/flowcore-io/flowcore-sdk/commit/739891977d862fedc06154ef4b936187f638fa34))
|
|
24
|
+
* Improve WebSocket compatibility and data parsing in NotificationClient ([b2867d3](https://github.com/flowcore-io/flowcore-sdk/commit/b2867d397ac3db2ca8894a738c3ef18ed1805775))
|
|
18
25
|
|
|
19
26
|
|
|
20
27
|
### Bug Fixes
|
|
21
28
|
|
|
22
|
-
*
|
|
29
|
+
* Improve tenant and connection handling in NotificationClient ([0fd04c2](https://github.com/flowcore-io/flowcore-sdk/commit/0fd04c22db8a585786bea1fed15a6cbbb3d8f265))
|
|
23
30
|
|
|
24
|
-
## [1.10.
|
|
31
|
+
## [1.10.3](https://github.com/flowcore-io/flowcore-sdk/compare/v1.10.2...v1.10.3) (2025-02-07)
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
25
34
|
|
|
35
|
+
- flowtype delete request
|
|
36
|
+
([66488ff](https://github.com/flowcore-io/flowcore-sdk/commit/66488ffccef62f6eefb0661c6166f3ff5bb6a82f))
|
|
26
37
|
|
|
27
|
-
|
|
38
|
+
## [1.10.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.10.1...v1.10.2) (2025-02-07)
|
|
28
39
|
|
|
29
|
-
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- add eventtype truncate command
|
|
43
|
+
([1f8d4b0](https://github.com/flowcore-io/flowcore-sdk/commit/1f8d4b0afa89e427b5835fa933208f6508d0c578))
|
|
30
44
|
|
|
45
|
+
## [1.10.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.10.0...v1.10.1) (2025-02-07)
|
|
31
46
|
|
|
32
47
|
### Bug Fixes
|
|
33
48
|
|
|
34
|
-
|
|
35
|
-
|
|
49
|
+
- disable retry for create resource commands
|
|
50
|
+
([c97f990](https://github.com/flowcore-io/flowcore-sdk/commit/c97f99017aaf6deef7ca431a61b5b4c322c3788f))
|
|
36
51
|
|
|
37
|
-
## [1.
|
|
52
|
+
## [1.10.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.9.3...v1.10.0) (2025-02-03)
|
|
53
|
+
|
|
54
|
+
### Features
|
|
38
55
|
|
|
56
|
+
- add tests ([9590ea8](https://github.com/flowcore-io/flowcore-sdk/commit/9590ea8f95b23e219615c3219ae52c042925893f))
|
|
39
57
|
|
|
40
58
|
### Bug Fixes
|
|
41
59
|
|
|
42
|
-
|
|
60
|
+
- add explicit return
|
|
61
|
+
([5b30642](https://github.com/flowcore-io/flowcore-sdk/commit/5b3064238fd0c353c43ce9b7af5d42a434ff6e6f))
|
|
62
|
+
- add more tests
|
|
63
|
+
([814cb94](https://github.com/flowcore-io/flowcore-sdk/commit/814cb943df9cf5934530dfeec8db7167c4cc1273))
|
|
43
64
|
|
|
44
|
-
## [1.9.
|
|
65
|
+
## [1.9.3](https://github.com/flowcore-io/flowcore-sdk/compare/v1.9.2...v1.9.3) (2025-02-03)
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
- make description in update optional
|
|
70
|
+
([5b86c38](https://github.com/flowcore-io/flowcore-sdk/commit/5b86c387b4c1b414fe94c10a9c56d069dc772138))
|
|
45
71
|
|
|
72
|
+
## [1.9.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.9.1...v1.9.2) (2025-01-31)
|
|
46
73
|
|
|
47
74
|
### Bug Fixes
|
|
48
75
|
|
|
49
|
-
|
|
76
|
+
- fix event type model
|
|
77
|
+
([c5a2168](https://github.com/flowcore-io/flowcore-sdk/commit/c5a216896c1ab1d69fca9b2ef7a86de46a24f1cc))
|
|
50
78
|
|
|
51
79
|
## [1.9.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.9.0...v1.9.1) (2025-01-30)
|
|
52
80
|
|
|
53
|
-
|
|
54
81
|
### Bug Fixes
|
|
55
82
|
|
|
56
|
-
|
|
83
|
+
- add deleting and truncating
|
|
84
|
+
([d0333a2](https://github.com/flowcore-io/flowcore-sdk/commit/d0333a2ffe2a136b981a9e41b440df0c8bcd0be2))
|
|
57
85
|
|
|
58
86
|
## [1.9.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.8.0...v1.9.0) (2025-01-30)
|
|
59
87
|
|
|
60
|
-
|
|
61
88
|
### Features
|
|
62
89
|
|
|
63
|
-
|
|
90
|
+
- delete protected renamed to delete protection
|
|
91
|
+
([181a7ae](https://github.com/flowcore-io/flowcore-sdk/commit/181a7ae857b1ede5ada394ccd8ffd1385b733aa1))
|
|
64
92
|
|
|
65
93
|
## [1.8.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.7.0...v1.8.0) (2025-01-22)
|
|
66
94
|
|
|
67
|
-
|
|
68
95
|
### Features
|
|
69
96
|
|
|
70
|
-
|
|
97
|
+
- **data-core:** :sparkles: add isDeleting and isTruncating fields to DataCoreSchema and DataCoreV0Schema
|
|
98
|
+
([b9dd8b2](https://github.com/flowcore-io/flowcore-sdk/commit/b9dd8b2dfa8291cc420c7659b1b60a169297dc4b))
|
|
71
99
|
|
|
72
100
|
## [1.7.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.6.0...v1.7.0) (2025-01-12)
|
|
73
101
|
|
|
74
|
-
|
|
75
102
|
### Features
|
|
76
103
|
|
|
77
|
-
|
|
104
|
+
- added method to override and exported command error
|
|
105
|
+
([e78a053](https://github.com/flowcore-io/flowcore-sdk/commit/e78a0534283d483ecac1c6bcd35637d452240380))
|
|
78
106
|
|
|
79
107
|
## [1.6.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.5.0...v1.6.0) (2024-12-31)
|
|
80
108
|
|
|
81
|
-
|
|
82
109
|
### Features
|
|
83
110
|
|
|
84
|
-
|
|
111
|
+
- **exports:** :technologist: export parsed helper method
|
|
112
|
+
([4f781bc](https://github.com/flowcore-io/flowcore-sdk/commit/4f781bcf1ca0169f8b8b4361b201e2f38ea61d7c))
|
|
85
113
|
|
|
86
114
|
## [1.5.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.5...v1.5.0) (2024-12-19)
|
|
87
115
|
|
|
88
|
-
|
|
89
116
|
### Features
|
|
90
117
|
|
|
91
|
-
|
|
92
|
-
|
|
118
|
+
- add retry to client
|
|
119
|
+
([b202c56](https://github.com/flowcore-io/flowcore-sdk/commit/b202c5660f42a02bbd45db043d48713effe658a6))
|
|
93
120
|
|
|
94
121
|
### Bug Fixes
|
|
95
122
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
123
|
+
- update readme ([bf233bc](https://github.com/flowcore-io/flowcore-sdk/commit/bf233bc27b15892b5813c2121b7221d08c7b7d63))
|
|
124
|
+
- update readme ([3ffbe49](https://github.com/flowcore-io/flowcore-sdk/commit/3ffbe499e6014e64a8c420eead2763539cb5412c))
|
|
125
|
+
- use retryable status codes
|
|
126
|
+
([89a8919](https://github.com/flowcore-io/flowcore-sdk/commit/89a8919492c55614851779ff77ddc3f7fcde51e0))
|
|
99
127
|
|
|
100
128
|
## [1.4.5](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.4...v1.4.5) (2024-12-19)
|
|
101
129
|
|
|
102
|
-
|
|
103
130
|
### Bug Fixes
|
|
104
131
|
|
|
105
|
-
|
|
132
|
+
- expose flowcore event
|
|
133
|
+
([cd20a6c](https://github.com/flowcore-io/flowcore-sdk/commit/cd20a6c10591613f7813a52120395aa87311aba2))
|
|
106
134
|
|
|
107
135
|
## [1.4.4](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.3...v1.4.4) (2024-12-09)
|
|
108
136
|
|
|
109
|
-
|
|
110
137
|
### Bug Fixes
|
|
111
138
|
|
|
112
|
-
|
|
139
|
+
- choose files to include in publish
|
|
140
|
+
([9cc35a9](https://github.com/flowcore-io/flowcore-sdk/commit/9cc35a937f2a2342ece9319a1dc25407bfcab8df))
|
|
113
141
|
|
|
114
142
|
## [1.4.3](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.2...v1.4.3) (2024-12-09)
|
|
115
143
|
|
|
116
|
-
|
|
117
144
|
### Bug Fixes
|
|
118
145
|
|
|
119
|
-
|
|
146
|
+
- fix npm package url
|
|
147
|
+
([12e38d0](https://github.com/flowcore-io/flowcore-sdk/commit/12e38d07277a62e1bf8b8ce30cc88a02769a6ecd))
|
|
120
148
|
|
|
121
149
|
## [1.4.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.1...v1.4.2) (2024-12-09)
|
|
122
150
|
|
|
123
|
-
|
|
124
151
|
### Bug Fixes
|
|
125
152
|
|
|
126
|
-
|
|
153
|
+
- release npm ([e87287f](https://github.com/flowcore-io/flowcore-sdk/commit/e87287f5b7b47145733e7b1c8835a185e1f84f10))
|
|
127
154
|
|
|
128
155
|
## [1.4.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.4.0...v1.4.1) (2024-12-09)
|
|
129
156
|
|
|
130
|
-
|
|
131
157
|
### Bug Fixes
|
|
132
158
|
|
|
133
|
-
|
|
159
|
+
- release npm ([0f77599](https://github.com/flowcore-io/flowcore-sdk/commit/0f77599d6b476219b700e1beccf3e8e77a0caecd))
|
|
134
160
|
|
|
135
161
|
## [1.4.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.3.1...v1.4.0) (2024-12-09)
|
|
136
162
|
|
|
137
|
-
|
|
138
163
|
### Features
|
|
139
164
|
|
|
140
|
-
|
|
141
|
-
|
|
165
|
+
- release on npm also
|
|
166
|
+
([a53921d](https://github.com/flowcore-io/flowcore-sdk/commit/a53921d0e384ca6897f089af614692b841ff7087))
|
|
142
167
|
|
|
143
168
|
### Bug Fixes
|
|
144
169
|
|
|
145
|
-
|
|
170
|
+
- update deno.lock file
|
|
171
|
+
([b2e90bc](https://github.com/flowcore-io/flowcore-sdk/commit/b2e90bc0b0ee917764d0628277f0aa0e793b3da5))
|
|
146
172
|
|
|
147
173
|
## [1.3.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.3.0...v1.3.1) (2024-12-06)
|
|
148
174
|
|
|
149
|
-
|
|
150
175
|
### Bug Fixes
|
|
151
176
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
177
|
+
- add secret list and variable list
|
|
178
|
+
([75bf201](https://github.com/flowcore-io/flowcore-sdk/commit/75bf2013e8539aeb1f92ebcd5fdb96c197f6731e))
|
|
179
|
+
- add tenant list and api key list
|
|
180
|
+
([18cfb18](https://github.com/flowcore-io/flowcore-sdk/commit/18cfb18286342a3e51595d648b369cd7195def33))
|
|
181
|
+
- added more commands
|
|
182
|
+
([feef2ad](https://github.com/flowcore-io/flowcore-sdk/commit/feef2adc7be749f126c9d10a454dbc195e2198d6))
|
|
183
|
+
- change client options
|
|
184
|
+
([d4d7553](https://github.com/flowcore-io/flowcore-sdk/commit/d4d75532135c91c862cf46d407a3afea990a5cea))
|
|
185
|
+
- interface fix ([32cde1f](https://github.com/flowcore-io/flowcore-sdk/commit/32cde1f129cc0a94b3497ece0ac9da6431a56c96))
|
|
157
186
|
|
|
158
187
|
## [1.3.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.2.3...v1.3.0) (2024-12-05)
|
|
159
188
|
|
|
160
|
-
|
|
161
189
|
### Features
|
|
162
190
|
|
|
163
|
-
|
|
164
|
-
|
|
191
|
+
- refactor and new commands
|
|
192
|
+
([b3cb108](https://github.com/flowcore-io/flowcore-sdk/commit/b3cb1087f47d48c34571515aa690b6a995597f94))
|
|
165
193
|
|
|
166
194
|
### Bug Fixes
|
|
167
195
|
|
|
168
|
-
|
|
169
|
-
|
|
196
|
+
- fix typo ([9485cf7](https://github.com/flowcore-io/flowcore-sdk/commit/9485cf72072c74e31c2c08fcf1fa14d052299b84))
|
|
197
|
+
- lint fix ([e9da973](https://github.com/flowcore-io/flowcore-sdk/commit/e9da97398696d9f8294501dc7a5fadd5a20f92ff))
|
|
170
198
|
|
|
171
199
|
## [1.2.3](https://github.com/flowcore-io/flowcore-sdk/compare/v1.2.2...v1.2.3) (2024-12-02)
|
|
172
200
|
|
|
173
|
-
|
|
174
201
|
### Bug Fixes
|
|
175
202
|
|
|
176
|
-
|
|
203
|
+
- add tenant to event
|
|
204
|
+
([62d2cda](https://github.com/flowcore-io/flowcore-sdk/commit/62d2cda90ba8cfcbdefb69a8dff0050bc31802ab))
|
|
177
205
|
|
|
178
206
|
## [1.2.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.2.1...v1.2.2) (2024-12-02)
|
|
179
207
|
|
|
180
|
-
|
|
181
208
|
### Bug Fixes
|
|
182
209
|
|
|
183
|
-
|
|
210
|
+
- fix fetch events
|
|
211
|
+
([3817721](https://github.com/flowcore-io/flowcore-sdk/commit/3817721b697d1092acfdf6868861f9fe9770b6ba))
|
|
184
212
|
|
|
185
213
|
## [1.2.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.2.0...v1.2.1) (2024-12-02)
|
|
186
214
|
|
|
187
|
-
|
|
188
215
|
### Bug Fixes
|
|
189
216
|
|
|
190
|
-
|
|
217
|
+
- cursor is string
|
|
218
|
+
([b837899](https://github.com/flowcore-io/flowcore-sdk/commit/b8378992329a700d1673c4b2111ea4a2ac72e4ff))
|
|
191
219
|
|
|
192
220
|
## [1.2.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.1.0...v1.2.0) (2024-12-02)
|
|
193
221
|
|
|
194
|
-
|
|
195
222
|
### Features
|
|
196
223
|
|
|
197
|
-
|
|
198
|
-
|
|
224
|
+
- use v2 rest ([7ae42fa](https://github.com/flowcore-io/flowcore-sdk/commit/7ae42fae697385885986e1190385d571839473aa))
|
|
199
225
|
|
|
200
226
|
### Bug Fixes
|
|
201
227
|
|
|
202
|
-
|
|
228
|
+
- use event from contracts
|
|
229
|
+
([9d6e861](https://github.com/flowcore-io/flowcore-sdk/commit/9d6e8619d0bd53e954572cce80810f9699bc68df))
|
|
203
230
|
|
|
204
231
|
## [1.1.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.0.2...v1.1.0) (2024-11-08)
|
|
205
232
|
|
|
206
|
-
|
|
207
233
|
### Features
|
|
208
234
|
|
|
209
|
-
|
|
235
|
+
- api key options for client
|
|
236
|
+
([e132756](https://github.com/flowcore-io/flowcore-sdk/commit/e1327568d7d66adddce2344a1ffad8d5c7348514))
|
|
210
237
|
|
|
211
238
|
## [1.0.2](https://github.com/flowcore-io/flowcore-sdk/compare/v1.0.1...v1.0.2) (2024-11-07)
|
|
212
239
|
|
|
213
|
-
|
|
214
240
|
### Bug Fixes
|
|
215
241
|
|
|
216
|
-
|
|
242
|
+
- command set method
|
|
243
|
+
([0d74a68](https://github.com/flowcore-io/flowcore-sdk/commit/0d74a68c058c4671765abaac3788f74dd1c86c1d))
|
|
217
244
|
|
|
218
245
|
## [1.0.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.0.0...v1.0.1) (2024-11-07)
|
|
219
246
|
|
|
220
|
-
|
|
221
247
|
### Bug Fixes
|
|
222
248
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
249
|
+
- add readme ([9fbeff5](https://github.com/flowcore-io/flowcore-sdk/commit/9fbeff5e985234f398bd916df2ad3e9d1188aa21))
|
|
250
|
+
- and again ([fa56cd4](https://github.com/flowcore-io/flowcore-sdk/commit/fa56cd4830d13b05c2b4c6048b4447e6d380af8c))
|
|
251
|
+
- and again ([de86297](https://github.com/flowcore-io/flowcore-sdk/commit/de86297dccba09af1541468125749ff4f567f3a6))
|
|
252
|
+
- expose command class + add v2 events commands
|
|
253
|
+
([c3ac222](https://github.com/flowcore-io/flowcore-sdk/commit/c3ac222613ca82c6e8ba364ca6ffc67b356b6a3f))
|
|
254
|
+
- try again ([fa56cd4](https://github.com/flowcore-io/flowcore-sdk/commit/fa56cd4830d13b05c2b4c6048b4447e6d380af8c))
|
|
255
|
+
- try again ([816665f](https://github.com/flowcore-io/flowcore-sdk/commit/816665ff80632ffcfe1835ca3ada34d7c560b7f1))
|
|
256
|
+
- try monorepo ([fa56cd4](https://github.com/flowcore-io/flowcore-sdk/commit/fa56cd4830d13b05c2b4c6048b4447e6d380af8c))
|
|
257
|
+
- try monorepo ([fa56cd4](https://github.com/flowcore-io/flowcore-sdk/commit/fa56cd4830d13b05c2b4c6048b4447e6d380af8c))
|
|
258
|
+
- try monorepo ([849b01d](https://github.com/flowcore-io/flowcore-sdk/commit/849b01da4080e8c938653c6a5fdb32d9031a6439))
|
|
259
|
+
- update lock file
|
|
260
|
+
([178f15e](https://github.com/flowcore-io/flowcore-sdk/commit/178f15e3f62f5d775992a126e7b9d38b0a4278fc))
|
|
261
|
+
- update lock file
|
|
262
|
+
([fa56cd4](https://github.com/flowcore-io/flowcore-sdk/commit/fa56cd4830d13b05c2b4c6048b4447e6d380af8c))
|
|
263
|
+
- update lock file
|
|
264
|
+
([3291649](https://github.com/flowcore-io/flowcore-sdk/commit/3291649080e6e53543352e4b9969a35095ecc5c0))
|
|
235
265
|
|
|
236
266
|
## 1.0.0 (2024-10-25)
|
|
237
267
|
|