nuxt-ignis 0.3.1 → 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.
Files changed (88) hide show
  1. package/.data/content/contents.sqlite +0 -0
  2. package/.env +3 -3
  3. package/.nuxt/app.config.mjs +227 -1
  4. package/.nuxt/components.d.ts +372 -140
  5. package/.nuxt/content/components.ts +93 -36
  6. package/.nuxt/dev/index.mjs +7609 -0
  7. package/.nuxt/dev/index.mjs.map +1 -0
  8. package/.nuxt/dist/server/client.manifest.json +2 -2
  9. package/.nuxt/dist/server/client.manifest.mjs +2 -2
  10. package/.nuxt/eslint.config.d.mts +2 -2
  11. package/.nuxt/eslint.config.mjs +2 -2
  12. package/.nuxt/imports.d.ts +59 -42
  13. package/.nuxt/manifest/latest.json +1 -1
  14. package/.nuxt/manifest/meta/dev.json +1 -1
  15. package/.nuxt/module/@nuxtjs-sitemap.d.ts +8 -8
  16. package/.nuxt/module/nuxt-robots.d.ts +3 -3
  17. package/.nuxt/module/nuxt-seo-utils.d.ts +6 -6
  18. package/.nuxt/module/nuxt-site-config.d.ts +8 -8
  19. package/.nuxt/nitro.json +4 -4
  20. package/.nuxt/nuxt.d.ts +11 -9
  21. package/.nuxt/nuxt.json +2 -2
  22. package/.nuxt/schema/nuxt.schema.d.ts +193 -0
  23. package/.nuxt/schema/nuxt.schema.json +261 -1
  24. package/.nuxt/tsconfig.json +133 -110
  25. package/.nuxt/tsconfig.server.json +82 -64
  26. package/.nuxt/types/app.config.d.ts +227 -1
  27. package/.nuxt/types/build.d.ts +2 -1
  28. package/.nuxt/types/i18n-plugin.d.ts +2 -2
  29. package/.nuxt/types/imports.d.ts +320 -264
  30. package/.nuxt/types/neon.d.ts +136 -34
  31. package/.nuxt/types/nitro-imports.d.ts +40 -40
  32. package/.nuxt/types/nitro-routes.d.ts +21 -18
  33. package/.nuxt/types/plugins.d.ts +38 -33
  34. package/.nuxt/types/schema.d.ts +110 -36
  35. package/.nuxt/types/ui.d.ts +1 -1
  36. package/.nuxt/ui/checkbox-group.ts +1 -1
  37. package/.nuxt/ui/context-menu.ts +2 -1
  38. package/.nuxt/ui/dropdown-menu.ts +2 -1
  39. package/.nuxt/ui/input-menu.ts +2 -2
  40. package/.nuxt/ui/navigation-menu.ts +43 -34
  41. package/.nuxt/ui/radio-group.ts +1 -1
  42. package/.nuxt/ui/select-menu.ts +2 -2
  43. package/.nuxt/ui/select.ts +2 -2
  44. package/.nuxt/ui/tooltip.ts +1 -1
  45. package/.nuxt/ui.css +4 -1
  46. package/app.vue +2 -2
  47. package/components/AppFeatureList.vue +5 -0
  48. package/composables/useValibot.ts +16 -0
  49. package/composables/useZod.ts +16 -0
  50. package/content.config.ts +6 -10
  51. package/features.ts +59 -6
  52. package/i18n/locales/en.json +2 -0
  53. package/nuxt.config.ts +15 -5
  54. package/package.json +20 -16
  55. package/plugins/errorHandler.ts +26 -0
  56. package/server/api/neonTest.ts +7 -5
  57. package/test/config/default.txt +16 -0
  58. package/test/config/equipment-1-composable.txt +22 -0
  59. package/test/config/equipment-2-plugins.txt +23 -0
  60. package/test/config/equipment-all.txt +28 -0
  61. package/test/config.test.ts +47 -0
  62. package/test/features/db-neon.txt +3 -0
  63. package/test/features/db-off.txt +3 -0
  64. package/test/features/db-supabase.txt +3 -0
  65. package/test/features/default.txt +3 -0
  66. package/test/features/disable-core.txt +3 -0
  67. package/test/features/enable-all.txt +4 -0
  68. package/test/features/equipment.txt +3 -0
  69. package/test/features/forms-formkit.txt +3 -0
  70. package/test/features/forms-off.txt +3 -0
  71. package/test/features/forms-vueform.txt +3 -0
  72. package/test/features/ui-nuxt-ui.txt +3 -0
  73. package/test/features/ui-off.txt +3 -0
  74. package/test/features/ui-tailwind.txt +4 -0
  75. package/test/features/validation-off.txt +3 -0
  76. package/test/features/validation-valibot.txt +4 -0
  77. package/test/features/validation-zod.txt +4 -0
  78. package/test/features.test.ts +239 -0
  79. package/utils/config/content.ts +35 -0
  80. package/utils/config/vueform.ts +25 -0
  81. package/utils/consola.ts +23 -13
  82. package/utils/content.ts +18 -0
  83. package/utils/tailwind.ts +19 -0
  84. package/utils/vueform.ts +19 -0
  85. package/vueform.config.ts +4 -18
  86. package/.nuxt/component-chunk.mjs +0 -1
  87. package/.nuxt/dist/server/server.mjs +0 -1
  88. package/.nuxt/tailwind/postcss.mjs +0 -15
@@ -1,35 +1,137 @@
1
- import type * as types from '../utils/neonTypes'
2
-
3
- declare global {
4
- export type NeonSSLModeOption = types.NeonSSLModeOption
5
- export type NeonError = types.NeonError
6
- export type NeonStatusResult = types.NeonStatusResult
7
-
8
- export type NeonColumnObject = types.NeonColumnObject
9
- export type NeonTableObject = types.NeonTableObject
10
- export type NeonWhereCondition = types.NeonWhereCondition
11
- export type NeonWhereOperator = types.NeonWhereOperator
12
- export type NeonWhereObject = types.NeonWhereObject
13
- export type NeonSortDirection = types.NeonSortDirection
14
- export type NeonOrderObject = types.NeonOrderObject
15
-
16
- export type NeonDataType<T> = types.NeonDataType<T>
17
- export type NeonCountType = types.NeonCountType
18
- export type NeonEditType = types.NeonEditType
19
- export type NeonStatusType = types.NeonStatusType
20
-
21
- export type NeonColumnType = types.NeonColumnType
22
- export type NeonTableType = types.NeonTableType
23
- export type NeonFromType = types.NeonFromType
24
- export type NeonWhereType = types.NeonWhereType
25
- export type NeonOrderType = types.NeonOrderType
26
- export type NeonInsertType = types.NeonInsertType
27
- export type NeonUpdateType = types.NeonUpdateType
28
- export type NeonBodyType = types.NeonBodyType
29
-
30
- export type NeonCountQuery = types.NeonCountQuery
31
- export type NeonSelectQuery = types.NeonSelectQuery
32
- export type NeonInsertQuery = types.NeonInsertQuery
33
- export type NeonUpdateQuery = types.NeonUpdateQuery
34
- export type NeonDeleteQuery = types.NeonDeleteQuery
1
+ // NOTE: when editing this file, please also update exports in `src/utils/neonTypes.ts`
2
+
3
+ /**
4
+ * Possible options for Neon driver SSL mode.
5
+ * @see https://neon.tech/docs/connect/connect-securely#connection-modes
6
+ */
7
+ export type NeonSSLModeOption = 'require' | 'verify-ca' | 'verify-full' | 'none'
8
+
9
+ /** Custom error object to be passed when something goes wrong */
10
+ export type NeonError = {
11
+ name: 'NuxtNeonServerError' | 'NuxtNeonClientError'
12
+ source: string
13
+ code: number
14
+ message: string
15
+ sql?: string
16
+ }
17
+
18
+ /** Result of `neonStatus` health check. */
19
+ export type NeonStatusResult = {
20
+ /**
21
+ * Database name based on `NUXT_PUBLIC_NEON_DB`.
22
+ * Empty unless called with `anonymous = false`.
23
+ */
24
+ database: string
25
+ /**
26
+ * `OK` if database connection can be established,
27
+ * `ERR` if error was thrown by the Neon driver.
28
+ */
29
+ status: 'OK' | 'ERR'
30
+ /**
31
+ * Details, if error is encountered.
32
+ * Empty unless called with `debug = true`.
33
+ */
34
+ debugInfo?: string
35
+ }
36
+
37
+ /** Object for defining column with a table alias */
38
+ export type NeonColumnObject = {
39
+ /** Alias used for table */
40
+ alias?: string
41
+ /** Column name */
42
+ name: string
43
+ }
44
+
45
+ /** Object for defining 2+ tables for JOIN in SELECT. */
46
+ export type NeonTableObject = {
47
+ /** Schema name */
48
+ schema?: string
49
+ /** Table name */
50
+ table: string
51
+ /** Alias used for table */
52
+ alias?: string
53
+ /** Left column (including alias) for JOIN (ignored for 1st table) */
54
+ joinColumn1?: string | NeonColumnObject
55
+ /** Right column (including alias) for JOIN (ignored for 1st table) */
56
+ joinColumn2?: string | NeonColumnObject
57
+ }
58
+
59
+ /** Enum-like type to define operation for column-value pair in WHERE clause */
60
+ export type NeonWhereCondition = '=' | '!=' | '>' | '>=' | '<' | '<=' | 'LIKE'
61
+
62
+ /** Enum-like type to define logical operator between more WHERE clauses */
63
+ export type NeonWhereOperator = 'AND' | 'OR'
64
+
65
+ /** Object for defining a WHERE clause. */
66
+ export type NeonWhereObject = {
67
+ /** Alias used for table */
68
+ alias?: string
69
+ /** Column name */
70
+ column: string
71
+ /** Condition type */
72
+ condition: NeonWhereCondition
73
+ /** Value to be used for filtering */
74
+ value: string
75
+ /** Relation with other clauses (ignored for 1st clause) */
76
+ operator?: NeonWhereOperator
77
+ }
78
+
79
+ /** Enum-like type to define `ascending` or `descending` sorting */
80
+ export type NeonSortDirection = 'ASC' | 'DESC'
81
+
82
+ /** Object for defining an ORDER BY clause. */
83
+ export type NeonOrderObject = {
84
+ /** Column name */
85
+ column: string
86
+ /** Sort direction (`ASC` if not specified) */
87
+ direction?: NeonSortDirection
88
+ }
89
+
90
+ // consolidated types
91
+
92
+ export type NeonDataType<T> = Array<T> | NeonError
93
+ export type NeonCountType = number | NeonError
94
+ export type NeonEditType = string | NeonError
95
+ export type NeonStatusType = NeonStatusResult
96
+
97
+ export type NeonColumnType = string | string[] | NeonColumnObject | NeonColumnObject[]
98
+ export type NeonTableType = string | NeonTableObject
99
+ export type NeonFromType = string | NeonTableObject | NeonTableObject[]
100
+ export type NeonWhereType = string | NeonWhereObject | NeonWhereObject[]
101
+ export type NeonOrderType = string | NeonOrderObject | NeonOrderObject[]
102
+ export type NeonInsertType = Record<string, string> | Record<string, string>[]
103
+ export type NeonUpdateType = Record<string, string>
104
+ export type NeonBodyType = Record<string, unknown>
105
+
106
+ // query objects for SQL wrappers
107
+
108
+ export type NeonCountQuery = {
109
+ from: NeonFromType
110
+ where?: NeonWhereType
111
+ }
112
+
113
+ export type NeonSelectQuery = {
114
+ columns: NeonColumnType
115
+ from: NeonFromType
116
+ where?: NeonWhereType
117
+ order?: NeonOrderType
118
+ limit?: number
119
+ group?: NeonColumnType
120
+ having?: NeonWhereType
121
+ }
122
+
123
+ export type NeonInsertQuery = {
124
+ table: NeonTableType
125
+ values: NeonInsertType
126
+ }
127
+
128
+ export type NeonUpdateQuery = {
129
+ table: NeonTableType
130
+ values: NeonUpdateType
131
+ where?: NeonWhereType
132
+ }
133
+
134
+ export type NeonDeleteQuery = {
135
+ table: NeonTableType
136
+ where?: NeonWhereType
35
137
  }
@@ -1,13 +1,13 @@
1
1
  declare global {
2
- const __buildAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['buildAssetsURL']
3
- const __publicAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['publicAssetsURL']
2
+ const __buildAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['buildAssetsURL']
3
+ const __publicAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['publicAssetsURL']
4
4
  const appendCorsHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendCorsHeaders']
5
5
  const appendCorsPreflightHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendCorsPreflightHeaders']
6
6
  const appendHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendHeader']
7
7
  const appendHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendHeaders']
8
8
  const appendResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendResponseHeader']
9
9
  const appendResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendResponseHeaders']
10
- const asSitemapUrl: typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/asSitemapUrl')['asSitemapUrl']
10
+ const asSitemapUrl: typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/asSitemapUrl')['asSitemapUrl']
11
11
  const assertMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['assertMethod']
12
12
  const cachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['cachedEventHandler']
13
13
  const cachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['cachedFunction']
@@ -15,21 +15,21 @@ declare global {
15
15
  const clearResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['clearResponseHeaders']
16
16
  const clearSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['clearSession']
17
17
  const clearUserSession: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/utils/session')['clearUserSession']
18
- const count: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['count']
18
+ const count: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['count']
19
19
  const createApp: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createApp']
20
20
  const createAppEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createAppEventHandler']
21
21
  const createError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createError']
22
22
  const createEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createEvent']
23
23
  const createEventStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createEventStream']
24
24
  const createRouter: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createRouter']
25
- const createSitePathResolver: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['createSitePathResolver']
25
+ const createSitePathResolver: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['createSitePathResolver']
26
26
  const defaultContentType: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defaultContentType']
27
- const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/config')['defineAppConfig']
27
+ const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/utils/config')['defineAppConfig']
28
28
  const defineCachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['defineCachedEventHandler']
29
29
  const defineCachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['defineCachedFunction']
30
30
  const defineEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineEventHandler']
31
- const defineI18nConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared')['defineI18nConfig']
32
- const defineI18nLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared')['defineI18nLocale']
31
+ const defineI18nConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared')['defineI18nConfig']
32
+ const defineI18nLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared')['defineI18nLocale']
33
33
  const defineLazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineLazyEventHandler']
34
34
  const defineNitroErrorHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/error/utils')['defineNitroErrorHandler']
35
35
  const defineNitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/plugin')['defineNitroPlugin']
@@ -79,17 +79,17 @@ declare global {
79
79
  const defineRequestMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineRequestMiddleware']
80
80
  const defineResponseMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineResponseMiddleware']
81
81
  const defineRouteMeta: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/meta')['defineRouteMeta']
82
- const defineSitemapEventHandler: typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/defineSitemapEventHandler')['defineSitemapEventHandler']
82
+ const defineSitemapEventHandler: typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/defineSitemapEventHandler')['defineSitemapEventHandler']
83
83
  const defineTask: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/task')['defineTask']
84
84
  const defineWebSocket: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineWebSocket']
85
85
  const defineWebSocketHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineWebSocketHandler']
86
86
  const defuReplaceArray: typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/utils/merge')['defuReplaceArray']
87
- const del: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['del']
87
+ const del: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['del']
88
88
  const deleteCookie: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['deleteCookie']
89
89
  const dynamicEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['dynamicEventHandler']
90
90
  const eventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['eventHandler']
91
91
  const fetchWithEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fetchWithEvent']
92
- const formatNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['formatNeonError']
92
+ const formatNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['formatNeonError']
93
93
  const fromNodeMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromNodeMiddleware']
94
94
  const fromPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromPlainHandler']
95
95
  const fromWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromWebHandler']
@@ -98,8 +98,8 @@ declare global {
98
98
  const getHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getHeader']
99
99
  const getHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getHeaders']
100
100
  const getMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getMethod']
101
- const getNeonClient: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/getNeonClient')['getNeonClient']
102
- const getPathRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getPathRobotConfig')['getPathRobotConfig']
101
+ const getNeonClient: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/getNeonClient')['getNeonClient']
102
+ const getPathRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getPathRobotConfig')['getPathRobotConfig']
103
103
  const getProxyRequestHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getProxyRequestHeaders']
104
104
  const getQuery: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getQuery']
105
105
  const getRequestFingerprint: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestFingerprint']
@@ -119,22 +119,22 @@ declare global {
119
119
  const getRouterParam: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRouterParam']
120
120
  const getRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRouterParams']
121
121
  const getSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getSession']
122
- const getSiteIndexable: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/getSiteIndexable')['getSiteIndexable']
123
- const getSiteRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getSiteRobotConfig')['getSiteRobotConfig']
122
+ const getSiteIndexable: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/getSiteIndexable')['getSiteIndexable']
123
+ const getSiteRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getSiteRobotConfig')['getSiteRobotConfig']
124
124
  const getUserSession: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/utils/session')['getUserSession']
125
125
  const getValidatedQuery: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getValidatedQuery']
126
126
  const getValidatedRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getValidatedRouterParams']
127
127
  const handleCacheHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['handleCacheHeaders']
128
128
  const handleCors: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['handleCors']
129
129
  const hashPassword: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/utils/password')['hashPassword']
130
- const insert: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['insert']
130
+ const insert: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['insert']
131
131
  const isCorsOriginAllowed: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isCorsOriginAllowed']
132
132
  const isError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isError']
133
133
  const isEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isEvent']
134
134
  const isEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isEventHandler']
135
135
  const isMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isMethod']
136
- const isNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['isNeonError']
137
- const isNeonSuccess: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['isNeonSuccess']
136
+ const isNeonError: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['isNeonError']
137
+ const isNeonSuccess: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors')['isNeonSuccess']
138
138
  const isPreflightRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isPreflightRequest']
139
139
  const isStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isStream']
140
140
  const isWebResponse: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isWebResponse']
@@ -160,7 +160,7 @@ declare global {
160
160
  const sanitizeStatusCode: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sanitizeStatusCode']
161
161
  const sanitizeStatusMessage: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sanitizeStatusMessage']
162
162
  const sealSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sealSession']
163
- const select: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['select']
163
+ const select: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['select']
164
164
  const send: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['send']
165
165
  const sendError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendError']
166
166
  const sendIterable: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendIterable']
@@ -186,21 +186,21 @@ declare global {
186
186
  const toWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toWebHandler']
187
187
  const toWebRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toWebRequest']
188
188
  const unsealSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['unsealSession']
189
- const update: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['update']
189
+ const update: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL')['update']
190
190
  const updateSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['updateSession']
191
- const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/updateSiteConfig')['updateSiteConfig']
191
+ const updateSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/updateSiteConfig')['updateSiteConfig']
192
192
  const useAppConfig: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/config')['useAppConfig']
193
193
  const useBase: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['useBase']
194
194
  const useEvent: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/context')['useEvent']
195
195
  const useNitroApp: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/app')['useNitroApp']
196
- const useNitroOrigin: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/useNitroOrigin')['useNitroOrigin']
196
+ const useNitroOrigin: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/useNitroOrigin')['useNitroOrigin']
197
197
  const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/config')['useRuntimeConfig']
198
198
  const useSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['useSession']
199
- const useSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/useSiteConfig')['useSiteConfig']
199
+ const useSiteConfig: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/useSiteConfig')['useSiteConfig']
200
200
  const useStorage: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/storage')['useStorage']
201
201
  const verifyPassword: typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/utils/password')['verifyPassword']
202
- const withSiteTrailingSlash: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['withSiteTrailingSlash']
203
- const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['withSiteUrl']
202
+ const withSiteTrailingSlash: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['withSiteTrailingSlash']
203
+ const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/utils')['withSiteUrl']
204
204
  const writeEarlyHints: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['writeEarlyHints']
205
205
  }
206
206
  // for type re-export
@@ -341,25 +341,25 @@ export { useEvent } from 'nitropack/runtime/internal/context';
341
341
  export { defineTask, runTask } from 'nitropack/runtime/internal/task';
342
342
  export { defineNitroErrorHandler } from 'nitropack/runtime/internal/error/utils';
343
343
  export { appendCorsHeaders, appendCorsPreflightHeaders, appendHeader, appendHeaders, appendResponseHeader, appendResponseHeaders, assertMethod, callNodeListener, clearResponseHeaders, clearSession, createApp, createAppEventHandler, createError, createEvent, createEventStream, createRouter, defaultContentType, defineEventHandler, defineLazyEventHandler, defineNodeListener, defineNodeMiddleware, defineRequestMiddleware, defineResponseMiddleware, defineWebSocket, defineWebSocketHandler, deleteCookie, dynamicEventHandler, eventHandler, fetchWithEvent, fromNodeMiddleware, fromPlainHandler, fromWebHandler, getCookie, getHeader, getHeaders, getMethod, getProxyRequestHeaders, getQuery, getRequestFingerprint, getRequestHeader, getRequestHeaders, getRequestHost, getRequestIP, getRequestPath, getRequestProtocol, getRequestURL, getRequestWebStream, getResponseHeader, getResponseHeaders, getResponseStatus, getResponseStatusText, getRouterParam, getRouterParams, getSession, getValidatedQuery, getValidatedRouterParams, handleCacheHeaders, handleCors, isCorsOriginAllowed, isError, isEvent, isEventHandler, isMethod, isPreflightRequest, isStream, isWebResponse, lazyEventHandler, parseCookies, promisifyNodeListener, proxyRequest, readBody, readFormData, readMultipartFormData, readRawBody, readValidatedBody, removeResponseHeader, sanitizeStatusCode, sanitizeStatusMessage, sealSession, send, sendError, sendIterable, sendNoContent, sendProxy, sendRedirect, sendStream, sendWebResponse, serveStatic, setCookie, setHeader, setHeaders, setResponseHeader, setResponseHeaders, setResponseStatus, splitCookiesString, toEventHandler, toNodeListener, toPlainHandler, toWebHandler, toWebRequest, unsealSession, updateSession, useBase, useSession, writeEarlyHints } from 'h3';
344
- export { buildAssetsURL as __buildAssetsURL, publicAssetsURL as __publicAssetsURL } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths';
345
- export { defineAppConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/config';
344
+ export { buildAssetsURL as __buildAssetsURL, publicAssetsURL as __publicAssetsURL } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/utils/paths';
345
+ export { defineAppConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/utils/config';
346
346
  export { defuReplaceArray } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/utils/merge';
347
- export { getNeonClient } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/getNeonClient';
348
- export { count, select, insert, update, del } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL';
349
- export { isNeonSuccess, isNeonError, formatNeonError } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors';
350
- export { defineSitemapEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/defineSitemapEventHandler';
351
- export { asSitemapUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/asSitemapUrl';
347
+ export { getNeonClient } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/getNeonClient';
348
+ export { count, select, insert, update, del } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonSQL';
349
+ export { isNeonSuccess, isNeonError, formatNeonError } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/utils/neonErrors';
350
+ export { defineSitemapEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/defineSitemapEventHandler';
351
+ export { asSitemapUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/composables/asSitemapUrl';
352
352
  export { queryCollectionWithEvent as queryCollection, queryCollectionSearchSectionsWithEvent as queryCollectionSearchSections, queryCollectionNavigationWithEvent as queryCollectionNavigation, queryCollectionItemSurroundingsWithEvent as queryCollectionItemSurroundings } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxt+content@3.5.1_magicast@0.3.5_typescript@5.8.3/node_modules/@nuxt/content/dist/runtime/nitro';
353
353
  export { parseMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/parser';
354
354
  export { stringifyMarkdown } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+mdc@0.17.0_magicast@0.3.5/node_modules/@nuxtjs/mdc/dist/runtime/stringify';
355
- export { defineI18nLocale, defineI18nConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+i18n@9.5.4_@vue+com_da7feb0b3ae47aac624194dfc2786910/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared';
356
- export { getSiteIndexable } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/getSiteIndexable';
357
- export { updateSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/updateSiteConfig';
358
- export { useNitroOrigin } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/useNitroOrigin';
359
- export { useSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/useSiteConfig';
360
- export { createSitePathResolver, withSiteTrailingSlash, withSiteUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/composables/utils';
361
- export { getPathRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getPathRobotConfig';
362
- export { getSiteRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getSiteRobotConfig';
355
+ export { defineI18nLocale, defineI18nConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+i18n@9.5.5_@vue+com_579c2d5abe0704eafcdbb50a0fdc3c2c/node_modules/@nuxtjs/i18n/dist/runtime/composables/shared';
356
+ export { getSiteIndexable } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/getSiteIndexable';
357
+ export { updateSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/updateSiteConfig';
358
+ export { useNitroOrigin } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/useNitroOrigin';
359
+ export { useSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/useSiteConfig';
360
+ export { createSitePathResolver, withSiteTrailingSlash, withSiteUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/composables/utils';
361
+ export { getPathRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getPathRobotConfig';
362
+ export { getSiteRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/composables/getSiteRobotConfig';
363
363
  export { defineOAuthAppleEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/lib/oauth/apple';
364
364
  export { defineOAuthAtlassianEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/lib/oauth/atlassian';
365
365
  export { defineOAuthAuth0EventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/lib/oauth/auth0';
@@ -7,58 +7,61 @@ declare module "nitropack/types" {
7
7
  'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../server/api/neonTest').default>>>>
8
8
  }
9
9
  '/__nuxt_error': {
10
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/handlers/renderer').default>>>>
10
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt@3.17.5_@netlify+blobs@_6b548bbd7b53abdd77f26e7e5d5a4042/node_modules/nuxt/dist/core/runtime/nitro/handlers/renderer').default>>>>
11
+ }
12
+ '/api/_nuxt_icon/:collection': {
13
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxt+icon@1.13.0_magicast@_3dcaa2a356d6f220d30fc0914c6e284d/node_modules/@nuxt/icon/dist/runtime/server/api').default>>>>
11
14
  }
12
15
  '/api/_neon/raw': {
13
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonRaw').default>>>>
16
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonRaw').default>>>>
14
17
  }
15
18
  '/api/_neon/count': {
16
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonCount').default>>>>
19
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonCount').default>>>>
17
20
  }
18
21
  '/api/_neon/select': {
19
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonSelect').default>>>>
22
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonSelect').default>>>>
20
23
  }
21
24
  '/api/_neon/insert': {
22
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonInsert').default>>>>
25
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonInsert').default>>>>
23
26
  }
24
27
  '/api/_neon/update': {
25
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonUpdate').default>>>>
28
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonUpdate').default>>>>
26
29
  }
27
30
  '/api/_neon/delete': {
28
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.0_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonDelete').default>>>>
31
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.2_magicast@0.3.5/node_modules/nuxt-neon/dist/runtime/server/api/neonDelete').default>>>>
29
32
  }
30
33
  '/__site-config__/debug.json': {
31
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_fc9ec4489b75c78db1aed1033cea2b3a/node_modules/nuxt-site-config/dist/runtime/server/routes/__site-config__/debug').default>>>>
34
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.9_magi_f0f38b684fdcd54347382cd1d38f79a6/node_modules/nuxt-site-config/dist/runtime/server/routes/__site-config__/debug').default>>>>
32
35
  }
33
36
  '/robots.txt': {
34
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/routes/robots-txt').default>>>>
37
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/routes/robots-txt').default>>>>
35
38
  }
36
39
  '/__robots__/debug.json': {
37
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/routes/__robots__/debug').default>>>>
40
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/routes/__robots__/debug').default>>>>
38
41
  }
39
42
  '/__robots__/debug-path.json': {
40
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_09575d7e403dce16d6423e011b5a6500/node_modules/@nuxtjs/robots/dist/runtime/server/routes/__robots__/debug-path').default>>>>
43
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.10_magic_bf6ce80accfde49898d34bafd7f6b0b8/node_modules/@nuxtjs/robots/dist/runtime/server/routes/__robots__/debug-path').default>>>>
41
44
  }
42
45
  '/__sitemap__/nuxt-content-urls.json': {
43
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/__sitemap__/nuxt-content-urls-v3').default>>>>
46
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/__sitemap__/nuxt-content-urls-v3').default>>>>
44
47
  }
45
48
  '/__sitemap__/debug.json': {
46
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/__sitemap__/debug').default>>>>
49
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/__sitemap__/debug').default>>>>
47
50
  }
48
51
  '/__sitemap__/style.xsl': {
49
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/sitemap.xsl').default>>>>
52
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/sitemap.xsl').default>>>>
50
53
  }
51
54
  '/sitemap.xml': {
52
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_13ec74af8cc1f89248cc881ec9689707/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/sitemap.xml').default>>>>
55
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@1_7b2db792ac6817e8d23ff2220c8fc0d5/node_modules/@nuxtjs/sitemap/dist/runtime/server/routes/sitemap.xml').default>>>>
53
56
  }
54
57
  '/__link-checker__/inspect': {
55
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/inspect').default>>>>
58
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_43086d7c38f03d707b1b2f292f1c8605/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/inspect').default>>>>
56
59
  }
57
60
  '/__link-checker__/links': {
58
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/links').default>>>>
61
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_43086d7c38f03d707b1b2f292f1c8605/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/links').default>>>>
59
62
  }
60
63
  '/__link-checker__/debug.json': {
61
- 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_d24400d70915ab4f212e0d91f974c51c/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/debug').default>>>>
64
+ 'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-link-checker@4.3.0_mag_43086d7c38f03d707b1b2f292f1c8605/node_modules/nuxt-link-checker/dist/runtime/server/routes/__link-checker__/debug').default>>>>
62
65
  }
63
66
  '/api/_auth/session': {
64
67
  'delete': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt-auth-utils@0.5.20_magicast@0.3.5/node_modules/nuxt-auth-utils/dist/runtime/server/api/session.delete').default>>>>