Skip to content

Commit bc16153

Browse files
committed
chore: wip
1 parent f7d101d commit bc16153

File tree

5 files changed

+32
-26
lines changed

5 files changed

+32
-26
lines changed

config/team.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@ export default {
1818
glenn: 'glenn@stacksjs.org',
1919
dorell: 'dorell@stacksjs.org',
2020
avery: 'avery@stacksjs.org',
21+
adelino: 'adelino@stacksjs.org',
2122
},
2223
} satisfies Team

storage/framework/ide/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Abellanosa
2+
adelino
23
alefragnani
34
alrighty
45
amazonses

storage/framework/types/auto-imports.d.ts

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ declare global {
121121
const assert: typeof import('../core/testing/src/index')['assert']
122122
const assetsPath: typeof import('../core/path/src/paths')['assetsPath']
123123
const asyncComputed: typeof import('../core/utils/src/vendors')['asyncComputed']
124+
const attempt: typeof import('../core/auth/src/authentication')['attempt']
124125
const auth: typeof import('../core/auth/src/index')['auth']
125126
const authPath: typeof import('../core/path/src/paths')['authPath']
126127
const autoResetRef: typeof import('../core/utils/src/vendors')['autoResetRef']
@@ -376,7 +377,10 @@ declare global {
376377
const generateMigrationFile: typeof import('../core/database/src/migrations')['generateMigrationFile']
377378
const generateMigrations: typeof import('../core/database/src/migrations')['generateMigrations']
378379
const generatePkgxConfig: typeof import('../core/actions/src/generate/index')['generatePkgxConfig']
380+
const generateQrCode: typeof import('../core/auth/src/authenticator')['generateQrCode']
379381
const generateSeeder: typeof import('../core/actions/src/generate/index')['generateSeeder']
382+
const generateTwoFactorSecret: typeof import('../core/auth/src/authenticator')['generateTwoFactorSecret']
383+
const generateTwoFactorToken: typeof import('../core/auth/src/authenticator')['generateTwoFactorToken']
380384
const generateTypes: typeof import('../core/actions/src/generate/index')['generateTypes']
381385
const generateVsCodeCustomData: typeof import('../core/actions/src/generate/index')['generateVsCodeCustomData']
382386
const generateWebTypes: typeof import('../core/actions/src/generate/index')['generateWebTypes']
@@ -586,8 +590,8 @@ declare global {
586590
const okAsync: typeof import('../core/error-handling/src/index')['okAsync']
587591
const onActivated: typeof import('vue')['onActivated']
588592
const onBeforeMount: typeof import('vue')['onBeforeMount']
589-
const onBeforeRouteLeave: typeof import('vue-router/auto')['onBeforeRouteLeave']
590-
const onBeforeRouteUpdate: typeof import('vue-router/auto')['onBeforeRouteUpdate']
593+
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
594+
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
591595
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
592596
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
593597
const onClickOutside: typeof import('../core/utils/src/vendors')['onClickOutside']
@@ -942,8 +946,8 @@ declare global {
942946
const useRefHistory: typeof import('../core/utils/src/vendors')['useRefHistory']
943947
const useResizeObserver: typeof import('../core/utils/src/vendors')['useResizeObserver']
944948
const useRound: typeof import('../core/utils/src/math')['useRound']
945-
const useRoute: typeof import('vue-router/auto')['useRoute']
946-
const useRouter: typeof import('vue-router/auto')['useRouter']
949+
const useRoute: typeof import('vue-router')['useRoute']
950+
const useRouter: typeof import('vue-router')['useRouter']
947951
const useSMS: typeof import('../core/notifications/src/index')['useSMS']
948952
const useScheduler: typeof import('../core/scheduler/src/index')['useScheduler']
949953
const useScreenOrientation: typeof import('../core/utils/src/vendors')['useScreenOrientation']
@@ -1022,6 +1026,7 @@ declare global {
10221026
const validationPath: typeof import('../core/path/src/paths')['validationPath']
10231027
const validator: typeof import('../core/validation/src/validate')['validator']
10241028
const verifyHash: typeof import('../core/security/src/hash')['verifyHash']
1029+
const verifyTwoFactorCode: typeof import('../core/auth/src/authenticator')['verifyTwoFactorCode']
10251030
const version: typeof import('../core/utils/src/versions')['version']
10261031
const views: typeof import('../core/build/src/index')['views']
10271032
const viewsPath: typeof import('../core/path/src/paths')['viewsPath']
@@ -1076,15 +1081,6 @@ declare global {
10761081
// @ts-ignore
10771082
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
10781083
import('vue')
1079-
// @ts-ignore
1080-
export type { Every } from '../core/types/src/cron-jobs'
1081-
import('../core/types/src/cron-jobs')
1082-
// @ts-ignore
1083-
export type { SocialLinkIcon } from '../core/types/src/docs'
1084-
import('../core/types/src/docs')
1085-
// @ts-ignore
1086-
export type { ExitCode } from '../core/types/src/exit-code'
1087-
import('../core/types/src/exit-code')
10881084
}
10891085
// for vue template auto import
10901086
import { UnwrapRef } from 'vue'
@@ -1157,7 +1153,7 @@ declare module 'vue' {
11571153
readonly arraysPath: UnwrapRef<typeof import('../core/path/src/paths')['arraysPath']>
11581154
readonly assetsPath: UnwrapRef<typeof import('../core/path/src/paths')['assetsPath']>
11591155
readonly asyncComputed: UnwrapRef<typeof import('../core/utils/src/vendors')['asyncComputed']>
1160-
readonly auth: UnwrapRef<typeof import('../core/auth/src/index')['auth']>
1156+
readonly attempt: UnwrapRef<typeof import('../core/auth/src/authentication')['attempt']>
11611157
readonly authPath: UnwrapRef<typeof import('../core/path/src/paths')['authPath']>
11621158
readonly autoResetRef: UnwrapRef<typeof import('../core/utils/src/vendors')['autoResetRef']>
11631159
readonly base64Encode: UnwrapRef<typeof import('../core/security/src/hash')['base64Encode']>
@@ -1290,7 +1286,6 @@ declare module 'vue' {
12901286
readonly defineJob: UnwrapRef<typeof import('../core/utils/src/config')['defineJob']>
12911287
readonly defineLibrary: UnwrapRef<typeof import('../core/utils/src/config')['defineLibrary']>
12921288
readonly defineNotification: UnwrapRef<typeof import('../core/utils/src/config')['defineNotification']>
1293-
readonly definePage: UnwrapRef<typeof import('unplugin-vue-router/runtime')['definePage']>
12941289
readonly definePayment: UnwrapRef<typeof import('../core/utils/src/config')['definePayment']>
12951290
readonly defineQueue: UnwrapRef<typeof import('../core/utils/src/config')['defineQueue']>
12961291
readonly defineSearchEngine: UnwrapRef<typeof import('../core/utils/src/config')['defineSearchEngine']>
@@ -1391,7 +1386,10 @@ declare module 'vue' {
13911386
readonly generateMigration: UnwrapRef<typeof import('../core/database/src/migrations')['generateMigration']>
13921387
readonly generateMigrations: UnwrapRef<typeof import('../core/database/src/migrations')['generateMigrations']>
13931388
readonly generatePkgxConfig: UnwrapRef<typeof import('../core/actions/src/generate/index')['generatePkgxConfig']>
1389+
readonly generateQrCode: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateQrCode']>
13941390
readonly generateSeeder: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateSeeder']>
1391+
readonly generateTwoFactorSecret: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateTwoFactorSecret']>
1392+
readonly generateTwoFactorToken: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateTwoFactorToken']>
13951393
readonly generateTypes: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateTypes']>
13961394
readonly generateVsCodeCustomData: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateVsCodeCustomData']>
13971395
readonly generateWebTypes: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateWebTypes']>
@@ -1594,8 +1592,8 @@ declare module 'vue' {
15941592
readonly okAsync: UnwrapRef<typeof import('../core/error-handling/src/index')['okAsync']>
15951593
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
15961594
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
1597-
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router/auto')['onBeforeRouteLeave']>
1598-
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router/auto')['onBeforeRouteUpdate']>
1595+
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
1596+
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
15991597
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
16001598
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
16011599
readonly onClickOutside: UnwrapRef<typeof import('../core/utils/src/vendors')['onClickOutside']>
@@ -1927,8 +1925,8 @@ declare module 'vue' {
19271925
readonly useRefHistory: UnwrapRef<typeof import('../core/utils/src/vendors')['useRefHistory']>
19281926
readonly useResizeObserver: UnwrapRef<typeof import('../core/utils/src/vendors')['useResizeObserver']>
19291927
readonly useRound: UnwrapRef<typeof import('../core/utils/src/math')['useRound']>
1930-
readonly useRoute: UnwrapRef<typeof import('vue-router/auto')['useRoute']>
1931-
readonly useRouter: UnwrapRef<typeof import('vue-router/auto')['useRouter']>
1928+
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
1929+
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
19321930
readonly useSMS: UnwrapRef<typeof import('../core/notifications/src/index')['useSMS']>
19331931
readonly useScreenOrientation: UnwrapRef<typeof import('../core/utils/src/vendors')['useScreenOrientation']>
19341932
readonly useScreenSafeArea: UnwrapRef<typeof import('../core/utils/src/vendors')['useScreenSafeArea']>
@@ -2005,6 +2003,7 @@ declare module 'vue' {
20052003
readonly validateField: UnwrapRef<typeof import('../core/validation/src/validator')['validateField']>
20062004
readonly validationPath: UnwrapRef<typeof import('../core/path/src/paths')['validationPath']>
20072005
readonly verifyHash: UnwrapRef<typeof import('../core/security/src/hash')['verifyHash']>
2006+
readonly verifyTwoFactorCode: UnwrapRef<typeof import('../core/auth/src/authenticator')['verifyTwoFactorCode']>
20082007
readonly version: UnwrapRef<typeof import('../core/utils/src/versions')['version']>
20092008
readonly viewsPath: UnwrapRef<typeof import('../core/path/src/paths')['viewsPath']>
20102009
readonly viteConfigPath: UnwrapRef<typeof import('../core/path/src/paths')['viteConfigPath']>
@@ -2115,7 +2114,7 @@ declare module '@vue/runtime-core' {
21152114
readonly arraysPath: UnwrapRef<typeof import('../core/path/src/paths')['arraysPath']>
21162115
readonly assetsPath: UnwrapRef<typeof import('../core/path/src/paths')['assetsPath']>
21172116
readonly asyncComputed: UnwrapRef<typeof import('../core/utils/src/vendors')['asyncComputed']>
2118-
readonly auth: UnwrapRef<typeof import('../core/auth/src/index')['auth']>
2117+
readonly attempt: UnwrapRef<typeof import('../core/auth/src/authentication')['attempt']>
21192118
readonly authPath: UnwrapRef<typeof import('../core/path/src/paths')['authPath']>
21202119
readonly autoResetRef: UnwrapRef<typeof import('../core/utils/src/vendors')['autoResetRef']>
21212120
readonly base64Encode: UnwrapRef<typeof import('../core/security/src/hash')['base64Encode']>
@@ -2248,7 +2247,6 @@ declare module '@vue/runtime-core' {
22482247
readonly defineJob: UnwrapRef<typeof import('../core/utils/src/config')['defineJob']>
22492248
readonly defineLibrary: UnwrapRef<typeof import('../core/utils/src/config')['defineLibrary']>
22502249
readonly defineNotification: UnwrapRef<typeof import('../core/utils/src/config')['defineNotification']>
2251-
readonly definePage: UnwrapRef<typeof import('unplugin-vue-router/runtime')['definePage']>
22522250
readonly definePayment: UnwrapRef<typeof import('../core/utils/src/config')['definePayment']>
22532251
readonly defineQueue: UnwrapRef<typeof import('../core/utils/src/config')['defineQueue']>
22542252
readonly defineSearchEngine: UnwrapRef<typeof import('../core/utils/src/config')['defineSearchEngine']>
@@ -2349,7 +2347,10 @@ declare module '@vue/runtime-core' {
23492347
readonly generateMigration: UnwrapRef<typeof import('../core/database/src/migrations')['generateMigration']>
23502348
readonly generateMigrations: UnwrapRef<typeof import('../core/database/src/migrations')['generateMigrations']>
23512349
readonly generatePkgxConfig: UnwrapRef<typeof import('../core/actions/src/generate/index')['generatePkgxConfig']>
2350+
readonly generateQrCode: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateQrCode']>
23522351
readonly generateSeeder: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateSeeder']>
2352+
readonly generateTwoFactorSecret: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateTwoFactorSecret']>
2353+
readonly generateTwoFactorToken: UnwrapRef<typeof import('../core/auth/src/authenticator')['generateTwoFactorToken']>
23532354
readonly generateTypes: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateTypes']>
23542355
readonly generateVsCodeCustomData: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateVsCodeCustomData']>
23552356
readonly generateWebTypes: UnwrapRef<typeof import('../core/actions/src/generate/index')['generateWebTypes']>
@@ -2552,8 +2553,8 @@ declare module '@vue/runtime-core' {
25522553
readonly okAsync: UnwrapRef<typeof import('../core/error-handling/src/index')['okAsync']>
25532554
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
25542555
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
2555-
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router/auto')['onBeforeRouteLeave']>
2556-
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router/auto')['onBeforeRouteUpdate']>
2556+
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
2557+
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
25572558
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
25582559
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
25592560
readonly onClickOutside: UnwrapRef<typeof import('../core/utils/src/vendors')['onClickOutside']>
@@ -2885,8 +2886,8 @@ declare module '@vue/runtime-core' {
28852886
readonly useRefHistory: UnwrapRef<typeof import('../core/utils/src/vendors')['useRefHistory']>
28862887
readonly useResizeObserver: UnwrapRef<typeof import('../core/utils/src/vendors')['useResizeObserver']>
28872888
readonly useRound: UnwrapRef<typeof import('../core/utils/src/math')['useRound']>
2888-
readonly useRoute: UnwrapRef<typeof import('vue-router/auto')['useRoute']>
2889-
readonly useRouter: UnwrapRef<typeof import('vue-router/auto')['useRouter']>
2889+
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
2890+
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
28902891
readonly useSMS: UnwrapRef<typeof import('../core/notifications/src/index')['useSMS']>
28912892
readonly useScreenOrientation: UnwrapRef<typeof import('../core/utils/src/vendors')['useScreenOrientation']>
28922893
readonly useScreenSafeArea: UnwrapRef<typeof import('../core/utils/src/vendors')['useScreenSafeArea']>
@@ -2963,6 +2964,7 @@ declare module '@vue/runtime-core' {
29632964
readonly validateField: UnwrapRef<typeof import('../core/validation/src/validator')['validateField']>
29642965
readonly validationPath: UnwrapRef<typeof import('../core/path/src/paths')['validationPath']>
29652966
readonly verifyHash: UnwrapRef<typeof import('../core/security/src/hash')['verifyHash']>
2967+
readonly verifyTwoFactorCode: UnwrapRef<typeof import('../core/auth/src/authenticator')['verifyTwoFactorCode']>
29662968
readonly version: UnwrapRef<typeof import('../core/utils/src/versions')['version']>
29672969
readonly viewsPath: UnwrapRef<typeof import('../core/path/src/paths')['viewsPath']>
29682970
readonly viteConfigPath: UnwrapRef<typeof import('../core/path/src/paths')['viteConfigPath']>

storage/framework/types/components.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ declare module 'vue' {
6868
SlimLayout: typeof import('./../../../libs/components/Marketing/SlimLayout.vue')['default']
6969
Starport: typeof import('vue-starport')['Starport']
7070
StarportCarrier: typeof import('vue-starport')['StarportCarrier']
71+
StorageForm: typeof import('./../../../libs/components/Dashboard/Settings/Forms/StorageForm.vue')['default']
72+
TeamsForm: typeof import('./../../../libs/components/Dashboard/Settings/Forms/TeamsForm.vue')['default']
7173
TerminalContainer: typeof import('./../../../libs/components/TerminalContainer.vue')['default']
7274
Testimonials: typeof import('./../../../libs/components/Marketing/Testimonials.vue')['default']
7375
Toast: typeof import('./../../../libs/components/Dashboard/Modals/Popups/Toast.vue')['default']

storage/framework/types/dashboard-router.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ declare module 'vue-router/auto-routes' {
1212
ParamValueOneOrMore,
1313
ParamValueZeroOrMore,
1414
ParamValueZeroOrOne,
15-
} from 'unplugin-vue-router/types'
15+
} from 'vue-router'
1616

1717
/**
1818
* Route name map generated by unplugin-vue-router

0 commit comments

Comments
 (0)