@stackframe/stack-sc 2.6.6 → 2.6.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.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @stackframe/stack-sc
2
2
 
3
+ ## 2.6.8
4
+
5
+ ## 2.6.7
6
+
7
+ ### Patch Changes
8
+
9
+ - Bugfixes
10
+
3
11
  ## 2.6.6
4
12
 
5
13
  ## 2.6.5
@@ -1,4 +1,5 @@
1
1
  import * as def from "./index.default";
2
2
  import * as reactServer from "./index.react-server";
3
3
  export declare const cookies: typeof reactServer.cookies | typeof def.cookies;
4
+ export declare const headers: typeof reactServer.headers | typeof def.headers;
4
5
  export declare const isReactServer: boolean;
@@ -1,2 +1,3 @@
1
1
  export declare const cookies: undefined;
2
+ export declare const headers: undefined;
2
3
  export declare const isReactServer = false;
@@ -1,2 +1,3 @@
1
1
  export const cookies = undefined;
2
+ export const headers = undefined;
2
3
  export const isReactServer = false;
@@ -1,2 +1,2 @@
1
- export { cookies } from 'next/headers';
1
+ export { cookies, headers } from 'next/headers';
2
2
  export declare const isReactServer = true;
@@ -1,2 +1,2 @@
1
- export { cookies } from 'next/headers';
1
+ export { cookies, headers } from 'next/headers';
2
2
  export const isReactServer = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackframe/stack-sc",
3
- "version": "2.6.6",
3
+ "version": "2.6.8",
4
4
  "exports": {
5
5
  "./force-react-server": {
6
6
  "types": "./dist/index.react-server.d.ts",