@uniformdev/canvas-next 19.88.1-alpha.7 → 19.90.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.
@@ -197,6 +197,17 @@ declare const getServerSideProps: next.GetServerSideProps<{
197
197
  _id: string;
198
198
  _slug?: string | null | undefined;
199
199
  _name: string;
200
+ _pattern?: string | undefined;
201
+ _patternDataResources?: {
202
+ [key: string]: {
203
+ type: string;
204
+ isPatternParameter?: boolean | undefined;
205
+ ignorePatternParameterDefault?: boolean | undefined;
206
+ variables?: {
207
+ [key: string]: string;
208
+ } | undefined;
209
+ };
210
+ } | undefined;
200
211
  _dataResources?: {
201
212
  [key: string]: {
202
213
  type: string;
@@ -333,6 +344,17 @@ declare const getStaticProps: next.GetStaticProps<{
333
344
  _id: string;
334
345
  _slug?: string | null | undefined;
335
346
  _name: string;
347
+ _pattern?: string | undefined;
348
+ _patternDataResources?: {
349
+ [key: string]: {
350
+ type: string;
351
+ isPatternParameter?: boolean | undefined;
352
+ ignorePatternParameterDefault?: boolean | undefined;
353
+ variables?: {
354
+ [key: string]: string;
355
+ } | undefined;
356
+ };
357
+ } | undefined;
336
358
  _dataResources?: {
337
359
  [key: string]: {
338
360
  type: string;
@@ -197,6 +197,17 @@ declare const getServerSideProps: next.GetServerSideProps<{
197
197
  _id: string;
198
198
  _slug?: string | null | undefined;
199
199
  _name: string;
200
+ _pattern?: string | undefined;
201
+ _patternDataResources?: {
202
+ [key: string]: {
203
+ type: string;
204
+ isPatternParameter?: boolean | undefined;
205
+ ignorePatternParameterDefault?: boolean | undefined;
206
+ variables?: {
207
+ [key: string]: string;
208
+ } | undefined;
209
+ };
210
+ } | undefined;
200
211
  _dataResources?: {
201
212
  [key: string]: {
202
213
  type: string;
@@ -333,6 +344,17 @@ declare const getStaticProps: next.GetStaticProps<{
333
344
  _id: string;
334
345
  _slug?: string | null | undefined;
335
346
  _name: string;
347
+ _pattern?: string | undefined;
348
+ _patternDataResources?: {
349
+ [key: string]: {
350
+ type: string;
351
+ isPatternParameter?: boolean | undefined;
352
+ ignorePatternParameterDefault?: boolean | undefined;
353
+ variables?: {
354
+ [key: string]: string;
355
+ } | undefined;
356
+ };
357
+ } | undefined;
336
358
  _dataResources?: {
337
359
  [key: string]: {
338
360
  type: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-next",
3
- "version": "19.88.1-alpha.7+69b3ccba4",
3
+ "version": "19.90.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.88.1-alpha.7+69b3ccba4",
71
- "@uniformdev/canvas-react": "19.88.1-alpha.7+69b3ccba4",
72
- "@uniformdev/project-map": "19.88.1-alpha.7+69b3ccba4",
73
- "@uniformdev/redirect": "19.88.1-alpha.7+69b3ccba4",
74
- "@uniformdev/richtext": "19.88.1-alpha.7+69b3ccba4",
70
+ "@uniformdev/canvas": "19.90.0",
71
+ "@uniformdev/canvas-react": "19.90.0",
72
+ "@uniformdev/project-map": "19.90.0",
73
+ "@uniformdev/redirect": "19.90.0",
74
+ "@uniformdev/richtext": "19.90.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": "69b3ccba4050c4ff412c4f226f54a36d74cf9a39"
94
+ "gitHead": "5fcbc2f570abedb01f09730eb986f024429e2422"
95
95
  }