Skip to content

Commit 7fd91fe

Browse files
committed
chore: wip
chore: wip
1 parent b225daf commit 7fd91fe

File tree

10 files changed

+18
-10
lines changed

10 files changed

+18
-10
lines changed

resources/views/dashboard/settings/billing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { useBillable } from '../../../functions/billing/payments'
2+
import { useBillable } from '../../../../storage/framework/functions/billing/payments'
33
import ActivePlan from '../../../components/Billing/ActivePlan.vue'
44
import PaymentMethod from '../../../components/Billing/PaymentMethod.vue'
55
import Plans from '../../../components/Billing/Plans.vue'

storage/framework/core/vite-plugin/src/auto-imports.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@ export function autoImports(options?: AutoImportsOptions): Plugin {
2525
],
2626

2727
dts: p.frameworkPath('types/browser-auto-imports.d.ts'),
28-
dirs: [p.resourcesPath('components'), p.frameworkPath('components'), p.resourcesPath('functions'), p.resourcesPath('stores'), p.browserPath('src')],
28+
dirs: [
29+
p.resourcesPath('components'),
30+
p.frameworkPath('components'),
31+
p.resourcesPath('functions'),
32+
p.frameworkPath('functions'),
33+
p.resourcesPath('stores'),
34+
p.frameworkPath('stores'),
35+
p.browserPath('src'),
36+
],
2937
vueTemplate: true,
3038

3139
eslintrc: {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ declare global {
282282
const useFullscreen: typeof import('../core/browser/src/utils/vendors')['useFullscreen']
283283
const useGamepad: typeof import('../core/browser/src/utils/vendors')['useGamepad']
284284
const useGeolocation: typeof import('../core/browser/src/utils/vendors')['useGeolocation']
285-
const useGitStore: typeof import('../../../resources/stores/git')['useGitStore']
285+
const useGitStore: typeof import('../stores/git')['useGitStore']
286286
const useHead: typeof import('@unhead/vue')['useHead']
287287
const useHeadSafe: typeof import('@unhead/vue')['useHeadSafe']
288288
const useI18n: typeof import('vue-i18n')['useI18n']
@@ -321,7 +321,7 @@ declare global {
321321
const usePageLeave: typeof import('../core/browser/src/utils/vendors')['usePageLeave']
322322
const useParallax: typeof import('../core/browser/src/utils/vendors')['useParallax']
323323
const useParentElement: typeof import('../core/browser/src/utils/vendors')['useParentElement']
324-
const usePaymentStore: typeof import('../../../resources/stores/payment')['usePaymentStore']
324+
const usePaymentStore: typeof import('../stores/payment')['usePaymentStore']
325325
const usePerformanceObserver: typeof import('../core/browser/src/utils/vendors')['usePerformanceObserver']
326326
const usePermission: typeof import('../core/browser/src/utils/vendors')['usePermission']
327327
const usePointer: typeof import('../core/browser/src/utils/vendors')['usePointer']
@@ -335,7 +335,7 @@ declare global {
335335
const usePreferredReducedMotion: typeof import('../core/browser/src/utils/vendors')['usePreferredReducedMotion']
336336
const usePrevious: typeof import('../core/browser/src/utils/vendors')['usePrevious']
337337
const useProjection: typeof import('../core/browser/src/utils/math')['useProjection']
338-
const useQueueStore: typeof import('../../../resources/stores/queue')['useQueueStore']
338+
const useQueueStore: typeof import('../stores/queue')['useQueueStore']
339339
const useRafFn: typeof import('../core/browser/src/utils/vendors')['useRafFn']
340340
const useRefHistory: typeof import('../core/browser/src/utils/vendors')['useRefHistory']
341341
const useResizeObserver: typeof import('../core/browser/src/utils/vendors')['useResizeObserver']
@@ -385,7 +385,7 @@ declare global {
385385
const useTrunc: typeof import('../core/browser/src/utils/math')['useTrunc']
386386
const useUrlSearchParams: typeof import('../core/browser/src/utils/vendors')['useUrlSearchParams']
387387
const useUserMedia: typeof import('../core/browser/src/utils/vendors')['useUserMedia']
388-
const useUserStore: typeof import('../../../resources/stores/user')['useUserStore']
388+
const useUserStore: typeof import('../stores/user')['useUserStore']
389389
const useVModel: typeof import('../core/browser/src/utils/vendors')['useVModel']
390390
const useVModels: typeof import('../core/browser/src/utils/vendors')['useVModels']
391391
const useVibrate: typeof import('../core/browser/src/utils/vendors')['useVibrate']
@@ -726,7 +726,7 @@ declare module 'vue' {
726726
readonly useFullscreen: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useFullscreen']>
727727
readonly useGamepad: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useGamepad']>
728728
readonly useGeolocation: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useGeolocation']>
729-
readonly useGitStore: UnwrapRef<typeof import('../../../resources/stores/git')['useGitStore']>
729+
readonly useGitStore: UnwrapRef<typeof import('../stores/git')['useGitStore']>
730730
readonly useHead: UnwrapRef<typeof import('@unhead/vue')['useHead']>
731731
readonly useHeadSafe: UnwrapRef<typeof import('@unhead/vue')['useHeadSafe']>
732732
readonly useI18n: UnwrapRef<typeof import('vue-i18n')['useI18n']>
@@ -765,7 +765,7 @@ declare module 'vue' {
765765
readonly usePageLeave: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePageLeave']>
766766
readonly useParallax: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useParallax']>
767767
readonly useParentElement: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useParentElement']>
768-
readonly usePaymentStore: UnwrapRef<typeof import('../../../resources/stores/payment')['usePaymentStore']>
768+
readonly usePaymentStore: UnwrapRef<typeof import('../stores/payment')['usePaymentStore']>
769769
readonly usePerformanceObserver: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePerformanceObserver']>
770770
readonly usePermission: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePermission']>
771771
readonly usePointer: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePointer']>
@@ -779,7 +779,7 @@ declare module 'vue' {
779779
readonly usePreferredReducedMotion: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePreferredReducedMotion']>
780780
readonly usePrevious: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['usePrevious']>
781781
readonly useProjection: UnwrapRef<typeof import('../core/browser/src/utils/math')['useProjection']>
782-
readonly useQueueStore: UnwrapRef<typeof import('../../../resources/stores/queue')['useQueueStore']>
782+
readonly useQueueStore: UnwrapRef<typeof import('../stores/queue')['useQueueStore']>
783783
readonly useRafFn: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useRafFn']>
784784
readonly useRefHistory: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useRefHistory']>
785785
readonly useResizeObserver: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useResizeObserver']>
@@ -829,7 +829,7 @@ declare module 'vue' {
829829
readonly useTrunc: UnwrapRef<typeof import('../core/browser/src/utils/math')['useTrunc']>
830830
readonly useUrlSearchParams: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useUrlSearchParams']>
831831
readonly useUserMedia: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useUserMedia']>
832-
readonly useUserStore: UnwrapRef<typeof import('../../../resources/stores/user')['useUserStore']>
832+
readonly useUserStore: UnwrapRef<typeof import('../stores/user')['useUserStore']>
833833
readonly useVModel: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useVModel']>
834834
readonly useVModels: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useVModels']>
835835
readonly useVibrate: UnwrapRef<typeof import('../core/browser/src/utils/vendors')['useVibrate']>
File renamed without changes.

0 commit comments

Comments
 (0)