@stackframe/stack-shared 2.8.55 → 2.8.58
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/dist/apps/apps-config.d.mts +7 -1
- package/dist/apps/apps-config.d.ts +7 -1
- package/dist/apps/apps-config.js +7 -1
- package/dist/apps/apps-config.js.map +1 -1
- package/dist/config/schema-fuzzer.test.js +3 -0
- package/dist/config/schema-fuzzer.test.js.map +1 -1
- package/dist/config/schema.d.mts +162 -114
- package/dist/config/schema.d.ts +162 -114
- package/dist/config/schema.js +7 -0
- package/dist/config/schema.js.map +1 -1
- package/dist/esm/apps/apps-config.js +7 -1
- package/dist/esm/apps/apps-config.js.map +1 -1
- package/dist/esm/config/schema-fuzzer.test.js +3 -0
- package/dist/esm/config/schema-fuzzer.test.js.map +1 -1
- package/dist/esm/config/schema.js +7 -0
- package/dist/esm/config/schema.js.map +1 -1
- package/dist/esm/interface/admin-interface.js +49 -1
- package/dist/esm/interface/admin-interface.js.map +1 -1
- package/dist/esm/interface/client-interface.js +13 -4
- package/dist/esm/interface/client-interface.js.map +1 -1
- package/dist/esm/interface/crud/current-user.js +5 -2
- package/dist/esm/interface/crud/current-user.js.map +1 -1
- package/dist/esm/interface/crud/email-outbox.js +204 -0
- package/dist/esm/interface/crud/email-outbox.js.map +1 -0
- package/dist/esm/interface/crud/emails.js +6 -3
- package/dist/esm/interface/crud/emails.js.map +1 -1
- package/dist/esm/interface/crud/notification-preferences.js +13 -1
- package/dist/esm/interface/crud/notification-preferences.js.map +1 -1
- package/dist/esm/interface/crud/oauth-providers.js +10 -5
- package/dist/esm/interface/crud/oauth-providers.js.map +1 -1
- package/dist/esm/interface/crud/projects.js +9 -4
- package/dist/esm/interface/crud/projects.js.map +1 -1
- package/dist/esm/interface/crud/users.js +9 -2
- package/dist/esm/interface/crud/users.js.map +1 -1
- package/dist/esm/interface/server-interface.js +16 -0
- package/dist/esm/interface/server-interface.js.map +1 -1
- package/dist/esm/known-errors.js +45 -1
- package/dist/esm/known-errors.js.map +1 -1
- package/dist/esm/schema-fields.js +26 -2
- package/dist/esm/schema-fields.js.map +1 -1
- package/dist/esm/sessions.js +72 -8
- package/dist/esm/sessions.js.map +1 -1
- package/dist/esm/utils/env.js +13 -2
- package/dist/esm/utils/env.js.map +1 -1
- package/dist/esm/utils/esbuild.js +50 -21
- package/dist/esm/utils/esbuild.js.map +1 -1
- package/dist/esm/utils/globals.js +12 -0
- package/dist/esm/utils/globals.js.map +1 -1
- package/dist/esm/utils/paginated-lists.js +153 -23
- package/dist/esm/utils/paginated-lists.js.map +1 -1
- package/dist/esm/utils/paginated-lists.test.js +842 -0
- package/dist/esm/utils/paginated-lists.test.js.map +1 -0
- package/dist/esm/utils/proxies.js +28 -1
- package/dist/esm/utils/proxies.js.map +1 -1
- package/dist/esm/utils/react.js +7 -3
- package/dist/esm/utils/react.js.map +1 -1
- package/dist/esm/utils/results.js.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/interface/admin-interface.d.mts +26 -3
- package/dist/interface/admin-interface.d.ts +26 -3
- package/dist/interface/admin-interface.js +49 -1
- package/dist/interface/admin-interface.js.map +1 -1
- package/dist/interface/client-interface.d.mts +5 -0
- package/dist/interface/client-interface.d.ts +5 -0
- package/dist/interface/client-interface.js +13 -4
- package/dist/interface/client-interface.js.map +1 -1
- package/dist/interface/crud/current-user.d.mts +23 -6
- package/dist/interface/crud/current-user.d.ts +23 -6
- package/dist/interface/crud/current-user.js +5 -2
- package/dist/interface/crud/current-user.js.map +1 -1
- package/dist/interface/crud/email-outbox.d.mts +1075 -0
- package/dist/interface/crud/email-outbox.d.ts +1075 -0
- package/dist/interface/crud/email-outbox.js +241 -0
- package/dist/interface/crud/email-outbox.js.map +1 -0
- package/dist/interface/crud/emails.d.mts +5 -34
- package/dist/interface/crud/emails.d.ts +5 -34
- package/dist/interface/crud/emails.js +6 -3
- package/dist/interface/crud/emails.js.map +1 -1
- package/dist/interface/crud/notification-preferences.d.mts +12 -0
- package/dist/interface/crud/notification-preferences.d.ts +12 -0
- package/dist/interface/crud/notification-preferences.js +13 -1
- package/dist/interface/crud/notification-preferences.js.map +1 -1
- package/dist/interface/crud/oauth-providers.d.mts +5 -0
- package/dist/interface/crud/oauth-providers.d.ts +5 -0
- package/dist/interface/crud/oauth-providers.js +10 -5
- package/dist/interface/crud/oauth-providers.js.map +1 -1
- package/dist/interface/crud/project-api-keys.d.mts +1 -1
- package/dist/interface/crud/project-api-keys.d.ts +1 -1
- package/dist/interface/crud/projects.d.mts +73 -66
- package/dist/interface/crud/projects.d.ts +73 -66
- package/dist/interface/crud/projects.js +9 -4
- package/dist/interface/crud/projects.js.map +1 -1
- package/dist/interface/crud/team-member-profiles.d.mts +28 -12
- package/dist/interface/crud/team-member-profiles.d.ts +28 -12
- package/dist/interface/crud/users.d.mts +38 -6
- package/dist/interface/crud/users.d.ts +38 -6
- package/dist/interface/crud/users.js +9 -2
- package/dist/interface/crud/users.js.map +1 -1
- package/dist/interface/server-interface.d.mts +29 -0
- package/dist/interface/server-interface.d.ts +29 -0
- package/dist/interface/server-interface.js +16 -0
- package/dist/interface/server-interface.js.map +1 -1
- package/dist/interface/webhooks.d.mts +18 -2
- package/dist/interface/webhooks.d.ts +18 -2
- package/dist/known-errors.d.mts +14 -1
- package/dist/known-errors.d.ts +14 -1
- package/dist/known-errors.js +45 -1
- package/dist/known-errors.js.map +1 -1
- package/dist/schema-fields.d.mts +34 -1
- package/dist/schema-fields.d.ts +34 -1
- package/dist/schema-fields.js +32 -2
- package/dist/schema-fields.js.map +1 -1
- package/dist/sessions.d.mts +36 -5
- package/dist/sessions.d.ts +36 -5
- package/dist/sessions.js +72 -8
- package/dist/sessions.js.map +1 -1
- package/dist/utils/env.d.mts +2 -1
- package/dist/utils/env.d.ts +2 -1
- package/dist/utils/env.js +13 -1
- package/dist/utils/env.js.map +1 -1
- package/dist/utils/esbuild.js +49 -20
- package/dist/utils/esbuild.js.map +1 -1
- package/dist/utils/globals.d.mts +6 -1
- package/dist/utils/globals.d.ts +6 -1
- package/dist/utils/globals.js +13 -0
- package/dist/utils/globals.js.map +1 -1
- package/dist/utils/paginated-lists.d.mts +269 -12
- package/dist/utils/paginated-lists.d.ts +269 -12
- package/dist/utils/paginated-lists.js +153 -23
- package/dist/utils/paginated-lists.js.map +1 -1
- package/dist/utils/paginated-lists.test.d.mts +2 -0
- package/dist/utils/paginated-lists.test.d.ts +2 -0
- package/dist/utils/paginated-lists.test.js +844 -0
- package/dist/utils/paginated-lists.test.js.map +1 -0
- package/dist/utils/proxies.d.mts +8 -1
- package/dist/utils/proxies.d.ts +8 -1
- package/dist/utils/proxies.js +30 -2
- package/dist/utils/proxies.js.map +1 -1
- package/dist/utils/react.d.mts +1 -1
- package/dist/utils/react.d.ts +1 -1
- package/dist/utils/react.js +7 -3
- package/dist/utils/react.js.map +1 -1
- package/dist/utils/results.d.mts +5 -5
- package/dist/utils/results.d.ts +5 -5
- package/dist/utils/results.js.map +1 -1
- package/package.json +2 -1
- package/CHANGELOG.md +0 -1348
- package/dist/esm/interface/crud/config.js +0 -40
- package/dist/esm/interface/crud/config.js.map +0 -1
- package/dist/interface/crud/config.d.mts +0 -49
- package/dist/interface/crud/config.d.ts +0 -49
- package/dist/interface/crud/config.js +0 -79
- package/dist/interface/crud/config.js.map +0 -1
package/CHANGELOG.md
DELETED
|
@@ -1,1348 +0,0 @@
|
|
|
1
|
-
# @stackframe/stack-shared
|
|
2
|
-
|
|
3
|
-
## 2.8.55
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Various changes
|
|
8
|
-
|
|
9
|
-
## 2.8.54
|
|
10
|
-
|
|
11
|
-
### Patch Changes
|
|
12
|
-
|
|
13
|
-
- Various changes
|
|
14
|
-
|
|
15
|
-
## 2.8.53
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- Various changes
|
|
20
|
-
|
|
21
|
-
## 2.8.52
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- Various changes
|
|
26
|
-
|
|
27
|
-
## 2.8.51
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- Various changes
|
|
32
|
-
|
|
33
|
-
## 2.8.50
|
|
34
|
-
|
|
35
|
-
### Patch Changes
|
|
36
|
-
|
|
37
|
-
- Various changes
|
|
38
|
-
|
|
39
|
-
## 2.8.49
|
|
40
|
-
|
|
41
|
-
### Patch Changes
|
|
42
|
-
|
|
43
|
-
- Various changes
|
|
44
|
-
|
|
45
|
-
## 2.8.48
|
|
46
|
-
|
|
47
|
-
### Patch Changes
|
|
48
|
-
|
|
49
|
-
- Various changes
|
|
50
|
-
|
|
51
|
-
## 2.8.47
|
|
52
|
-
|
|
53
|
-
### Patch Changes
|
|
54
|
-
|
|
55
|
-
- Various changes
|
|
56
|
-
|
|
57
|
-
## 2.8.46
|
|
58
|
-
|
|
59
|
-
### Patch Changes
|
|
60
|
-
|
|
61
|
-
- Various changes
|
|
62
|
-
|
|
63
|
-
## 2.8.45
|
|
64
|
-
|
|
65
|
-
### Patch Changes
|
|
66
|
-
|
|
67
|
-
- Various changes
|
|
68
|
-
|
|
69
|
-
## 2.8.44
|
|
70
|
-
|
|
71
|
-
### Patch Changes
|
|
72
|
-
|
|
73
|
-
- Various changes
|
|
74
|
-
|
|
75
|
-
## 2.8.43
|
|
76
|
-
|
|
77
|
-
## 2.8.42
|
|
78
|
-
|
|
79
|
-
### Patch Changes
|
|
80
|
-
|
|
81
|
-
- Various changes
|
|
82
|
-
|
|
83
|
-
## 2.8.41
|
|
84
|
-
|
|
85
|
-
### Patch Changes
|
|
86
|
-
|
|
87
|
-
- Various changes
|
|
88
|
-
|
|
89
|
-
## 2.8.40
|
|
90
|
-
|
|
91
|
-
### Patch Changes
|
|
92
|
-
|
|
93
|
-
- Various changes
|
|
94
|
-
|
|
95
|
-
## 2.8.39
|
|
96
|
-
|
|
97
|
-
### Patch Changes
|
|
98
|
-
|
|
99
|
-
- Various changes
|
|
100
|
-
|
|
101
|
-
## 2.8.38
|
|
102
|
-
|
|
103
|
-
### Patch Changes
|
|
104
|
-
|
|
105
|
-
- Various changes
|
|
106
|
-
|
|
107
|
-
## 2.8.37
|
|
108
|
-
|
|
109
|
-
### Patch Changes
|
|
110
|
-
|
|
111
|
-
- Various changes
|
|
112
|
-
|
|
113
|
-
## 2.8.36
|
|
114
|
-
|
|
115
|
-
### Patch Changes
|
|
116
|
-
|
|
117
|
-
- Various changes
|
|
118
|
-
|
|
119
|
-
## 2.8.35
|
|
120
|
-
|
|
121
|
-
### Patch Changes
|
|
122
|
-
|
|
123
|
-
- Various changes
|
|
124
|
-
|
|
125
|
-
## 2.8.34
|
|
126
|
-
|
|
127
|
-
### Patch Changes
|
|
128
|
-
|
|
129
|
-
- Various changes
|
|
130
|
-
|
|
131
|
-
## 2.8.33
|
|
132
|
-
|
|
133
|
-
### Patch Changes
|
|
134
|
-
|
|
135
|
-
- Various changes
|
|
136
|
-
|
|
137
|
-
## 2.8.32
|
|
138
|
-
|
|
139
|
-
### Patch Changes
|
|
140
|
-
|
|
141
|
-
- Various changes
|
|
142
|
-
|
|
143
|
-
## 2.8.31
|
|
144
|
-
|
|
145
|
-
### Patch Changes
|
|
146
|
-
|
|
147
|
-
- Various changes
|
|
148
|
-
|
|
149
|
-
## 2.8.30
|
|
150
|
-
|
|
151
|
-
### Patch Changes
|
|
152
|
-
|
|
153
|
-
- Various changes
|
|
154
|
-
|
|
155
|
-
## 2.8.29
|
|
156
|
-
|
|
157
|
-
### Patch Changes
|
|
158
|
-
|
|
159
|
-
- Various changes
|
|
160
|
-
|
|
161
|
-
## 2.8.28
|
|
162
|
-
|
|
163
|
-
### Patch Changes
|
|
164
|
-
|
|
165
|
-
- Various changes
|
|
166
|
-
|
|
167
|
-
## 2.8.27
|
|
168
|
-
|
|
169
|
-
### Patch Changes
|
|
170
|
-
|
|
171
|
-
- Various changes
|
|
172
|
-
|
|
173
|
-
## 2.8.26
|
|
174
|
-
|
|
175
|
-
### Patch Changes
|
|
176
|
-
|
|
177
|
-
- Various changes
|
|
178
|
-
|
|
179
|
-
## 2.8.25
|
|
180
|
-
|
|
181
|
-
### Patch Changes
|
|
182
|
-
|
|
183
|
-
- Various changes
|
|
184
|
-
|
|
185
|
-
## 2.8.24
|
|
186
|
-
|
|
187
|
-
### Patch Changes
|
|
188
|
-
|
|
189
|
-
- Various changes
|
|
190
|
-
|
|
191
|
-
## 2.8.23
|
|
192
|
-
|
|
193
|
-
### Patch Changes
|
|
194
|
-
|
|
195
|
-
- Various changes
|
|
196
|
-
|
|
197
|
-
## 2.8.22
|
|
198
|
-
|
|
199
|
-
### Patch Changes
|
|
200
|
-
|
|
201
|
-
- Various changes
|
|
202
|
-
|
|
203
|
-
## 2.8.21
|
|
204
|
-
|
|
205
|
-
### Patch Changes
|
|
206
|
-
|
|
207
|
-
- Various changes
|
|
208
|
-
|
|
209
|
-
## 2.8.20
|
|
210
|
-
|
|
211
|
-
### Patch Changes
|
|
212
|
-
|
|
213
|
-
- Various changes
|
|
214
|
-
|
|
215
|
-
## 2.8.19
|
|
216
|
-
|
|
217
|
-
### Patch Changes
|
|
218
|
-
|
|
219
|
-
- Various changes
|
|
220
|
-
|
|
221
|
-
## 2.8.18
|
|
222
|
-
|
|
223
|
-
### Patch Changes
|
|
224
|
-
|
|
225
|
-
- Various changes
|
|
226
|
-
|
|
227
|
-
## 2.8.17
|
|
228
|
-
|
|
229
|
-
## 2.8.16
|
|
230
|
-
|
|
231
|
-
### Patch Changes
|
|
232
|
-
|
|
233
|
-
- Various changes
|
|
234
|
-
|
|
235
|
-
## 2.8.15
|
|
236
|
-
|
|
237
|
-
## 2.8.14
|
|
238
|
-
|
|
239
|
-
### Patch Changes
|
|
240
|
-
|
|
241
|
-
- Various changes
|
|
242
|
-
|
|
243
|
-
## 2.8.13
|
|
244
|
-
|
|
245
|
-
### Patch Changes
|
|
246
|
-
|
|
247
|
-
- Various changes
|
|
248
|
-
|
|
249
|
-
## 2.8.12
|
|
250
|
-
|
|
251
|
-
### Patch Changes
|
|
252
|
-
|
|
253
|
-
- Various changes
|
|
254
|
-
|
|
255
|
-
## 2.8.11
|
|
256
|
-
|
|
257
|
-
### Patch Changes
|
|
258
|
-
|
|
259
|
-
- Various changes
|
|
260
|
-
|
|
261
|
-
## 2.8.10
|
|
262
|
-
|
|
263
|
-
### Patch Changes
|
|
264
|
-
|
|
265
|
-
- Various changes
|
|
266
|
-
|
|
267
|
-
## 2.8.9
|
|
268
|
-
|
|
269
|
-
## 2.8.8
|
|
270
|
-
|
|
271
|
-
## 2.8.7
|
|
272
|
-
|
|
273
|
-
## 2.8.6
|
|
274
|
-
|
|
275
|
-
### Patch Changes
|
|
276
|
-
|
|
277
|
-
- Various changes
|
|
278
|
-
|
|
279
|
-
## 2.8.5
|
|
280
|
-
|
|
281
|
-
### Patch Changes
|
|
282
|
-
|
|
283
|
-
- Various changes
|
|
284
|
-
|
|
285
|
-
## 2.8.4
|
|
286
|
-
|
|
287
|
-
### Patch Changes
|
|
288
|
-
|
|
289
|
-
- Various changes
|
|
290
|
-
|
|
291
|
-
## 2.8.3
|
|
292
|
-
|
|
293
|
-
### Patch Changes
|
|
294
|
-
|
|
295
|
-
- Various changes
|
|
296
|
-
|
|
297
|
-
## 2.8.2
|
|
298
|
-
|
|
299
|
-
### Patch Changes
|
|
300
|
-
|
|
301
|
-
- Various changes
|
|
302
|
-
|
|
303
|
-
## 2.8.1
|
|
304
|
-
|
|
305
|
-
## 2.8.0
|
|
306
|
-
|
|
307
|
-
### Minor Changes
|
|
308
|
-
|
|
309
|
-
- Various changes
|
|
310
|
-
|
|
311
|
-
## 2.7.30
|
|
312
|
-
|
|
313
|
-
### Patch Changes
|
|
314
|
-
|
|
315
|
-
- Various changes
|
|
316
|
-
|
|
317
|
-
## 2.7.29
|
|
318
|
-
|
|
319
|
-
### Patch Changes
|
|
320
|
-
|
|
321
|
-
- Various changes
|
|
322
|
-
|
|
323
|
-
## 2.7.28
|
|
324
|
-
|
|
325
|
-
### Patch Changes
|
|
326
|
-
|
|
327
|
-
- Various changes
|
|
328
|
-
|
|
329
|
-
## 2.7.27
|
|
330
|
-
|
|
331
|
-
### Patch Changes
|
|
332
|
-
|
|
333
|
-
- Various changes
|
|
334
|
-
|
|
335
|
-
## 2.7.26
|
|
336
|
-
|
|
337
|
-
### Patch Changes
|
|
338
|
-
|
|
339
|
-
- Various changes
|
|
340
|
-
|
|
341
|
-
## 2.7.25
|
|
342
|
-
|
|
343
|
-
## 2.7.24
|
|
344
|
-
|
|
345
|
-
## 2.7.23
|
|
346
|
-
|
|
347
|
-
### Patch Changes
|
|
348
|
-
|
|
349
|
-
- Various changes
|
|
350
|
-
|
|
351
|
-
## 2.7.22
|
|
352
|
-
|
|
353
|
-
### Patch Changes
|
|
354
|
-
|
|
355
|
-
- Various changes
|
|
356
|
-
|
|
357
|
-
## 2.7.21
|
|
358
|
-
|
|
359
|
-
### Patch Changes
|
|
360
|
-
|
|
361
|
-
- Various changes
|
|
362
|
-
|
|
363
|
-
## 2.7.20
|
|
364
|
-
|
|
365
|
-
### Patch Changes
|
|
366
|
-
|
|
367
|
-
- Various changes
|
|
368
|
-
|
|
369
|
-
## 2.7.19
|
|
370
|
-
|
|
371
|
-
### Patch Changes
|
|
372
|
-
|
|
373
|
-
- @stackframe/stack-sc@2.7.19
|
|
374
|
-
|
|
375
|
-
## 2.7.18
|
|
376
|
-
|
|
377
|
-
### Patch Changes
|
|
378
|
-
|
|
379
|
-
- Various changes
|
|
380
|
-
- Updated dependencies
|
|
381
|
-
- @stackframe/stack-sc@2.7.18
|
|
382
|
-
|
|
383
|
-
## 2.7.17
|
|
384
|
-
|
|
385
|
-
### Patch Changes
|
|
386
|
-
|
|
387
|
-
- Various changes
|
|
388
|
-
- @stackframe/stack-sc@2.7.17
|
|
389
|
-
|
|
390
|
-
## 2.7.16
|
|
391
|
-
|
|
392
|
-
### Patch Changes
|
|
393
|
-
|
|
394
|
-
- Various changes
|
|
395
|
-
- @stackframe/stack-sc@2.7.16
|
|
396
|
-
|
|
397
|
-
## 2.7.15
|
|
398
|
-
|
|
399
|
-
### Patch Changes
|
|
400
|
-
|
|
401
|
-
- Various changes
|
|
402
|
-
- @stackframe/stack-sc@2.7.15
|
|
403
|
-
|
|
404
|
-
## 2.7.14
|
|
405
|
-
|
|
406
|
-
### Patch Changes
|
|
407
|
-
|
|
408
|
-
- Various changes
|
|
409
|
-
- @stackframe/stack-sc@2.7.14
|
|
410
|
-
|
|
411
|
-
## 2.7.13
|
|
412
|
-
|
|
413
|
-
### Patch Changes
|
|
414
|
-
|
|
415
|
-
- Various changes
|
|
416
|
-
- @stackframe/stack-sc@2.7.13
|
|
417
|
-
|
|
418
|
-
## 2.7.12
|
|
419
|
-
|
|
420
|
-
### Patch Changes
|
|
421
|
-
|
|
422
|
-
- Various changes
|
|
423
|
-
- Updated dependencies
|
|
424
|
-
- @stackframe/stack-sc@2.7.12
|
|
425
|
-
|
|
426
|
-
## 2.7.11
|
|
427
|
-
|
|
428
|
-
### Patch Changes
|
|
429
|
-
|
|
430
|
-
- @stackframe/stack-sc@2.7.11
|
|
431
|
-
|
|
432
|
-
## 2.7.10
|
|
433
|
-
|
|
434
|
-
### Patch Changes
|
|
435
|
-
|
|
436
|
-
- Various changes
|
|
437
|
-
- Updated dependencies
|
|
438
|
-
- @stackframe/stack-sc@2.7.10
|
|
439
|
-
|
|
440
|
-
## 2.7.9
|
|
441
|
-
|
|
442
|
-
### Patch Changes
|
|
443
|
-
|
|
444
|
-
- Various changes
|
|
445
|
-
- @stackframe/stack-sc@2.7.9
|
|
446
|
-
|
|
447
|
-
## 2.7.8
|
|
448
|
-
|
|
449
|
-
### Patch Changes
|
|
450
|
-
|
|
451
|
-
- Various changes
|
|
452
|
-
- Updated dependencies
|
|
453
|
-
- @stackframe/stack-sc@2.7.8
|
|
454
|
-
|
|
455
|
-
## 2.7.7
|
|
456
|
-
|
|
457
|
-
### Patch Changes
|
|
458
|
-
|
|
459
|
-
- Various changes
|
|
460
|
-
- @stackframe/stack-sc@2.7.7
|
|
461
|
-
|
|
462
|
-
## 2.7.6
|
|
463
|
-
|
|
464
|
-
### Patch Changes
|
|
465
|
-
|
|
466
|
-
- Fixed bugs, updated Neon requirements
|
|
467
|
-
- Updated dependencies
|
|
468
|
-
- @stackframe/stack-sc@2.7.6
|
|
469
|
-
|
|
470
|
-
## 2.7.5
|
|
471
|
-
|
|
472
|
-
### Patch Changes
|
|
473
|
-
|
|
474
|
-
- Various changes
|
|
475
|
-
- @stackframe/stack-sc@2.7.5
|
|
476
|
-
|
|
477
|
-
## 2.7.4
|
|
478
|
-
|
|
479
|
-
### Patch Changes
|
|
480
|
-
|
|
481
|
-
- @stackframe/stack-sc@2.7.4
|
|
482
|
-
|
|
483
|
-
## 2.7.3
|
|
484
|
-
|
|
485
|
-
### Patch Changes
|
|
486
|
-
|
|
487
|
-
- Various changes
|
|
488
|
-
- @stackframe/stack-sc@2.7.3
|
|
489
|
-
|
|
490
|
-
## 2.7.2
|
|
491
|
-
|
|
492
|
-
### Patch Changes
|
|
493
|
-
|
|
494
|
-
- Various changes
|
|
495
|
-
- @stackframe/stack-sc@2.7.2
|
|
496
|
-
|
|
497
|
-
## 2.7.1
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
|
-
- Various changes
|
|
502
|
-
- @stackframe/stack-sc@2.7.1
|
|
503
|
-
|
|
504
|
-
## 2.7.0
|
|
505
|
-
|
|
506
|
-
### Minor Changes
|
|
507
|
-
|
|
508
|
-
- Various changes
|
|
509
|
-
|
|
510
|
-
### Patch Changes
|
|
511
|
-
|
|
512
|
-
- @stackframe/stack-sc@2.7.0
|
|
513
|
-
|
|
514
|
-
## 2.6.39
|
|
515
|
-
|
|
516
|
-
### Patch Changes
|
|
517
|
-
|
|
518
|
-
- Various changes
|
|
519
|
-
- @stackframe/stack-sc@2.6.39
|
|
520
|
-
|
|
521
|
-
## 2.6.38
|
|
522
|
-
|
|
523
|
-
### Patch Changes
|
|
524
|
-
|
|
525
|
-
- Various changes
|
|
526
|
-
- @stackframe/stack-sc@2.6.38
|
|
527
|
-
|
|
528
|
-
## 2.6.37
|
|
529
|
-
|
|
530
|
-
### Patch Changes
|
|
531
|
-
|
|
532
|
-
- Various changes
|
|
533
|
-
- @stackframe/stack-sc@2.6.37
|
|
534
|
-
|
|
535
|
-
## 2.6.36
|
|
536
|
-
|
|
537
|
-
### Patch Changes
|
|
538
|
-
|
|
539
|
-
- Various updates
|
|
540
|
-
- @stackframe/stack-sc@2.6.36
|
|
541
|
-
|
|
542
|
-
## 2.6.35
|
|
543
|
-
|
|
544
|
-
### Patch Changes
|
|
545
|
-
|
|
546
|
-
- Bugfixes
|
|
547
|
-
- @stackframe/stack-sc@2.6.35
|
|
548
|
-
|
|
549
|
-
## 2.6.34
|
|
550
|
-
|
|
551
|
-
### Patch Changes
|
|
552
|
-
|
|
553
|
-
- Bugfixes
|
|
554
|
-
- @stackframe/stack-sc@2.6.34
|
|
555
|
-
|
|
556
|
-
## 2.6.33
|
|
557
|
-
|
|
558
|
-
### Patch Changes
|
|
559
|
-
|
|
560
|
-
- @stackframe/stack-sc@2.6.33
|
|
561
|
-
|
|
562
|
-
## 2.6.32
|
|
563
|
-
|
|
564
|
-
### Patch Changes
|
|
565
|
-
|
|
566
|
-
- Bugfixes
|
|
567
|
-
- @stackframe/stack-sc@2.6.32
|
|
568
|
-
|
|
569
|
-
## 2.6.31
|
|
570
|
-
|
|
571
|
-
### Patch Changes
|
|
572
|
-
|
|
573
|
-
- Bugfixes
|
|
574
|
-
- @stackframe/stack-sc@2.6.31
|
|
575
|
-
|
|
576
|
-
## 2.6.30
|
|
577
|
-
|
|
578
|
-
### Patch Changes
|
|
579
|
-
|
|
580
|
-
- Bugfixes
|
|
581
|
-
- @stackframe/stack-sc@2.6.30
|
|
582
|
-
|
|
583
|
-
## 2.6.29
|
|
584
|
-
|
|
585
|
-
### Patch Changes
|
|
586
|
-
|
|
587
|
-
- Bugfixes
|
|
588
|
-
- @stackframe/stack-sc@2.6.29
|
|
589
|
-
|
|
590
|
-
## 2.6.28
|
|
591
|
-
|
|
592
|
-
### Patch Changes
|
|
593
|
-
|
|
594
|
-
- Bugfixes
|
|
595
|
-
- @stackframe/stack-sc@2.6.28
|
|
596
|
-
|
|
597
|
-
## 2.6.27
|
|
598
|
-
|
|
599
|
-
### Patch Changes
|
|
600
|
-
|
|
601
|
-
- Bugfixes
|
|
602
|
-
- @stackframe/stack-sc@2.6.27
|
|
603
|
-
|
|
604
|
-
## 2.6.26
|
|
605
|
-
|
|
606
|
-
### Patch Changes
|
|
607
|
-
|
|
608
|
-
- Various bugfixes
|
|
609
|
-
- Updated dependencies
|
|
610
|
-
- @stackframe/stack-sc@2.6.26
|
|
611
|
-
|
|
612
|
-
## 2.6.25
|
|
613
|
-
|
|
614
|
-
### Patch Changes
|
|
615
|
-
|
|
616
|
-
- Translation overrides
|
|
617
|
-
- @stackframe/stack-sc@2.6.25
|
|
618
|
-
|
|
619
|
-
## 2.6.24
|
|
620
|
-
|
|
621
|
-
### Patch Changes
|
|
622
|
-
|
|
623
|
-
- Bugfixes
|
|
624
|
-
- @stackframe/stack-sc@2.6.24
|
|
625
|
-
|
|
626
|
-
## 2.6.23
|
|
627
|
-
|
|
628
|
-
### Patch Changes
|
|
629
|
-
|
|
630
|
-
- Bugfixes
|
|
631
|
-
- Updated dependencies
|
|
632
|
-
- @stackframe/stack-sc@2.6.23
|
|
633
|
-
|
|
634
|
-
## 2.6.22
|
|
635
|
-
|
|
636
|
-
### Patch Changes
|
|
637
|
-
|
|
638
|
-
- Bugfixes
|
|
639
|
-
- Updated dependencies
|
|
640
|
-
- @stackframe/stack-sc@2.6.22
|
|
641
|
-
|
|
642
|
-
## 2.6.21
|
|
643
|
-
|
|
644
|
-
### Patch Changes
|
|
645
|
-
|
|
646
|
-
- Fixed inviteUser
|
|
647
|
-
- Updated dependencies
|
|
648
|
-
- @stackframe/stack-sc@2.6.21
|
|
649
|
-
|
|
650
|
-
## 2.6.20
|
|
651
|
-
|
|
652
|
-
### Patch Changes
|
|
653
|
-
|
|
654
|
-
- Next.js 15 fixes
|
|
655
|
-
- Updated dependencies
|
|
656
|
-
- @stackframe/stack-sc@2.6.20
|
|
657
|
-
|
|
658
|
-
## 2.6.19
|
|
659
|
-
|
|
660
|
-
### Patch Changes
|
|
661
|
-
|
|
662
|
-
- Bugfixes
|
|
663
|
-
- Updated dependencies
|
|
664
|
-
- @stackframe/stack-sc@2.6.19
|
|
665
|
-
|
|
666
|
-
## 2.6.18
|
|
667
|
-
|
|
668
|
-
### Patch Changes
|
|
669
|
-
|
|
670
|
-
- fixed user update bug
|
|
671
|
-
- Updated dependencies
|
|
672
|
-
- @stackframe/stack-sc@2.6.18
|
|
673
|
-
|
|
674
|
-
## 2.6.17
|
|
675
|
-
|
|
676
|
-
### Patch Changes
|
|
677
|
-
|
|
678
|
-
- Loading skeletons
|
|
679
|
-
- Updated dependencies
|
|
680
|
-
- @stackframe/stack-sc@2.6.17
|
|
681
|
-
|
|
682
|
-
## 2.6.16
|
|
683
|
-
|
|
684
|
-
### Patch Changes
|
|
685
|
-
|
|
686
|
-
- - list user pagination
|
|
687
|
-
- fixed visual glitches
|
|
688
|
-
- @stackframe/stack-sc@2.6.16
|
|
689
|
-
|
|
690
|
-
## 2.6.15
|
|
691
|
-
|
|
692
|
-
### Patch Changes
|
|
693
|
-
|
|
694
|
-
- Passkeys
|
|
695
|
-
- @stackframe/stack-sc@2.6.15
|
|
696
|
-
|
|
697
|
-
## 2.6.14
|
|
698
|
-
|
|
699
|
-
### Patch Changes
|
|
700
|
-
|
|
701
|
-
- @stackframe/stack-sc@2.6.14
|
|
702
|
-
|
|
703
|
-
## 2.6.13
|
|
704
|
-
|
|
705
|
-
### Patch Changes
|
|
706
|
-
|
|
707
|
-
- Updated docs
|
|
708
|
-
- @stackframe/stack-sc@2.6.13
|
|
709
|
-
|
|
710
|
-
## 2.6.12
|
|
711
|
-
|
|
712
|
-
### Patch Changes
|
|
713
|
-
|
|
714
|
-
- Updated account settings page
|
|
715
|
-
- Updated dependencies
|
|
716
|
-
- @stackframe/stack-sc@2.6.12
|
|
717
|
-
|
|
718
|
-
## 2.6.11
|
|
719
|
-
|
|
720
|
-
### Patch Changes
|
|
721
|
-
|
|
722
|
-
- fixed account settings bugs
|
|
723
|
-
- Updated dependencies
|
|
724
|
-
- @stackframe/stack-sc@2.6.11
|
|
725
|
-
|
|
726
|
-
## 2.6.10
|
|
727
|
-
|
|
728
|
-
### Patch Changes
|
|
729
|
-
|
|
730
|
-
- Various bugfixes
|
|
731
|
-
- Updated dependencies
|
|
732
|
-
- @stackframe/stack-sc@2.6.10
|
|
733
|
-
|
|
734
|
-
## 2.6.9
|
|
735
|
-
|
|
736
|
-
### Patch Changes
|
|
737
|
-
|
|
738
|
-
- - New contact channel API
|
|
739
|
-
- Fixed some visual gitches and typos
|
|
740
|
-
- Bug fixes
|
|
741
|
-
- Updated dependencies
|
|
742
|
-
- @stackframe/stack-sc@2.6.9
|
|
743
|
-
|
|
744
|
-
## 2.6.8
|
|
745
|
-
|
|
746
|
-
### Patch Changes
|
|
747
|
-
|
|
748
|
-
- Bugfixes
|
|
749
|
-
- @stackframe/stack-sc@2.6.8
|
|
750
|
-
|
|
751
|
-
## 2.6.7
|
|
752
|
-
|
|
753
|
-
### Patch Changes
|
|
754
|
-
|
|
755
|
-
- Updated dependencies
|
|
756
|
-
- @stackframe/stack-sc@2.6.7
|
|
757
|
-
|
|
758
|
-
## 2.6.6
|
|
759
|
-
|
|
760
|
-
### Patch Changes
|
|
761
|
-
|
|
762
|
-
- @stackframe/stack-sc@2.6.6
|
|
763
|
-
|
|
764
|
-
## 2.6.5
|
|
765
|
-
|
|
766
|
-
### Patch Changes
|
|
767
|
-
|
|
768
|
-
- Minor improvements
|
|
769
|
-
- Updated dependencies
|
|
770
|
-
- @stackframe/stack-sc@2.6.5
|
|
771
|
-
|
|
772
|
-
## 2.6.4
|
|
773
|
-
|
|
774
|
-
### Patch Changes
|
|
775
|
-
|
|
776
|
-
- fixed small problems
|
|
777
|
-
- Updated dependencies
|
|
778
|
-
- @stackframe/stack-sc@2.6.4
|
|
779
|
-
|
|
780
|
-
## 2.6.3
|
|
781
|
-
|
|
782
|
-
### Patch Changes
|
|
783
|
-
|
|
784
|
-
- Bugfixes
|
|
785
|
-
- @stackframe/stack-sc@2.6.3
|
|
786
|
-
|
|
787
|
-
## 2.6.2
|
|
788
|
-
|
|
789
|
-
### Patch Changes
|
|
790
|
-
|
|
791
|
-
- Several bugfixes & typos
|
|
792
|
-
- @stackframe/stack-sc@2.6.2
|
|
793
|
-
|
|
794
|
-
## 2.6.1
|
|
795
|
-
|
|
796
|
-
### Patch Changes
|
|
797
|
-
|
|
798
|
-
- @stackframe/stack-sc@2.6.1
|
|
799
|
-
|
|
800
|
-
## 2.6.0
|
|
801
|
-
|
|
802
|
-
### Minor Changes
|
|
803
|
-
|
|
804
|
-
- OTP login, more providers, and styling improvements
|
|
805
|
-
|
|
806
|
-
### Patch Changes
|
|
807
|
-
|
|
808
|
-
- Updated dependencies
|
|
809
|
-
- @stackframe/stack-sc@2.6.0
|
|
810
|
-
|
|
811
|
-
## 2.5.37
|
|
812
|
-
|
|
813
|
-
### Patch Changes
|
|
814
|
-
|
|
815
|
-
- client side account deletion; new account setting style;
|
|
816
|
-
- @stackframe/stack-sc@2.5.37
|
|
817
|
-
|
|
818
|
-
## 2.5.36
|
|
819
|
-
|
|
820
|
-
### Patch Changes
|
|
821
|
-
|
|
822
|
-
- added apple oauth
|
|
823
|
-
- Updated dependencies
|
|
824
|
-
- @stackframe/stack-sc@2.5.36
|
|
825
|
-
|
|
826
|
-
## 2.5.35
|
|
827
|
-
|
|
828
|
-
### Patch Changes
|
|
829
|
-
|
|
830
|
-
- Doc improvements
|
|
831
|
-
- @stackframe/stack-sc@2.5.35
|
|
832
|
-
|
|
833
|
-
## 2.5.34
|
|
834
|
-
|
|
835
|
-
### Patch Changes
|
|
836
|
-
|
|
837
|
-
- Internationalization
|
|
838
|
-
- @stackframe/stack-sc@2.5.34
|
|
839
|
-
|
|
840
|
-
## 2.5.33
|
|
841
|
-
|
|
842
|
-
### Patch Changes
|
|
843
|
-
|
|
844
|
-
- Team membership webhooks
|
|
845
|
-
- @stackframe/stack-sc@2.5.33
|
|
846
|
-
|
|
847
|
-
## 2.5.32
|
|
848
|
-
|
|
849
|
-
### Patch Changes
|
|
850
|
-
|
|
851
|
-
- Improved connected account performance
|
|
852
|
-
- @stackframe/stack-sc@2.5.32
|
|
853
|
-
|
|
854
|
-
## 2.5.31
|
|
855
|
-
|
|
856
|
-
### Patch Changes
|
|
857
|
-
|
|
858
|
-
- JWKS
|
|
859
|
-
- @stackframe/stack-sc@2.5.31
|
|
860
|
-
|
|
861
|
-
## 2.5.30
|
|
862
|
-
|
|
863
|
-
### Patch Changes
|
|
864
|
-
|
|
865
|
-
- More OAuth providers
|
|
866
|
-
- @stackframe/stack-sc@2.5.30
|
|
867
|
-
|
|
868
|
-
## 2.5.29
|
|
869
|
-
|
|
870
|
-
### Patch Changes
|
|
871
|
-
|
|
872
|
-
- @stackframe/stack-sc@2.5.29
|
|
873
|
-
|
|
874
|
-
## 2.5.28
|
|
875
|
-
|
|
876
|
-
### Patch Changes
|
|
877
|
-
|
|
878
|
-
- Bugfixes
|
|
879
|
-
- @stackframe/stack-sc@2.5.28
|
|
880
|
-
|
|
881
|
-
## 2.5.27
|
|
882
|
-
|
|
883
|
-
### Patch Changes
|
|
884
|
-
|
|
885
|
-
- Bugfixes
|
|
886
|
-
- Updated dependencies
|
|
887
|
-
- @stackframe/stack-sc@2.5.27
|
|
888
|
-
|
|
889
|
-
## 2.5.26
|
|
890
|
-
|
|
891
|
-
### Patch Changes
|
|
892
|
-
|
|
893
|
-
- Bugfixes
|
|
894
|
-
- Updated dependencies
|
|
895
|
-
- @stackframe/stack-sc@2.5.26
|
|
896
|
-
|
|
897
|
-
## 2.5.25
|
|
898
|
-
|
|
899
|
-
### Patch Changes
|
|
900
|
-
|
|
901
|
-
- GitLab OAuth provider
|
|
902
|
-
- @stackframe/stack-sc@2.5.25
|
|
903
|
-
|
|
904
|
-
## 2.5.24
|
|
905
|
-
|
|
906
|
-
### Patch Changes
|
|
907
|
-
|
|
908
|
-
- Various bugfixes
|
|
909
|
-
- @stackframe/stack-sc@2.5.24
|
|
910
|
-
|
|
911
|
-
## 2.5.23
|
|
912
|
-
|
|
913
|
-
### Patch Changes
|
|
914
|
-
|
|
915
|
-
- @stackframe/stack-sc@2.5.23
|
|
916
|
-
|
|
917
|
-
## 2.5.22
|
|
918
|
-
|
|
919
|
-
### Patch Changes
|
|
920
|
-
|
|
921
|
-
- Team metadata
|
|
922
|
-
- @stackframe/stack-sc@2.5.22
|
|
923
|
-
|
|
924
|
-
## 2.5.21
|
|
925
|
-
|
|
926
|
-
### Patch Changes
|
|
927
|
-
|
|
928
|
-
- Discord OAuth provider
|
|
929
|
-
- @stackframe/stack-sc@2.5.21
|
|
930
|
-
|
|
931
|
-
## 2.5.20
|
|
932
|
-
|
|
933
|
-
### Patch Changes
|
|
934
|
-
|
|
935
|
-
- Improved account settings
|
|
936
|
-
- @stackframe/stack-sc@2.5.20
|
|
937
|
-
|
|
938
|
-
## 2.5.19
|
|
939
|
-
|
|
940
|
-
### Patch Changes
|
|
941
|
-
|
|
942
|
-
- Team frontend components
|
|
943
|
-
- Updated dependencies
|
|
944
|
-
- @stackframe/stack-sc@2.5.19
|
|
945
|
-
|
|
946
|
-
## 2.5.18
|
|
947
|
-
|
|
948
|
-
### Patch Changes
|
|
949
|
-
|
|
950
|
-
- Multi-factor authentication
|
|
951
|
-
- @stackframe/stack-sc@2.5.18
|
|
952
|
-
|
|
953
|
-
## 2.5.17
|
|
954
|
-
|
|
955
|
-
### Patch Changes
|
|
956
|
-
|
|
957
|
-
- Bugfixes
|
|
958
|
-
- @stackframe/stack-sc@2.5.17
|
|
959
|
-
|
|
960
|
-
## 2.5.16
|
|
961
|
-
|
|
962
|
-
### Patch Changes
|
|
963
|
-
|
|
964
|
-
- @stackframe/stack-sc@2.5.16
|
|
965
|
-
|
|
966
|
-
## 2.5.15
|
|
967
|
-
|
|
968
|
-
### Patch Changes
|
|
969
|
-
|
|
970
|
-
- Webhooks
|
|
971
|
-
- Updated dependencies
|
|
972
|
-
- @stackframe/stack-sc@2.5.15
|
|
973
|
-
|
|
974
|
-
## 2.5.14
|
|
975
|
-
|
|
976
|
-
### Patch Changes
|
|
977
|
-
|
|
978
|
-
- @stackframe/stack-sc@2.5.14
|
|
979
|
-
|
|
980
|
-
## 2.5.13
|
|
981
|
-
|
|
982
|
-
### Patch Changes
|
|
983
|
-
|
|
984
|
-
- Add server side get connected account
|
|
985
|
-
- @stackframe/stack-sc@2.5.13
|
|
986
|
-
|
|
987
|
-
## 2.5.12
|
|
988
|
-
|
|
989
|
-
### Patch Changes
|
|
990
|
-
|
|
991
|
-
- Bugfixes
|
|
992
|
-
- @stackframe/stack-sc@2.5.12
|
|
993
|
-
|
|
994
|
-
## 2.5.11
|
|
995
|
-
|
|
996
|
-
### Patch Changes
|
|
997
|
-
|
|
998
|
-
- @stackframe/stack-sc@2.5.11
|
|
999
|
-
|
|
1000
|
-
## 2.5.10
|
|
1001
|
-
|
|
1002
|
-
### Patch Changes
|
|
1003
|
-
|
|
1004
|
-
- Facebook Business support
|
|
1005
|
-
- @stackframe/stack-sc@2.5.10
|
|
1006
|
-
|
|
1007
|
-
## 2.5.9
|
|
1008
|
-
|
|
1009
|
-
### Patch Changes
|
|
1010
|
-
|
|
1011
|
-
- Impersonation
|
|
1012
|
-
- @stackframe/stack-sc@2.5.9
|
|
1013
|
-
|
|
1014
|
-
## 2.5.8
|
|
1015
|
-
|
|
1016
|
-
### Patch Changes
|
|
1017
|
-
|
|
1018
|
-
- Improved docs
|
|
1019
|
-
- @stackframe/stack-sc@2.5.8
|
|
1020
|
-
|
|
1021
|
-
## 2.5.7
|
|
1022
|
-
|
|
1023
|
-
### Patch Changes
|
|
1024
|
-
|
|
1025
|
-
- @stackframe/stack-sc@2.5.7
|
|
1026
|
-
|
|
1027
|
-
## 2.5.6
|
|
1028
|
-
|
|
1029
|
-
### Patch Changes
|
|
1030
|
-
|
|
1031
|
-
- Various bugfixes
|
|
1032
|
-
- @stackframe/stack-sc@2.5.6
|
|
1033
|
-
|
|
1034
|
-
## 2.5.5
|
|
1035
|
-
|
|
1036
|
-
### Patch Changes
|
|
1037
|
-
|
|
1038
|
-
- @stackframe/stack-sc@2.5.5
|
|
1039
|
-
|
|
1040
|
-
## 2.5.4
|
|
1041
|
-
|
|
1042
|
-
### Patch Changes
|
|
1043
|
-
|
|
1044
|
-
- Backend rework
|
|
1045
|
-
- Updated dependencies
|
|
1046
|
-
- @stackframe/stack-sc@2.5.4
|
|
1047
|
-
|
|
1048
|
-
## 2.5.3
|
|
1049
|
-
|
|
1050
|
-
### Patch Changes
|
|
1051
|
-
|
|
1052
|
-
- Bugfixes
|
|
1053
|
-
- Updated dependencies
|
|
1054
|
-
- @stackframe/stack-sc@2.5.3
|
|
1055
|
-
|
|
1056
|
-
## 2.5.2
|
|
1057
|
-
|
|
1058
|
-
### Patch Changes
|
|
1059
|
-
|
|
1060
|
-
- Team profile pictures
|
|
1061
|
-
- @stackframe/stack-sc@2.5.2
|
|
1062
|
-
|
|
1063
|
-
## 2.5.1
|
|
1064
|
-
|
|
1065
|
-
### Patch Changes
|
|
1066
|
-
|
|
1067
|
-
- New backend endpoints
|
|
1068
|
-
- @stackframe/stack-sc@2.5.1
|
|
1069
|
-
|
|
1070
|
-
## 2.5.0
|
|
1071
|
-
|
|
1072
|
-
### Minor Changes
|
|
1073
|
-
|
|
1074
|
-
- Client teams and many bugfixes
|
|
1075
|
-
|
|
1076
|
-
### Patch Changes
|
|
1077
|
-
|
|
1078
|
-
- @stackframe/stack-sc@2.5.0
|
|
1079
|
-
|
|
1080
|
-
## 2.4.28
|
|
1081
|
-
|
|
1082
|
-
### Patch Changes
|
|
1083
|
-
|
|
1084
|
-
- Bugfixes
|
|
1085
|
-
- @stackframe/stack-sc@2.4.28
|
|
1086
|
-
|
|
1087
|
-
## 2.4.27
|
|
1088
|
-
|
|
1089
|
-
### Patch Changes
|
|
1090
|
-
|
|
1091
|
-
- @stackframe/stack-sc@2.4.27
|
|
1092
|
-
|
|
1093
|
-
## 2.4.26
|
|
1094
|
-
|
|
1095
|
-
### Patch Changes
|
|
1096
|
-
|
|
1097
|
-
- Improve docs
|
|
1098
|
-
- Updated dependencies
|
|
1099
|
-
- @stackframe/stack-sc@2.4.26
|
|
1100
|
-
|
|
1101
|
-
## 2.4.25
|
|
1102
|
-
|
|
1103
|
-
### Patch Changes
|
|
1104
|
-
|
|
1105
|
-
- Docs update
|
|
1106
|
-
- @stackframe/stack-sc@2.4.25
|
|
1107
|
-
|
|
1108
|
-
## 2.4.24
|
|
1109
|
-
|
|
1110
|
-
### Patch Changes
|
|
1111
|
-
|
|
1112
|
-
- Team switcher
|
|
1113
|
-
- @stackframe/stack-sc@2.4.24
|
|
1114
|
-
|
|
1115
|
-
## 2.4.23
|
|
1116
|
-
|
|
1117
|
-
### Patch Changes
|
|
1118
|
-
|
|
1119
|
-
- Bugfixes
|
|
1120
|
-
- @stackframe/stack-sc@2.4.23
|
|
1121
|
-
|
|
1122
|
-
## 2.4.22
|
|
1123
|
-
|
|
1124
|
-
### Patch Changes
|
|
1125
|
-
|
|
1126
|
-
- OAuth scopes
|
|
1127
|
-
- Updated dependencies
|
|
1128
|
-
- @stackframe/stack-sc@2.4.22
|
|
1129
|
-
|
|
1130
|
-
## 2.4.21
|
|
1131
|
-
|
|
1132
|
-
### Patch Changes
|
|
1133
|
-
|
|
1134
|
-
- Bugfixes
|
|
1135
|
-
- Updated dependencies
|
|
1136
|
-
- @stackframe/stack-sc@2.4.21
|
|
1137
|
-
|
|
1138
|
-
## 2.4.20
|
|
1139
|
-
|
|
1140
|
-
### Patch Changes
|
|
1141
|
-
|
|
1142
|
-
- Support multiple projects on the same domain
|
|
1143
|
-
- Updated dependencies
|
|
1144
|
-
- @stackframe/stack-sc@2.4.20
|
|
1145
|
-
|
|
1146
|
-
## 2.4.19
|
|
1147
|
-
|
|
1148
|
-
### Patch Changes
|
|
1149
|
-
|
|
1150
|
-
- Sync package versions
|
|
1151
|
-
- Updated dependencies
|
|
1152
|
-
- @stackframe/stack-sc@2.4.19
|
|
1153
|
-
|
|
1154
|
-
## 2.4.14
|
|
1155
|
-
|
|
1156
|
-
### Patch Changes
|
|
1157
|
-
|
|
1158
|
-
- Bugfixes
|
|
1159
|
-
|
|
1160
|
-
## 2.4.13
|
|
1161
|
-
|
|
1162
|
-
### Patch Changes
|
|
1163
|
-
|
|
1164
|
-
- Improve setup flow
|
|
1165
|
-
- Updated dependencies
|
|
1166
|
-
- @stackframe/stack-sc@1.5.6
|
|
1167
|
-
|
|
1168
|
-
## 2.4.12
|
|
1169
|
-
|
|
1170
|
-
### Patch Changes
|
|
1171
|
-
|
|
1172
|
-
- Improved client styling, added login form, added spotify oauth
|
|
1173
|
-
|
|
1174
|
-
## 2.4.11
|
|
1175
|
-
|
|
1176
|
-
### Patch Changes
|
|
1177
|
-
|
|
1178
|
-
- Added email editor
|
|
1179
|
-
|
|
1180
|
-
## 2.4.10
|
|
1181
|
-
|
|
1182
|
-
### Patch Changes
|
|
1183
|
-
|
|
1184
|
-
- Bug fixes
|
|
1185
|
-
- Updated dependencies
|
|
1186
|
-
- @stackframe/stack-sc@1.5.5
|
|
1187
|
-
|
|
1188
|
-
## 2.4.9
|
|
1189
|
-
|
|
1190
|
-
### Patch Changes
|
|
1191
|
-
|
|
1192
|
-
- Bugfixes
|
|
1193
|
-
- Updated dependencies
|
|
1194
|
-
- @stackframe/stack-sc@1.5.4
|
|
1195
|
-
|
|
1196
|
-
## 2.4.8
|
|
1197
|
-
|
|
1198
|
-
### Patch Changes
|
|
1199
|
-
|
|
1200
|
-
- Improved UUID generation
|
|
1201
|
-
|
|
1202
|
-
## 2.4.7
|
|
1203
|
-
|
|
1204
|
-
### Patch Changes
|
|
1205
|
-
|
|
1206
|
-
- Bugfixes
|
|
1207
|
-
- Updated dependencies
|
|
1208
|
-
- @stackframe/stack-sc@1.5.3
|
|
1209
|
-
|
|
1210
|
-
## 2.4.6
|
|
1211
|
-
|
|
1212
|
-
### Patch Changes
|
|
1213
|
-
|
|
1214
|
-
- Remove crypto-browserify dependency
|
|
1215
|
-
|
|
1216
|
-
## 2.4.5
|
|
1217
|
-
|
|
1218
|
-
### Patch Changes
|
|
1219
|
-
|
|
1220
|
-
- Team selection
|
|
1221
|
-
|
|
1222
|
-
## 2.4.4
|
|
1223
|
-
|
|
1224
|
-
### Patch Changes
|
|
1225
|
-
|
|
1226
|
-
- UX improvements
|
|
1227
|
-
|
|
1228
|
-
## 2.4.3
|
|
1229
|
-
|
|
1230
|
-
### Patch Changes
|
|
1231
|
-
|
|
1232
|
-
- CRUD schemas
|
|
1233
|
-
- Updated dependencies
|
|
1234
|
-
- @stackframe/stack-sc@1.5.2
|
|
1235
|
-
|
|
1236
|
-
## 2.4.2
|
|
1237
|
-
|
|
1238
|
-
### Patch Changes
|
|
1239
|
-
|
|
1240
|
-
- New projects page
|
|
1241
|
-
|
|
1242
|
-
## 2.4.1
|
|
1243
|
-
|
|
1244
|
-
### Patch Changes
|
|
1245
|
-
|
|
1246
|
-
- Teams, permissions and RBAC
|
|
1247
|
-
- Updated dependencies
|
|
1248
|
-
- @stackframe/stack-sc@1.5.1
|
|
1249
|
-
|
|
1250
|
-
## 2.4.0
|
|
1251
|
-
|
|
1252
|
-
### Minor Changes
|
|
1253
|
-
|
|
1254
|
-
- Middleware support
|
|
1255
|
-
|
|
1256
|
-
## 2.3.6
|
|
1257
|
-
|
|
1258
|
-
### Patch Changes
|
|
1259
|
-
|
|
1260
|
-
- Bugfixes
|
|
1261
|
-
|
|
1262
|
-
## 2.3.5
|
|
1263
|
-
|
|
1264
|
-
### Patch Changes
|
|
1265
|
-
|
|
1266
|
-
- CommonJS support
|
|
1267
|
-
|
|
1268
|
-
## 2.3.4
|
|
1269
|
-
|
|
1270
|
-
### Patch Changes
|
|
1271
|
-
|
|
1272
|
-
- Bugfixes
|
|
1273
|
-
|
|
1274
|
-
## 2.3.3
|
|
1275
|
-
|
|
1276
|
-
### Patch Changes
|
|
1277
|
-
|
|
1278
|
-
- Partial pre-rendering
|
|
1279
|
-
|
|
1280
|
-
## 2.3.2
|
|
1281
|
-
|
|
1282
|
-
### Patch Changes
|
|
1283
|
-
|
|
1284
|
-
- Magic link configuration
|
|
1285
|
-
|
|
1286
|
-
## 2.3.1
|
|
1287
|
-
|
|
1288
|
-
### Patch Changes
|
|
1289
|
-
|
|
1290
|
-
- Add README file
|
|
1291
|
-
|
|
1292
|
-
## 2.3.0
|
|
1293
|
-
|
|
1294
|
-
### Minor Changes
|
|
1295
|
-
|
|
1296
|
-
- 96c26a7: added magic link
|
|
1297
|
-
|
|
1298
|
-
### Patch Changes
|
|
1299
|
-
|
|
1300
|
-
- Various small improvements
|
|
1301
|
-
|
|
1302
|
-
## 2.2.2
|
|
1303
|
-
|
|
1304
|
-
### Patch Changes
|
|
1305
|
-
|
|
1306
|
-
- 5909ecd: fixed bugs
|
|
1307
|
-
|
|
1308
|
-
## 2.2.1
|
|
1309
|
-
|
|
1310
|
-
### Patch Changes
|
|
1311
|
-
|
|
1312
|
-
- fixed minor errors
|
|
1313
|
-
|
|
1314
|
-
## 2.2.0
|
|
1315
|
-
|
|
1316
|
-
### Minor Changes
|
|
1317
|
-
|
|
1318
|
-
- 2995d96: Added new UserButton component and Account setting page
|
|
1319
|
-
|
|
1320
|
-
## 2.1.0
|
|
1321
|
-
|
|
1322
|
-
### Minor Changes
|
|
1323
|
-
|
|
1324
|
-
- 9e9907f: Added new stack UI system
|
|
1325
|
-
|
|
1326
|
-
## 2.0.0
|
|
1327
|
-
|
|
1328
|
-
### Major Changes
|
|
1329
|
-
|
|
1330
|
-
- 948252f: removed redirect URL in function options, redirect automatically to default URL
|
|
1331
|
-
|
|
1332
|
-
## 1.2.1
|
|
1333
|
-
|
|
1334
|
-
### Patch Changes
|
|
1335
|
-
|
|
1336
|
-
- fixed import bugs
|
|
1337
|
-
|
|
1338
|
-
## 1.2.0
|
|
1339
|
-
|
|
1340
|
-
### Minor Changes
|
|
1341
|
-
|
|
1342
|
-
- Fixed infinite reload bug, added dashboard provider update
|
|
1343
|
-
|
|
1344
|
-
## 1.1.0
|
|
1345
|
-
|
|
1346
|
-
### Minor Changes
|
|
1347
|
-
|
|
1348
|
-
- fixed bugs
|