@nuxtify/pages 0.3.2 → 0.3.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/dist/module.d.mts +7 -5
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +1 -1
package/dist/module.d.mts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { ModuleOptions as ModuleOptions$1 } from '@nuxtify/core';
|
|
3
3
|
|
|
4
|
+
type CoreEmailOptions = NonNullable<ModuleOptions$1['email']>;
|
|
5
|
+
interface Email extends CoreEmailOptions {
|
|
6
|
+
provider?: {
|
|
7
|
+
defaultSubmitUrl?: string;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
4
10
|
interface Link {
|
|
5
11
|
text: string;
|
|
6
12
|
to?: string;
|
|
@@ -37,11 +43,7 @@ interface PageModuleOptions {
|
|
|
37
43
|
/**
|
|
38
44
|
* Email options
|
|
39
45
|
*/
|
|
40
|
-
email?:
|
|
41
|
-
provider?: {
|
|
42
|
-
defaultSubmitUrl?: string;
|
|
43
|
-
};
|
|
44
|
-
};
|
|
46
|
+
email?: Email;
|
|
45
47
|
/**
|
|
46
48
|
* Style options
|
|
47
49
|
*/
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED