nuxt-ignis 0.3.0 → 0.3.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.
Files changed (98) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +43 -0
  3. package/.nuxt/components.d.ts +132 -0
  4. package/.nuxt/content/components.ts +51 -0
  5. package/.nuxt/content/database.compressed.mjs +1 -0
  6. package/.nuxt/content/manifest.ts +33 -0
  7. package/.nuxt/content/sql_dump +6 -0
  8. package/.nuxt/content/types.d.ts +13 -0
  9. package/.nuxt/dist/server/client.manifest.mjs +18 -1
  10. package/.nuxt/eslint.config.mjs +1 -1
  11. package/.nuxt/i18n.options.mjs +165 -0
  12. package/.nuxt/imports.d.ts +16 -0
  13. package/.nuxt/manifest/latest.json +1 -1
  14. package/.nuxt/manifest/meta/dev.json +1 -1
  15. package/.nuxt/mdc-configs.mjs +8 -0
  16. package/.nuxt/mdc-highlighter.mjs +213 -0
  17. package/.nuxt/mdc-image-component.mjs +1 -0
  18. package/.nuxt/mdc-imports.mjs +12 -0
  19. package/.nuxt/module/@nuxtjs-sitemap.d.ts +28 -0
  20. package/.nuxt/module/nuxt-robots.d.ts +35 -0
  21. package/.nuxt/module/nuxt-seo-utils.assets.d.ts +25 -0
  22. package/.nuxt/module/nuxt-seo-utils.d.ts +22 -0
  23. package/.nuxt/module/nuxt-site-config.d.ts +43 -0
  24. package/.nuxt/nitro.json +3 -3
  25. package/.nuxt/nuxt-i18n-logger.mjs +1 -0
  26. package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
  27. package/.nuxt/nuxt-icon-server-bundle.mjs +15 -0
  28. package/.nuxt/nuxt.d.ts +20 -5
  29. package/.nuxt/tailwind/postcss.mjs +15 -0
  30. package/.nuxt/tsconfig.json +151 -0
  31. package/.nuxt/tsconfig.server.json +140 -0
  32. package/.nuxt/types/build.d.ts +2 -0
  33. package/.nuxt/types/i18n-plugin.d.ts +104 -0
  34. package/.nuxt/types/imports.d.ts +70 -0
  35. package/.nuxt/types/neon.d.ts +35 -0
  36. package/.nuxt/types/nitro-imports.d.ts +263 -1
  37. package/.nuxt/types/nitro-routes.d.ts +61 -0
  38. package/.nuxt/types/plugins.d.ts +21 -2
  39. package/.nuxt/types/schema.d.ts +924 -2
  40. package/.nuxt/types/ui.d.ts +35 -0
  41. package/.nuxt/ui/accordion.ts +20 -0
  42. package/.nuxt/ui/alert.ts +264 -0
  43. package/.nuxt/ui/avatar-group.ts +52 -0
  44. package/.nuxt/ui/avatar.ts +54 -0
  45. package/.nuxt/ui/badge.ts +263 -0
  46. package/.nuxt/ui/breadcrumb.ts +45 -0
  47. package/.nuxt/ui/button-group.ts +16 -0
  48. package/.nuxt/ui/button.ts +378 -0
  49. package/.nuxt/ui/calendar.ts +103 -0
  50. package/.nuxt/ui/card.ts +34 -0
  51. package/.nuxt/ui/carousel.ts +38 -0
  52. package/.nuxt/ui/checkbox-group.ts +204 -0
  53. package/.nuxt/ui/checkbox.ts +236 -0
  54. package/.nuxt/ui/chip.ts +96 -0
  55. package/.nuxt/ui/collapsible.ts +6 -0
  56. package/.nuxt/ui/color-picker.ts +47 -0
  57. package/.nuxt/ui/command-palette.ts +50 -0
  58. package/.nuxt/ui/container.ts +3 -0
  59. package/.nuxt/ui/context-menu.ts +216 -0
  60. package/.nuxt/ui/drawer.ts +126 -0
  61. package/.nuxt/ui/dropdown-menu.ts +217 -0
  62. package/.nuxt/ui/form-field.ts +48 -0
  63. package/.nuxt/ui/form.ts +3 -0
  64. package/.nuxt/ui/index.ts +50 -0
  65. package/.nuxt/ui/input-menu.ts +436 -0
  66. package/.nuxt/ui/input-number.ts +245 -0
  67. package/.nuxt/ui/input.ts +289 -0
  68. package/.nuxt/ui/kbd.ts +31 -0
  69. package/.nuxt/ui/link.ts +22 -0
  70. package/.nuxt/ui/modal.ts +29 -0
  71. package/.nuxt/ui/navigation-menu.ts +501 -0
  72. package/.nuxt/ui/pagination.ts +13 -0
  73. package/.nuxt/ui/pin-input.ts +171 -0
  74. package/.nuxt/ui/popover.ts +6 -0
  75. package/.nuxt/ui/progress.ts +297 -0
  76. package/.nuxt/ui/radio-group.ts +350 -0
  77. package/.nuxt/ui/select-menu.ts +346 -0
  78. package/.nuxt/ui/select.ts +341 -0
  79. package/.nuxt/ui/separator.ts +172 -0
  80. package/.nuxt/ui/skeleton.ts +3 -0
  81. package/.nuxt/ui/slideover.ts +71 -0
  82. package/.nuxt/ui/slider.ts +171 -0
  83. package/.nuxt/ui/stepper.ts +202 -0
  84. package/.nuxt/ui/switch.ts +131 -0
  85. package/.nuxt/ui/table.ts +147 -0
  86. package/.nuxt/ui/tabs.ts +256 -0
  87. package/.nuxt/ui/textarea.ts +294 -0
  88. package/.nuxt/ui/toast.ts +81 -0
  89. package/.nuxt/ui/toaster.ts +91 -0
  90. package/.nuxt/ui/tooltip.ts +9 -0
  91. package/.nuxt/ui/tree.ts +154 -0
  92. package/.nuxt/ui-image-component.ts +1 -0
  93. package/.nuxt/ui.css +143 -0
  94. package/features.ts +30 -22
  95. package/package.json +2 -1
  96. package/tailwind.config.ts +1 -1
  97. package/.nuxt/dev/index.mjs +0 -2948
  98. package/.nuxt/dev/index.mjs.map +0 -1
@@ -29,6 +29,62 @@ declare module '@nuxt/schema' {
29
29
  * Configuration for `@vueuse/nuxt`
30
30
  */
31
31
  ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
32
+ /**
33
+ * Configuration for `nuxt-neon`
34
+ */
35
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
36
+ /**
37
+ * Configuration for `@nuxtjs/i18n`
38
+ */
39
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
40
+ /**
41
+ * Configuration for `@vueform/nuxt`
42
+ */
43
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
44
+ /**
45
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
46
+ */
47
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
48
+ /**
49
+ * Configuration for `@nuxtjs/robots`
50
+ */
51
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
52
+ /**
53
+ * Configuration for `@nuxtjs/sitemap`
54
+ */
55
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
56
+ /**
57
+ * Configuration for `nuxt-og-image`
58
+ */
59
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
60
+ /**
61
+ * Configuration for `nuxt-schema-org`
62
+ */
63
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
64
+ /**
65
+ * Configuration for `nuxt-link-checker`
66
+ */
67
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
68
+ /**
69
+ * Configuration for `nuxt-seo-utils`
70
+ */
71
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
72
+ /**
73
+ * Configuration for `@nuxtjs/seo`
74
+ */
75
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
76
+ /**
77
+ * Configuration for `@nuxtjs/mdc`
78
+ */
79
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
80
+ /**
81
+ * Configuration for `@nuxt/content`
82
+ */
83
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
84
+ /**
85
+ * Configuration for `nuxt-auth-utils`
86
+ */
87
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
32
88
  /**
33
89
  * Configuration for `@nuxt/test-utils/module`
34
90
  */
@@ -71,6 +127,62 @@ declare module '@nuxt/schema' {
71
127
  * Configuration for `@vueuse/nuxt`
72
128
  */
73
129
  ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
130
+ /**
131
+ * Configuration for `nuxt-neon`
132
+ */
133
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
134
+ /**
135
+ * Configuration for `@nuxtjs/i18n`
136
+ */
137
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
138
+ /**
139
+ * Configuration for `@vueform/nuxt`
140
+ */
141
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
142
+ /**
143
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
144
+ */
145
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
146
+ /**
147
+ * Configuration for `@nuxtjs/robots`
148
+ */
149
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
150
+ /**
151
+ * Configuration for `@nuxtjs/sitemap`
152
+ */
153
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
154
+ /**
155
+ * Configuration for `nuxt-og-image`
156
+ */
157
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
158
+ /**
159
+ * Configuration for `nuxt-schema-org`
160
+ */
161
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
162
+ /**
163
+ * Configuration for `nuxt-link-checker`
164
+ */
165
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
166
+ /**
167
+ * Configuration for `nuxt-seo-utils`
168
+ */
169
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
170
+ /**
171
+ * Configuration for `@nuxtjs/seo`
172
+ */
173
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
174
+ /**
175
+ * Configuration for `@nuxtjs/mdc`
176
+ */
177
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
178
+ /**
179
+ * Configuration for `@nuxt/content`
180
+ */
181
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
182
+ /**
183
+ * Configuration for `nuxt-auth-utils`
184
+ */
185
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
74
186
  /**
75
187
  * Configuration for `@nuxt/test-utils/module`
76
188
  */
@@ -83,7 +195,7 @@ declare module '@nuxt/schema' {
83
195
  * Configuration for `@nuxt/telemetry`
84
196
  */
85
197
  ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
86
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
198
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
87
199
  }
88
200
  }
89
201
  declare module 'nuxt/schema' {
@@ -123,6 +235,76 @@ declare module 'nuxt/schema' {
123
235
  * @see https://www.npmjs.com/package/@vueuse/nuxt
124
236
  */
125
237
  ["vueuse"]: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
238
+ /**
239
+ * Configuration for `nuxt-neon`
240
+ * @see https://www.npmjs.com/package/nuxt-neon
241
+ */
242
+ ["neon"]: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? O : Record<string, any>
243
+ /**
244
+ * Configuration for `@nuxtjs/i18n`
245
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
246
+ */
247
+ ["i18n"]: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? O : Record<string, any>
248
+ /**
249
+ * Configuration for `@vueform/nuxt`
250
+ * @see https://www.npmjs.com/package/@vueform/nuxt
251
+ */
252
+ ["vueform"]: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? O : Record<string, any>
253
+ /**
254
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
255
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module
256
+ */
257
+ ["site"]: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? O : Record<string, any>
258
+ /**
259
+ * Configuration for `@nuxtjs/robots`
260
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
261
+ */
262
+ ["robots"]: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? O : Record<string, any>
263
+ /**
264
+ * Configuration for `@nuxtjs/sitemap`
265
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
266
+ */
267
+ ["sitemap"]: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? O : Record<string, any>
268
+ /**
269
+ * Configuration for `nuxt-og-image`
270
+ * @see https://www.npmjs.com/package/nuxt-og-image
271
+ */
272
+ ["ogImage"]: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? O : Record<string, any>
273
+ /**
274
+ * Configuration for `nuxt-schema-org`
275
+ * @see https://www.npmjs.com/package/nuxt-schema-org
276
+ */
277
+ ["schemaOrg"]: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? O : Record<string, any>
278
+ /**
279
+ * Configuration for `nuxt-link-checker`
280
+ * @see https://www.npmjs.com/package/nuxt-link-checker
281
+ */
282
+ ["linkChecker"]: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? O : Record<string, any>
283
+ /**
284
+ * Configuration for `nuxt-seo-utils`
285
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
286
+ */
287
+ ["seo"]: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
288
+ /**
289
+ * Configuration for `@nuxtjs/seo`
290
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
291
+ */
292
+ ["nuxtseo"]: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? O : Record<string, any>
293
+ /**
294
+ * Configuration for `@nuxtjs/mdc`
295
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
296
+ */
297
+ ["mdc"]: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? O : Record<string, any>
298
+ /**
299
+ * Configuration for `@nuxt/content`
300
+ * @see https://content.nuxt.com
301
+ */
302
+ ["content"]: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? O : Record<string, any>
303
+ /**
304
+ * Configuration for `nuxt-auth-utils`
305
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
306
+ */
307
+ ["auth"]: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? O : Record<string, any>
126
308
  /**
127
309
  * Configuration for `@nuxt/test-utils/module`
128
310
  * @see https://www.npmjs.com/package/@nuxt/test-utils/module
@@ -175,6 +357,76 @@ declare module 'nuxt/schema' {
175
357
  * @see https://www.npmjs.com/package/@vueuse/nuxt
176
358
  */
177
359
  ["vueuse"]?: typeof import("@vueuse/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
360
+ /**
361
+ * Configuration for `nuxt-neon`
362
+ * @see https://www.npmjs.com/package/nuxt-neon
363
+ */
364
+ ["neon"]?: typeof import("nuxt-neon").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
365
+ /**
366
+ * Configuration for `@nuxtjs/i18n`
367
+ * @see https://www.npmjs.com/package/@nuxtjs/i18n
368
+ */
369
+ ["i18n"]?: typeof import("@nuxtjs/i18n").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
370
+ /**
371
+ * Configuration for `@vueform/nuxt`
372
+ * @see https://www.npmjs.com/package/@vueform/nuxt
373
+ */
374
+ ["vueform"]?: typeof import("@vueform/nuxt").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
375
+ /**
376
+ * Configuration for `C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module`
377
+ * @see https://www.npmjs.com/package/C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module
378
+ */
379
+ ["site"]?: typeof import("C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
380
+ /**
381
+ * Configuration for `@nuxtjs/robots`
382
+ * @see https://www.npmjs.com/package/@nuxtjs/robots
383
+ */
384
+ ["robots"]?: typeof import("@nuxtjs/robots").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
385
+ /**
386
+ * Configuration for `@nuxtjs/sitemap`
387
+ * @see https://www.npmjs.com/package/@nuxtjs/sitemap
388
+ */
389
+ ["sitemap"]?: typeof import("@nuxtjs/sitemap").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
390
+ /**
391
+ * Configuration for `nuxt-og-image`
392
+ * @see https://www.npmjs.com/package/nuxt-og-image
393
+ */
394
+ ["ogImage"]?: typeof import("nuxt-og-image").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
395
+ /**
396
+ * Configuration for `nuxt-schema-org`
397
+ * @see https://www.npmjs.com/package/nuxt-schema-org
398
+ */
399
+ ["schemaOrg"]?: typeof import("nuxt-schema-org").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
400
+ /**
401
+ * Configuration for `nuxt-link-checker`
402
+ * @see https://www.npmjs.com/package/nuxt-link-checker
403
+ */
404
+ ["linkChecker"]?: typeof import("nuxt-link-checker").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
405
+ /**
406
+ * Configuration for `nuxt-seo-utils`
407
+ * @see https://www.npmjs.com/package/nuxt-seo-utils
408
+ */
409
+ ["seo"]?: typeof import("nuxt-seo-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
410
+ /**
411
+ * Configuration for `@nuxtjs/seo`
412
+ * @see https://www.npmjs.com/package/@nuxtjs/seo
413
+ */
414
+ ["nuxtseo"]?: typeof import("@nuxtjs/seo").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
415
+ /**
416
+ * Configuration for `@nuxtjs/mdc`
417
+ * @see https://www.npmjs.com/package/@nuxtjs/mdc
418
+ */
419
+ ["mdc"]?: typeof import("@nuxtjs/mdc").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
420
+ /**
421
+ * Configuration for `@nuxt/content`
422
+ * @see https://content.nuxt.com
423
+ */
424
+ ["content"]?: typeof import("@nuxt/content").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
425
+ /**
426
+ * Configuration for `nuxt-auth-utils`
427
+ * @see https://www.npmjs.com/package/nuxt-auth-utils
428
+ */
429
+ ["auth"]?: typeof import("nuxt-auth-utils").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
178
430
  /**
179
431
  * Configuration for `@nuxt/test-utils/module`
180
432
  * @see https://www.npmjs.com/package/@nuxt/test-utils/module
@@ -190,7 +442,7 @@ declare module 'nuxt/schema' {
190
442
  * @see https://www.npmjs.com/package/@nuxt/telemetry
191
443
  */
192
444
  ["telemetry"]?: typeof import("@nuxt/telemetry").default extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
193
- modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
445
+ modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["@nuxt/eslint", Exclude<NuxtConfig["eslint"], boolean>] | ["@nuxt/fonts", Exclude<NuxtConfig["fonts"], boolean>] | ["@nuxt/image", Exclude<NuxtConfig["image"], boolean>] | ["@pinia/nuxt", Exclude<NuxtConfig["pinia"], boolean>] | ["@nuxt/scripts", Exclude<NuxtConfig["scripts"], boolean>] | ["nuxt-security", Exclude<NuxtConfig["security"], boolean>] | ["@vueuse/nuxt", Exclude<NuxtConfig["vueuse"], boolean>] | ["nuxt-neon", Exclude<NuxtConfig["neon"], boolean>] | ["@nuxtjs/i18n", Exclude<NuxtConfig["i18n"], boolean>] | ["@vueform/nuxt", Exclude<NuxtConfig["vueform"], boolean>] | ["C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/module", Exclude<NuxtConfig["site"], boolean>] | ["@nuxtjs/robots", Exclude<NuxtConfig["robots"], boolean>] | ["@nuxtjs/sitemap", Exclude<NuxtConfig["sitemap"], boolean>] | ["nuxt-og-image", Exclude<NuxtConfig["ogImage"], boolean>] | ["nuxt-schema-org", Exclude<NuxtConfig["schemaOrg"], boolean>] | ["nuxt-link-checker", Exclude<NuxtConfig["linkChecker"], boolean>] | ["nuxt-seo-utils", Exclude<NuxtConfig["seo"], boolean>] | ["@nuxtjs/seo", Exclude<NuxtConfig["nuxtseo"], boolean>] | ["@nuxtjs/mdc", Exclude<NuxtConfig["mdc"], boolean>] | ["@nuxt/content", Exclude<NuxtConfig["content"], boolean>] | ["nuxt-auth-utils", Exclude<NuxtConfig["auth"], boolean>] | ["@nuxt/test-utils/module", Exclude<NuxtConfig["testUtils"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>] | ["@nuxt/telemetry", Exclude<NuxtConfig["telemetry"], boolean>])[],
194
446
  }
195
447
  interface RuntimeConfig {
196
448
  app: {
@@ -352,6 +604,554 @@ declare module 'nuxt/schema' {
352
604
 
353
605
  sri: boolean,
354
606
  },
607
+
608
+ neonHost: string,
609
+
610
+ neonUser: string,
611
+
612
+ neonPass: string,
613
+
614
+ neonDB: string,
615
+
616
+ sitemap: {
617
+ isI18nMapped: boolean,
618
+
619
+ sitemapName: string,
620
+
621
+ isMultiSitemap: boolean,
622
+
623
+ excludeAppSources: Array<any>,
624
+
625
+ cacheMaxAgeSeconds: number,
626
+
627
+ autoLastmod: boolean,
628
+
629
+ defaultSitemapsChunkSize: number,
630
+
631
+ minify: boolean,
632
+
633
+ sortEntries: boolean,
634
+
635
+ debug: boolean,
636
+
637
+ discoverImages: boolean,
638
+
639
+ discoverVideos: boolean,
640
+
641
+ sitemapsPathPrefix: string,
642
+
643
+ isNuxtContentDocumentDriven: boolean,
644
+
645
+ xsl: string,
646
+
647
+ xslTips: boolean,
648
+
649
+ xslColumns: Array<{
650
+
651
+ }>,
652
+
653
+ credits: boolean,
654
+
655
+ version: string,
656
+
657
+ sitemaps: {
658
+ "sitemap.xml": {
659
+ sitemapName: string,
660
+
661
+ route: string,
662
+
663
+ defaults: any,
664
+
665
+ include: Array<any>,
666
+
667
+ exclude: Array<string>,
668
+
669
+ includeAppSources: boolean,
670
+ },
671
+ },
672
+ },
673
+
674
+ content: {
675
+ databaseVersion: string,
676
+
677
+ version: string,
678
+
679
+ database: {
680
+ type: string,
681
+
682
+ filename: string,
683
+ },
684
+
685
+ localDatabase: {
686
+ type: string,
687
+
688
+ filename: string,
689
+ },
690
+
691
+ integrityCheck: boolean,
692
+ },
693
+
694
+ session: {
695
+ name: string,
696
+
697
+ password: string,
698
+
699
+ cookie: {
700
+ sameSite: string,
701
+ },
702
+ },
703
+
704
+ hash: {
705
+ scrypt: any,
706
+ },
707
+
708
+ webauthn: {
709
+ register: any,
710
+
711
+ authenticate: any,
712
+ },
713
+
714
+ oauth: {
715
+ gitea: {
716
+ clientId: string,
717
+
718
+ clientSecret: string,
719
+
720
+ redirectURL: string,
721
+
722
+ baseURL: string,
723
+ },
724
+
725
+ github: {
726
+ clientId: string,
727
+
728
+ clientSecret: string,
729
+
730
+ redirectURL: string,
731
+ },
732
+
733
+ gitlab: {
734
+ clientId: string,
735
+
736
+ clientSecret: string,
737
+
738
+ redirectURL: string,
739
+
740
+ baseURL: string,
741
+ },
742
+
743
+ spotify: {
744
+ clientId: string,
745
+
746
+ clientSecret: string,
747
+
748
+ redirectURL: string,
749
+ },
750
+
751
+ google: {
752
+ clientId: string,
753
+
754
+ clientSecret: string,
755
+
756
+ redirectURL: string,
757
+ },
758
+
759
+ twitch: {
760
+ clientId: string,
761
+
762
+ clientSecret: string,
763
+
764
+ redirectURL: string,
765
+ },
766
+
767
+ auth0: {
768
+ clientId: string,
769
+
770
+ clientSecret: string,
771
+
772
+ domain: string,
773
+
774
+ audience: string,
775
+
776
+ redirectURL: string,
777
+ },
778
+
779
+ workos: {
780
+ clientId: string,
781
+
782
+ clientSecret: string,
783
+
784
+ connectionId: string,
785
+
786
+ screenHint: string,
787
+
788
+ redirectURL: string,
789
+ },
790
+
791
+ microsoft: {
792
+ clientId: string,
793
+
794
+ clientSecret: string,
795
+
796
+ tenant: string,
797
+
798
+ scope: Array<any>,
799
+
800
+ authorizationURL: string,
801
+
802
+ tokenURL: string,
803
+
804
+ userURL: string,
805
+
806
+ redirectURL: string,
807
+ },
808
+
809
+ azureb2c: {
810
+ clientId: string,
811
+
812
+ policy: string,
813
+
814
+ tenant: string,
815
+
816
+ scope: Array<any>,
817
+
818
+ authorizationURL: string,
819
+
820
+ tokenURL: string,
821
+
822
+ userURL: string,
823
+
824
+ redirectURL: string,
825
+ },
826
+
827
+ discord: {
828
+ clientId: string,
829
+
830
+ clientSecret: string,
831
+
832
+ redirectURL: string,
833
+ },
834
+
835
+ battledotnet: {
836
+ clientId: string,
837
+
838
+ clientSecret: string,
839
+
840
+ redirectURL: string,
841
+ },
842
+
843
+ bluesky: {
844
+ clientMetadataFilename: string,
845
+
846
+ clientName: string,
847
+
848
+ clientUri: string,
849
+
850
+ logoUri: string,
851
+
852
+ policyUri: string,
853
+
854
+ tosUri: string,
855
+
856
+ scope: Array<string>,
857
+
858
+ grantTypes: Array<string>,
859
+
860
+ responseTypes: Array<string>,
861
+
862
+ applicationType: string,
863
+
864
+ redirectUris: Array<any>,
865
+
866
+ dpopBoundAccessTokens: boolean,
867
+
868
+ tokenEndpointAuthMethod: string,
869
+ },
870
+
871
+ keycloak: {
872
+ clientId: string,
873
+
874
+ clientSecret: string,
875
+
876
+ serverUrl: string,
877
+
878
+ serverUrlInternal: string,
879
+
880
+ realm: string,
881
+
882
+ redirectURL: string,
883
+ },
884
+
885
+ linear: {
886
+ clientId: string,
887
+
888
+ clientSecret: string,
889
+
890
+ redirectURL: string,
891
+ },
892
+
893
+ linkedin: {
894
+ clientId: string,
895
+
896
+ clientSecret: string,
897
+
898
+ redirectURL: string,
899
+ },
900
+
901
+ cognito: {
902
+ clientId: string,
903
+
904
+ clientSecret: string,
905
+
906
+ region: string,
907
+
908
+ userPoolId: string,
909
+
910
+ redirectURL: string,
911
+ },
912
+
913
+ facebook: {
914
+ clientId: string,
915
+
916
+ clientSecret: string,
917
+
918
+ redirectURL: string,
919
+ },
920
+
921
+ instagram: {
922
+ clientId: string,
923
+
924
+ clientSecret: string,
925
+
926
+ redirectURL: string,
927
+ },
928
+
929
+ paypal: {
930
+ clientId: string,
931
+
932
+ clientSecret: string,
933
+
934
+ redirectURL: string,
935
+ },
936
+
937
+ steam: {
938
+ apiKey: string,
939
+
940
+ redirectURL: string,
941
+ },
942
+
943
+ x: {
944
+ clientId: string,
945
+
946
+ clientSecret: string,
947
+
948
+ redirectURL: string,
949
+ },
950
+
951
+ xsuaa: {
952
+ clientId: string,
953
+
954
+ clientSecret: string,
955
+
956
+ domain: string,
957
+
958
+ redirectURL: string,
959
+ },
960
+
961
+ vk: {
962
+ clientId: string,
963
+
964
+ clientSecret: string,
965
+
966
+ redirectURL: string,
967
+ },
968
+
969
+ yandex: {
970
+ clientId: string,
971
+
972
+ clientSecret: string,
973
+
974
+ redirectURL: string,
975
+ },
976
+
977
+ tiktok: {
978
+ clientKey: string,
979
+
980
+ clientSecret: string,
981
+
982
+ redirectURL: string,
983
+ },
984
+
985
+ dropbox: {
986
+ clientId: string,
987
+
988
+ clientSecret: string,
989
+
990
+ redirectURL: string,
991
+ },
992
+
993
+ polar: {
994
+ clientId: string,
995
+
996
+ clientSecret: string,
997
+
998
+ redirectURL: string,
999
+ },
1000
+
1001
+ zitadel: {
1002
+ clientId: string,
1003
+
1004
+ clientSecret: string,
1005
+
1006
+ domain: string,
1007
+
1008
+ redirectURL: string,
1009
+ },
1010
+
1011
+ authentik: {
1012
+ clientId: string,
1013
+
1014
+ clientSecret: string,
1015
+
1016
+ domain: string,
1017
+
1018
+ redirectURL: string,
1019
+ },
1020
+
1021
+ seznam: {
1022
+ clientId: string,
1023
+
1024
+ clientSecret: string,
1025
+
1026
+ redirectURL: string,
1027
+ },
1028
+
1029
+ strava: {
1030
+ clientId: string,
1031
+
1032
+ clientSecret: string,
1033
+
1034
+ redirectURL: string,
1035
+ },
1036
+
1037
+ hubspot: {
1038
+ clientId: string,
1039
+
1040
+ clientSecret: string,
1041
+
1042
+ redirectURL: string,
1043
+ },
1044
+
1045
+ line: {
1046
+ clientId: string,
1047
+
1048
+ clientSecret: string,
1049
+
1050
+ redirectURL: string,
1051
+ },
1052
+
1053
+ atlassian: {
1054
+ clientId: string,
1055
+
1056
+ clientSecret: string,
1057
+
1058
+ redirectURL: string,
1059
+ },
1060
+
1061
+ apple: {
1062
+ teamId: string,
1063
+
1064
+ keyId: string,
1065
+
1066
+ privateKey: string,
1067
+
1068
+ redirectURL: string,
1069
+
1070
+ clientId: string,
1071
+ },
1072
+
1073
+ kick: {
1074
+ clientId: string,
1075
+
1076
+ clientSecret: string,
1077
+
1078
+ redirectURL: string,
1079
+ },
1080
+
1081
+ livechat: {
1082
+ clientId: string,
1083
+
1084
+ clientSecret: string,
1085
+ },
1086
+
1087
+ salesforce: {
1088
+ clientId: string,
1089
+
1090
+ clientSecret: string,
1091
+
1092
+ redirectURL: string,
1093
+
1094
+ baseURL: string,
1095
+
1096
+ scope: string,
1097
+ },
1098
+
1099
+ slack: {
1100
+ clientId: string,
1101
+
1102
+ clientSecret: string,
1103
+
1104
+ redirectURL: string,
1105
+
1106
+ scope: string,
1107
+ },
1108
+
1109
+ heroku: {
1110
+ clientId: string,
1111
+
1112
+ clientSecret: string,
1113
+
1114
+ redirectURL: string,
1115
+
1116
+ scope: string,
1117
+ },
1118
+ },
1119
+
1120
+ "nuxt-site-config": {
1121
+ stack: Array<{
1122
+
1123
+ }>,
1124
+
1125
+ version: string,
1126
+
1127
+ debug: boolean,
1128
+
1129
+ multiTenancy: Array<any>,
1130
+ },
1131
+
1132
+ "nuxt-robots": {
1133
+ version: string,
1134
+
1135
+ isNuxtContentV2: boolean,
1136
+
1137
+ debug: boolean,
1138
+
1139
+ credits: boolean,
1140
+
1141
+ groups: Array<{
1142
+
1143
+ }>,
1144
+
1145
+ sitemap: Array<string>,
1146
+
1147
+ header: boolean,
1148
+
1149
+ robotsEnabledValue: string,
1150
+
1151
+ robotsDisabledValue: string,
1152
+
1153
+ cacheControl: string,
1154
+ },
355
1155
  }
356
1156
  interface PublicRuntimeConfig {
357
1157
  ignis: {
@@ -441,6 +1241,128 @@ declare module 'nuxt/schema' {
441
1241
  trigger: string,
442
1242
  },
443
1243
  },
1244
+
1245
+ neonDB: string,
1246
+
1247
+ neonSSLMode: string,
1248
+
1249
+ neonRawWarning: boolean,
1250
+
1251
+ "nuxt-link-checker": {
1252
+ version: string,
1253
+
1254
+ hasSitemapModule: boolean,
1255
+
1256
+ rootDir: string,
1257
+
1258
+ excludeLinks: Array<any>,
1259
+
1260
+ skipInspections: Array<any>,
1261
+
1262
+ fetchTimeout: number,
1263
+
1264
+ showLiveInspections: boolean,
1265
+
1266
+ fetchRemoteUrls: boolean,
1267
+ },
1268
+
1269
+ "seo-utils": {
1270
+ canonicalQueryWhitelist: Array<string>,
1271
+
1272
+ canonicalLowercase: boolean,
1273
+ },
1274
+
1275
+ content: {
1276
+ wsUrl: string,
1277
+ },
1278
+
1279
+ mdc: {
1280
+ components: {
1281
+ prose: boolean,
1282
+
1283
+ map: any,
1284
+ },
1285
+
1286
+ headings: {
1287
+ anchorLinks: {
1288
+ h1: boolean,
1289
+
1290
+ h2: boolean,
1291
+
1292
+ h3: boolean,
1293
+
1294
+ h4: boolean,
1295
+
1296
+ h5: boolean,
1297
+
1298
+ h6: boolean,
1299
+ },
1300
+ },
1301
+ },
1302
+
1303
+ i18n: {
1304
+ baseUrl: string,
1305
+
1306
+ defaultLocale: string,
1307
+
1308
+ defaultDirection: string,
1309
+
1310
+ strategy: string,
1311
+
1312
+ lazy: boolean,
1313
+
1314
+ rootRedirect: any,
1315
+
1316
+ routesNameSeparator: string,
1317
+
1318
+ defaultLocaleRouteNameSuffix: string,
1319
+
1320
+ skipSettingLocaleOnNavigate: boolean,
1321
+
1322
+ differentDomains: boolean,
1323
+
1324
+ trailingSlash: boolean,
1325
+
1326
+ locales: Array<string>,
1327
+
1328
+ detectBrowserLanguage: {
1329
+ alwaysRedirect: boolean,
1330
+
1331
+ cookieCrossOrigin: boolean,
1332
+
1333
+ cookieDomain: any,
1334
+
1335
+ cookieKey: string,
1336
+
1337
+ cookieSecure: boolean,
1338
+
1339
+ fallbackLocale: string,
1340
+
1341
+ redirectOn: string,
1342
+
1343
+ useCookie: boolean,
1344
+ },
1345
+
1346
+ experimental: {
1347
+ localeDetector: string,
1348
+
1349
+ switchLocalePathLinkSSR: boolean,
1350
+
1351
+ autoImportTranslationFunctions: boolean,
1352
+
1353
+ typedPages: boolean,
1354
+
1355
+ typedOptionsAndMessages: boolean,
1356
+
1357
+ generatedLocaleFilePathFormat: string,
1358
+
1359
+ alternateLinkCanonicalQueries: boolean,
1360
+
1361
+ hmr: boolean,
1362
+ },
1363
+
1364
+ multiDomainLocales: boolean,
1365
+ },
444
1366
  }
445
1367
  }
446
1368
  declare module 'vue' {