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.
- package/.data/content/contents.sqlite +0 -0
- package/.env +3 -3
- package/.nuxt/app.config.mjs +227 -1
- package/.nuxt/components.d.ts +372 -140
- package/.nuxt/content/components.ts +93 -36
- package/.nuxt/dev/index.mjs +7609 -0
- package/.nuxt/dev/index.mjs.map +1 -0
- package/.nuxt/dist/server/client.manifest.json +2 -2
- package/.nuxt/dist/server/client.manifest.mjs +2 -2
- package/.nuxt/eslint.config.d.mts +2 -2
- package/.nuxt/eslint.config.mjs +2 -2
- package/.nuxt/imports.d.ts +59 -42
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/module/@nuxtjs-sitemap.d.ts +8 -8
- package/.nuxt/module/nuxt-robots.d.ts +3 -3
- package/.nuxt/module/nuxt-seo-utils.d.ts +6 -6
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/nitro.json +4 -4
- package/.nuxt/nuxt.d.ts +11 -9
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/schema/nuxt.schema.d.ts +193 -0
- package/.nuxt/schema/nuxt.schema.json +261 -1
- package/.nuxt/tsconfig.json +133 -110
- package/.nuxt/tsconfig.server.json +82 -64
- package/.nuxt/types/app.config.d.ts +227 -1
- package/.nuxt/types/build.d.ts +2 -1
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +320 -264
- package/.nuxt/types/neon.d.ts +136 -34
- package/.nuxt/types/nitro-imports.d.ts +40 -40
- package/.nuxt/types/nitro-routes.d.ts +21 -18
- package/.nuxt/types/plugins.d.ts +38 -33
- package/.nuxt/types/schema.d.ts +110 -36
- package/.nuxt/types/ui.d.ts +1 -1
- package/.nuxt/ui/checkbox-group.ts +1 -1
- package/.nuxt/ui/context-menu.ts +2 -1
- package/.nuxt/ui/dropdown-menu.ts +2 -1
- package/.nuxt/ui/input-menu.ts +2 -2
- package/.nuxt/ui/navigation-menu.ts +43 -34
- package/.nuxt/ui/radio-group.ts +1 -1
- package/.nuxt/ui/select-menu.ts +2 -2
- package/.nuxt/ui/select.ts +2 -2
- package/.nuxt/ui/tooltip.ts +1 -1
- package/.nuxt/ui.css +4 -1
- package/app.vue +2 -2
- package/components/AppFeatureList.vue +5 -0
- package/composables/useValibot.ts +16 -0
- package/composables/useZod.ts +16 -0
- package/content.config.ts +6 -10
- package/features.ts +59 -6
- package/i18n/locales/en.json +2 -0
- package/nuxt.config.ts +15 -5
- package/package.json +20 -16
- package/plugins/errorHandler.ts +26 -0
- package/server/api/neonTest.ts +7 -5
- package/test/config/default.txt +16 -0
- package/test/config/equipment-1-composable.txt +22 -0
- package/test/config/equipment-2-plugins.txt +23 -0
- package/test/config/equipment-all.txt +28 -0
- package/test/config.test.ts +47 -0
- package/test/features/db-neon.txt +3 -0
- package/test/features/db-off.txt +3 -0
- package/test/features/db-supabase.txt +3 -0
- package/test/features/default.txt +3 -0
- package/test/features/disable-core.txt +3 -0
- package/test/features/enable-all.txt +4 -0
- package/test/features/equipment.txt +3 -0
- package/test/features/forms-formkit.txt +3 -0
- package/test/features/forms-off.txt +3 -0
- package/test/features/forms-vueform.txt +3 -0
- package/test/features/ui-nuxt-ui.txt +3 -0
- package/test/features/ui-off.txt +3 -0
- package/test/features/ui-tailwind.txt +4 -0
- package/test/features/validation-off.txt +3 -0
- package/test/features/validation-valibot.txt +4 -0
- package/test/features/validation-zod.txt +4 -0
- package/test/features.test.ts +239 -0
- package/utils/config/content.ts +35 -0
- package/utils/config/vueform.ts +25 -0
- package/utils/consola.ts +23 -13
- package/utils/content.ts +18 -0
- package/utils/tailwind.ts +19 -0
- package/utils/vueform.ts +19 -0
- package/vueform.config.ts +4 -18
- package/.nuxt/component-chunk.mjs +0 -1
- package/.nuxt/dist/server/server.mjs +0 -1
- package/.nuxt/tailwind/postcss.mjs +0 -15
package/.nuxt/types/neon.d.ts
CHANGED
|
@@ -1,35 +1,137 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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.
|
|
3
|
-
const __publicAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.
|
|
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@
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
32
|
-
const defineI18nLocale: typeof import('../../node_modules/.pnpm/@nuxtjs+i18n@9.5.
|
|
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@
|
|
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.
|
|
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.
|
|
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.
|
|
102
|
-
const getPathRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.
|
|
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.
|
|
123
|
-
const getSiteRobotConfig: typeof import('../../node_modules/.pnpm/@nuxtjs+robots@5.2.
|
|
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.
|
|
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.
|
|
137
|
-
const isNeonSuccess: typeof import('../../node_modules/.pnpm/nuxt-neon@0.6.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
203
|
-
const withSiteUrl: typeof import('../../node_modules/.pnpm/nuxt-site-config@3.1.
|
|
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.
|
|
345
|
-
export { defineAppConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.
|
|
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.
|
|
348
|
-
export { count, select, insert, update, del } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.
|
|
349
|
-
export { isNeonSuccess, isNeonError, formatNeonError } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-neon@0.6.
|
|
350
|
-
export { defineSitemapEventHandler } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@
|
|
351
|
-
export { asSitemapUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+sitemap@7.2.10_h3@
|
|
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.
|
|
356
|
-
export { getSiteIndexable } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
357
|
-
export { updateSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
358
|
-
export { useNitroOrigin } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
359
|
-
export { useSiteConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
360
|
-
export { createSitePathResolver, withSiteTrailingSlash, withSiteUrl } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-site-config@3.1.
|
|
361
|
-
export { getPathRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.
|
|
362
|
-
export { getSiteRobotConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/@nuxtjs+robots@5.2.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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.
|
|
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.
|
|
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.
|
|
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>>>>
|