@strivacity/sdk-nuxt 3.0.2 → 4.0.0-beta.0

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 (144) hide show
  1. package/.nuxt/app-component.mjs +1 -1
  2. package/.nuxt/app.config.mjs +21 -0
  3. package/.nuxt/component-names.mjs +1 -1
  4. package/.nuxt/components.d.ts +48 -48
  5. package/.nuxt/components.islands.mjs +6 -2
  6. package/.nuxt/error-component.mjs +1 -1
  7. package/.nuxt/fetch.d.ts +1 -0
  8. package/.nuxt/fetch.mjs +4 -3
  9. package/.nuxt/imports.d.ts +15 -5
  10. package/.nuxt/imports.mjs +15 -5
  11. package/.nuxt/island-renderer.mjs +2 -0
  12. package/.nuxt/middleware.mjs +3 -1
  13. package/.nuxt/nuxt.config.mjs +103 -0
  14. package/.nuxt/nuxt.d.ts +3 -4
  15. package/.nuxt/nuxt.node.d.ts +4 -4
  16. package/.nuxt/nuxt.shared.d.ts +3 -1
  17. package/.nuxt/plugins.client.mjs +10 -14
  18. package/.nuxt/plugins.server.mjs +6 -6
  19. package/.nuxt/root-component.mjs +1 -1
  20. package/.nuxt/route-rules.mjs +22 -0
  21. package/.nuxt/test-component-wrapper.mjs +1 -1
  22. package/.nuxt/tsconfig.app.json +211 -0
  23. package/.nuxt/tsconfig.json +212 -0
  24. package/.nuxt/tsconfig.node.json +117 -0
  25. package/.nuxt/tsconfig.server.json +161 -0
  26. package/.nuxt/tsconfig.shared.json +165 -0
  27. package/.nuxt/types/app.config.d.ts +35 -0
  28. package/.nuxt/types/components.d.ts +48 -48
  29. package/.nuxt/types/imports.d.ts +1 -1
  30. package/.nuxt/types/layouts.d.ts +16 -0
  31. package/.nuxt/types/modules.d.ts +20 -20
  32. package/.nuxt/types/nitro-imports.d.ts +9 -4
  33. package/.nuxt/types/nitro-layouts.d.ts +17 -0
  34. package/.nuxt/types/nitro-nuxt.d.ts +19 -5
  35. package/.nuxt/types/nitro-routes.d.ts +25 -1
  36. package/.nuxt/types/plugins.d.ts +8 -9
  37. package/.nuxt/types/runtime-config.d.ts +6 -12
  38. package/.nuxt/types/shared-app.config.d.ts +28 -0
  39. package/.nuxt/types/shared-imports.d.ts +2 -0
  40. package/.nuxt/unhead-options.mjs +2 -1
  41. package/.nuxt/unhead.config.mjs +1 -0
  42. package/CHANGELOG.md +16 -14
  43. package/README.md +1577 -406
  44. package/build.config.ts +5 -0
  45. package/dist/module.d.mts +3 -193
  46. package/dist/module.json +2 -2
  47. package/dist/module.mjs +78 -57
  48. package/dist/module.mjs.map +1 -1
  49. package/dist/runtime/composables/use-native-login-context.d.ts +10 -0
  50. package/dist/runtime/composables/use-native-login-context.js +9 -0
  51. package/dist/runtime/composables/use-native-login.d.ts +10 -0
  52. package/dist/runtime/composables/use-native-login.js +143 -0
  53. package/dist/runtime/composables/use-session.d.ts +8 -0
  54. package/dist/runtime/composables/use-session.js +2 -0
  55. package/dist/runtime/composables/use-strivacity.d.ts +9 -0
  56. package/dist/runtime/composables/use-strivacity.js +77 -0
  57. package/dist/runtime/middleware/auth.server.d.ts +2 -0
  58. package/dist/runtime/middleware/auth.server.js +12 -0
  59. package/dist/runtime/server/api/auth/backchannel-logout.get.d.ts +2 -0
  60. package/dist/runtime/server/api/auth/backchannel-logout.get.js +2 -0
  61. package/dist/runtime/server/api/auth/callback.get.d.ts +2 -0
  62. package/dist/runtime/server/api/auth/callback.get.js +2 -0
  63. package/dist/runtime/server/api/auth/entry.get.d.ts +2 -0
  64. package/dist/runtime/server/api/auth/entry.get.js +2 -0
  65. package/dist/runtime/server/api/auth/login.get.d.ts +2 -0
  66. package/dist/runtime/server/api/auth/login.get.js +2 -0
  67. package/dist/runtime/server/api/auth/logout.get.d.ts +2 -0
  68. package/dist/runtime/server/api/auth/logout.get.js +2 -0
  69. package/dist/runtime/server/api/auth/refresh.get.d.ts +2 -0
  70. package/dist/runtime/server/api/auth/refresh.get.js +2 -0
  71. package/dist/runtime/server/api/auth/register.get.d.ts +2 -0
  72. package/dist/runtime/server/api/auth/register.get.js +2 -0
  73. package/dist/runtime/server/api/auth/revoke.get.d.ts +2 -0
  74. package/dist/runtime/server/api/auth/revoke.get.js +2 -0
  75. package/dist/runtime/server/composables/use-strivacity.d.ts +2 -0
  76. package/dist/runtime/server/composables/use-strivacity.js +9 -0
  77. package/dist/runtime/server/plugins/auth.server.d.ts +10 -0
  78. package/dist/runtime/server/plugins/auth.server.js +66 -0
  79. package/dist/runtime/server/utils/helpers.d.ts +18 -0
  80. package/dist/runtime/server/utils/helpers.js +39 -0
  81. package/dist/runtime/storages/core.d.ts +1 -0
  82. package/dist/runtime/storages/core.js +13 -0
  83. package/dist/runtime/storages/default.d.ts +21 -0
  84. package/dist/runtime/storages/default.js +71 -0
  85. package/dist/runtime/types.d.ts +219 -0
  86. package/dist/runtime/types.js +1 -0
  87. package/dist/runtime/utils/core.d.ts +1 -0
  88. package/dist/runtime/utils/core.js +64 -0
  89. package/dist/runtime/utils/noop.d.ts +1 -0
  90. package/dist/runtime/utils/noop.js +3 -0
  91. package/dist/types.d.mts +4 -16
  92. package/eslint.config.mjs +5 -0
  93. package/nuxt.config.ts +5 -0
  94. package/package.json +31 -5
  95. package/project.json +44 -0
  96. package/src/module.ts +107 -0
  97. package/src/runtime/composables/use-native-login-context.ts +20 -0
  98. package/src/runtime/composables/use-native-login.ts +182 -0
  99. package/src/runtime/composables/use-session.ts +10 -0
  100. package/src/runtime/composables/use-strivacity.ts +95 -0
  101. package/src/runtime/middleware/auth.server.ts +16 -0
  102. package/src/runtime/server/api/auth/backchannel-logout.get.ts +3 -0
  103. package/src/runtime/server/api/auth/callback.get.ts +3 -0
  104. package/src/runtime/server/api/auth/entry.get.ts +3 -0
  105. package/src/runtime/server/api/auth/login.get.ts +3 -0
  106. package/src/runtime/server/api/auth/logout.get.ts +3 -0
  107. package/src/runtime/server/api/auth/refresh.get.ts +3 -0
  108. package/src/runtime/server/api/auth/register.get.ts +3 -0
  109. package/src/runtime/server/api/auth/revoke.get.ts +3 -0
  110. package/src/runtime/server/composables/use-strivacity.ts +13 -0
  111. package/src/runtime/server/plugins/auth.server.ts +84 -0
  112. package/src/runtime/server/utils/helpers.ts +67 -0
  113. package/src/runtime/storages/core.ts +13 -0
  114. package/src/runtime/storages/default.ts +111 -0
  115. package/src/runtime/types.ts +289 -0
  116. package/src/runtime/utils/core.ts +64 -0
  117. package/src/runtime/utils/noop.ts +3 -0
  118. package/testing/stubs/app.ts +6 -0
  119. package/testing/stubs/imports.ts +19 -0
  120. package/testing/stubs/options-httpClient.ts +8 -0
  121. package/testing/stubs/options-logging.ts +8 -0
  122. package/testing/stubs/options-stateStorage.ts +8 -0
  123. package/testing/stubs/options-storage.ts +8 -0
  124. package/testing/tests/composables.spec.ts +512 -0
  125. package/testing/tests/server/helpers.spec.ts +86 -0
  126. package/testing/tests/server/plugin.spec.ts +138 -0
  127. package/testing/tests/server/routes.spec.ts +34 -0
  128. package/testing/tests/server/use-strivacity.spec.ts +22 -0
  129. package/testing/tests/storages-default.spec.ts +151 -0
  130. package/testing/tests/storages.spec.ts +16 -0
  131. package/testing/tests/utils.spec.ts +10 -0
  132. package/testing/utils/common.ts +33 -0
  133. package/testing/utils/http.ts +58 -0
  134. package/tsconfig.json +3 -0
  135. package/vite.config.mts +20 -0
  136. package/.nuxt/strivacity-sdk-logging.d.ts +0 -13
  137. package/.nuxt/strivacity-sdk-logging.mjs +0 -1
  138. package/.nuxt/strivacity-sdk-storage.d.ts +0 -10
  139. package/.nuxt/strivacity-sdk-storage.mjs +0 -1
  140. package/dist/runtime/composables.d.ts +0 -12
  141. package/dist/runtime/composables.js +0 -83
  142. package/dist/runtime/login-renderer.vue +0 -174
  143. package/dist/runtime/login-renderer.vue.d.ts +0 -39
  144. /package/.nuxt/manifest/meta/{b47927c0-b36b-4d2c-b650-8d55c5ec676a.json → cb11df97-b0c9-4a91-9d4b-60c25c918599.json} +0 -0
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/welcome.vue";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/welcome.vue";
@@ -0,0 +1,21 @@
1
+
2
+ import { defuFn } from 'defu'
3
+
4
+ const inlineConfig = {
5
+ "nuxt": {}
6
+ }
7
+
8
+ /** client **/
9
+ import { _replaceAppConfig } from '#app/config'
10
+
11
+ // Vite - webpack is handled directly in #app/config
12
+ if (import.meta.dev && !import.meta.nitro && import.meta.hot) {
13
+ import.meta.hot.accept((newModule) => {
14
+ _replaceAppConfig(newModule.default)
15
+ })
16
+ }
17
+ /** client-end **/
18
+
19
+
20
+
21
+ export default /*@__PURE__*/ defuFn(inlineConfig)
@@ -1 +1 @@
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"]
1
+ export const componentNames = ["NuxtWelcome","NuxtLayout","NuxtErrorBoundary","ClientOnly","DevOnly","ServerPlaceholder","NuxtLink","NuxtLoadingIndicator","NuxtTime","NuxtRouteAnnouncer","NuxtAnnouncer","NuxtImg","NuxtPicture","NuxtPage","NoScript","Link","Base","Title","Meta","Style","Head","Html","Body","NuxtIsland"]
@@ -14,53 +14,53 @@ type HydrationStrategies = {
14
14
  type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
15
15
 
16
16
 
17
- export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/welcome.vue")['default']
18
- export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
19
- export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
20
- export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/client-only")['default']
21
- export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/dev-only")['default']
22
- export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/server-placeholder")['default']
23
- export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-link")['default']
24
- export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
25
- export const NuxtTime: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
26
- export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
27
- export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
28
- export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
29
- export const StyLoginRenderer: typeof import("../src/runtime/login-renderer.vue")['default']
30
- export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
31
- export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['NoScript']
32
- export const Link: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Link']
33
- export const Base: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Base']
34
- export const Title: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Title']
35
- export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Meta']
36
- export const Style: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Style']
37
- export const Head: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Head']
38
- export const Html: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Html']
39
- export const Body: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Body']
40
- export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-island")['default']
41
- export const LazyNuxtWelcome: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
42
- export const LazyNuxtLayout: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
43
- export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
44
- export const LazyClientOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/client-only")['default']>
45
- export const LazyDevOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/dev-only")['default']>
46
- export const LazyServerPlaceholder: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
47
- export const LazyNuxtLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
48
- export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
49
- export const LazyNuxtTime: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
50
- export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
51
- export const LazyNuxtImg: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
52
- export const LazyNuxtPicture: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
53
- export const LazyStyLoginRenderer: LazyComponent<typeof import("../src/runtime/login-renderer.vue")['default']>
54
- export const LazyNuxtPage: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
55
- export const LazyNoScript: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
56
- export const LazyLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Link']>
57
- export const LazyBase: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Base']>
58
- export const LazyTitle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Title']>
59
- export const LazyMeta: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Meta']>
60
- export const LazyStyle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Style']>
61
- export const LazyHead: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Head']>
62
- export const LazyHtml: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Html']>
63
- export const LazyBody: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/components")['Body']>
64
- export const LazyNuxtIsland: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
17
+ export const NuxtWelcome: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/welcome.vue")['default']
18
+ export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
19
+ export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
20
+ export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/client-only")['default']
21
+ export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/dev-only")['default']
22
+ export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/server-placeholder")['default']
23
+ export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-link")['default']
24
+ export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
25
+ export const NuxtTime: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
26
+ export const NuxtRouteAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
27
+ export const NuxtAnnouncer: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-announcer")['default']
28
+ export const NuxtImg: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
29
+ export const NuxtPicture: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
30
+ export const NuxtPage: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
31
+ export const NoScript: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['NoScript']
32
+ export const Link: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Link']
33
+ export const Base: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Base']
34
+ export const Title: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Title']
35
+ export const Meta: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Meta']
36
+ export const Style: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Style']
37
+ export const Head: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Head']
38
+ export const Html: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Html']
39
+ export const Body: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Body']
40
+ export const NuxtIsland: typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-island")['default']
41
+ export const LazyNuxtWelcome: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
42
+ export const LazyNuxtLayout: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
43
+ export const LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
44
+ export const LazyClientOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/client-only")['default']>
45
+ export const LazyDevOnly: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/dev-only")['default']>
46
+ export const LazyServerPlaceholder: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
47
+ export const LazyNuxtLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
48
+ export const LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
49
+ export const LazyNuxtTime: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
50
+ export const LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
51
+ export const LazyNuxtAnnouncer: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-announcer")['default']>
52
+ export const LazyNuxtImg: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
53
+ export const LazyNuxtPicture: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
54
+ export const LazyNuxtPage: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
55
+ export const LazyNoScript: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
56
+ export const LazyLink: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Link']>
57
+ export const LazyBase: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Base']>
58
+ export const LazyTitle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Title']>
59
+ export const LazyMeta: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Meta']>
60
+ export const LazyStyle: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Style']>
61
+ export const LazyHead: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Head']>
62
+ export const LazyHtml: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Html']>
63
+ export const LazyBody: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Body']>
64
+ export const LazyNuxtIsland: LazyComponent<typeof import("../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-island")['default']>
65
65
 
66
66
  export const componentNames: string[]
@@ -1,4 +1,8 @@
1
1
  import { defineAsyncComponent } from 'vue'
2
- export const islandComponents = import.meta.client ? {} : {
2
+ export const islandComponents = import.meta.client ? Object.create(null) : Object.assign(Object.create(null), {
3
3
 
4
- }
4
+ })
5
+ export const pageIslandRoutes = import.meta.client ? Object.create(null) : Object.assign(Object.create(null), {
6
+
7
+ })
8
+ export const providePageIslandDepth = () => {}
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/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@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-error-page.vue";
@@ -0,0 +1 @@
1
+ export declare const $fetch: import('nitropack/types').$Fetch
package/.nuxt/fetch.mjs CHANGED
@@ -1,7 +1,8 @@
1
- import { $fetch } from 'ofetch'
1
+ import { $fetch as _$fetch } from 'ofetch'
2
2
  import { baseURL } from '#internal/nuxt/paths'
3
3
  if (!globalThis.$fetch) {
4
- globalThis.$fetch = $fetch.create({
4
+ globalThis.$fetch = _$fetch.create({
5
5
  baseURL: baseURL()
6
6
  })
7
- }
7
+ }
8
+ export const $fetch = globalThis.$fetch
@@ -1,15 +1,16 @@
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, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal } from '#app/composables/script-stubs';
1
+ export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptVercelAnalytics, useScriptPostHog, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptMixpanelAnalytics, useScriptBingUet, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptGoogleRecaptcha, useScriptGoogleSignIn, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptTikTokPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal, useScriptGravatar, useScriptAhrefsAnalytics, useScriptLinkedInInsight, useScriptCalendly, useScriptUsercentrics, useScriptSpeedCurve } 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
5
  export { useAppConfig, updateAppConfig } from '#app/config';
6
6
  export { defineNuxtComponent } from '#app/composables/component';
7
- export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
7
+ export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData, createUseAsyncData } from '#app/composables/asyncData';
8
8
  export { useHydration } from '#app/composables/hydrate';
9
9
  export { callOnce } from '#app/composables/once';
10
10
  export { useState, clearNuxtState } from '#app/composables/state';
11
11
  export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
12
- export { useFetch, useLazyFetch } from '#app/composables/fetch';
12
+ export { useFetch, useLazyFetch, createUseFetch } from '#app/composables/fetch';
13
+ export { $fetch } from '#build/fetch.mjs';
13
14
  export { useCookie, refreshCookie } from '#app/composables/cookie';
14
15
  export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useResponseHeader, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
15
16
  export { onNuxtReady } from '#app/composables/ready';
@@ -21,11 +22,20 @@ export { getAppManifest, getRouteRules } from '#app/composables/manifest';
21
22
  export { reloadNuxtApp } from '#app/composables/chunk';
22
23
  export { useRequestURL } from '#app/composables/url';
23
24
  export { usePreviewMode } from '#app/composables/preview';
25
+ export { useLayout } from '#app/composables/layout';
24
26
  export { useRouteAnnouncer } from '#app/composables/route-announcer';
27
+ export { useAnnouncer } from '#app/composables/announcer';
25
28
  export { useRuntimeHook } from '#app/composables/runtime-hook';
26
29
  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, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, 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';
30
+ 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, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, toValue, useModel, useAttrs, useCssModule, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, useCssVars, Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue';
28
31
  export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
29
32
  export { setInterval } from '#app/compat/interval';
30
33
  export { defineLazyHydrationComponent } from '#app/composables/lazy-hydration';
31
- export { useStrivacity, getCredential, createCredential } from '../src/runtime/composables';
34
+ export { STRIVACITY_LOGIN_CONTEXT, useNativeLoginContext } from '../src/runtime/composables/use-native-login-context';
35
+ export { useNativeLogin } from '../src/runtime/composables/use-native-login';
36
+ export { useSession } from '../src/runtime/composables/use-session';
37
+ export { useStrivacity } from '../src/runtime/composables/use-strivacity';
38
+ export { COOKIE_CONTEXT, COOKIE_CHUNK_SIZE, createCacheAPIStorage, createIndexedDBStorage, createLocalStorage, createMemoryStorage, createServerMemoryStorage, createSessionStorage, createWorkerStorage, handleWorkerStorageRequests, createServerStateStorage } from '../src/runtime/storages/core';
39
+ export { createSessionIdCookieStorage, createEncryptedCookieStorage } from '../src/runtime/storages/default';
40
+ export { FallbackError, PopupBlockedError, PopupClosedError, UnsupportedFlowError, SessionExpiredError, NetworkError, ServerError, OidcError, ProtocolError, ConfigurationError, InternalError, throwTokenEndpointError, throwHttpError, assertWebAuthnCredential, buildAuthorizationUrl, buildCookieString, buildEndSessionUrl, createDefaultLogging, createHttpClient, createSession, createState, createWebAuthnCredential, decodeBase64URL, decodeJwt, decryptString, defaultOptions, encodeBase64URL, encryptString, exchangeCode, fetchFlowEntry, finalizeLoginSession, generateCodeChallenge, generateCodeVerifier, generateJwt, generateRandomHex, getDefaultFlowState, getDiscoveryDocument, getSDKOptions, getServerSDKOptions, injectScript, isSessionExpired, loadSession, parseCookieHeader, parseState, proxyResponse, pushSetCookie, flushSetCookies, refreshToken, revokeToken, serializeCookie, serializeSession, serializeState, submitLoginForm, timestamp, toSafeRedirect, unflattenObject, verifyIdToken, verifyJwt, DISALLOWED_PROXY_HEADERS, RETURN_TO_COOKIE, BACKCHANNEL_LOGOUT_EVENT, DEFAULT_COOKIE_MAX_AGE } from '../src/runtime/utils/core';
41
+ export { default as noop } from '../src/runtime/utils/noop';
package/.nuxt/imports.mjs CHANGED
@@ -1,15 +1,16 @@
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, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal } from '#app/composables/script-stubs';
1
+ export { useScriptTriggerConsent, useScriptEventPage, useScriptTriggerElement, useScript, useScriptGoogleAnalytics, useScriptPlausibleAnalytics, useScriptCrisp, useScriptClarity, useScriptCloudflareWebAnalytics, useScriptVercelAnalytics, useScriptPostHog, useScriptFathomAnalytics, useScriptMatomoAnalytics, useScriptMixpanelAnalytics, useScriptBingUet, useScriptGoogleTagManager, useScriptGoogleAdsense, useScriptGoogleRecaptcha, useScriptGoogleSignIn, useScriptSegment, useScriptMetaPixel, useScriptXPixel, useScriptTikTokPixel, useScriptIntercom, useScriptHotjar, useScriptStripe, useScriptLemonSqueezy, useScriptVimeoPlayer, useScriptYouTubePlayer, useScriptGoogleMaps, useScriptNpm, useScriptUmamiAnalytics, useScriptSnapchatPixel, useScriptRybbitAnalytics, useScriptDatabuddyAnalytics, useScriptRedditPixel, useScriptPayPal, useScriptGravatar, useScriptAhrefsAnalytics, useScriptLinkedInInsight, useScriptCalendly, useScriptUsercentrics, useScriptSpeedCurve } 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
5
  export { useAppConfig, updateAppConfig } from '#app/config';
6
6
  export { defineNuxtComponent } from '#app/composables/component';
7
- export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData } from '#app/composables/asyncData';
7
+ export { useAsyncData, useLazyAsyncData, useNuxtData, refreshNuxtData, clearNuxtData, createUseAsyncData } from '#app/composables/asyncData';
8
8
  export { useHydration } from '#app/composables/hydrate';
9
9
  export { callOnce } from '#app/composables/once';
10
10
  export { useState, clearNuxtState } from '#app/composables/state';
11
11
  export { clearError, createError, isNuxtError, showError, useError } from '#app/composables/error';
12
- export { useFetch, useLazyFetch } from '#app/composables/fetch';
12
+ export { useFetch, useLazyFetch, createUseFetch } from '#app/composables/fetch';
13
+ export { $fetch } from '#build/fetch.mjs';
13
14
  export { useCookie, refreshCookie } from '#app/composables/cookie';
14
15
  export { onPrehydrate, prerenderRoutes, useRequestHeader, useRequestHeaders, useResponseHeader, useRequestEvent, useRequestFetch, setResponseStatus } from '#app/composables/ssr';
15
16
  export { onNuxtReady } from '#app/composables/ready';
@@ -21,12 +22,21 @@ export { getAppManifest, getRouteRules } from '#app/composables/manifest';
21
22
  export { reloadNuxtApp } from '#app/composables/chunk';
22
23
  export { useRequestURL } from '#app/composables/url';
23
24
  export { usePreviewMode } from '#app/composables/preview';
25
+ export { useLayout } from '#app/composables/layout';
24
26
  export { useRouteAnnouncer } from '#app/composables/route-announcer';
27
+ export { useAnnouncer } from '#app/composables/announcer';
25
28
  export { useRuntimeHook } from '#app/composables/runtime-hook';
26
29
  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, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, toValue, useModel, useAttrs, useCssModule, useCssVars, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot } from 'vue';
30
+ 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, onWatcherCleanup, isShallow, effect, effectScope, getCurrentScope, onScopeDispose, defineComponent, defineAsyncComponent, resolveComponent, getCurrentInstance, h, inject, hasInjectionContext, nextTick, provide, toValue, useModel, useAttrs, useCssModule, useSlots, useTransitionState, useId, useTemplateRef, useShadowRoot, useCssVars } from 'vue';
28
31
  export { requestIdleCallback, cancelIdleCallback } from '#app/compat/idle-callback';
29
32
  export { setInterval } from '#app/compat/interval';
30
33
  export { defineLazyHydrationComponent } from '#app/composables/lazy-hydration';
31
- export { useStrivacity, getCredential, createCredential } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables';
34
+ export { STRIVACITY_LOGIN_CONTEXT, useNativeLoginContext } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables/use-native-login-context';
35
+ export { useNativeLogin } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables/use-native-login';
36
+ export { useSession } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables/use-session';
37
+ export { useStrivacity } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/composables/use-strivacity';
38
+ export { COOKIE_CONTEXT, COOKIE_CHUNK_SIZE, createCacheAPIStorage, createIndexedDBStorage, createLocalStorage, createMemoryStorage, createServerMemoryStorage, createSessionStorage, createWorkerStorage, handleWorkerStorageRequests, createServerStateStorage } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/storages/core';
39
+ export { createSessionIdCookieStorage, createEncryptedCookieStorage } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/storages/default';
40
+ export { FallbackError, PopupBlockedError, PopupClosedError, UnsupportedFlowError, SessionExpiredError, NetworkError, ServerError, OidcError, ProtocolError, ConfigurationError, InternalError, throwTokenEndpointError, throwHttpError, assertWebAuthnCredential, buildAuthorizationUrl, buildCookieString, buildEndSessionUrl, createDefaultLogging, createHttpClient, createSession, createState, createWebAuthnCredential, decodeBase64URL, decodeJwt, decryptString, defaultOptions, encodeBase64URL, encryptString, exchangeCode, fetchFlowEntry, finalizeLoginSession, generateCodeChallenge, generateCodeVerifier, generateJwt, generateRandomHex, getDefaultFlowState, getDiscoveryDocument, getSDKOptions, getServerSDKOptions, injectScript, isSessionExpired, loadSession, parseCookieHeader, parseState, proxyResponse, pushSetCookie, flushSetCookies, refreshToken, revokeToken, serializeCookie, serializeSession, serializeState, submitLoginForm, timestamp, toSafeRedirect, unflattenObject, verifyIdToken, verifyJwt, DISALLOWED_PROXY_HEADERS, RETURN_TO_COOKIE, BACKCHANNEL_LOGOUT_EVENT, DEFAULT_COOKIE_MAX_AGE } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/utils/core';
41
+ export { default as noop } from '/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/utils/noop';
32
42
  if (import.meta.dev) { console.warn("[nuxt] `#imports` should be transformed with real imports. There seems to be something wrong with the imports plugin.") }
@@ -0,0 +1,2 @@
1
+ const IslandRenderer = () => null
2
+ export default IslandRenderer
@@ -1,5 +1,7 @@
1
- import manifest_45route_45rule from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/middleware/manifest-route-rule.js";
1
+ import strivacity from "/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/runtime/middleware/auth.server.ts";
2
+ import manifest_45route_45rule from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/middleware/route-rules.js";
2
3
  export const globalMiddleware = [
4
+ strivacity,
3
5
  manifest_45route_45rule
4
6
  ]
5
7
  export const namedMiddleware = {}
@@ -0,0 +1,103 @@
1
+ export const appBaseURL = "/"
2
+
3
+ export const appBuildAssetsDir = "/_nuxt/"
4
+
5
+ export const appCdnURL = ""
6
+
7
+ export const appHead = {"meta":[{"name":"viewport","content":"width=device-width, initial-scale=1"},{"charset":"utf-8"}],"link":[],"style":[],"script":[],"noscript":[]}
8
+
9
+ export const appLayoutTransition = false
10
+
11
+ export const appPageTransition = false
12
+
13
+ export const appViewTransition = {"enabled":false}
14
+
15
+ export const appKeepalive = false
16
+
17
+ export const appRootId = "__nuxt"
18
+
19
+ export const appRootTag = "div"
20
+
21
+ export const appRootAttrs = {"id":"__nuxt"}
22
+
23
+ export const appTeleportTag = "div"
24
+
25
+ export const appTeleportId = "teleports"
26
+
27
+ export const appTeleportAttrs = {"id":"teleports"}
28
+
29
+ export const appSpaLoaderTag = "div"
30
+
31
+ export const appSpaLoaderAttrs = {"id":"__nuxt-loader"}
32
+
33
+ export const renderJsonPayloads = true
34
+
35
+ export const componentIslands = false
36
+
37
+ export const componentIslandsActive = false
38
+
39
+ export const payloadExtraction = false
40
+
41
+ export const prefetchPreloadTags = false
42
+
43
+ export const cookieStore = true
44
+
45
+ export const appManifest = true
46
+
47
+ export const remoteComponentIslands = false
48
+
49
+ export const selectiveClient = false
50
+
51
+ export const devPagesDir = null
52
+
53
+ export const devRootDir = null
54
+
55
+ export const devLogs = false
56
+
57
+ export const nuxtLinkDefaults = {"componentName":"NuxtLink","prefetch":true,"prefetchOn":{"visibility":true}}
58
+
59
+ export const asyncDataDefaults = {"deep":false}
60
+
61
+ export const useStateDefaults = {"resetOnClear":false}
62
+
63
+ export const fetchDefaults = {}
64
+
65
+ export const vueAppRootContainer = '#__nuxt'
66
+
67
+ export const viewTransition = false
68
+
69
+ export const appId = "nuxt-app"
70
+
71
+ export const outdatedBuildInterval = 3600000
72
+
73
+ export const multiApp = false
74
+
75
+ export const chunkErrorEvent = "vite:preloadError"
76
+
77
+ export const crawlLinks = false
78
+
79
+ export const spaLoadingTemplateOutside = true
80
+
81
+ export const purgeCachedData = true
82
+
83
+ export const granularCachedData = true
84
+
85
+ export const pendingWhenIdle = false
86
+
87
+ export const alwaysRunFetchOnKeyChange = false
88
+
89
+ export const asyncCallHook = true
90
+
91
+ export const clientNodePlaceholder = false
92
+
93
+ export const tracingChannelNuxt = false
94
+
95
+ export const runtimeCompiler = false
96
+
97
+ export const hasPluginDependencies = false
98
+
99
+ export const hasParallelPlugins = false
100
+
101
+ export const hasPluginHooks = false
102
+
103
+ export const hasIslandOptOutPlugins = false
package/.nuxt/nuxt.d.ts CHANGED
@@ -1,15 +1,14 @@
1
- /// <reference types="./src" />
2
1
  /// <reference types="@strivacity/sdk-nuxt" />
3
2
  /// <reference types="@nuxt/devtools" />
3
+ /// <reference path="types/nitro-layouts.d.ts" />
4
4
  /// <reference path="types/builder-env.d.ts" />
5
5
  /// <reference path="types/plugins.d.ts" />
6
6
  /// <reference path="types/build.d.ts" />
7
7
  /// <reference path="types/app.config.d.ts" />
8
8
  /// <reference path="types/runtime-config.d.ts" />
9
9
  /// <reference types="nuxt/app" />
10
- /// <reference types="/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/@nuxt+nitro-server@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__db0@0.3.4__a3a53caef1516cc79201461eb04c532f/node_modules/@nuxt/nitro-server/dist/index.mjs" />
11
- /// <reference path="strivacity-sdk-storage.d.ts" />
12
- /// <reference path="strivacity-sdk-logging.d.ts" />
10
+ /// <reference path="../../../node_modules/.pnpm/@nuxt+nitro-server@4.5.2_@babel+plugin-proposal-decorators@7.29.7_@babel+core@7.29.7_su_f01f79d0a261870c3832f7874a24e3de/node_modules/@nuxt/nitro-server/dist/augments.d.mts" />
11
+ /// <reference path="types/layouts.d.ts" />
13
12
  /// <reference path="types/middleware.d.ts" />
14
13
  /// <reference path="types/components.d.ts" />
15
14
  /// <reference path="imports.d.ts" />
@@ -1,12 +1,12 @@
1
- /// <reference types="./src" />
2
1
  /// <reference types="@strivacity/sdk-nuxt" />
3
2
  /// <reference types="@nuxt/devtools" />
3
+ /// <reference path="types/nitro-layouts.d.ts" />
4
4
  /// <reference path="types/modules.d.ts" />
5
5
  /// <reference path="types/runtime-config.d.ts" />
6
- /// <reference path="types/app.config.d.ts" />
6
+ /// <reference path="types/shared-app.config.d.ts" />
7
7
  /// <reference types="nuxt" />
8
- /// <reference types="../../../node_modules/.pnpm/@nuxt+vite-builder@4.2.1_@types+node@24.10.1_eslint@9.39.1_jiti@2.6.1__less@4.4.2_magic_591557ce78d6bb508dd9cddbe9e59199/node_modules/@nuxt/vite-builder/dist/index.mjs" />
9
- /// <reference types="/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/@nuxt+nitro-server@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__db0@0.3.4__a3a53caef1516cc79201461eb04c532f/node_modules/@nuxt/nitro-server/dist/index.mjs" />
8
+ /// <reference path="../../../node_modules/.pnpm/@nuxt+vite-builder@4.5.2_@babel+plugin-proposal-decorators@7.29.7_@babel+core@7.29.7_su_a1916a00a254373e1749a73865693ccb/node_modules/@nuxt/vite-builder/dist/index.d.mts" />
9
+ /// <reference path="../../../node_modules/.pnpm/@nuxt+nitro-server@4.5.2_@babel+plugin-proposal-decorators@7.29.7_@babel+core@7.29.7_su_f01f79d0a261870c3832f7874a24e3de/node_modules/@nuxt/nitro-server/dist/augments.d.mts" />
10
10
  /// <reference path="types/middleware.d.ts" />
11
11
  /// <reference path="schema/nuxt.schema.d.ts" />
12
12
 
@@ -1,5 +1,7 @@
1
+ /// <reference path="../../../node_modules/.pnpm/@nuxt+nitro-server@4.5.2_@babel+plugin-proposal-decorators@7.29.7_@babel+core@7.29.7_su_f01f79d0a261870c3832f7874a24e3de/node_modules/@nuxt/nitro-server/dist/augments.d.mts" />
1
2
  /// <reference path="types/runtime-config.d.ts" />
2
- /// <reference path="types/app.config.d.ts" />
3
+ /// <reference path="types/shared-app.config.d.ts" />
4
+ /// <reference path="types/shared-imports.d.ts" />
3
5
  /// <reference path="schema/nuxt.schema.d.ts" />
4
6
 
5
7
  export {}
@@ -1,18 +1,14 @@
1
- import revive_payload_client_YjLkdevb7_2Uf0zdKHup7ZIcoujB68b4N3PeWPdC9h8 from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/revive-payload.client.js";
2
- import unhead_CalVUZs93FiwQjVgDijtHdLKoFpT8PR68yjzXmVTa5s from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/plugins/unhead.js";
3
- import router_gqToMbQYczS9bZ1t_93HIq0_GU_sSGcNm7_CpySd2gc from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/router.js";
4
- import payload_client_Bj4LxgIg9vZKb6n12ZofBAgg5T8ATotFValbYAC2p_k from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/payload.client.js";
5
- import navigation_repaint_client_6lXIeI_DH7PAr5TlWvWmFYA1SvzLX_EdyARSNqplyks from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js";
6
- import check_outdated_build_client_zwaAVO9pljDfrp_HYLkgEQofhotTUS8X0QOKXM6V3uA from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js";
7
- import chunk_reload_client_zIR4_f2NVv4SiK2exFMCKQTo1_Rx4i5C6WwGjGSVK80 from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/chunk-reload.client.js";
1
+ import revive_payload_client_JfEZ_qeoF3fdQI0K5rIIlIxe1X55hkv7J9nl35SqlQI from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/revive-payload.client.js";
2
+ import unhead_client_rpuN5gCSyiNA5XhStjvbPee4765soTdsxAYcqgUi4pg from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/plugins/unhead.client.js";
3
+ import router_E9QYQ5CARD52t2dWlHb3Z8nSjXqtIyP7_YFLs2u5s7s from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/router.js";
4
+ import navigation_repaint_client_vppTiscDfpHqwxdiEA76QaaDbcl0_iHk2kr1YMVAmRg from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js";
5
+ import check_outdated_build_client_qJFnd1tiS0ilymY9Mj51CGJGSzom4k_76r3m5jyCAxg from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js";
8
6
  import components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4 from "/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/.nuxt/components.plugin.mjs";
9
7
  export default [
10
- revive_payload_client_YjLkdevb7_2Uf0zdKHup7ZIcoujB68b4N3PeWPdC9h8,
11
- unhead_CalVUZs93FiwQjVgDijtHdLKoFpT8PR68yjzXmVTa5s,
12
- router_gqToMbQYczS9bZ1t_93HIq0_GU_sSGcNm7_CpySd2gc,
13
- payload_client_Bj4LxgIg9vZKb6n12ZofBAgg5T8ATotFValbYAC2p_k,
14
- navigation_repaint_client_6lXIeI_DH7PAr5TlWvWmFYA1SvzLX_EdyARSNqplyks,
15
- check_outdated_build_client_zwaAVO9pljDfrp_HYLkgEQofhotTUS8X0QOKXM6V3uA,
16
- chunk_reload_client_zIR4_f2NVv4SiK2exFMCKQTo1_Rx4i5C6WwGjGSVK80,
8
+ revive_payload_client_JfEZ_qeoF3fdQI0K5rIIlIxe1X55hkv7J9nl35SqlQI,
9
+ unhead_client_rpuN5gCSyiNA5XhStjvbPee4765soTdsxAYcqgUi4pg,
10
+ router_E9QYQ5CARD52t2dWlHb3Z8nSjXqtIyP7_YFLs2u5s7s,
11
+ navigation_repaint_client_vppTiscDfpHqwxdiEA76QaaDbcl0_iHk2kr1YMVAmRg,
12
+ check_outdated_build_client_qJFnd1tiS0ilymY9Mj51CGJGSzom4k_76r3m5jyCAxg,
17
13
  components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4
18
14
  ]
@@ -1,10 +1,10 @@
1
- import unhead_CalVUZs93FiwQjVgDijtHdLKoFpT8PR68yjzXmVTa5s from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/head/runtime/plugins/unhead.js";
2
- import router_gqToMbQYczS9bZ1t_93HIq0_GU_sSGcNm7_CpySd2gc from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/router.js";
3
- import revive_payload_server_Jr_7iAF1qxvxzJBC4ZNr6dvDMg3zFgdAkoVQEZztW94 from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/plugins/revive-payload.server.js";
1
+ import unhead_server_iAA_mm8wSM3qTMxLl3tGtMs6aQtvFnOLgZdh2fzziN0 from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/plugins/unhead.server.js";
2
+ import router_E9QYQ5CARD52t2dWlHb3Z8nSjXqtIyP7_YFLs2u5s7s from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/router.js";
3
+ import revive_payload_server_1sHuBW3GIoOTTU0wr0myK9izeA1xH_BrFmPG34sB8Ng from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/plugins/revive-payload.server.js";
4
4
  import components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4 from "/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/.nuxt/components.plugin.mjs";
5
5
  export default [
6
- unhead_CalVUZs93FiwQjVgDijtHdLKoFpT8PR68yjzXmVTa5s,
7
- router_gqToMbQYczS9bZ1t_93HIq0_GU_sSGcNm7_CpySd2gc,
8
- revive_payload_server_Jr_7iAF1qxvxzJBC4ZNr6dvDMg3zFgdAkoVQEZztW94,
6
+ unhead_server_iAA_mm8wSM3qTMxLl3tGtMs6aQtvFnOLgZdh2fzziN0,
7
+ router_E9QYQ5CARD52t2dWlHb3Z8nSjXqtIyP7_YFLs2u5s7s,
8
+ revive_payload_server_1sHuBW3GIoOTTU0wr0myK9izeA1xH_BrFmPG34sB8Ng,
9
9
  components_plugin_z4hgvsiddfKkfXTP6M8M4zG5Cb7sGnDhcryKVM45Di4
10
10
  ]
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/nuxt-root.vue";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-root.vue";
@@ -0,0 +1,22 @@
1
+ import { defu } from 'defu'
2
+ import routerOptions from '#build/router.options.mjs'
3
+ const sensitiveMatcher = (m,p)=>{return [];}
4
+ const foldedMatcher = sensitiveMatcher
5
+ const decodeRoutePath = function decodeRoutePath(path) {
6
+ if (!path.includes("%")) return path;
7
+ const queryIndex = path.indexOf("?");
8
+ const pathname = queryIndex === -1 ? path : path.slice(0, queryIndex);
9
+ try {
10
+ return queryIndex === -1 ? decodeURI(pathname) : decodeURI(pathname) + path.slice(queryIndex);
11
+ } catch {
12
+ return path;
13
+ }
14
+ }
15
+ const normalizePath = (path, fold) => {
16
+ if (typeof path !== 'string') { return path }
17
+ const decoded = decodeRoutePath(path)
18
+ return fold ? decoded.toLowerCase() : decoded
19
+ }
20
+ export default (path) => routerOptions.sensitive
21
+ ? defu({}, ...sensitiveMatcher('', normalizePath(path, false)).map(r => r.data).reverse())
22
+ : defu({}, ...foldedMatcher('', normalizePath(path, true)).map(r => r.data).reverse())
@@ -1 +1 @@
1
- export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.2.1_@capacitor+preferences@7.0.2_@capacitor+core@7.4.4__@parcel+watcher@2.4.1_@t_1d06f86fa43ea6ae8c6fb55b6f4fcdfe/node_modules/nuxt/dist/app/components/test-component-wrapper";
1
+ export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/test-component-wrapper";