@uniformdev/canvas-next 19.140.2-alpha.7 → 19.142.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/dist/route/index.d.mts +24 -0
- package/dist/route/index.d.ts +24 -0
- package/package.json +7 -7
package/dist/route/index.d.mts
CHANGED
|
@@ -126,6 +126,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
126
126
|
connectedData?: {
|
|
127
127
|
pointer: string;
|
|
128
128
|
syntax: "jptr";
|
|
129
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
130
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
131
|
+
failureDefault?: string | undefined;
|
|
129
132
|
} | undefined;
|
|
130
133
|
locales?: {
|
|
131
134
|
[key: string]: unknown;
|
|
@@ -163,6 +166,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
163
166
|
connectedData?: {
|
|
164
167
|
pointer: string;
|
|
165
168
|
syntax: "jptr";
|
|
169
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
170
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
171
|
+
failureDefault?: string | undefined;
|
|
166
172
|
} | undefined;
|
|
167
173
|
locales?: {
|
|
168
174
|
[key: string]: unknown;
|
|
@@ -205,6 +211,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
205
211
|
connectedData?: {
|
|
206
212
|
pointer: string;
|
|
207
213
|
syntax: "jptr";
|
|
214
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
215
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
216
|
+
failureDefault?: string | undefined;
|
|
208
217
|
} | undefined;
|
|
209
218
|
locales?: {
|
|
210
219
|
[key: string]: unknown;
|
|
@@ -261,6 +270,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
261
270
|
connectedData?: {
|
|
262
271
|
pointer: string;
|
|
263
272
|
syntax: "jptr";
|
|
273
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
274
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
275
|
+
failureDefault?: string | undefined;
|
|
264
276
|
} | undefined;
|
|
265
277
|
locales?: {
|
|
266
278
|
[key: string]: unknown;
|
|
@@ -298,6 +310,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
298
310
|
connectedData?: {
|
|
299
311
|
pointer: string;
|
|
300
312
|
syntax: "jptr";
|
|
313
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
314
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
315
|
+
failureDefault?: string | undefined;
|
|
301
316
|
} | undefined;
|
|
302
317
|
locales?: {
|
|
303
318
|
[key: string]: unknown;
|
|
@@ -335,6 +350,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
335
350
|
connectedData?: {
|
|
336
351
|
pointer: string;
|
|
337
352
|
syntax: "jptr";
|
|
353
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
354
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
355
|
+
failureDefault?: string | undefined;
|
|
338
356
|
} | undefined;
|
|
339
357
|
locales?: {
|
|
340
358
|
[key: string]: unknown;
|
|
@@ -377,6 +395,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
377
395
|
connectedData?: {
|
|
378
396
|
pointer: string;
|
|
379
397
|
syntax: "jptr";
|
|
398
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
399
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
400
|
+
failureDefault?: string | undefined;
|
|
380
401
|
} | undefined;
|
|
381
402
|
locales?: {
|
|
382
403
|
[key: string]: unknown;
|
|
@@ -433,6 +454,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
433
454
|
connectedData?: {
|
|
434
455
|
pointer: string;
|
|
435
456
|
syntax: "jptr";
|
|
457
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
458
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
459
|
+
failureDefault?: string | undefined;
|
|
436
460
|
} | undefined;
|
|
437
461
|
locales?: {
|
|
438
462
|
[key: string]: unknown;
|
package/dist/route/index.d.ts
CHANGED
|
@@ -126,6 +126,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
126
126
|
connectedData?: {
|
|
127
127
|
pointer: string;
|
|
128
128
|
syntax: "jptr";
|
|
129
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
130
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
131
|
+
failureDefault?: string | undefined;
|
|
129
132
|
} | undefined;
|
|
130
133
|
locales?: {
|
|
131
134
|
[key: string]: unknown;
|
|
@@ -163,6 +166,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
163
166
|
connectedData?: {
|
|
164
167
|
pointer: string;
|
|
165
168
|
syntax: "jptr";
|
|
169
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
170
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
171
|
+
failureDefault?: string | undefined;
|
|
166
172
|
} | undefined;
|
|
167
173
|
locales?: {
|
|
168
174
|
[key: string]: unknown;
|
|
@@ -205,6 +211,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
205
211
|
connectedData?: {
|
|
206
212
|
pointer: string;
|
|
207
213
|
syntax: "jptr";
|
|
214
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
215
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
216
|
+
failureDefault?: string | undefined;
|
|
208
217
|
} | undefined;
|
|
209
218
|
locales?: {
|
|
210
219
|
[key: string]: unknown;
|
|
@@ -261,6 +270,9 @@ declare const getServerSideProps: next.GetServerSideProps<{
|
|
|
261
270
|
connectedData?: {
|
|
262
271
|
pointer: string;
|
|
263
272
|
syntax: "jptr";
|
|
273
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
274
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
275
|
+
failureDefault?: string | undefined;
|
|
264
276
|
} | undefined;
|
|
265
277
|
locales?: {
|
|
266
278
|
[key: string]: unknown;
|
|
@@ -298,6 +310,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
298
310
|
connectedData?: {
|
|
299
311
|
pointer: string;
|
|
300
312
|
syntax: "jptr";
|
|
313
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
314
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
315
|
+
failureDefault?: string | undefined;
|
|
301
316
|
} | undefined;
|
|
302
317
|
locales?: {
|
|
303
318
|
[key: string]: unknown;
|
|
@@ -335,6 +350,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
335
350
|
connectedData?: {
|
|
336
351
|
pointer: string;
|
|
337
352
|
syntax: "jptr";
|
|
353
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
354
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
355
|
+
failureDefault?: string | undefined;
|
|
338
356
|
} | undefined;
|
|
339
357
|
locales?: {
|
|
340
358
|
[key: string]: unknown;
|
|
@@ -377,6 +395,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
377
395
|
connectedData?: {
|
|
378
396
|
pointer: string;
|
|
379
397
|
syntax: "jptr";
|
|
398
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
399
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
400
|
+
failureDefault?: string | undefined;
|
|
380
401
|
} | undefined;
|
|
381
402
|
locales?: {
|
|
382
403
|
[key: string]: unknown;
|
|
@@ -433,6 +454,9 @@ declare const getStaticProps: next.GetStaticProps<{
|
|
|
433
454
|
connectedData?: {
|
|
434
455
|
pointer: string;
|
|
435
456
|
syntax: "jptr";
|
|
457
|
+
failureAction?: "t" | "p" | "c" | "a" | undefined;
|
|
458
|
+
failureLogLevel?: "e" | "w" | "i" | undefined;
|
|
459
|
+
failureDefault?: string | undefined;
|
|
436
460
|
} | undefined;
|
|
437
461
|
locales?: {
|
|
438
462
|
[key: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.142.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.142.0",
|
|
71
|
+
"@uniformdev/canvas-react": "19.142.0",
|
|
72
|
+
"@uniformdev/project-map": "19.142.0",
|
|
73
|
+
"@uniformdev/redirect": "19.142.0",
|
|
74
|
+
"@uniformdev/richtext": "19.142.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": "468077a132e42dbe08f94ab1784c787000d29458"
|
|
95
95
|
}
|