@sitecore-jss/sitecore-jss 21.1.1 → 21.1.2-canary.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sitecore-jss/sitecore-jss",
|
|
3
|
-
"version": "21.1.
|
|
3
|
+
"version": "21.1.2-canary.0",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"description": "",
|
|
66
66
|
"types": "types/index.d.ts",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "4c7af4e00adc12c193d68c9c2ea34e17cfa0cc98",
|
|
68
68
|
"files": [
|
|
69
69
|
"dist",
|
|
70
70
|
"types",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { GraphQLClient } from '../graphql';
|
|
2
|
+
import { LayoutServiceData } from '../layout';
|
|
2
3
|
export declare type GraphQLErrorPagesServiceConfig = {
|
|
3
4
|
/**
|
|
4
5
|
* Your Graphql endpoint
|
|
@@ -21,7 +22,13 @@ export declare type GraphQLErrorPagesServiceConfig = {
|
|
|
21
22
|
* Object model of Error Pages result
|
|
22
23
|
*/
|
|
23
24
|
export declare type ErrorPages = {
|
|
25
|
+
notFoundPage: {
|
|
26
|
+
rendered: LayoutServiceData;
|
|
27
|
+
};
|
|
24
28
|
notFoundPagePath: string;
|
|
29
|
+
serverErrorPage: {
|
|
30
|
+
rendered: LayoutServiceData;
|
|
31
|
+
};
|
|
25
32
|
serverErrorPagePath: string;
|
|
26
33
|
};
|
|
27
34
|
/**
|