@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.
- package/.nuxt/app-component.mjs +1 -1
- package/.nuxt/component-names.mjs +1 -1
- package/.nuxt/components.d.ts +110 -92
- package/.nuxt/error-component.mjs +1 -1
- package/.nuxt/global-polyfills.mjs +4 -0
- package/.nuxt/imports.d.ts +7 -6
- package/.nuxt/imports.mjs +7 -6
- package/.nuxt/layouts.mjs +1 -0
- package/.nuxt/manifest/meta/ba93f89b-30bd-4721-919e-d2c0fdc150d7.json +1 -0
- package/.nuxt/middleware.mjs +1 -1
- package/.nuxt/nuxt.d.ts +1 -2
- package/.nuxt/plugins.client.mjs +18 -0
- package/.nuxt/plugins.server.mjs +10 -0
- package/.nuxt/root-component.mjs +1 -1
- package/.nuxt/router.options.mjs +2 -0
- package/.nuxt/strivacity-sdk-storage.d.ts +3 -3
- package/.nuxt/strivacity-sdk-storage.mjs +1 -1
- package/.nuxt/test-component-wrapper.mjs +1 -1
- package/.nuxt/types/app-defaults.d.ts +1 -1
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/nitro-config.d.ts +2 -2
- package/.nuxt/types/nitro-imports.d.ts +13 -3
- package/.nuxt/types/nitro-nuxt.d.ts +5 -0
- package/.nuxt/types/nitro-routes.d.ts +6 -3
- package/.nuxt/types/plugins.d.ts +10 -11
- package/.nuxt/unhead-options.mjs +6 -0
- package/CHANGELOG.md +24 -0
- package/README.md +432 -22
- package/dist/module.d.mts +68 -15
- package/dist/module.json +3 -3
- package/dist/module.mjs +10 -4
- package/dist/module.mjs.map +1 -1
- package/dist/runtime/composables.d.ts +3 -3
- package/dist/runtime/composables.js +11 -1
- package/dist/runtime/login-renderer.vue +163 -0
- package/dist/runtime/login-renderer.vue.d.ts +32 -0
- package/dist/types.d.mts +15 -1
- package/package.json +5 -6
- package/.nuxt/plugins/client.mjs +0 -18
- package/.nuxt/plugins/server.mjs +0 -10
- package/.nuxt/unhead-plugins.mjs +0 -2
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -128
- package/dist/types.d.ts +0 -1
package/.nuxt/app-component.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.
|
|
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"]
|
package/.nuxt/components.d.ts
CHANGED
|
@@ -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.
|
|
6
|
-
'NuxtLayout': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
7
|
-
'NuxtErrorBoundary': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
8
|
-
'ClientOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
9
|
-
'DevOnly': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
10
|
-
'ServerPlaceholder': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
11
|
-
'NuxtLink': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
12
|
-
'NuxtLoadingIndicator': typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
13
|
-
'
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'
|
|
26
|
-
'
|
|
27
|
-
'
|
|
28
|
-
|
|
29
|
-
'
|
|
30
|
-
|
|
31
|
-
'
|
|
32
|
-
'
|
|
33
|
-
'
|
|
34
|
-
'
|
|
35
|
-
'
|
|
36
|
-
'
|
|
37
|
-
'
|
|
38
|
-
'
|
|
39
|
-
'
|
|
40
|
-
'
|
|
41
|
-
'
|
|
42
|
-
'
|
|
43
|
-
'
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
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.
|
|
58
|
-
export const NuxtLayout: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
59
|
-
export const NuxtErrorBoundary: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
60
|
-
export const ClientOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
61
|
-
export const DevOnly: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
62
|
-
export const ServerPlaceholder: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
63
|
-
export const NuxtLink: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
64
|
-
export const NuxtLoadingIndicator: typeof import("../../../node_modules/.pnpm/nuxt@3.
|
|
65
|
-
export const
|
|
66
|
-
export const
|
|
67
|
-
export const
|
|
68
|
-
export const
|
|
69
|
-
export const
|
|
70
|
-
export const
|
|
71
|
-
export const
|
|
72
|
-
export const
|
|
73
|
-
export const
|
|
74
|
-
export const
|
|
75
|
-
export const
|
|
76
|
-
export const
|
|
77
|
-
export const
|
|
78
|
-
export const
|
|
79
|
-
export const
|
|
80
|
-
export const
|
|
81
|
-
export const
|
|
82
|
-
export const
|
|
83
|
-
export const
|
|
84
|
-
export const
|
|
85
|
-
export const
|
|
86
|
-
export const
|
|
87
|
-
export const
|
|
88
|
-
export const
|
|
89
|
-
export const
|
|
90
|
-
export const
|
|
91
|
-
export const
|
|
92
|
-
export const
|
|
93
|
-
export const
|
|
94
|
-
export const
|
|
95
|
-
export const
|
|
96
|
-
export const
|
|
97
|
-
export const
|
|
98
|
-
export const
|
|
99
|
-
export const
|
|
100
|
-
export const
|
|
101
|
-
export const
|
|
102
|
-
export const
|
|
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.
|
|
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";
|
package/.nuxt/imports.d.ts
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,
|
|
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 {
|
|
28
|
-
export {
|
|
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,
|
|
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 {
|
|
28
|
-
export {
|
|
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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/.nuxt/middleware.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import manifest_45route_45rule from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.
|
|
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
|
+
]
|
package/.nuxt/root-component.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from "/home/runner/work/sdk-js/sdk-js/node_modules/.pnpm/nuxt@3.
|
|
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";
|