@stackframe/stack-sc 1.5.2 → 1.5.4
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 +85 -0
- package/dist/index.combined.d.ts +4 -3
- package/dist/index.default.d.ts +2 -0
- package/dist/index.default.js +2 -0
- package/dist/index.react-server.d.ts +2 -0
- package/dist/{index.server.d.ts → index.react-server.js} +1 -0
- package/package.json +12 -10
- package/dist/index.client.d.ts +0 -1
- package/dist/index.client.js +0 -1
- package/dist/index.server.js +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# @stackframe/stack-sc
|
|
2
|
+
|
|
3
|
+
## 1.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Bugfixes
|
|
8
|
+
|
|
9
|
+
## 1.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Bugfixes
|
|
14
|
+
|
|
15
|
+
## 1.5.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- CRUD schemas
|
|
20
|
+
|
|
21
|
+
## 1.5.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Teams, permissions and RBAC
|
|
26
|
+
|
|
27
|
+
## 1.5.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- Middleware support
|
|
32
|
+
|
|
33
|
+
## 1.4.1
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Add README file
|
|
38
|
+
|
|
39
|
+
## 1.4.0
|
|
40
|
+
|
|
41
|
+
### Minor Changes
|
|
42
|
+
|
|
43
|
+
- 96c26a7: added magic link
|
|
44
|
+
|
|
45
|
+
## 1.3.2
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- 5909ecd: fixed bugs
|
|
50
|
+
|
|
51
|
+
## 1.3.1
|
|
52
|
+
|
|
53
|
+
### Patch Changes
|
|
54
|
+
|
|
55
|
+
- fixed minor errors
|
|
56
|
+
|
|
57
|
+
## 1.3.0
|
|
58
|
+
|
|
59
|
+
### Minor Changes
|
|
60
|
+
|
|
61
|
+
- 9e9907f: Added new stack UI system
|
|
62
|
+
|
|
63
|
+
## 1.2.1
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- fixed import bugs
|
|
68
|
+
|
|
69
|
+
## 1.2.0
|
|
70
|
+
|
|
71
|
+
### Minor Changes
|
|
72
|
+
|
|
73
|
+
- Fixed infinite reload bug, added dashboard provider update
|
|
74
|
+
|
|
75
|
+
## 1.1.1
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- publish stack-sc
|
|
80
|
+
|
|
81
|
+
## 1.1.0
|
|
82
|
+
|
|
83
|
+
### Minor Changes
|
|
84
|
+
|
|
85
|
+
- fixed bugs
|
package/dist/index.combined.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
3
|
-
export declare const cookies: typeof
|
|
1
|
+
import * as reactServer from "./index.react-server";
|
|
2
|
+
import * as def from "./index.default";
|
|
3
|
+
export declare const cookies: typeof reactServer.cookies | typeof def.cookies;
|
|
4
|
+
export declare const isReactServer: boolean;
|
package/package.json
CHANGED
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackframe/stack-sc",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"exports": {
|
|
5
|
-
"./force-server": {
|
|
6
|
-
"types": "./dist/index.server.d.ts",
|
|
7
|
-
"default": "./dist/index.server.js"
|
|
5
|
+
"./force-react-server": {
|
|
6
|
+
"types": "./dist/index.react-server.d.ts",
|
|
7
|
+
"default": "./dist/index.react-server.js"
|
|
8
8
|
},
|
|
9
|
-
"./force-
|
|
10
|
-
"types": "./dist/index.
|
|
11
|
-
"default": "./dist/index.
|
|
9
|
+
"./force-default": {
|
|
10
|
+
"types": "./dist/index.default.d.ts",
|
|
11
|
+
"default": "./dist/index.default.js"
|
|
12
12
|
},
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.combined.d.ts",
|
|
15
|
-
"react-server": "./dist/index.server.js",
|
|
16
|
-
"default": "./dist/index.
|
|
15
|
+
"react-server": "./dist/index.react-server.js",
|
|
16
|
+
"default": "./dist/index.default.js"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"README.md",
|
|
21
|
-
"dist"
|
|
21
|
+
"dist",
|
|
22
|
+
"CHANGELOG.md",
|
|
23
|
+
"LICENSE"
|
|
22
24
|
],
|
|
23
25
|
"peerDependencies": {
|
|
24
26
|
"next": "^14.1",
|
package/dist/index.client.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const cookies: undefined;
|
package/dist/index.client.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const cookies = undefined;
|
package/dist/index.server.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { cookies } from 'next/headers';
|