@uniformdev/context-next 17.7.0 → 17.7.1-alpha.140

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -12,11 +12,11 @@ import { NextPageContext } from 'next';
12
12
  */
13
13
  declare function enableNextSsr(ctx: DocumentContext, context: Context): void;
14
14
  /** Type of <App> props if enableNextSsr() is setup in _document. */
15
- declare type UniformAppProps<P = {}> = AppProps<P> & {
15
+ type UniformAppProps<P = {}> = AppProps<P> & {
16
16
  serverUniformContext?: Context;
17
17
  };
18
18
 
19
- declare type NextCookieTransitionDataStoreOptions = Omit<CookieTransitionDataStoreOptions, 'serverCookieValue'> & {
19
+ type NextCookieTransitionDataStoreOptions = Omit<CookieTransitionDataStoreOptions, 'serverCookieValue'> & {
20
20
  serverContext: NextPageContext | undefined;
21
21
  };
22
22
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/context-next",
3
- "version": "17.7.0",
3
+ "version": "17.7.1-alpha.140+80ab6baf9",
4
4
  "description": "Uniform Context Next.js integration package",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -25,12 +25,12 @@
25
25
  "devDependencies": {
26
26
  "@types/cookie": "0.5.1",
27
27
  "@types/react": "18.0.26",
28
- "next": "12.3.4",
28
+ "next": "13.1.1",
29
29
  "react": "18.2.0",
30
30
  "react-dom": "18.2.0"
31
31
  },
32
32
  "dependencies": {
33
- "@uniformdev/context": "^17.7.0",
33
+ "@uniformdev/context": "^17.7.1-alpha.140+80ab6baf9",
34
34
  "cookie": "^0.5.0"
35
35
  },
36
36
  "peerDependencies": {
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "545eed0c88e608c46fc33048f50ccc8a08bd8cbb"
47
+ "gitHead": "80ab6baf9edea6b520738bd3dff5c6afc882bf77"
48
48
  }