@uniformdev/canvas-next 19.147.1-alpha.1 → 19.147.1-alpha.11

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;
@@ -186,6 +186,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
186
186
  type: string;
187
187
  isPatternParameter?: boolean | undefined;
188
188
  ignorePatternParameterDefault?: boolean | undefined;
189
+ optionalPatternParameter?: boolean | undefined;
189
190
  variables?: {
190
191
  [key: string]: string;
191
192
  } | undefined;
@@ -196,6 +197,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
196
197
  type: string;
197
198
  isPatternParameter?: boolean | undefined;
198
199
  ignorePatternParameterDefault?: boolean | undefined;
200
+ optionalPatternParameter?: boolean | undefined;
199
201
  variables?: {
200
202
  [key: string]: string;
201
203
  } | undefined;
@@ -239,12 +241,17 @@ declare const getServerSideProps: next.GetServerSideProps<{
239
241
  _id: string;
240
242
  _slug?: string | null | undefined;
241
243
  _name: string;
244
+ _author?: string | undefined;
245
+ _authorSubject?: string | undefined;
246
+ _creator?: string | undefined;
247
+ _creatorSubject?: string | undefined;
242
248
  _pattern?: string | undefined;
243
249
  _patternDataResources?: {
244
250
  [key: string]: {
245
251
  type: string;
246
252
  isPatternParameter?: boolean | undefined;
247
253
  ignorePatternParameterDefault?: boolean | undefined;
254
+ optionalPatternParameter?: boolean | undefined;
248
255
  variables?: {
249
256
  [key: string]: string;
250
257
  } | undefined;
@@ -255,6 +262,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
255
262
  type: string;
256
263
  isPatternParameter?: boolean | undefined;
257
264
  ignorePatternParameterDefault?: boolean | undefined;
265
+ optionalPatternParameter?: boolean | undefined;
258
266
  variables?: {
259
267
  [key: string]: string;
260
268
  } | undefined;
@@ -370,6 +378,7 @@ declare const getStaticProps: next.GetStaticProps<{
370
378
  type: string;
371
379
  isPatternParameter?: boolean | undefined;
372
380
  ignorePatternParameterDefault?: boolean | undefined;
381
+ optionalPatternParameter?: boolean | undefined;
373
382
  variables?: {
374
383
  [key: string]: string;
375
384
  } | undefined;
@@ -380,6 +389,7 @@ declare const getStaticProps: next.GetStaticProps<{
380
389
  type: string;
381
390
  isPatternParameter?: boolean | undefined;
382
391
  ignorePatternParameterDefault?: boolean | undefined;
392
+ optionalPatternParameter?: boolean | undefined;
383
393
  variables?: {
384
394
  [key: string]: string;
385
395
  } | undefined;
@@ -423,12 +433,17 @@ declare const getStaticProps: next.GetStaticProps<{
423
433
  _id: string;
424
434
  _slug?: string | null | undefined;
425
435
  _name: string;
436
+ _author?: string | undefined;
437
+ _authorSubject?: string | undefined;
438
+ _creator?: string | undefined;
439
+ _creatorSubject?: string | undefined;
426
440
  _pattern?: string | undefined;
427
441
  _patternDataResources?: {
428
442
  [key: string]: {
429
443
  type: string;
430
444
  isPatternParameter?: boolean | undefined;
431
445
  ignorePatternParameterDefault?: boolean | undefined;
446
+ optionalPatternParameter?: boolean | undefined;
432
447
  variables?: {
433
448
  [key: string]: string;
434
449
  } | undefined;
@@ -439,6 +454,7 @@ declare const getStaticProps: next.GetStaticProps<{
439
454
  type: string;
440
455
  isPatternParameter?: boolean | undefined;
441
456
  ignorePatternParameterDefault?: boolean | undefined;
457
+ optionalPatternParameter?: boolean | undefined;
442
458
  variables?: {
443
459
  [key: string]: string;
444
460
  } | undefined;
@@ -186,6 +186,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
186
186
  type: string;
187
187
  isPatternParameter?: boolean | undefined;
188
188
  ignorePatternParameterDefault?: boolean | undefined;
189
+ optionalPatternParameter?: boolean | undefined;
189
190
  variables?: {
190
191
  [key: string]: string;
191
192
  } | undefined;
@@ -196,6 +197,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
196
197
  type: string;
197
198
  isPatternParameter?: boolean | undefined;
198
199
  ignorePatternParameterDefault?: boolean | undefined;
200
+ optionalPatternParameter?: boolean | undefined;
199
201
  variables?: {
200
202
  [key: string]: string;
201
203
  } | undefined;
@@ -239,12 +241,17 @@ declare const getServerSideProps: next.GetServerSideProps<{
239
241
  _id: string;
240
242
  _slug?: string | null | undefined;
241
243
  _name: string;
244
+ _author?: string | undefined;
245
+ _authorSubject?: string | undefined;
246
+ _creator?: string | undefined;
247
+ _creatorSubject?: string | undefined;
242
248
  _pattern?: string | undefined;
243
249
  _patternDataResources?: {
244
250
  [key: string]: {
245
251
  type: string;
246
252
  isPatternParameter?: boolean | undefined;
247
253
  ignorePatternParameterDefault?: boolean | undefined;
254
+ optionalPatternParameter?: boolean | undefined;
248
255
  variables?: {
249
256
  [key: string]: string;
250
257
  } | undefined;
@@ -255,6 +262,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
255
262
  type: string;
256
263
  isPatternParameter?: boolean | undefined;
257
264
  ignorePatternParameterDefault?: boolean | undefined;
265
+ optionalPatternParameter?: boolean | undefined;
258
266
  variables?: {
259
267
  [key: string]: string;
260
268
  } | undefined;
@@ -370,6 +378,7 @@ declare const getStaticProps: next.GetStaticProps<{
370
378
  type: string;
371
379
  isPatternParameter?: boolean | undefined;
372
380
  ignorePatternParameterDefault?: boolean | undefined;
381
+ optionalPatternParameter?: boolean | undefined;
373
382
  variables?: {
374
383
  [key: string]: string;
375
384
  } | undefined;
@@ -380,6 +389,7 @@ declare const getStaticProps: next.GetStaticProps<{
380
389
  type: string;
381
390
  isPatternParameter?: boolean | undefined;
382
391
  ignorePatternParameterDefault?: boolean | undefined;
392
+ optionalPatternParameter?: boolean | undefined;
383
393
  variables?: {
384
394
  [key: string]: string;
385
395
  } | undefined;
@@ -423,12 +433,17 @@ declare const getStaticProps: next.GetStaticProps<{
423
433
  _id: string;
424
434
  _slug?: string | null | undefined;
425
435
  _name: string;
436
+ _author?: string | undefined;
437
+ _authorSubject?: string | undefined;
438
+ _creator?: string | undefined;
439
+ _creatorSubject?: string | undefined;
426
440
  _pattern?: string | undefined;
427
441
  _patternDataResources?: {
428
442
  [key: string]: {
429
443
  type: string;
430
444
  isPatternParameter?: boolean | undefined;
431
445
  ignorePatternParameterDefault?: boolean | undefined;
446
+ optionalPatternParameter?: boolean | undefined;
432
447
  variables?: {
433
448
  [key: string]: string;
434
449
  } | undefined;
@@ -439,6 +454,7 @@ declare const getStaticProps: next.GetStaticProps<{
439
454
  type: string;
440
455
  isPatternParameter?: boolean | undefined;
441
456
  ignorePatternParameterDefault?: boolean | undefined;
457
+ optionalPatternParameter?: boolean | undefined;
442
458
  variables?: {
443
459
  [key: string]: string;
444
460
  } | undefined;
@@ -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;
@@ -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.147.1-alpha.1+3b71376893",
3
+ "version": "19.147.1-alpha.11+af2cff242e",
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.147.1-alpha.1+3b71376893",
71
- "@uniformdev/canvas-react": "19.147.1-alpha.1+3b71376893",
72
- "@uniformdev/project-map": "19.147.1-alpha.1+3b71376893",
73
- "@uniformdev/redirect": "19.147.1-alpha.1+3b71376893",
74
- "@uniformdev/richtext": "19.147.1-alpha.1+3b71376893",
70
+ "@uniformdev/canvas": "19.147.1-alpha.11+af2cff242e",
71
+ "@uniformdev/canvas-react": "19.147.1-alpha.11+af2cff242e",
72
+ "@uniformdev/project-map": "19.147.1-alpha.11+af2cff242e",
73
+ "@uniformdev/redirect": "19.147.1-alpha.11+af2cff242e",
74
+ "@uniformdev/richtext": "19.147.1-alpha.11+af2cff242e",
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": "3b71376893147a07f47c6118425304f96d099067"
94
+ "gitHead": "af2cff242e55fa8548dc06377344264ddd3c271e"
95
95
  }