@strivacity/sdk-nuxt 1.0.1 → 2.0.0-beta.2

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 (44) hide show
  1. package/.nuxt/app-component.mjs +1 -1
  2. package/.nuxt/component-names.mjs +1 -1
  3. package/.nuxt/components.d.ts +110 -92
  4. package/.nuxt/error-component.mjs +1 -1
  5. package/.nuxt/global-polyfills.mjs +4 -0
  6. package/.nuxt/imports.d.ts +7 -6
  7. package/.nuxt/imports.mjs +7 -6
  8. package/.nuxt/layouts.mjs +1 -0
  9. package/.nuxt/manifest/meta/ba93f89b-30bd-4721-919e-d2c0fdc150d7.json +1 -0
  10. package/.nuxt/middleware.mjs +1 -1
  11. package/.nuxt/nuxt.d.ts +1 -2
  12. package/.nuxt/plugins.client.mjs +18 -0
  13. package/.nuxt/plugins.server.mjs +10 -0
  14. package/.nuxt/root-component.mjs +1 -1
  15. package/.nuxt/router.options.mjs +2 -0
  16. package/.nuxt/strivacity-sdk-storage.d.ts +3 -3
  17. package/.nuxt/strivacity-sdk-storage.mjs +1 -1
  18. package/.nuxt/test-component-wrapper.mjs +1 -1
  19. package/.nuxt/types/app-defaults.d.ts +1 -1
  20. package/.nuxt/types/builder-env.d.ts +1 -0
  21. package/.nuxt/types/nitro-config.d.ts +2 -2
  22. package/.nuxt/types/nitro-imports.d.ts +13 -3
  23. package/.nuxt/types/nitro-nuxt.d.ts +5 -0
  24. package/.nuxt/types/nitro-routes.d.ts +6 -3
  25. package/.nuxt/types/plugins.d.ts +10 -11
  26. package/.nuxt/unhead-options.mjs +6 -0
  27. package/CHANGELOG.md +24 -0
  28. package/README.md +432 -22
  29. package/dist/module.d.mts +68 -15
  30. package/dist/module.json +3 -3
  31. package/dist/module.mjs +10 -4
  32. package/dist/module.mjs.map +1 -1
  33. package/dist/runtime/composables.d.ts +3 -3
  34. package/dist/runtime/composables.js +11 -1
  35. package/dist/runtime/login-renderer.vue +163 -0
  36. package/dist/runtime/login-renderer.vue.d.ts +32 -0
  37. package/dist/types.d.mts +15 -1
  38. package/package.json +5 -6
  39. package/.nuxt/plugins/client.mjs +0 -18
  40. package/.nuxt/plugins/server.mjs +0 -10
  41. package/.nuxt/unhead-plugins.mjs +0 -2
  42. package/dist/module.cjs +0 -5
  43. package/dist/module.d.ts +0 -128
  44. package/dist/types.d.ts +0 -1
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/welcome.vue";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/welcome.vue";
@@ -1 +1 @@
1
- export const componentNames = ["NuxtWelcome","NuxtLayout","NuxtErrorBoundary","ClientOnly","DevOnly","ServerPlaceholder","NuxtLink","NuxtLoadingIndicator","NuxtRouteAnnouncer","NuxtImg","NuxtPicture","NuxtPage","NoScript","Link","Base","Title","Meta","Style","Head","Html","Body","NuxtIsland","NuxtRouteAnnouncer"]
1
+ export const componentNames = ["NuxtWelcome","NuxtLayout","NuxtErrorBoundary","ClientOnly","DevOnly","ServerPlaceholder","NuxtLink","NuxtLoadingIndicator","NuxtTime","NuxtRouteAnnouncer","NuxtImg","NuxtPicture","StyLoginRenderer","NuxtPage","NoScript","Link","Base","Title","Meta","Style","Head","Html","Body","NuxtIsland","NuxtRouteAnnouncer"]
@@ -1,104 +1,122 @@
1
1
 
2
2
  import type { DefineComponent, SlotsType } from 'vue'
3
3
  type IslandComponent<T extends DefineComponent> = T & DefineComponent<{}, {refresh: () => Promise<void>}, {}, {}, {}, {}, {}, {}, {}, {}, {}, {}, SlotsType<{ fallback: { error: unknown } }>>
4
+ type HydrationStrategies = {
5
+ hydrateOnVisible?: IntersectionObserverInit | true
6
+ hydrateOnIdle?: number | true
7
+ hydrateOnInteraction?: keyof HTMLElementEventMap | Array<keyof HTMLElementEventMap> | true
8
+ hydrateOnMediaQuery?: string
9
+ hydrateAfter?: number
10
+ hydrateWhen?: boolean
11
+ hydrateNever?: true
12
+ }
13
+ type LazyComponent<T> = (T & DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }>)
4
14
  interface _GlobalComponents {
5
- 'NuxtWelcome': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/welcome.vue")['default']
6
- 'NuxtLayout': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
7
- 'NuxtErrorBoundary': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
8
- 'ClientOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/client-only")['default']
9
- 'DevOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/dev-only")['default']
10
- 'ServerPlaceholder': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']
11
- 'NuxtLink': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-link")['default']
12
- 'NuxtLoadingIndicator': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
13
- 'NuxtRouteAnnouncer': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
14
- 'NuxtImg': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
15
- 'NuxtPicture': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
16
- 'NuxtPage': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
17
- 'NoScript': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['NoScript']
18
- 'Link': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Link']
19
- 'Base': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Base']
20
- 'Title': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Title']
21
- 'Meta': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Meta']
22
- 'Style': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Style']
23
- 'Head': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Head']
24
- 'Html': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Html']
25
- 'Body': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Body']
26
- 'NuxtIsland': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-island")['default']
27
- 'NuxtRouteAnnouncer': IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
28
- 'LazyNuxtWelcome': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/welcome.vue")['default']
29
- 'LazyNuxtLayout': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
30
- 'LazyNuxtErrorBoundary': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
31
- 'LazyClientOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/client-only")['default']
32
- 'LazyDevOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/dev-only")['default']
33
- 'LazyServerPlaceholder': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']
34
- 'LazyNuxtLink': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-link")['default']
35
- 'LazyNuxtLoadingIndicator': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
36
- 'LazyNuxtRouteAnnouncer': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
37
- 'LazyNuxtImg': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
38
- 'LazyNuxtPicture': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
39
- 'LazyNuxtPage': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
40
- 'LazyNoScript': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['NoScript']
41
- 'LazyLink': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Link']
42
- 'LazyBase': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Base']
43
- 'LazyTitle': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Title']
44
- 'LazyMeta': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Meta']
45
- 'LazyStyle': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Style']
46
- 'LazyHead': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Head']
47
- 'LazyHtml': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Html']
48
- 'LazyBody': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Body']
49
- 'LazyNuxtIsland': typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-island")['default']
50
- 'LazyNuxtRouteAnnouncer': IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
15
+ 'NuxtWelcome': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/welcome.vue")['default']
16
+ 'NuxtLayout': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
17
+ 'NuxtErrorBoundary': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
18
+ 'ClientOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/client-only")['default']
19
+ 'DevOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/dev-only")['default']
20
+ 'ServerPlaceholder': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']
21
+ 'NuxtLink': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-link")['default']
22
+ 'NuxtLoadingIndicator': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
23
+ 'NuxtTime': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
24
+ 'NuxtRouteAnnouncer': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
25
+ 'NuxtImg': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
26
+ 'NuxtPicture': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
27
+ 'StyLoginRenderer': typeof import("../src/runtime/login-renderer.vue")['default']
28
+ 'NuxtPage': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
29
+ 'NoScript': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['NoScript']
30
+ 'Link': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Link']
31
+ 'Base': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Base']
32
+ 'Title': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Title']
33
+ 'Meta': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Meta']
34
+ 'Style': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Style']
35
+ 'Head': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Head']
36
+ 'Html': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Html']
37
+ 'Body': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Body']
38
+ 'NuxtIsland': typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-island")['default']
39
+ 'NuxtRouteAnnouncer': IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
40
+ 'LazyNuxtWelcome': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
41
+ 'LazyNuxtLayout': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
42
+ 'LazyNuxtErrorBoundary': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
43
+ 'LazyClientOnly': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/client-only")['default']>
44
+ 'LazyDevOnly': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/dev-only")['default']>
45
+ 'LazyServerPlaceholder': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
46
+ 'LazyNuxtLink': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
47
+ 'LazyNuxtLoadingIndicator': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
48
+ 'LazyNuxtTime': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
49
+ 'LazyNuxtRouteAnnouncer': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
50
+ 'LazyNuxtImg': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
51
+ 'LazyNuxtPicture': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
52
+ 'LazyStyLoginRenderer': LazyComponent<typeof import("../src/runtime/login-renderer.vue")['default']>
53
+ 'LazyNuxtPage': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
54
+ 'LazyNoScript': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
55
+ 'LazyLink': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Link']>
56
+ 'LazyBase': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Base']>
57
+ 'LazyTitle': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Title']>
58
+ 'LazyMeta': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Meta']>
59
+ 'LazyStyle': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Style']>
60
+ 'LazyHead': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Head']>
61
+ 'LazyHtml': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Html']>
62
+ 'LazyBody': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Body']>
63
+ 'LazyNuxtIsland': LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
64
+ 'LazyNuxtRouteAnnouncer': LazyComponent<IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>>
51
65
  }
52
66
 
53
67
  declare module 'vue' {
54
68
  export interface GlobalComponents extends _GlobalComponents { }
55
69
  }
56
70
 
57
- export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/welcome.vue")['default']
58
- export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
59
- export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
60
- export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/client-only")['default']
61
- export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/dev-only")['default']
62
- export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']
63
- export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-link")['default']
64
- export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
65
- export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
66
- export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
67
- export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
68
- export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
69
- export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['NoScript']
70
- export const Link: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Link']
71
- export const Base: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Base']
72
- export const Title: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Title']
73
- export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Meta']
74
- export const Style: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Style']
75
- export const Head: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Head']
76
- export const Html: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Html']
77
- export const Body: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Body']
78
- export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-island")['default']
79
- export const NuxtRouteAnnouncer: IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
80
- export const LazyNuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/welcome.vue")['default']
81
- export const LazyNuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
82
- export const LazyNuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-error-boundary")['default']
83
- export const LazyClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/client-only")['default']
84
- export const LazyDevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/dev-only")['default']
85
- export const LazyServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']
86
- export const LazyNuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-link")['default']
87
- export const LazyNuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
88
- export const LazyNuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
89
- export const LazyNuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
90
- export const LazyNuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
91
- export const LazyNuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
92
- export const LazyNoScript: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['NoScript']
93
- export const LazyLink: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Link']
94
- export const LazyBase: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Base']
95
- export const LazyTitle: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Title']
96
- export const LazyMeta: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Meta']
97
- export const LazyStyle: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Style']
98
- export const LazyHead: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Head']
99
- export const LazyHtml: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Html']
100
- export const LazyBody: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/head/runtime/components")['Body']
101
- export const LazyNuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-island")['default']
102
- export const LazyNuxtRouteAnnouncer: IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
71
+ export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/welcome.vue")['default']
72
+ export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
73
+ export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
74
+ export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/client-only")['default']
75
+ export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/dev-only")['default']
76
+ export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']
77
+ export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-link")['default']
78
+ export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
79
+ export const NuxtTime: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
80
+ export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
81
+ export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
82
+ export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
83
+ export const StyLoginRenderer: typeof import("../src/runtime/login-renderer.vue")['default']
84
+ export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
85
+ export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['NoScript']
86
+ export const Link: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Link']
87
+ export const Base: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Base']
88
+ export const Title: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Title']
89
+ export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Meta']
90
+ export const Style: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Style']
91
+ export const Head: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Head']
92
+ export const Html: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Html']
93
+ export const Body: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Body']
94
+ export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-island")['default']
95
+ export const NuxtRouteAnnouncer: IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
96
+ export const LazyNuxtWelcome: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
97
+ export const LazyNuxtLayout: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
98
+ export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
99
+ export const LazyClientOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/client-only")['default']>
100
+ export const LazyDevOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/dev-only")['default']>
101
+ export const LazyServerPlaceholder: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
102
+ export const LazyNuxtLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
103
+ export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
104
+ export const LazyNuxtTime: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
105
+ export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
106
+ export const LazyNuxtImg: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
107
+ export const LazyNuxtPicture: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
108
+ export const LazyStyLoginRenderer: LazyComponent<typeof import("../src/runtime/login-renderer.vue")['default']>
109
+ export const LazyNuxtPage: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
110
+ export const LazyNoScript: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
111
+ export const LazyLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Link']>
112
+ export const LazyBase: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Base']>
113
+ export const LazyTitle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Title']>
114
+ export const LazyMeta: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Meta']>
115
+ export const LazyStyle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Style']>
116
+ export const LazyHead: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Head']>
117
+ export const LazyHtml: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Html']>
118
+ export const LazyBody: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/components")['Body']>
119
+ export const LazyNuxtIsland: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
120
+ export const LazyNuxtRouteAnnouncer: LazyComponent<IslandComponent<typeof import("../../../node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/server-placeholder")['default']>>
103
121
 
104
122
  export const componentNames: string[]
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-error-page.vue";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-error-page.vue";
@@ -0,0 +1,4 @@
1
+
2
+ if (!("global" in globalThis)) {
3
+ globalThis.global = globalThis;
4
+ }
@@ -1,9 +1,7 @@
1
- export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptCrisp } from '#app/composables/script-stubs';
1
+ export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics } from '#app/composables/script-stubs';
2
2
  export { isVue2, isVue3 } from 'vue-demi';
3
3
  export { defineNuxtLink } from '#app/components/nuxt-link';
4
4
  export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
5
- export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
6
- export { setInterval } from '#app/compat/interval';
7
5
  export { useAppConfig, updateAppConfig } from '#app/config';
8
6
  export { defineNuxtComponent } from '#app/composables/component';
9
7
  export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
@@ -13,7 +11,7 @@ export { useState, clearNuxtState } from '#app/composables/state';
13
11
  export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
14
12
  export { useFetch, useLazyFetch } from '#app/composables/fetch';
15
13
  export { useCookie, refreshCookie } from '#app/composables/cookie';
16
- export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
14
+ export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useResponseHeader, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
17
15
  export { onNuxtReady } from '#app/composables/ready';
18
16
  export { preloadComponents, prefetchComponents, preloadRouteComponents } from '#app/composables/preload';
19
17
  export { abortNavigation, addRouteMiddleware, defineNuxtRouteMiddleware, setPageLayout, navigateTo, useRoute, useRouter, onBeforeRouteLeave, onBeforeRouteUpdate } from '#app/composables/router';
@@ -24,6 +22,9 @@ export { reloadNuxtApp } from '#app/composables/chunk';
24
22
  export { useRequestURL } from '#app/composables/url';
25
23
  export { usePreviewMode } from '#app/composables/preview';
26
24
  export { useRouteAnnouncer } from '#app/composables/route-announcer';
27
- export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, defineModel, defineOptions, defineSlots, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode } from 'vue';
28
- export { injectHead, useHead, useSeoMeta, useHeadSafe, useServerHead, useServerSeoMeta, useServerHeadSafe } from '@unhead/vue';
25
+ export { useRuntimeHook } from '#app/composables/runtime-hook';
26
+ export { useHead, useHeadSafe, useServerHeadSafe, useServerHead, useSeoMeta, useServerSeoMeta, injectHead } from '#app/composables/head';
27
+ export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue';
28
+ export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
29
+ export { setInterval } from '#app/compat/interval';
29
30
  export { useStrivacity } from '../src/runtime/composables';
package/.nuxt/imports.mjs CHANGED
@@ -1,9 +1,7 @@
1
- export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptCrisp } from '#app/composables/script-stubs';
1
+ export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics } from '#app/composables/script-stubs';
2
2
  export { isVue2, isVue3 } from 'vue-demi';
3
3
  export { defineNuxtLink } from '#app/components/nuxt-link';
4
4
  export { useNuxtApp, tryUseNuxtApp, defineNuxtPlugin, definePayloadPlugin, useRuntimeConfig, defineAppConfig } from '#app/nuxt';
5
- export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
6
- export { setInterval } from '#app/compat/interval';
7
5
  export { useAppConfig, updateAppConfig } from '#app/config';
8
6
  export { defineNuxtComponent } from '#app/composables/component';
9
7
  export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
@@ -13,7 +11,7 @@ export { useState, clearNuxtState } from '#app/composables/state';
13
11
  export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
14
12
  export { useFetch, useLazyFetch } from '#app/composables/fetch';
15
13
  export { useCookie, refreshCookie } from '#app/composables/cookie';
16
- export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
14
+ export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useResponseHeader, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
17
15
  export { onNuxtReady } from '#app/composables/ready';
18
16
  export { preloadComponents, prefetchComponents, preloadRouteComponents } from '#app/composables/preload';
19
17
  export { abortNavigation, addRouteMiddleware, defineNuxtRouteMiddleware, setPageLayout, navigateTo, useRoute, useRouter, onBeforeRouteLeave, onBeforeRouteUpdate } from '#app/composables/router';
@@ -24,7 +22,10 @@ export { reloadNuxtApp } from '#app/composables/chunk';
24
22
  export { useRequestURL } from '#app/composables/url';
25
23
  export { usePreviewMode } from '#app/composables/preview';
26
24
  export { useRouteAnnouncer } from '#app/composables/route-announcer';
27
- export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, defineModel, defineOptions, defineSlots, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot } from 'vue';
28
- export { injectHead, useHead, useSeoMeta, useHeadSafe, useServerHead, useServerSeoMeta, useServerHeadSafe } from '@unhead/vue';
25
+ export { useRuntimeHook } from '#app/composables/runtime-hook';
26
+ export { useHead, useHeadSafe, useServerHeadSafe, useServerHead, useSeoMeta, useServerSeoMeta, injectHead } from '#app/composables/head';
27
+ export { withCtx, withDirectives, withKeys, withMemo, withModifiers, withScopeId, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onServerPrefetch, onUnmounted, onUpdated, computed, customRef, isProxy, isReactive, isReadonly, isRef, markRaw, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, watch, watchEffect, watchPostEffect, watchSyncEffect, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, mergeModels, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot } from 'vue';
28
+ export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
29
+ export { setInterval } from '#app/compat/interval';
29
30
  export { useStrivacity } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables';
30
31
  if (import.meta.dev) { console.warn("[nuxt] `#imports` should be transformed with real imports. There seems to be something wrong with the imports plugin.") }
package/.nuxt/layouts.mjs CHANGED
@@ -1 +1,2 @@
1
+ import { defineAsyncComponent } from 'vue'
1
2
  export default {}
@@ -1,4 +1,4 @@
1
- import manifest_45route_45rule from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/middleware/manifest-route-rule.js";
1
+ import manifest_45route_45rule from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/middleware/manifest-route-rule.js";
2
2
  export const globalMiddleware = [
3
3
  manifest_45route_45rule
4
4
  ]
package/.nuxt/nuxt.d.ts CHANGED
@@ -1,15 +1,14 @@
1
- // Generated by nuxi
2
1
  /// <reference types="./src" />
3
2
  /// <reference types="@strivacity/sdk-nuxt" />
4
3
  /// <reference types="@nuxt/devtools" />
5
4
  /// <reference types="@nuxt/telemetry" />
5
+ /// <reference path="types/builder-env.d.ts" />
6
6
  /// <reference types="nuxt" />
7
7
  /// <reference path="types/app-defaults.d.ts" />
8
8
  /// <reference path="types/plugins.d.ts" />
9
9
  /// <reference path="types/build.d.ts" />
10
10
  /// <reference path="types/schema.d.ts" />
11
11
  /// <reference path="types/app.config.d.ts" />
12
- /// <reference types="@nuxt/schema/builder-env" />
13
12
  /// <reference path="strivacity-sdk-storage.d.ts" />
14
13
  /// <reference path="types/middleware.d.ts" />
15
14
  /// <reference path="components.d.ts" />
@@ -0,0 +1,18 @@
1
+ import revive_payload_client_4LRrHramF4GGukugwc2hSOdT6_Dhc6ggod_nXLWZHhI from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/revive-payload.client.js";
2
+ import unhead_RXKwlyEo_kpRjutsAGjfwkxUaP_wpKfrpymef72a7kY from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/plugins/unhead.js";
3
+ import router_wT1o3MvsUH7Hon_xTyaVA9tB_j_Xc12v5scMM4Zb8Ak from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/router.js";
4
+ import payload_client_70jPKqMwP5LdKt6426p3pUbiW8Yh9Q17Z_DMqSqCdO8 from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/payload.client.js";
5
+ import navigation_repaint_client_eBtqQV3Uhc8sNQROYcjSeG_8K5cYxc1fkW0p_70bdvQ from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js";
6
+ import check_outdated_build_client_nAy_mbEBplnU_lAHJ3cEFbQ5OX4K23y0wwc9eP1_1fE from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js";
7
+ import chunk_reload_client_UgSdmTpKv8_SHJxC_LaBm7VJaSZ77xIt1vdsT5EbvUk from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/chunk-reload.client.js";
8
+ import components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4 from "/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/.nuxt/components.plugin.mjs";
9
+ export default [
10
+ revive_payload_client_4LRrHramF4GGukugwc2hSOdT6_Dhc6ggod_nXLWZHhI,
11
+ unhead_RXKwlyEo_kpRjutsAGjfwkxUaP_wpKfrpymef72a7kY,
12
+ router_wT1o3MvsUH7Hon_xTyaVA9tB_j_Xc12v5scMM4Zb8Ak,
13
+ payload_client_70jPKqMwP5LdKt6426p3pUbiW8Yh9Q17Z_DMqSqCdO8,
14
+ navigation_repaint_client_eBtqQV3Uhc8sNQROYcjSeG_8K5cYxc1fkW0p_70bdvQ,
15
+ check_outdated_build_client_nAy_mbEBplnU_lAHJ3cEFbQ5OX4K23y0wwc9eP1_1fE,
16
+ chunk_reload_client_UgSdmTpKv8_SHJxC_LaBm7VJaSZ77xIt1vdsT5EbvUk,
17
+ components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4
18
+ ]
@@ -0,0 +1,10 @@
1
+ import unhead_RXKwlyEo_kpRjutsAGjfwkxUaP_wpKfrpymef72a7kY from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/head/runtime/plugins/unhead.js";
2
+ import router_wT1o3MvsUH7Hon_xTyaVA9tB_j_Xc12v5scMM4Zb8Ak from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/router.js";
3
+ import revive_payload_server_JLz1bn4lWocKTqxpv1WEAyNy10jPXsFyGCUCz2FpDrY from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/plugins/revive-payload.server.js";
4
+ import components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4 from "/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/.nuxt/components.plugin.mjs";
5
+ export default [
6
+ unhead_RXKwlyEo_kpRjutsAGjfwkxUaP_wpKfrpymef72a7kY,
7
+ router_wT1o3MvsUH7Hon_xTyaVA9tB_j_Xc12v5scMM4Zb8Ak,
8
+ revive_payload_server_JLz1bn4lWocKTqxpv1WEAyNy10jPXsFyGCUCz2FpDrY,
9
+ components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4
10
+ ]
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.13.2_@parcel+watcher@2.4.1_@types+node@20.14.14_encoding@0.1.13_eslint@8.57.0_ioredis@_75nr233rh375h7xk6r7jtwnphe/node_modules/nuxt/dist/app/components/nuxt-root.vue";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.17.5_@capacitor+preferences@7.0.1_@capacitor+core@7.4.1__@parcel+watcher@2.4.1_@types+_xnsjdrbl5oy7hr3kak5ugxarny/node_modules/nuxt/dist/app/components/nuxt-root.vue";
@@ -0,0 +1,2 @@
1
+ export const hashMode = false
2
+ export default {}