@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.
- package/.nuxt/app-component.mjs +1 -1
- package/.nuxt/app.config.mjs +21 -0
- package/.nuxt/component-names.mjs +1 -1
- package/.nuxt/components.d.ts +48 -48
- package/.nuxt/components.islands.mjs +6 -2
- package/.nuxt/error-component.mjs +1 -1
- package/.nuxt/fetch.d.ts +1 -0
- package/.nuxt/fetch.mjs +4 -3
- package/.nuxt/imports.d.ts +15 -5
- package/.nuxt/imports.mjs +15 -5
- package/.nuxt/island-renderer.mjs +2 -0
- package/.nuxt/middleware.mjs +3 -1
- package/.nuxt/nuxt.config.mjs +103 -0
- package/.nuxt/nuxt.d.ts +3 -4
- package/.nuxt/nuxt.node.d.ts +4 -4
- package/.nuxt/nuxt.shared.d.ts +3 -1
- package/.nuxt/plugins.client.mjs +10 -14
- package/.nuxt/plugins.server.mjs +6 -6
- package/.nuxt/root-component.mjs +1 -1
- package/.nuxt/route-rules.mjs +22 -0
- package/.nuxt/test-component-wrapper.mjs +1 -1
- package/.nuxt/tsconfig.app.json +211 -0
- package/.nuxt/tsconfig.json +212 -0
- package/.nuxt/tsconfig.node.json +117 -0
- package/.nuxt/tsconfig.server.json +161 -0
- package/.nuxt/tsconfig.shared.json +165 -0
- package/.nuxt/types/app.config.d.ts +35 -0
- package/.nuxt/types/components.d.ts +48 -48
- package/.nuxt/types/imports.d.ts +1 -1
- package/.nuxt/types/layouts.d.ts +16 -0
- package/.nuxt/types/modules.d.ts +20 -20
- package/.nuxt/types/nitro-imports.d.ts +9 -4
- package/.nuxt/types/nitro-layouts.d.ts +17 -0
- package/.nuxt/types/nitro-nuxt.d.ts +19 -5
- package/.nuxt/types/nitro-routes.d.ts +25 -1
- package/.nuxt/types/plugins.d.ts +8 -9
- package/.nuxt/types/runtime-config.d.ts +6 -12
- package/.nuxt/types/shared-app.config.d.ts +28 -0
- package/.nuxt/types/shared-imports.d.ts +2 -0
- package/.nuxt/unhead-options.mjs +2 -1
- package/.nuxt/unhead.config.mjs +1 -0
- package/CHANGELOG.md +16 -14
- package/README.md +1577 -406
- package/build.config.ts +5 -0
- package/dist/module.d.mts +3 -193
- package/dist/module.json +2 -2
- package/dist/module.mjs +78 -57
- package/dist/module.mjs.map +1 -1
- package/dist/runtime/composables/use-native-login-context.d.ts +10 -0
- package/dist/runtime/composables/use-native-login-context.js +9 -0
- package/dist/runtime/composables/use-native-login.d.ts +10 -0
- package/dist/runtime/composables/use-native-login.js +143 -0
- package/dist/runtime/composables/use-session.d.ts +8 -0
- package/dist/runtime/composables/use-session.js +2 -0
- package/dist/runtime/composables/use-strivacity.d.ts +9 -0
- package/dist/runtime/composables/use-strivacity.js +77 -0
- package/dist/runtime/middleware/auth.server.d.ts +2 -0
- package/dist/runtime/middleware/auth.server.js +12 -0
- package/dist/runtime/server/api/auth/backchannel-logout.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/backchannel-logout.get.js +2 -0
- package/dist/runtime/server/api/auth/callback.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/callback.get.js +2 -0
- package/dist/runtime/server/api/auth/entry.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/entry.get.js +2 -0
- package/dist/runtime/server/api/auth/login.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/login.get.js +2 -0
- package/dist/runtime/server/api/auth/logout.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/logout.get.js +2 -0
- package/dist/runtime/server/api/auth/refresh.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/refresh.get.js +2 -0
- package/dist/runtime/server/api/auth/register.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/register.get.js +2 -0
- package/dist/runtime/server/api/auth/revoke.get.d.ts +2 -0
- package/dist/runtime/server/api/auth/revoke.get.js +2 -0
- package/dist/runtime/server/composables/use-strivacity.d.ts +2 -0
- package/dist/runtime/server/composables/use-strivacity.js +9 -0
- package/dist/runtime/server/plugins/auth.server.d.ts +10 -0
- package/dist/runtime/server/plugins/auth.server.js +66 -0
- package/dist/runtime/server/utils/helpers.d.ts +18 -0
- package/dist/runtime/server/utils/helpers.js +39 -0
- package/dist/runtime/storages/core.d.ts +1 -0
- package/dist/runtime/storages/core.js +13 -0
- package/dist/runtime/storages/default.d.ts +21 -0
- package/dist/runtime/storages/default.js +71 -0
- package/dist/runtime/types.d.ts +219 -0
- package/dist/runtime/types.js +1 -0
- package/dist/runtime/utils/core.d.ts +1 -0
- package/dist/runtime/utils/core.js +64 -0
- package/dist/runtime/utils/noop.d.ts +1 -0
- package/dist/runtime/utils/noop.js +3 -0
- package/dist/types.d.mts +4 -16
- package/eslint.config.mjs +5 -0
- package/nuxt.config.ts +5 -0
- package/package.json +31 -5
- package/project.json +44 -0
- package/src/module.ts +107 -0
- package/src/runtime/composables/use-native-login-context.ts +20 -0
- package/src/runtime/composables/use-native-login.ts +182 -0
- package/src/runtime/composables/use-session.ts +10 -0
- package/src/runtime/composables/use-strivacity.ts +95 -0
- package/src/runtime/middleware/auth.server.ts +16 -0
- package/src/runtime/server/api/auth/backchannel-logout.get.ts +3 -0
- package/src/runtime/server/api/auth/callback.get.ts +3 -0
- package/src/runtime/server/api/auth/entry.get.ts +3 -0
- package/src/runtime/server/api/auth/login.get.ts +3 -0
- package/src/runtime/server/api/auth/logout.get.ts +3 -0
- package/src/runtime/server/api/auth/refresh.get.ts +3 -0
- package/src/runtime/server/api/auth/register.get.ts +3 -0
- package/src/runtime/server/api/auth/revoke.get.ts +3 -0
- package/src/runtime/server/composables/use-strivacity.ts +13 -0
- package/src/runtime/server/plugins/auth.server.ts +84 -0
- package/src/runtime/server/utils/helpers.ts +67 -0
- package/src/runtime/storages/core.ts +13 -0
- package/src/runtime/storages/default.ts +111 -0
- package/src/runtime/types.ts +289 -0
- package/src/runtime/utils/core.ts +64 -0
- package/src/runtime/utils/noop.ts +3 -0
- package/testing/stubs/app.ts +6 -0
- package/testing/stubs/imports.ts +19 -0
- package/testing/stubs/options-httpClient.ts +8 -0
- package/testing/stubs/options-logging.ts +8 -0
- package/testing/stubs/options-stateStorage.ts +8 -0
- package/testing/stubs/options-storage.ts +8 -0
- package/testing/tests/composables.spec.ts +512 -0
- package/testing/tests/server/helpers.spec.ts +86 -0
- package/testing/tests/server/plugin.spec.ts +138 -0
- package/testing/tests/server/routes.spec.ts +34 -0
- package/testing/tests/server/use-strivacity.spec.ts +22 -0
- package/testing/tests/storages-default.spec.ts +151 -0
- package/testing/tests/storages.spec.ts +16 -0
- package/testing/tests/utils.spec.ts +10 -0
- package/testing/utils/common.ts +33 -0
- package/testing/utils/http.ts +58 -0
- package/tsconfig.json +3 -0
- package/vite.config.mts +20 -0
- package/.nuxt/strivacity-sdk-logging.d.ts +0 -13
- package/.nuxt/strivacity-sdk-logging.mjs +0 -1
- package/.nuxt/strivacity-sdk-storage.d.ts +0 -10
- package/.nuxt/strivacity-sdk-storage.mjs +0 -1
- package/dist/runtime/composables.d.ts +0 -12
- package/dist/runtime/composables.js +0 -83
- package/dist/runtime/login-renderer.vue +0 -174
- package/dist/runtime/login-renderer.vue.d.ts +0 -39
- /package/.nuxt/manifest/meta/{b47927c0-b36b-4d2c-b650-8d55c5ec676a.json → cb11df97-b0c9-4a91-9d4b-60c25c918599.json} +0 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"forceConsistentCasingInFileNames": true,
|
|
4
|
+
"strict": true,
|
|
5
|
+
"noEmit": true,
|
|
6
|
+
"skipLibCheck": true,
|
|
7
|
+
"target": "ESNext",
|
|
8
|
+
"module": "ESNext",
|
|
9
|
+
"moduleResolution": "Bundler",
|
|
10
|
+
"allowJs": true,
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"jsx": "preserve",
|
|
13
|
+
"allowSyntheticDefaultImports": true,
|
|
14
|
+
"jsxFactory": "h",
|
|
15
|
+
"jsxFragmentFactory": "Fragment",
|
|
16
|
+
"paths": {
|
|
17
|
+
"#imports": [
|
|
18
|
+
"./types/nitro-imports"
|
|
19
|
+
],
|
|
20
|
+
"~/*": [
|
|
21
|
+
"../*"
|
|
22
|
+
],
|
|
23
|
+
"@/*": [
|
|
24
|
+
"../*"
|
|
25
|
+
],
|
|
26
|
+
"~~/*": [
|
|
27
|
+
"../*"
|
|
28
|
+
],
|
|
29
|
+
"@@/*": [
|
|
30
|
+
"../*"
|
|
31
|
+
],
|
|
32
|
+
"@unhead/vue": [
|
|
33
|
+
"../../../node_modules/.pnpm/@unhead+vue@3.4.0_@oxc-project+types@0.147.0_esbuild@0.28.2_lightningcss@1.33.0_oxc-par_02dfb1aaca74e15bbdf0130491c83cdb/node_modules/@unhead/vue"
|
|
34
|
+
],
|
|
35
|
+
"@nuxt/devtools": [
|
|
36
|
+
"../../../node_modules/.pnpm/@nuxt+devtools@3.4.2_aws4fetch@1.0.20_db0@0.3.4_ioredis@5.11.1_supports-color@10.2.2__m_890317f084dc8183a8dafef179318875/node_modules/@nuxt/devtools"
|
|
37
|
+
],
|
|
38
|
+
"vue": [
|
|
39
|
+
"../../../node_modules/.pnpm/vue@3.5.42_typescript@6.0.3/node_modules/vue"
|
|
40
|
+
],
|
|
41
|
+
"@vue/runtime-core": [
|
|
42
|
+
"../../../node_modules/.pnpm/@vue+runtime-core@3.5.42/node_modules/@vue/runtime-core"
|
|
43
|
+
],
|
|
44
|
+
"@vue/compiler-sfc": [
|
|
45
|
+
"../../../node_modules/.pnpm/@vue+compiler-sfc@3.5.42/node_modules/@vue/compiler-sfc"
|
|
46
|
+
],
|
|
47
|
+
"vue-router": [
|
|
48
|
+
"../../../node_modules/.pnpm/vue-router@5.3.0_@vue+compiler-sfc@3.5.42_esbuild@0.28.2_rolldown@1.2.6_rollup@4.63.1_v_cf44d69708c8633c7f6a655db5cb09bf/node_modules/vue-router"
|
|
49
|
+
],
|
|
50
|
+
"vue-router/auto-routes": [
|
|
51
|
+
"../../../node_modules/.pnpm/vue-router@5.3.0_@vue+compiler-sfc@3.5.42_esbuild@0.28.2_rolldown@1.2.6_rollup@4.63.1_v_cf44d69708c8633c7f6a655db5cb09bf/node_modules/vue-router/vue-router-auto-routes.d"
|
|
52
|
+
],
|
|
53
|
+
"@nuxt/schema": [
|
|
54
|
+
"../../../node_modules/.pnpm/@nuxt+schema@4.5.2/node_modules/@nuxt/schema"
|
|
55
|
+
],
|
|
56
|
+
"nuxt": [
|
|
57
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt"
|
|
58
|
+
],
|
|
59
|
+
"@nuxt/schema/builder-env": [
|
|
60
|
+
"../../../node_modules/.pnpm/@nuxt+schema@4.5.2/node_modules/@nuxt/schema/dist/builder-env.d"
|
|
61
|
+
],
|
|
62
|
+
"nitropack/types": [
|
|
63
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack/types"
|
|
64
|
+
],
|
|
65
|
+
"nitropack/runtime": [
|
|
66
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack/runtime"
|
|
67
|
+
],
|
|
68
|
+
"nitropack": [
|
|
69
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack"
|
|
70
|
+
],
|
|
71
|
+
"defu": [
|
|
72
|
+
"../../../node_modules/.pnpm/defu@6.1.7/node_modules/defu"
|
|
73
|
+
],
|
|
74
|
+
"h3": [
|
|
75
|
+
"../../../node_modules/.pnpm/h3@1.15.11/node_modules/h3"
|
|
76
|
+
],
|
|
77
|
+
"consola": [
|
|
78
|
+
"../../../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
|
|
79
|
+
],
|
|
80
|
+
"ofetch": [
|
|
81
|
+
"../../../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
|
|
82
|
+
],
|
|
83
|
+
"crossws": [
|
|
84
|
+
"../../../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
|
|
85
|
+
],
|
|
86
|
+
"#shared": [
|
|
87
|
+
"../shared"
|
|
88
|
+
],
|
|
89
|
+
"#shared/*": [
|
|
90
|
+
"../shared/*"
|
|
91
|
+
],
|
|
92
|
+
"#server": [
|
|
93
|
+
"../server"
|
|
94
|
+
],
|
|
95
|
+
"#server/*": [
|
|
96
|
+
"../server/*"
|
|
97
|
+
],
|
|
98
|
+
"#build": [
|
|
99
|
+
"./"
|
|
100
|
+
],
|
|
101
|
+
"#build/*": [
|
|
102
|
+
"./*"
|
|
103
|
+
],
|
|
104
|
+
"#internal/nuxt/paths": [
|
|
105
|
+
"../../../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/runtime/utils/paths"
|
|
106
|
+
],
|
|
107
|
+
"#strivacity-options-logging": [
|
|
108
|
+
"../src/runtime/utils/noop"
|
|
109
|
+
],
|
|
110
|
+
"#strivacity-options-httpClient": [
|
|
111
|
+
"../src/runtime/utils/noop"
|
|
112
|
+
],
|
|
113
|
+
"#strivacity-options-storage": [
|
|
114
|
+
"../src/runtime/utils/noop"
|
|
115
|
+
],
|
|
116
|
+
"#strivacity-options-stateStorage": [
|
|
117
|
+
"../src/runtime/utils/noop"
|
|
118
|
+
],
|
|
119
|
+
"#unhead/composables": [
|
|
120
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/composables"
|
|
121
|
+
],
|
|
122
|
+
"#app/island-hash": [
|
|
123
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/island-hash"
|
|
124
|
+
],
|
|
125
|
+
"#app/island-props": [
|
|
126
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/island-props"
|
|
127
|
+
],
|
|
128
|
+
"#app/internal/*": [
|
|
129
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/internal/*"
|
|
130
|
+
],
|
|
131
|
+
"#app/types": [
|
|
132
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/types"
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
"lib": [
|
|
136
|
+
"esnext",
|
|
137
|
+
"webworker",
|
|
138
|
+
"dom.iterable"
|
|
139
|
+
],
|
|
140
|
+
"noUncheckedIndexedAccess": true,
|
|
141
|
+
"allowArbitraryExtensions": true,
|
|
142
|
+
"allowImportingTsExtensions": true
|
|
143
|
+
},
|
|
144
|
+
"include": [
|
|
145
|
+
"./types/nitro-nuxt.d.ts",
|
|
146
|
+
"../src/module/runtime/server",
|
|
147
|
+
"../src/module/dist/runtime/server",
|
|
148
|
+
"../../../node_modules/.pnpm/@nuxt+devtools@3.4.2_aws4fetch@1.0.20_db0@0.3.4_ioredis@5.11.1_supports-color@10.2.2__m_890317f084dc8183a8dafef179318875/node_modules/runtime/server",
|
|
149
|
+
"../../../node_modules/.pnpm/@nuxt+devtools@3.4.2_aws4fetch@1.0.20_db0@0.3.4_ioredis@5.11.1_supports-color@10.2.2__m_890317f084dc8183a8dafef179318875/node_modules/dist/runtime/server",
|
|
150
|
+
"../server/**/*",
|
|
151
|
+
"../shared/**/*.d.ts",
|
|
152
|
+
"./types/nitro.d.ts"
|
|
153
|
+
],
|
|
154
|
+
"exclude": [
|
|
155
|
+
"../node_modules",
|
|
156
|
+
"../../../node_modules",
|
|
157
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/node_modules",
|
|
158
|
+
"../../../node_modules/.pnpm/@nuxt+devtools@3.4.2_aws4fetch@1.0.20_db0@0.3.4_ioredis@5.11.1_supports-color@10.2.2__m_890317f084dc8183a8dafef179318875/node_modules/@nuxt/devtools/node_modules",
|
|
159
|
+
"../dist"
|
|
160
|
+
]
|
|
161
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"paths": {
|
|
4
|
+
"@unhead/vue": [
|
|
5
|
+
"../../../node_modules/.pnpm/@unhead+vue@3.4.0_@oxc-project+types@0.147.0_esbuild@0.28.2_lightningcss@1.33.0_oxc-par_02dfb1aaca74e15bbdf0130491c83cdb/node_modules/@unhead/vue"
|
|
6
|
+
],
|
|
7
|
+
"@nuxt/devtools": [
|
|
8
|
+
"../../../node_modules/.pnpm/@nuxt+devtools@3.4.2_aws4fetch@1.0.20_db0@0.3.4_ioredis@5.11.1_supports-color@10.2.2__m_890317f084dc8183a8dafef179318875/node_modules/@nuxt/devtools"
|
|
9
|
+
],
|
|
10
|
+
"vue": [
|
|
11
|
+
"../../../node_modules/.pnpm/vue@3.5.42_typescript@6.0.3/node_modules/vue"
|
|
12
|
+
],
|
|
13
|
+
"@vue/runtime-core": [
|
|
14
|
+
"../../../node_modules/.pnpm/@vue+runtime-core@3.5.42/node_modules/@vue/runtime-core"
|
|
15
|
+
],
|
|
16
|
+
"@vue/compiler-sfc": [
|
|
17
|
+
"../../../node_modules/.pnpm/@vue+compiler-sfc@3.5.42/node_modules/@vue/compiler-sfc"
|
|
18
|
+
],
|
|
19
|
+
"vue-router": [
|
|
20
|
+
"../../../node_modules/.pnpm/vue-router@5.3.0_@vue+compiler-sfc@3.5.42_esbuild@0.28.2_rolldown@1.2.6_rollup@4.63.1_v_cf44d69708c8633c7f6a655db5cb09bf/node_modules/vue-router"
|
|
21
|
+
],
|
|
22
|
+
"vue-router/auto-routes": [
|
|
23
|
+
"../../../node_modules/.pnpm/vue-router@5.3.0_@vue+compiler-sfc@3.5.42_esbuild@0.28.2_rolldown@1.2.6_rollup@4.63.1_v_cf44d69708c8633c7f6a655db5cb09bf/node_modules/vue-router/vue-router-auto-routes.d.mts"
|
|
24
|
+
],
|
|
25
|
+
"@nuxt/schema": [
|
|
26
|
+
"../../../node_modules/.pnpm/@nuxt+schema@4.5.2/node_modules/@nuxt/schema"
|
|
27
|
+
],
|
|
28
|
+
"nuxt": [
|
|
29
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt"
|
|
30
|
+
],
|
|
31
|
+
"@nuxt/schema/builder-env": [
|
|
32
|
+
"../../../node_modules/.pnpm/@nuxt+schema@4.5.2/node_modules/@nuxt/schema/dist/builder-env.d.mts"
|
|
33
|
+
],
|
|
34
|
+
"nitropack/types": [
|
|
35
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack/types"
|
|
36
|
+
],
|
|
37
|
+
"nitropack/runtime": [
|
|
38
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack/runtime"
|
|
39
|
+
],
|
|
40
|
+
"nitropack": [
|
|
41
|
+
"../../../node_modules/.pnpm/nitropack@2.13.4_@parcel+watcher@2.6.0_aws4fetch@1.0.20_oxc-parser@0.142.0_rolldown@1.2_81c5e09f24ee2efe1ae6000b3bade942/node_modules/nitropack"
|
|
42
|
+
],
|
|
43
|
+
"defu": [
|
|
44
|
+
"../../../node_modules/.pnpm/defu@6.1.7/node_modules/defu"
|
|
45
|
+
],
|
|
46
|
+
"h3": [
|
|
47
|
+
"../../../node_modules/.pnpm/h3@1.15.11/node_modules/h3"
|
|
48
|
+
],
|
|
49
|
+
"consola": [
|
|
50
|
+
"../../../node_modules/.pnpm/consola@3.4.2/node_modules/consola"
|
|
51
|
+
],
|
|
52
|
+
"ofetch": [
|
|
53
|
+
"../../../node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch"
|
|
54
|
+
],
|
|
55
|
+
"crossws": [
|
|
56
|
+
"../../../node_modules/.pnpm/crossws@0.3.5/node_modules/crossws"
|
|
57
|
+
],
|
|
58
|
+
"~": [
|
|
59
|
+
".."
|
|
60
|
+
],
|
|
61
|
+
"~/*": [
|
|
62
|
+
"../*"
|
|
63
|
+
],
|
|
64
|
+
"@": [
|
|
65
|
+
".."
|
|
66
|
+
],
|
|
67
|
+
"@/*": [
|
|
68
|
+
"../*"
|
|
69
|
+
],
|
|
70
|
+
"~~": [
|
|
71
|
+
".."
|
|
72
|
+
],
|
|
73
|
+
"~~/*": [
|
|
74
|
+
"../*"
|
|
75
|
+
],
|
|
76
|
+
"@@": [
|
|
77
|
+
".."
|
|
78
|
+
],
|
|
79
|
+
"@@/*": [
|
|
80
|
+
"../*"
|
|
81
|
+
],
|
|
82
|
+
"#shared": [
|
|
83
|
+
"../shared"
|
|
84
|
+
],
|
|
85
|
+
"#shared/*": [
|
|
86
|
+
"../shared/*"
|
|
87
|
+
],
|
|
88
|
+
"#server": [
|
|
89
|
+
"../server"
|
|
90
|
+
],
|
|
91
|
+
"#server/*": [
|
|
92
|
+
"../server/*"
|
|
93
|
+
],
|
|
94
|
+
"#app": [
|
|
95
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app"
|
|
96
|
+
],
|
|
97
|
+
"#app/*": [
|
|
98
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/*"
|
|
99
|
+
],
|
|
100
|
+
"vue-demi": [
|
|
101
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/compat/vue-demi"
|
|
102
|
+
],
|
|
103
|
+
"#strivacity-options-logging": [
|
|
104
|
+
"../src/runtime/utils/noop"
|
|
105
|
+
],
|
|
106
|
+
"#strivacity-options-httpClient": [
|
|
107
|
+
"../src/runtime/utils/noop"
|
|
108
|
+
],
|
|
109
|
+
"#strivacity-options-storage": [
|
|
110
|
+
"../src/runtime/utils/noop"
|
|
111
|
+
],
|
|
112
|
+
"#strivacity-options-stateStorage": [
|
|
113
|
+
"../src/runtime/utils/noop"
|
|
114
|
+
],
|
|
115
|
+
"#vue-router": [
|
|
116
|
+
"../../../node_modules/.pnpm/vue-router@5.3.0_@vue+compiler-sfc@3.5.42_esbuild@0.28.2_rolldown@1.2.6_rollup@4.63.1_v_cf44d69708c8633c7f6a655db5cb09bf/node_modules/vue-router"
|
|
117
|
+
],
|
|
118
|
+
"#unhead/composables": [
|
|
119
|
+
"../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/composables"
|
|
120
|
+
],
|
|
121
|
+
"#imports": [
|
|
122
|
+
"./imports"
|
|
123
|
+
],
|
|
124
|
+
"#app-manifest": [
|
|
125
|
+
"./manifest/meta/cb11df97-b0c9-4a91-9d4b-60c25c918599.json"
|
|
126
|
+
],
|
|
127
|
+
"#build": [
|
|
128
|
+
"."
|
|
129
|
+
],
|
|
130
|
+
"#build/*": [
|
|
131
|
+
"./*"
|
|
132
|
+
]
|
|
133
|
+
},
|
|
134
|
+
"esModuleInterop": true,
|
|
135
|
+
"skipLibCheck": true,
|
|
136
|
+
"target": "ESNext",
|
|
137
|
+
"allowJs": true,
|
|
138
|
+
"allowImportingTsExtensions": true,
|
|
139
|
+
"resolveJsonModule": true,
|
|
140
|
+
"moduleDetection": "force",
|
|
141
|
+
"isolatedModules": true,
|
|
142
|
+
"verbatimModuleSyntax": true,
|
|
143
|
+
"allowArbitraryExtensions": true,
|
|
144
|
+
"strict": true,
|
|
145
|
+
"noUncheckedIndexedAccess": true,
|
|
146
|
+
"forceConsistentCasingInFileNames": true,
|
|
147
|
+
"noImplicitOverride": true,
|
|
148
|
+
"module": "preserve",
|
|
149
|
+
"noEmit": true,
|
|
150
|
+
"types": [],
|
|
151
|
+
"moduleResolution": "Bundler",
|
|
152
|
+
"useDefineForClassFields": true,
|
|
153
|
+
"noImplicitThis": true,
|
|
154
|
+
"allowSyntheticDefaultImports": true
|
|
155
|
+
},
|
|
156
|
+
"include": [
|
|
157
|
+
"./nuxt.shared.d.ts",
|
|
158
|
+
"../shared/**/*",
|
|
159
|
+
"../modules/*/shared/**/*",
|
|
160
|
+
"../layers/*/shared/**/*",
|
|
161
|
+
"../*.d.ts",
|
|
162
|
+
"../layers/*/*.d.ts"
|
|
163
|
+
],
|
|
164
|
+
"exclude": []
|
|
165
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
|
|
2
|
+
import type { AppConfigInput, CustomAppConfig } from 'nuxt/schema'
|
|
3
|
+
import type { Defu } from 'defu'
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
declare global {
|
|
7
|
+
const defineAppConfig: <C extends AppConfigInput> (config: C) => C
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare const inlineConfig = {
|
|
11
|
+
"nuxt": {}
|
|
12
|
+
}
|
|
13
|
+
type ResolvedAppConfig = Defu<typeof inlineConfig, []>
|
|
14
|
+
type IsAny<T> = 0 extends 1 & T ? true : false
|
|
15
|
+
|
|
16
|
+
type MergedAppConfig<Resolved extends Record<string, unknown>, Custom extends Record<string, unknown>> = {
|
|
17
|
+
[K in keyof (Resolved & Custom)]: K extends keyof Custom
|
|
18
|
+
? unknown extends Custom[K]
|
|
19
|
+
? Resolved[K]
|
|
20
|
+
: IsAny<Custom[K]> extends true
|
|
21
|
+
? Resolved[K]
|
|
22
|
+
: Custom[K] extends Record<string, any>
|
|
23
|
+
? Resolved[K] extends Record<string, any>
|
|
24
|
+
? MergedAppConfig<Resolved[K], Custom[K]>
|
|
25
|
+
: Exclude<Custom[K], undefined>
|
|
26
|
+
: Exclude<Custom[K], undefined>
|
|
27
|
+
: Resolved[K]
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
declare module 'nuxt/schema' {
|
|
31
|
+
interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
|
|
32
|
+
}
|
|
33
|
+
declare module '@nuxt/schema' {
|
|
34
|
+
interface AppConfig extends MergedAppConfig<ResolvedAppConfig, CustomAppConfig> { }
|
|
35
|
+
}
|
|
@@ -14,54 +14,54 @@ type HydrationStrategies = {
|
|
|
14
14
|
type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {}, {}, { hydrated: () => void }> & T
|
|
15
15
|
|
|
16
16
|
interface _GlobalComponents {
|
|
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
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
17
|
+
NuxtWelcome: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/welcome.vue")['default']
|
|
18
|
+
NuxtLayout: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-layout")['default']
|
|
19
|
+
NuxtErrorBoundary: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']
|
|
20
|
+
ClientOnly: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/client-only")['default']
|
|
21
|
+
DevOnly: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/dev-only")['default']
|
|
22
|
+
ServerPlaceholder: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/server-placeholder")['default']
|
|
23
|
+
NuxtLink: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-link")['default']
|
|
24
|
+
NuxtLoadingIndicator: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']
|
|
25
|
+
NuxtTime: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']
|
|
26
|
+
NuxtRouteAnnouncer: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']
|
|
27
|
+
NuxtAnnouncer: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-announcer")['default']
|
|
28
|
+
NuxtImg: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']
|
|
29
|
+
NuxtPicture: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']
|
|
30
|
+
NuxtPage: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']
|
|
31
|
+
NoScript: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['NoScript']
|
|
32
|
+
Link: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Link']
|
|
33
|
+
Base: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Base']
|
|
34
|
+
Title: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Title']
|
|
35
|
+
Meta: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Meta']
|
|
36
|
+
Style: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Style']
|
|
37
|
+
Head: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Head']
|
|
38
|
+
Html: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Html']
|
|
39
|
+
Body: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Body']
|
|
40
|
+
NuxtIsland: typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-island")['default']
|
|
41
|
+
LazyNuxtWelcome: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/welcome.vue")['default']>
|
|
42
|
+
LazyNuxtLayout: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-layout")['default']>
|
|
43
|
+
LazyNuxtErrorBoundary: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-error-boundary.vue")['default']>
|
|
44
|
+
LazyClientOnly: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/client-only")['default']>
|
|
45
|
+
LazyDevOnly: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/dev-only")['default']>
|
|
46
|
+
LazyServerPlaceholder: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/server-placeholder")['default']>
|
|
47
|
+
LazyNuxtLink: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-link")['default']>
|
|
48
|
+
LazyNuxtLoadingIndicator: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-loading-indicator")['default']>
|
|
49
|
+
LazyNuxtTime: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-time.vue")['default']>
|
|
50
|
+
LazyNuxtRouteAnnouncer: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-route-announcer")['default']>
|
|
51
|
+
LazyNuxtAnnouncer: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-announcer")['default']>
|
|
52
|
+
LazyNuxtImg: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtImg']>
|
|
53
|
+
LazyNuxtPicture: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/app/components/nuxt-stubs")['NuxtPicture']>
|
|
54
|
+
LazyNuxtPage: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/pages/runtime/page-placeholder")['default']>
|
|
55
|
+
LazyNoScript: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['NoScript']>
|
|
56
|
+
LazyLink: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Link']>
|
|
57
|
+
LazyBase: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Base']>
|
|
58
|
+
LazyTitle: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Title']>
|
|
59
|
+
LazyMeta: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Meta']>
|
|
60
|
+
LazyStyle: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Style']>
|
|
61
|
+
LazyHead: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Head']>
|
|
62
|
+
LazyHtml: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Html']>
|
|
63
|
+
LazyBody: LazyComponent<typeof import("../../../../node_modules/.pnpm/nuxt@4.5.2_6ed97a1f3ddf9a9523af906298c85ee8/node_modules/nuxt/dist/head/runtime/components")['Body']>
|
|
64
|
+
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
|
|
|
67
67
|
declare module 'vue' {
|
package/.nuxt/types/imports.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by auto imports
|
|
2
|
-
// Implicit auto importing is disabled, you can
|
|
2
|
+
// Implicit auto importing is disabled, you can explicitly import from `#imports` instead.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ComputedRef, MaybeRef } from "vue";
|
|
2
|
+
import type { ComponentProps } from "../../../../node_modules/.pnpm/vue-component-type-helpers@3.3.11/node_modules/vue-component-type-helpers/index.js";
|
|
3
|
+
|
|
4
|
+
declare module 'nuxt/app' {
|
|
5
|
+
interface NuxtLayouts {
|
|
6
|
+
}
|
|
7
|
+
export type LayoutKey = keyof NuxtLayouts extends never ? string : keyof NuxtLayouts
|
|
8
|
+
interface PageMeta {
|
|
9
|
+
layout?: MaybeRef<LayoutKey | false> | ComputedRef<LayoutKey | false> | {
|
|
10
|
+
[K in LayoutKey]: {
|
|
11
|
+
name?: MaybeRef<K | false> | ComputedRef<K | false>
|
|
12
|
+
props?: NuxtLayouts[K]
|
|
13
|
+
}
|
|
14
|
+
}[LayoutKey]
|
|
15
|
+
}
|
|
16
|
+
}
|
package/.nuxt/types/modules.d.ts
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
1
|
import { NuxtModule, ModuleDependencyMeta } from '@nuxt/schema'
|
|
2
2
|
declare module '@nuxt/schema' {
|
|
3
3
|
interface ModuleDependencies {
|
|
4
|
-
["
|
|
5
|
-
["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
|
|
4
|
+
["@strivacity/sdk-nuxt"]?: ModuleDependencyMeta<typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
|
|
5
|
+
["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
|
|
6
6
|
}
|
|
7
7
|
interface NuxtOptions {
|
|
8
8
|
/**
|
|
9
|
-
* Configuration for
|
|
9
|
+
* Configuration for `/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module`
|
|
10
10
|
*/
|
|
11
|
-
["strivacity"]: typeof import("
|
|
11
|
+
["strivacity"]: typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
|
|
12
12
|
/**
|
|
13
13
|
* Configuration for `@nuxt/devtools`
|
|
14
14
|
*/
|
|
15
|
-
["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
|
|
15
|
+
["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
|
|
16
16
|
}
|
|
17
17
|
interface NuxtConfig {
|
|
18
18
|
/**
|
|
19
|
-
* Configuration for
|
|
19
|
+
* Configuration for `/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module`
|
|
20
20
|
*/
|
|
21
|
-
["strivacity"]?: typeof import("
|
|
21
|
+
["strivacity"]?: typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
|
|
22
22
|
/**
|
|
23
23
|
* Configuration for `@nuxt/devtools`
|
|
24
24
|
*/
|
|
25
|
-
["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
|
|
26
|
-
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["
|
|
25
|
+
["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
|
|
26
|
+
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module", Exclude<NuxtConfig["strivacity"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>])[],
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
declare module 'nuxt/schema' {
|
|
30
30
|
interface ModuleDependencies {
|
|
31
|
-
["
|
|
32
|
-
["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O : Record<string, unknown>>
|
|
31
|
+
["@strivacity/sdk-nuxt"]?: ModuleDependencyMeta<typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
|
|
32
|
+
["@nuxt/devtools"]?: ModuleDependencyMeta<typeof import("@nuxt/devtools").default extends NuxtModule<infer O> ? O | false : Record<string, unknown>> | false
|
|
33
33
|
}
|
|
34
34
|
interface NuxtOptions {
|
|
35
35
|
/**
|
|
36
|
-
* Configuration for
|
|
37
|
-
* @see https://www.npmjs.com/package
|
|
36
|
+
* Configuration for `/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module`
|
|
37
|
+
* @see https://www.npmjs.com/package//home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module
|
|
38
38
|
*/
|
|
39
|
-
["strivacity"]: typeof import("
|
|
39
|
+
["strivacity"]: typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
|
|
40
40
|
/**
|
|
41
41
|
* Configuration for `@nuxt/devtools`
|
|
42
42
|
* @see https://www.npmjs.com/package/@nuxt/devtools
|
|
43
43
|
*/
|
|
44
|
-
["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O : Record<string, any>
|
|
44
|
+
["devtools"]: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? O | false : Record<string, any> | false
|
|
45
45
|
}
|
|
46
46
|
interface NuxtConfig {
|
|
47
47
|
/**
|
|
48
|
-
* Configuration for
|
|
49
|
-
* @see https://www.npmjs.com/package
|
|
48
|
+
* Configuration for `/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module`
|
|
49
|
+
* @see https://www.npmjs.com/package//home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module
|
|
50
50
|
*/
|
|
51
|
-
["strivacity"]?: typeof import("
|
|
51
|
+
["strivacity"]?: typeof import("/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
|
|
52
52
|
/**
|
|
53
53
|
* Configuration for `@nuxt/devtools`
|
|
54
54
|
* @see https://www.npmjs.com/package/@nuxt/devtools
|
|
55
55
|
*/
|
|
56
|
-
["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> : Record<string, any>
|
|
57
|
-
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["
|
|
56
|
+
["devtools"]?: typeof import("@nuxt/devtools").default extends NuxtModule<infer O, unknown, boolean> ? Partial<O> | false : Record<string, any> | false
|
|
57
|
+
modules?: (undefined | null | false | NuxtModule<any> | string | [NuxtModule | string, Record<string, any>] | ["/home/runner/work/sdk-js/sdk-js/packages/sdk-nuxt/src/module", Exclude<NuxtConfig["strivacity"], boolean>] | ["@nuxt/devtools", Exclude<NuxtConfig["devtools"], boolean>])[],
|
|
58
58
|
}
|
|
59
59
|
}
|