nuxt-studio 1.1.0 → 1.1.1
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/app/main.d.ts +16 -16
- package/dist/app/main.js +1 -1
- package/dist/app/service-worker.d.ts +16 -16
- package/dist/app/shared.d.ts +16 -16
- package/dist/module/module.json +1 -1
- package/dist/module/module.mjs +1 -1
- package/dist/module/runtime/server/routes/admin.js +4 -1
- package/dist/module/runtime/server/routes/auth/session.get.js +8 -3
- package/dist/module/runtime/server/routes/meta.js +7 -2
- package/dist/module/runtime/server/utils/session.js +21 -5
- package/dist/module/runtime/utils/auth.js +4 -4
- package/dist/module/runtime/utils/source.js +1 -1
- package/package.json +1 -1
package/dist/app/main.d.ts
CHANGED
|
@@ -450,8 +450,8 @@ declare module '@tiptap/core' {
|
|
|
450
450
|
|
|
451
451
|
declare module '@tiptap/vue-3' {
|
|
452
452
|
interface Commands<ReturnType> {
|
|
453
|
-
|
|
454
|
-
|
|
453
|
+
imagePicker: {
|
|
454
|
+
insertImagePicker: () => ReturnType;
|
|
455
455
|
};
|
|
456
456
|
}
|
|
457
457
|
}
|
|
@@ -459,8 +459,8 @@ declare module '@tiptap/vue-3' {
|
|
|
459
459
|
|
|
460
460
|
declare module '@tiptap/vue-3' {
|
|
461
461
|
interface Commands<ReturnType> {
|
|
462
|
-
|
|
463
|
-
|
|
462
|
+
videoPicker: {
|
|
463
|
+
insertVideoPicker: () => ReturnType;
|
|
464
464
|
};
|
|
465
465
|
}
|
|
466
466
|
}
|
|
@@ -490,18 +490,6 @@ declare module '@tiptap/core' {
|
|
|
490
490
|
}
|
|
491
491
|
|
|
492
492
|
|
|
493
|
-
declare module '@tiptap/core' {
|
|
494
|
-
interface Commands<ReturnType> {
|
|
495
|
-
InlineElement: {
|
|
496
|
-
/**
|
|
497
|
-
* Toggle a InlineElement
|
|
498
|
-
*/
|
|
499
|
-
setInlineElement: (tag: string) => ReturnType;
|
|
500
|
-
};
|
|
501
|
-
}
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
|
|
505
493
|
declare module '@tiptap/core' {
|
|
506
494
|
interface Commands<ReturnType> {
|
|
507
495
|
SpanStyle: {
|
|
@@ -522,6 +510,18 @@ declare module '@tiptap/core' {
|
|
|
522
510
|
}
|
|
523
511
|
|
|
524
512
|
|
|
513
|
+
declare module '@tiptap/core' {
|
|
514
|
+
interface Commands<ReturnType> {
|
|
515
|
+
InlineElement: {
|
|
516
|
+
/**
|
|
517
|
+
* Toggle a InlineElement
|
|
518
|
+
*/
|
|
519
|
+
setInlineElement: (tag: string) => ReturnType;
|
|
520
|
+
};
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
|
|
525
525
|
declare module '@tiptap/core' {
|
|
526
526
|
interface Commands<ReturnType> {
|
|
527
527
|
Binding: {
|