@uniformdev/canvas-next 19.149.1-alpha.1 → 19.151.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.
|
@@ -32,6 +32,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
32
32
|
withComponentIDs?: boolean | undefined;
|
|
33
33
|
withTotalCount?: boolean | undefined;
|
|
34
34
|
withUIStatus?: boolean | undefined;
|
|
35
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
36
|
+
withProjectMapNodes?: boolean | undefined;
|
|
35
37
|
withContentSourceMap?: boolean | undefined;
|
|
36
38
|
locale?: string | undefined;
|
|
37
39
|
releaseId?: string | undefined;
|
|
@@ -103,6 +105,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
103
105
|
withComponentIDs?: boolean | undefined;
|
|
104
106
|
withTotalCount?: boolean | undefined;
|
|
105
107
|
withUIStatus?: boolean | undefined;
|
|
108
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
109
|
+
withProjectMapNodes?: boolean | undefined;
|
|
106
110
|
withContentSourceMap?: boolean | undefined;
|
|
107
111
|
locale?: string | undefined;
|
|
108
112
|
releaseId?: string | undefined;
|
|
@@ -32,6 +32,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
32
32
|
withComponentIDs?: boolean | undefined;
|
|
33
33
|
withTotalCount?: boolean | undefined;
|
|
34
34
|
withUIStatus?: boolean | undefined;
|
|
35
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
36
|
+
withProjectMapNodes?: boolean | undefined;
|
|
35
37
|
withContentSourceMap?: boolean | undefined;
|
|
36
38
|
locale?: string | undefined;
|
|
37
39
|
releaseId?: string | undefined;
|
|
@@ -103,6 +105,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
103
105
|
withComponentIDs?: boolean | undefined;
|
|
104
106
|
withTotalCount?: boolean | undefined;
|
|
105
107
|
withUIStatus?: boolean | undefined;
|
|
108
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
109
|
+
withProjectMapNodes?: boolean | undefined;
|
|
106
110
|
withContentSourceMap?: boolean | undefined;
|
|
107
111
|
locale?: string | undefined;
|
|
108
112
|
releaseId?: string | undefined;
|
package/dist/route/index.d.mts
CHANGED
|
@@ -239,6 +239,10 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
239
239
|
_id: string;
|
|
240
240
|
_slug?: string | null | undefined;
|
|
241
241
|
_name: string;
|
|
242
|
+
_author?: string | undefined;
|
|
243
|
+
_authorSubject?: string | undefined;
|
|
244
|
+
_creator?: string | undefined;
|
|
245
|
+
_creatorSubject?: string | undefined;
|
|
242
246
|
_pattern?: string | undefined;
|
|
243
247
|
_patternDataResources?: {
|
|
244
248
|
[key: string]: {
|
|
@@ -423,6 +427,10 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
423
427
|
_id: string;
|
|
424
428
|
_slug?: string | null | undefined;
|
|
425
429
|
_name: string;
|
|
430
|
+
_author?: string | undefined;
|
|
431
|
+
_authorSubject?: string | undefined;
|
|
432
|
+
_creator?: string | undefined;
|
|
433
|
+
_creatorSubject?: string | undefined;
|
|
426
434
|
_pattern?: string | undefined;
|
|
427
435
|
_patternDataResources?: {
|
|
428
436
|
[key: string]: {
|
package/dist/route/index.d.ts
CHANGED
|
@@ -239,6 +239,10 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
239
239
|
_id: string;
|
|
240
240
|
_slug?: string | null | undefined;
|
|
241
241
|
_name: string;
|
|
242
|
+
_author?: string | undefined;
|
|
243
|
+
_authorSubject?: string | undefined;
|
|
244
|
+
_creator?: string | undefined;
|
|
245
|
+
_creatorSubject?: string | undefined;
|
|
242
246
|
_pattern?: string | undefined;
|
|
243
247
|
_patternDataResources?: {
|
|
244
248
|
[key: string]: {
|
|
@@ -423,6 +427,10 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
423
427
|
_id: string;
|
|
424
428
|
_slug?: string | null | undefined;
|
|
425
429
|
_name: string;
|
|
430
|
+
_author?: string | undefined;
|
|
431
|
+
_authorSubject?: string | undefined;
|
|
432
|
+
_creator?: string | undefined;
|
|
433
|
+
_creatorSubject?: string | undefined;
|
|
426
434
|
_pattern?: string | undefined;
|
|
427
435
|
_patternDataResources?: {
|
|
428
436
|
[key: string]: {
|
package/dist/slug/index.d.mts
CHANGED
|
@@ -29,6 +29,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
29
29
|
withComponentIDs?: boolean | undefined;
|
|
30
30
|
withTotalCount?: boolean | undefined;
|
|
31
31
|
withUIStatus?: boolean | undefined;
|
|
32
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
33
|
+
withProjectMapNodes?: boolean | undefined;
|
|
32
34
|
withContentSourceMap?: boolean | undefined;
|
|
33
35
|
locale?: string | undefined;
|
|
34
36
|
releaseId?: string | undefined;
|
|
@@ -78,6 +80,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
78
80
|
withComponentIDs?: boolean | undefined;
|
|
79
81
|
withTotalCount?: boolean | undefined;
|
|
80
82
|
withUIStatus?: boolean | undefined;
|
|
83
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
84
|
+
withProjectMapNodes?: boolean | undefined;
|
|
81
85
|
withContentSourceMap?: boolean | undefined;
|
|
82
86
|
locale?: string | undefined;
|
|
83
87
|
releaseId?: string | undefined;
|
package/dist/slug/index.d.ts
CHANGED
|
@@ -29,6 +29,8 @@ declare const withUniformGetServerSideProps: <TProps extends {
|
|
|
29
29
|
withComponentIDs?: boolean | undefined;
|
|
30
30
|
withTotalCount?: boolean | undefined;
|
|
31
31
|
withUIStatus?: boolean | undefined;
|
|
32
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
33
|
+
withProjectMapNodes?: boolean | undefined;
|
|
32
34
|
withContentSourceMap?: boolean | undefined;
|
|
33
35
|
locale?: string | undefined;
|
|
34
36
|
releaseId?: string | undefined;
|
|
@@ -78,6 +80,8 @@ declare const withUniformGetStaticProps: <TProps extends {
|
|
|
78
80
|
withComponentIDs?: boolean | undefined;
|
|
79
81
|
withTotalCount?: boolean | undefined;
|
|
80
82
|
withUIStatus?: boolean | undefined;
|
|
83
|
+
withWorkflowDefinition?: boolean | undefined;
|
|
84
|
+
withProjectMapNodes?: boolean | undefined;
|
|
81
85
|
withContentSourceMap?: boolean | undefined;
|
|
82
86
|
locale?: string | undefined;
|
|
83
87
|
releaseId?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.151.0",
|
|
4
4
|
"description": "Next.js SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"document": "api-extractor run --local"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@uniformdev/canvas": "19.
|
|
71
|
-
"@uniformdev/canvas-react": "19.
|
|
72
|
-
"@uniformdev/project-map": "19.
|
|
73
|
-
"@uniformdev/redirect": "19.
|
|
74
|
-
"@uniformdev/richtext": "19.
|
|
70
|
+
"@uniformdev/canvas": "19.151.0",
|
|
71
|
+
"@uniformdev/canvas-react": "19.151.0",
|
|
72
|
+
"@uniformdev/project-map": "19.151.0",
|
|
73
|
+
"@uniformdev/redirect": "19.151.0",
|
|
74
|
+
"@uniformdev/richtext": "19.151.0",
|
|
75
75
|
"colorette": "2.0.20"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
"publishConfig": {
|
|
92
92
|
"access": "public"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "de711843f24678df635c244505a943ae1d123a1a"
|
|
95
95
|
}
|