@uniformdev/canvas-next 19.119.0 → 19.121.1-alpha.3

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/LICENSE.txt CHANGED
@@ -1,2 +1,2 @@
1
- © 2023 Uniform Systems, Inc. All Rights Reserved.
1
+ © 2024 Uniform Systems, Inc. All Rights Reserved.
2
2
  See details of Uniform Systems, Inc. Master Subscription Agreement here: https://uniform.dev/eula
@@ -34,6 +34,7 @@ declare const withUniformGetServerSideProps: <TProps extends {
34
34
  withUIStatus?: boolean | undefined;
35
35
  withContentSourceMap?: boolean | undefined;
36
36
  locale?: string | undefined;
37
+ releaseId?: string | undefined;
37
38
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "projectMapNodePath">> & _uniformdev_canvas.SpecificProjectMap & DataResolutionOption>, "state"> | undefined;
38
39
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
39
40
  callback?: UniformGetServerSideProps<TProps> | undefined;
@@ -53,6 +54,7 @@ declare const withUniformGetStaticPaths: (options?: {
53
54
  requestOptions?: Partial<{
54
55
  projectMapId?: string | undefined;
55
56
  projectId: string;
57
+ releaseId?: string | undefined;
56
58
  id?: string | undefined;
57
59
  path?: string | undefined;
58
60
  compositionId?: string | undefined;
@@ -103,6 +105,7 @@ declare const withUniformGetStaticProps: <TProps extends {
103
105
  withUIStatus?: boolean | undefined;
104
106
  withContentSourceMap?: boolean | undefined;
105
107
  locale?: string | undefined;
108
+ releaseId?: string | undefined;
106
109
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "projectMapNodePath">> & _uniformdev_canvas.SpecificProjectMap & DataResolutionOption>, "state"> | undefined;
107
110
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
108
111
  callback?: UniformGetStaticProps<TProps> | undefined;
@@ -34,6 +34,7 @@ declare const withUniformGetServerSideProps: <TProps extends {
34
34
  withUIStatus?: boolean | undefined;
35
35
  withContentSourceMap?: boolean | undefined;
36
36
  locale?: string | undefined;
37
+ releaseId?: string | undefined;
37
38
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "projectMapNodePath">> & _uniformdev_canvas.SpecificProjectMap & DataResolutionOption>, "state"> | undefined;
38
39
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
39
40
  callback?: UniformGetServerSideProps<TProps> | undefined;
@@ -53,6 +54,7 @@ declare const withUniformGetStaticPaths: (options?: {
53
54
  requestOptions?: Partial<{
54
55
  projectMapId?: string | undefined;
55
56
  projectId: string;
57
+ releaseId?: string | undefined;
56
58
  id?: string | undefined;
57
59
  path?: string | undefined;
58
60
  compositionId?: string | undefined;
@@ -103,6 +105,7 @@ declare const withUniformGetStaticProps: <TProps extends {
103
105
  withUIStatus?: boolean | undefined;
104
106
  withContentSourceMap?: boolean | undefined;
105
107
  locale?: string | undefined;
108
+ releaseId?: string | undefined;
106
109
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "projectMapNodePath">> & _uniformdev_canvas.SpecificProjectMap & DataResolutionOption>, "state"> | undefined;
107
110
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
108
111
  callback?: UniformGetStaticProps<TProps> | undefined;
@@ -59,6 +59,7 @@ declare const withUniformGetStaticPaths: (options?: {
59
59
  requestOptions?: Partial<{
60
60
  projectMapId?: string | undefined;
61
61
  projectId: string;
62
+ releaseId?: string | undefined;
62
63
  id?: string | undefined;
63
64
  path?: string | undefined;
64
65
  compositionId?: string | undefined;
@@ -195,6 +196,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
195
196
  } | undefined;
196
197
  };
197
198
  } | undefined;
199
+ slots?: {
200
+ [key: string]: any[];
201
+ } | undefined;
198
202
  variant?: string | undefined;
199
203
  };
200
204
  } | undefined;
@@ -203,6 +207,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
203
207
  [key: string]: "yes" | "no";
204
208
  } | undefined;
205
209
  variants?: boolean | undefined;
210
+ hideLockedParameters?: boolean | undefined;
206
211
  } | undefined;
207
212
  _locales?: string[] | undefined;
208
213
  }[];
@@ -246,6 +251,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
246
251
  } | undefined;
247
252
  };
248
253
  } | undefined;
254
+ slots?: {
255
+ [key: string]: any[];
256
+ } | undefined;
249
257
  variant?: string | undefined;
250
258
  };
251
259
  } | undefined;
@@ -254,6 +262,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
254
262
  [key: string]: "yes" | "no";
255
263
  } | undefined;
256
264
  variants?: boolean | undefined;
265
+ hideLockedParameters?: boolean | undefined;
257
266
  } | undefined;
258
267
  _locales?: string[] | undefined;
259
268
  };
@@ -343,6 +352,9 @@ declare const getStaticProps: next.GetStaticProps<{
343
352
  } | undefined;
344
353
  };
345
354
  } | undefined;
355
+ slots?: {
356
+ [key: string]: any[];
357
+ } | undefined;
346
358
  variant?: string | undefined;
347
359
  };
348
360
  } | undefined;
@@ -351,6 +363,7 @@ declare const getStaticProps: next.GetStaticProps<{
351
363
  [key: string]: "yes" | "no";
352
364
  } | undefined;
353
365
  variants?: boolean | undefined;
366
+ hideLockedParameters?: boolean | undefined;
354
367
  } | undefined;
355
368
  _locales?: string[] | undefined;
356
369
  }[];
@@ -394,6 +407,9 @@ declare const getStaticProps: next.GetStaticProps<{
394
407
  } | undefined;
395
408
  };
396
409
  } | undefined;
410
+ slots?: {
411
+ [key: string]: any[];
412
+ } | undefined;
397
413
  variant?: string | undefined;
398
414
  };
399
415
  } | undefined;
@@ -402,6 +418,7 @@ declare const getStaticProps: next.GetStaticProps<{
402
418
  [key: string]: "yes" | "no";
403
419
  } | undefined;
404
420
  variants?: boolean | undefined;
421
+ hideLockedParameters?: boolean | undefined;
405
422
  } | undefined;
406
423
  _locales?: string[] | undefined;
407
424
  };
@@ -59,6 +59,7 @@ declare const withUniformGetStaticPaths: (options?: {
59
59
  requestOptions?: Partial<{
60
60
  projectMapId?: string | undefined;
61
61
  projectId: string;
62
+ releaseId?: string | undefined;
62
63
  id?: string | undefined;
63
64
  path?: string | undefined;
64
65
  compositionId?: string | undefined;
@@ -195,6 +196,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
195
196
  } | undefined;
196
197
  };
197
198
  } | undefined;
199
+ slots?: {
200
+ [key: string]: any[];
201
+ } | undefined;
198
202
  variant?: string | undefined;
199
203
  };
200
204
  } | undefined;
@@ -203,6 +207,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
203
207
  [key: string]: "yes" | "no";
204
208
  } | undefined;
205
209
  variants?: boolean | undefined;
210
+ hideLockedParameters?: boolean | undefined;
206
211
  } | undefined;
207
212
  _locales?: string[] | undefined;
208
213
  }[];
@@ -246,6 +251,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
246
251
  } | undefined;
247
252
  };
248
253
  } | undefined;
254
+ slots?: {
255
+ [key: string]: any[];
256
+ } | undefined;
249
257
  variant?: string | undefined;
250
258
  };
251
259
  } | undefined;
@@ -254,6 +262,7 @@ declare const getServerSideProps: next.GetServerSideProps<{
254
262
  [key: string]: "yes" | "no";
255
263
  } | undefined;
256
264
  variants?: boolean | undefined;
265
+ hideLockedParameters?: boolean | undefined;
257
266
  } | undefined;
258
267
  _locales?: string[] | undefined;
259
268
  };
@@ -343,6 +352,9 @@ declare const getStaticProps: next.GetStaticProps<{
343
352
  } | undefined;
344
353
  };
345
354
  } | undefined;
355
+ slots?: {
356
+ [key: string]: any[];
357
+ } | undefined;
346
358
  variant?: string | undefined;
347
359
  };
348
360
  } | undefined;
@@ -351,6 +363,7 @@ declare const getStaticProps: next.GetStaticProps<{
351
363
  [key: string]: "yes" | "no";
352
364
  } | undefined;
353
365
  variants?: boolean | undefined;
366
+ hideLockedParameters?: boolean | undefined;
354
367
  } | undefined;
355
368
  _locales?: string[] | undefined;
356
369
  }[];
@@ -394,6 +407,9 @@ declare const getStaticProps: next.GetStaticProps<{
394
407
  } | undefined;
395
408
  };
396
409
  } | undefined;
410
+ slots?: {
411
+ [key: string]: any[];
412
+ } | undefined;
397
413
  variant?: string | undefined;
398
414
  };
399
415
  } | undefined;
@@ -402,6 +418,7 @@ declare const getStaticProps: next.GetStaticProps<{
402
418
  [key: string]: "yes" | "no";
403
419
  } | undefined;
404
420
  variants?: boolean | undefined;
421
+ hideLockedParameters?: boolean | undefined;
405
422
  } | undefined;
406
423
  _locales?: string[] | undefined;
407
424
  };
@@ -31,6 +31,7 @@ declare const withUniformGetServerSideProps: <TProps extends {
31
31
  withUIStatus?: boolean | undefined;
32
32
  withContentSourceMap?: boolean | undefined;
33
33
  locale?: string | undefined;
34
+ releaseId?: string | undefined;
34
35
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "slug">> & DataResolutionOption>, "state"> | undefined;
35
36
  callback?: UniformGetServerSideProps<TProps> | undefined;
36
37
  /** Disables logging of response information and timings */
@@ -79,6 +80,7 @@ declare const withUniformGetStaticProps: <TProps extends {
79
80
  withUIStatus?: boolean | undefined;
80
81
  withContentSourceMap?: boolean | undefined;
81
82
  locale?: string | undefined;
83
+ releaseId?: string | undefined;
82
84
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "slug">> & DataResolutionOption>, "state"> | undefined;
83
85
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
84
86
  callback?: UniformGetStaticProps<TProps> | undefined;
@@ -31,6 +31,7 @@ declare const withUniformGetServerSideProps: <TProps extends {
31
31
  withUIStatus?: boolean | undefined;
32
32
  withContentSourceMap?: boolean | undefined;
33
33
  locale?: string | undefined;
34
+ releaseId?: string | undefined;
34
35
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "slug">> & DataResolutionOption>, "state"> | undefined;
35
36
  callback?: UniformGetServerSideProps<TProps> | undefined;
36
37
  /** Disables logging of response information and timings */
@@ -79,6 +80,7 @@ declare const withUniformGetStaticProps: <TProps extends {
79
80
  withUIStatus?: boolean | undefined;
80
81
  withContentSourceMap?: boolean | undefined;
81
82
  locale?: string | undefined;
83
+ releaseId?: string | undefined;
82
84
  } & Required<Pick<_uniformdev_canvas.CompositionGetParameters, "slug">> & DataResolutionOption>, "state"> | undefined;
83
85
  /** Custom handler to specify return value and modify composition - e.g. enhance with CMS data */
84
86
  callback?: UniformGetStaticProps<TProps> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-next",
3
- "version": "19.119.0",
3
+ "version": "19.121.1-alpha.3+7d8c709610",
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.119.0",
71
- "@uniformdev/canvas-react": "19.119.0",
72
- "@uniformdev/project-map": "19.119.0",
73
- "@uniformdev/redirect": "19.119.0",
74
- "@uniformdev/richtext": "19.119.0",
70
+ "@uniformdev/canvas": "19.121.1-alpha.3+7d8c709610",
71
+ "@uniformdev/canvas-react": "19.121.1-alpha.3+7d8c709610",
72
+ "@uniformdev/project-map": "19.121.1-alpha.3+7d8c709610",
73
+ "@uniformdev/redirect": "19.121.1-alpha.3+7d8c709610",
74
+ "@uniformdev/richtext": "19.121.1-alpha.3+7d8c709610",
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": "103e99a2813a021e3a9bc6e3c4fd27474c74c09e"
94
+ "gitHead": "7d8c70961033e6ec47b7f8874b5e49b224367cf5"
95
95
  }