@vuetify/one 1.3.0 → 1.4.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/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as pinia from 'pinia';
4
4
  import { PiniaPluginContext } from 'pinia';
5
5
 
6
6
  declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<{
7
- user: vue.Ref<{
7
+ user: globalThis.Ref<{
8
8
  id: string;
9
9
  isAdmin: boolean;
10
10
  name: string;
@@ -93,7 +93,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
93
93
  }[];
94
94
  } | null>;
95
95
  url: string;
96
- dialog: vue.Ref<boolean>;
96
+ dialog: globalThis.Ref<boolean>;
97
97
  isLoading: vue.ShallowRef<boolean>;
98
98
  findIdentity: (provider: string) => {
99
99
  id: string;
@@ -109,11 +109,11 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
109
109
  };
110
110
  login: (provider?: 'github' | 'discord') => Promise<void>;
111
111
  logout: (identity?: string) => Promise<void>;
112
- isSubscriber: vue.ComputedRef<boolean>;
112
+ isSubscriber: globalThis.ComputedRef<boolean>;
113
113
  lastLoginProvider: () => string | null;
114
114
  sync: () => Promise<void>;
115
115
  }, "url" | "user" | "dialog" | "isLoading">>, Pick<{
116
- user: vue.Ref<{
116
+ user: globalThis.Ref<{
117
117
  id: string;
118
118
  isAdmin: boolean;
119
119
  name: string;
@@ -202,7 +202,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
202
202
  }[];
203
203
  } | null>;
204
204
  url: string;
205
- dialog: vue.Ref<boolean>;
205
+ dialog: globalThis.Ref<boolean>;
206
206
  isLoading: vue.ShallowRef<boolean>;
207
207
  findIdentity: (provider: string) => {
208
208
  id: string;
@@ -218,11 +218,11 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
218
218
  };
219
219
  login: (provider?: 'github' | 'discord') => Promise<void>;
220
220
  logout: (identity?: string) => Promise<void>;
221
- isSubscriber: vue.ComputedRef<boolean>;
221
+ isSubscriber: globalThis.ComputedRef<boolean>;
222
222
  lastLoginProvider: () => string | null;
223
223
  sync: () => Promise<void>;
224
224
  }, "isSubscriber">, Pick<{
225
- user: vue.Ref<{
225
+ user: globalThis.Ref<{
226
226
  id: string;
227
227
  isAdmin: boolean;
228
228
  name: string;
@@ -311,7 +311,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
311
311
  }[];
312
312
  } | null>;
313
313
  url: string;
314
- dialog: vue.Ref<boolean>;
314
+ dialog: globalThis.Ref<boolean>;
315
315
  isLoading: vue.ShallowRef<boolean>;
316
316
  findIdentity: (provider: string) => {
317
317
  id: string;
@@ -327,7 +327,7 @@ declare const useAuthStore: pinia.StoreDefinition<"auth", pinia._UnwrapAll<Pick<
327
327
  };
328
328
  login: (provider?: 'github' | 'discord') => Promise<void>;
329
329
  logout: (identity?: string) => Promise<void>;
330
- isSubscriber: vue.ComputedRef<boolean>;
330
+ isSubscriber: globalThis.ComputedRef<boolean>;
331
331
  lastLoginProvider: () => string | null;
332
332
  sync: () => Promise<void>;
333
333
  }, "findIdentity" | "verify" | "login" | "logout" | "lastLoginProvider" | "sync">>;
@@ -364,7 +364,7 @@ interface Banner {
364
364
  site: ('*' | 'dev' | 'vbin' | 'vplay' | 'docs' | 'home' | 'server')[];
365
365
  };
366
366
  }
367
- interface State {
367
+ interface State$1 {
368
368
  all: Ref<Banner[]>;
369
369
  aall: Ref<Banner[]>;
370
370
  isLoading: ShallowRef<boolean>;
@@ -372,12 +372,13 @@ interface State {
372
372
  banner: ComputedRef<Banner | undefined>;
373
373
  record: Ref<Banner | undefined>;
374
374
  admin: () => Promise<Banner[]>;
375
- get: () => Promise<Banner[]>;
376
- edit: (slug: string) => Promise<Banner>;
377
- create: (data: FormData) => Promise<Banner>;
378
- save: (slug: string, data: FormData) => Promise<Banner>;
375
+ destroy: (slug: string) => Promise<void>;
376
+ index: () => Promise<Banner[]>;
377
+ show: (slug: string) => Promise<Banner>;
378
+ store: (data: FormData) => Promise<Banner>;
379
+ update: (slug: string, data: FormData) => Promise<Banner>;
379
380
  }
380
- declare const useBannersStore: pinia.StoreDefinition<"banners", pinia._UnwrapAll<Pick<State, "isLoading" | "all" | "aall" | "record">>, Pick<State, "banner" | "server">, Pick<State, "get" | "save" | "admin" | "edit" | "create">>;
381
+ declare const useBannersStore: pinia.StoreDefinition<"banners", pinia._UnwrapAll<Pick<State$1, "isLoading" | "all" | "aall" | "record">>, Pick<State$1, "server" | "banner">, Pick<State$1, "show" | "admin" | "destroy" | "index" | "store" | "update">>;
381
382
 
382
383
  type Bin = {
383
384
  id: string;
@@ -389,8 +390,8 @@ type Bin = {
389
390
  };
390
391
  declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<{
391
392
  isLoading: vue.ShallowRef<boolean>;
392
- isOwner: vue.ComputedRef<boolean>;
393
- pinned: vue.ComputedRef<{
393
+ isOwner: globalThis.ComputedRef<boolean>;
394
+ pinned: globalThis.ComputedRef<{
394
395
  id: string;
395
396
  content: string;
396
397
  favorite: boolean;
@@ -398,7 +399,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
398
399
  owner: Record<string, unknown>;
399
400
  visibility: 'private' | 'public';
400
401
  }[]>;
401
- favorites: vue.ComputedRef<{
402
+ favorites: globalThis.ComputedRef<{
402
403
  id: string;
403
404
  content: string;
404
405
  favorite: boolean;
@@ -406,7 +407,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
406
407
  owner: Record<string, unknown>;
407
408
  visibility: 'private' | 'public';
408
409
  }[]>;
409
- all: vue.Ref<{
410
+ all: globalThis.Ref<{
410
411
  id: string;
411
412
  content: string;
412
413
  favorite: boolean;
@@ -418,7 +419,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
418
419
  bin: Bin;
419
420
  }>;
420
421
  delete: (id: string) => Promise<boolean>;
421
- current: vue.Ref<Bin | undefined>;
422
+ current: globalThis.Ref<Bin | undefined>;
422
423
  find: (id: string) => Promise<{
423
424
  bin: Bin | undefined;
424
425
  }>;
@@ -438,8 +439,8 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
438
439
  }>;
439
440
  }, "isLoading" | "all" | "current">>, Pick<{
440
441
  isLoading: vue.ShallowRef<boolean>;
441
- isOwner: vue.ComputedRef<boolean>;
442
- pinned: vue.ComputedRef<{
442
+ isOwner: globalThis.ComputedRef<boolean>;
443
+ pinned: globalThis.ComputedRef<{
443
444
  id: string;
444
445
  content: string;
445
446
  favorite: boolean;
@@ -447,7 +448,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
447
448
  owner: Record<string, unknown>;
448
449
  visibility: 'private' | 'public';
449
450
  }[]>;
450
- favorites: vue.ComputedRef<{
451
+ favorites: globalThis.ComputedRef<{
451
452
  id: string;
452
453
  content: string;
453
454
  favorite: boolean;
@@ -455,7 +456,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
455
456
  owner: Record<string, unknown>;
456
457
  visibility: 'private' | 'public';
457
458
  }[]>;
458
- all: vue.Ref<{
459
+ all: globalThis.Ref<{
459
460
  id: string;
460
461
  content: string;
461
462
  favorite: boolean;
@@ -467,7 +468,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
467
468
  bin: Bin;
468
469
  }>;
469
470
  delete: (id: string) => Promise<boolean>;
470
- current: vue.Ref<Bin | undefined>;
471
+ current: globalThis.Ref<Bin | undefined>;
471
472
  find: (id: string) => Promise<{
472
473
  bin: Bin | undefined;
473
474
  }>;
@@ -487,8 +488,8 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
487
488
  }>;
488
489
  }, "pinned" | "isOwner" | "favorites">, Pick<{
489
490
  isLoading: vue.ShallowRef<boolean>;
490
- isOwner: vue.ComputedRef<boolean>;
491
- pinned: vue.ComputedRef<{
491
+ isOwner: globalThis.ComputedRef<boolean>;
492
+ pinned: globalThis.ComputedRef<{
492
493
  id: string;
493
494
  content: string;
494
495
  favorite: boolean;
@@ -496,7 +497,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
496
497
  owner: Record<string, unknown>;
497
498
  visibility: 'private' | 'public';
498
499
  }[]>;
499
- favorites: vue.ComputedRef<{
500
+ favorites: globalThis.ComputedRef<{
500
501
  id: string;
501
502
  content: string;
502
503
  favorite: boolean;
@@ -504,7 +505,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
504
505
  owner: Record<string, unknown>;
505
506
  visibility: 'private' | 'public';
506
507
  }[]>;
507
- all: vue.Ref<{
508
+ all: globalThis.Ref<{
508
509
  id: string;
509
510
  content: string;
510
511
  favorite: boolean;
@@ -516,7 +517,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
516
517
  bin: Bin;
517
518
  }>;
518
519
  delete: (id: string) => Promise<boolean>;
519
- current: vue.Ref<Bin | undefined>;
520
+ current: globalThis.Ref<Bin | undefined>;
520
521
  find: (id: string) => Promise<{
521
522
  bin: Bin | undefined;
522
523
  }>;
@@ -534,7 +535,7 @@ declare const useBinsStore: pinia.StoreDefinition<"bins", pinia._UnwrapAll<Pick<
534
535
  updateOrCreate: (bin: Bin, id?: string) => Promise<{
535
536
  bin: Bin;
536
537
  }>;
537
- }, "find" | "get" | "delete" | "create" | "update" | "updateOrCreate">>;
538
+ }, "find" | "get" | "delete" | "update" | "create" | "updateOrCreate">>;
538
539
 
539
540
  declare const useHttpStore: pinia.StoreDefinition<"http", {
540
541
  url: string;
@@ -565,16 +566,16 @@ interface Info {
565
566
  items: SubscriptionItem[];
566
567
  }
567
568
  declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
568
- info: vue.Ref<Info | undefined>;
569
- interval: vue.ComputedRef<"month" | "year" | undefined>;
570
- invoices: vue.Ref<{
569
+ info: globalThis.Ref<Info | undefined>;
570
+ interval: globalThis.ComputedRef<"month" | "year" | undefined>;
571
+ invoices: globalThis.Ref<{
571
572
  date: number;
572
573
  amount: number;
573
574
  status: string;
574
575
  pdf: string;
575
576
  }[]>;
576
- sessionId: vue.ComputedRef<string | string[]>;
577
- subscription: vue.ComputedRef<{
577
+ sessionId: globalThis.ComputedRef<string | string[]>;
578
+ subscription: globalThis.ComputedRef<{
578
579
  id: string;
579
580
  platform: string;
580
581
  interval: "month" | "year";
@@ -646,12 +647,12 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
646
647
  };
647
648
  };
648
649
  } | undefined>;
649
- monthlyTotal: vue.ComputedRef<number | undefined>;
650
- hasBilling: vue.ComputedRef<boolean>;
650
+ monthlyTotal: globalThis.ComputedRef<number | undefined>;
651
+ hasBilling: globalThis.ComputedRef<boolean>;
651
652
  isLoading: vue.ShallowRef<boolean>;
652
- isOpen: vue.Ref<boolean>;
653
- isSubscriber: vue.ComputedRef<boolean | undefined>;
654
- github: vue.ComputedRef<{
653
+ isOpen: globalThis.Ref<boolean>;
654
+ isSubscriber: globalThis.ComputedRef<boolean | undefined>;
655
+ github: globalThis.ComputedRef<{
655
656
  id: string;
656
657
  platform: string;
657
658
  interval: "month" | "year";
@@ -723,7 +724,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
723
724
  };
724
725
  };
725
726
  } | undefined>;
726
- patreon: vue.ComputedRef<{
727
+ patreon: globalThis.ComputedRef<{
727
728
  id: string;
728
729
  platform: string;
729
730
  interval: "month" | "year";
@@ -795,7 +796,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
795
796
  };
796
797
  };
797
798
  } | undefined>;
798
- discord: vue.ComputedRef<{
799
+ discord: globalThis.ComputedRef<{
799
800
  id: string;
800
801
  platform: string;
801
802
  interval: "month" | "year";
@@ -867,7 +868,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
867
868
  };
868
869
  };
869
870
  } | undefined>;
870
- one: vue.ComputedRef<{
871
+ one: globalThis.ComputedRef<{
871
872
  id: string;
872
873
  platform: string;
873
874
  interval: "month" | "year";
@@ -948,16 +949,16 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
948
949
  subscriptionInfo: () => Promise<any>;
949
950
  verify: () => Promise<void>;
950
951
  }, "isLoading" | "info" | "invoices" | "isOpen">>, Pick<{
951
- info: vue.Ref<Info | undefined>;
952
- interval: vue.ComputedRef<"month" | "year" | undefined>;
953
- invoices: vue.Ref<{
952
+ info: globalThis.Ref<Info | undefined>;
953
+ interval: globalThis.ComputedRef<"month" | "year" | undefined>;
954
+ invoices: globalThis.Ref<{
954
955
  date: number;
955
956
  amount: number;
956
957
  status: string;
957
958
  pdf: string;
958
959
  }[]>;
959
- sessionId: vue.ComputedRef<string | string[]>;
960
- subscription: vue.ComputedRef<{
960
+ sessionId: globalThis.ComputedRef<string | string[]>;
961
+ subscription: globalThis.ComputedRef<{
961
962
  id: string;
962
963
  platform: string;
963
964
  interval: "month" | "year";
@@ -1029,12 +1030,12 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1029
1030
  };
1030
1031
  };
1031
1032
  } | undefined>;
1032
- monthlyTotal: vue.ComputedRef<number | undefined>;
1033
- hasBilling: vue.ComputedRef<boolean>;
1033
+ monthlyTotal: globalThis.ComputedRef<number | undefined>;
1034
+ hasBilling: globalThis.ComputedRef<boolean>;
1034
1035
  isLoading: vue.ShallowRef<boolean>;
1035
- isOpen: vue.Ref<boolean>;
1036
- isSubscriber: vue.ComputedRef<boolean | undefined>;
1037
- github: vue.ComputedRef<{
1036
+ isOpen: globalThis.Ref<boolean>;
1037
+ isSubscriber: globalThis.ComputedRef<boolean | undefined>;
1038
+ github: globalThis.ComputedRef<{
1038
1039
  id: string;
1039
1040
  platform: string;
1040
1041
  interval: "month" | "year";
@@ -1106,7 +1107,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1106
1107
  };
1107
1108
  };
1108
1109
  } | undefined>;
1109
- patreon: vue.ComputedRef<{
1110
+ patreon: globalThis.ComputedRef<{
1110
1111
  id: string;
1111
1112
  platform: string;
1112
1113
  interval: "month" | "year";
@@ -1178,7 +1179,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1178
1179
  };
1179
1180
  };
1180
1181
  } | undefined>;
1181
- discord: vue.ComputedRef<{
1182
+ discord: globalThis.ComputedRef<{
1182
1183
  id: string;
1183
1184
  platform: string;
1184
1185
  interval: "month" | "year";
@@ -1250,7 +1251,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1250
1251
  };
1251
1252
  };
1252
1253
  } | undefined>;
1253
- one: vue.ComputedRef<{
1254
+ one: globalThis.ComputedRef<{
1254
1255
  id: string;
1255
1256
  platform: string;
1256
1257
  interval: "month" | "year";
@@ -1331,16 +1332,16 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1331
1332
  subscriptionInfo: () => Promise<any>;
1332
1333
  verify: () => Promise<void>;
1333
1334
  }, "interval" | "isSubscriber" | "one" | "github" | "discord" | "patreon" | "sessionId" | "subscription" | "monthlyTotal" | "hasBilling">, Pick<{
1334
- info: vue.Ref<Info | undefined>;
1335
- interval: vue.ComputedRef<"month" | "year" | undefined>;
1336
- invoices: vue.Ref<{
1335
+ info: globalThis.Ref<Info | undefined>;
1336
+ interval: globalThis.ComputedRef<"month" | "year" | undefined>;
1337
+ invoices: globalThis.Ref<{
1337
1338
  date: number;
1338
1339
  amount: number;
1339
1340
  status: string;
1340
1341
  pdf: string;
1341
1342
  }[]>;
1342
- sessionId: vue.ComputedRef<string | string[]>;
1343
- subscription: vue.ComputedRef<{
1343
+ sessionId: globalThis.ComputedRef<string | string[]>;
1344
+ subscription: globalThis.ComputedRef<{
1344
1345
  id: string;
1345
1346
  platform: string;
1346
1347
  interval: "month" | "year";
@@ -1412,12 +1413,12 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1412
1413
  };
1413
1414
  };
1414
1415
  } | undefined>;
1415
- monthlyTotal: vue.ComputedRef<number | undefined>;
1416
- hasBilling: vue.ComputedRef<boolean>;
1416
+ monthlyTotal: globalThis.ComputedRef<number | undefined>;
1417
+ hasBilling: globalThis.ComputedRef<boolean>;
1417
1418
  isLoading: vue.ShallowRef<boolean>;
1418
- isOpen: vue.Ref<boolean>;
1419
- isSubscriber: vue.ComputedRef<boolean | undefined>;
1420
- github: vue.ComputedRef<{
1419
+ isOpen: globalThis.Ref<boolean>;
1420
+ isSubscriber: globalThis.ComputedRef<boolean | undefined>;
1421
+ github: globalThis.ComputedRef<{
1421
1422
  id: string;
1422
1423
  platform: string;
1423
1424
  interval: "month" | "year";
@@ -1489,7 +1490,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1489
1490
  };
1490
1491
  };
1491
1492
  } | undefined>;
1492
- patreon: vue.ComputedRef<{
1493
+ patreon: globalThis.ComputedRef<{
1493
1494
  id: string;
1494
1495
  platform: string;
1495
1496
  interval: "month" | "year";
@@ -1561,7 +1562,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1561
1562
  };
1562
1563
  };
1563
1564
  } | undefined>;
1564
- discord: vue.ComputedRef<{
1565
+ discord: globalThis.ComputedRef<{
1565
1566
  id: string;
1566
1567
  platform: string;
1567
1568
  interval: "month" | "year";
@@ -1633,7 +1634,7 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1633
1634
  };
1634
1635
  };
1635
1636
  } | undefined>;
1636
- one: vue.ComputedRef<{
1637
+ one: globalThis.ComputedRef<{
1637
1638
  id: string;
1638
1639
  platform: string;
1639
1640
  interval: "month" | "year";
@@ -1715,51 +1716,648 @@ declare const useOneStore: pinia.StoreDefinition<"one", pinia._UnwrapAll<Pick<{
1715
1716
  verify: () => Promise<void>;
1716
1717
  }, "verify" | "cancel" | "activate" | "manage" | "modify" | "resetQuery" | "subscribe" | "subscriptionInfo">>;
1717
1718
 
1719
+ type CosmicImage = {
1720
+ url: string;
1721
+ } | null;
1722
+ interface Promotion {
1723
+ id: string;
1724
+ slug: string;
1725
+ title: string;
1726
+ metadata: {
1727
+ active: boolean;
1728
+ text: string;
1729
+ short_text: string;
1730
+ images: {
1731
+ default: CosmicImage;
1732
+ logolight: CosmicImage;
1733
+ logodark: CosmicImage;
1734
+ bgdark: CosmicImage;
1735
+ bglight: CosmicImage;
1736
+ };
1737
+ url: string;
1738
+ discoverable: boolean;
1739
+ advertisement: boolean;
1740
+ startdate: string | null;
1741
+ enddate: string | null;
1742
+ price: number;
1743
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1744
+ };
1745
+ }
1746
+ declare const usePromotionsStore: pinia.StoreDefinition<"promotions", pinia._UnwrapAll<Pick<{
1747
+ all: globalThis.Ref<{
1748
+ id: string;
1749
+ slug: string;
1750
+ title: string;
1751
+ metadata: {
1752
+ active: boolean;
1753
+ text: string;
1754
+ short_text: string;
1755
+ images: {
1756
+ default: {
1757
+ url: string;
1758
+ } | null;
1759
+ logolight: {
1760
+ url: string;
1761
+ } | null;
1762
+ logodark: {
1763
+ url: string;
1764
+ } | null;
1765
+ bgdark: {
1766
+ url: string;
1767
+ } | null;
1768
+ bglight: {
1769
+ url: string;
1770
+ } | null;
1771
+ };
1772
+ url: string;
1773
+ discoverable: boolean;
1774
+ advertisement: boolean;
1775
+ startdate: string | null;
1776
+ enddate: string | null;
1777
+ price: number;
1778
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1779
+ };
1780
+ }[]>;
1781
+ aall: globalThis.Ref<{
1782
+ id: string;
1783
+ slug: string;
1784
+ title: string;
1785
+ metadata: {
1786
+ active: boolean;
1787
+ text: string;
1788
+ short_text: string;
1789
+ images: {
1790
+ default: {
1791
+ url: string;
1792
+ } | null;
1793
+ logolight: {
1794
+ url: string;
1795
+ } | null;
1796
+ logodark: {
1797
+ url: string;
1798
+ } | null;
1799
+ bgdark: {
1800
+ url: string;
1801
+ } | null;
1802
+ bglight: {
1803
+ url: string;
1804
+ } | null;
1805
+ };
1806
+ url: string;
1807
+ discoverable: boolean;
1808
+ advertisement: boolean;
1809
+ startdate: string | null;
1810
+ enddate: string | null;
1811
+ price: number;
1812
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1813
+ };
1814
+ }[]>;
1815
+ isLoading: vue.ShallowRef<boolean>;
1816
+ discoverable: globalThis.ComputedRef<{
1817
+ id: string;
1818
+ slug: string;
1819
+ title: string;
1820
+ metadata: {
1821
+ active: boolean;
1822
+ text: string;
1823
+ short_text: string;
1824
+ images: {
1825
+ default: {
1826
+ url: string;
1827
+ } | null;
1828
+ logolight: {
1829
+ url: string;
1830
+ } | null;
1831
+ logodark: {
1832
+ url: string;
1833
+ } | null;
1834
+ bgdark: {
1835
+ url: string;
1836
+ } | null;
1837
+ bglight: {
1838
+ url: string;
1839
+ } | null;
1840
+ };
1841
+ url: string;
1842
+ discoverable: boolean;
1843
+ advertisement: boolean;
1844
+ startdate: string | null;
1845
+ enddate: string | null;
1846
+ price: number;
1847
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1848
+ };
1849
+ }[]>;
1850
+ record: globalThis.Ref<Promotion | null | undefined>;
1851
+ admin: () => Promise<{
1852
+ id: string;
1853
+ slug: string;
1854
+ title: string;
1855
+ metadata: {
1856
+ active: boolean;
1857
+ text: string;
1858
+ short_text: string;
1859
+ images: {
1860
+ default: {
1861
+ url: string;
1862
+ } | null;
1863
+ logolight: {
1864
+ url: string;
1865
+ } | null;
1866
+ logodark: {
1867
+ url: string;
1868
+ } | null;
1869
+ bgdark: {
1870
+ url: string;
1871
+ } | null;
1872
+ bglight: {
1873
+ url: string;
1874
+ } | null;
1875
+ };
1876
+ url: string;
1877
+ discoverable: boolean;
1878
+ advertisement: boolean;
1879
+ startdate: string | null;
1880
+ enddate: string | null;
1881
+ price: number;
1882
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1883
+ };
1884
+ }[]>;
1885
+ destroy: () => Promise<void>;
1886
+ index: () => Promise<{
1887
+ id: string;
1888
+ slug: string;
1889
+ title: string;
1890
+ metadata: {
1891
+ active: boolean;
1892
+ text: string;
1893
+ short_text: string;
1894
+ images: {
1895
+ default: {
1896
+ url: string;
1897
+ } | null;
1898
+ logolight: {
1899
+ url: string;
1900
+ } | null;
1901
+ logodark: {
1902
+ url: string;
1903
+ } | null;
1904
+ bgdark: {
1905
+ url: string;
1906
+ } | null;
1907
+ bglight: {
1908
+ url: string;
1909
+ } | null;
1910
+ };
1911
+ url: string;
1912
+ discoverable: boolean;
1913
+ advertisement: boolean;
1914
+ startdate: string | null;
1915
+ enddate: string | null;
1916
+ price: number;
1917
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1918
+ };
1919
+ }[]>;
1920
+ random: (array: Promotion[]) => Promotion;
1921
+ show: (id: string) => Promise<Promotion | undefined>;
1922
+ store: (data: FormData) => Promise<Promotion | undefined>;
1923
+ update: (id: string, data: FormData) => Promise<Promotion | undefined>;
1924
+ }, "isLoading" | "all" | "aall" | "record">>, Pick<{
1925
+ all: globalThis.Ref<{
1926
+ id: string;
1927
+ slug: string;
1928
+ title: string;
1929
+ metadata: {
1930
+ active: boolean;
1931
+ text: string;
1932
+ short_text: string;
1933
+ images: {
1934
+ default: {
1935
+ url: string;
1936
+ } | null;
1937
+ logolight: {
1938
+ url: string;
1939
+ } | null;
1940
+ logodark: {
1941
+ url: string;
1942
+ } | null;
1943
+ bgdark: {
1944
+ url: string;
1945
+ } | null;
1946
+ bglight: {
1947
+ url: string;
1948
+ } | null;
1949
+ };
1950
+ url: string;
1951
+ discoverable: boolean;
1952
+ advertisement: boolean;
1953
+ startdate: string | null;
1954
+ enddate: string | null;
1955
+ price: number;
1956
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1957
+ };
1958
+ }[]>;
1959
+ aall: globalThis.Ref<{
1960
+ id: string;
1961
+ slug: string;
1962
+ title: string;
1963
+ metadata: {
1964
+ active: boolean;
1965
+ text: string;
1966
+ short_text: string;
1967
+ images: {
1968
+ default: {
1969
+ url: string;
1970
+ } | null;
1971
+ logolight: {
1972
+ url: string;
1973
+ } | null;
1974
+ logodark: {
1975
+ url: string;
1976
+ } | null;
1977
+ bgdark: {
1978
+ url: string;
1979
+ } | null;
1980
+ bglight: {
1981
+ url: string;
1982
+ } | null;
1983
+ };
1984
+ url: string;
1985
+ discoverable: boolean;
1986
+ advertisement: boolean;
1987
+ startdate: string | null;
1988
+ enddate: string | null;
1989
+ price: number;
1990
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
1991
+ };
1992
+ }[]>;
1993
+ isLoading: vue.ShallowRef<boolean>;
1994
+ discoverable: globalThis.ComputedRef<{
1995
+ id: string;
1996
+ slug: string;
1997
+ title: string;
1998
+ metadata: {
1999
+ active: boolean;
2000
+ text: string;
2001
+ short_text: string;
2002
+ images: {
2003
+ default: {
2004
+ url: string;
2005
+ } | null;
2006
+ logolight: {
2007
+ url: string;
2008
+ } | null;
2009
+ logodark: {
2010
+ url: string;
2011
+ } | null;
2012
+ bgdark: {
2013
+ url: string;
2014
+ } | null;
2015
+ bglight: {
2016
+ url: string;
2017
+ } | null;
2018
+ };
2019
+ url: string;
2020
+ discoverable: boolean;
2021
+ advertisement: boolean;
2022
+ startdate: string | null;
2023
+ enddate: string | null;
2024
+ price: number;
2025
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2026
+ };
2027
+ }[]>;
2028
+ record: globalThis.Ref<Promotion | null | undefined>;
2029
+ admin: () => Promise<{
2030
+ id: string;
2031
+ slug: string;
2032
+ title: string;
2033
+ metadata: {
2034
+ active: boolean;
2035
+ text: string;
2036
+ short_text: string;
2037
+ images: {
2038
+ default: {
2039
+ url: string;
2040
+ } | null;
2041
+ logolight: {
2042
+ url: string;
2043
+ } | null;
2044
+ logodark: {
2045
+ url: string;
2046
+ } | null;
2047
+ bgdark: {
2048
+ url: string;
2049
+ } | null;
2050
+ bglight: {
2051
+ url: string;
2052
+ } | null;
2053
+ };
2054
+ url: string;
2055
+ discoverable: boolean;
2056
+ advertisement: boolean;
2057
+ startdate: string | null;
2058
+ enddate: string | null;
2059
+ price: number;
2060
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2061
+ };
2062
+ }[]>;
2063
+ destroy: () => Promise<void>;
2064
+ index: () => Promise<{
2065
+ id: string;
2066
+ slug: string;
2067
+ title: string;
2068
+ metadata: {
2069
+ active: boolean;
2070
+ text: string;
2071
+ short_text: string;
2072
+ images: {
2073
+ default: {
2074
+ url: string;
2075
+ } | null;
2076
+ logolight: {
2077
+ url: string;
2078
+ } | null;
2079
+ logodark: {
2080
+ url: string;
2081
+ } | null;
2082
+ bgdark: {
2083
+ url: string;
2084
+ } | null;
2085
+ bglight: {
2086
+ url: string;
2087
+ } | null;
2088
+ };
2089
+ url: string;
2090
+ discoverable: boolean;
2091
+ advertisement: boolean;
2092
+ startdate: string | null;
2093
+ enddate: string | null;
2094
+ price: number;
2095
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2096
+ };
2097
+ }[]>;
2098
+ random: (array: Promotion[]) => Promotion;
2099
+ show: (id: string) => Promise<Promotion | undefined>;
2100
+ store: (data: FormData) => Promise<Promotion | undefined>;
2101
+ update: (id: string, data: FormData) => Promise<Promotion | undefined>;
2102
+ }, "discoverable">, Pick<{
2103
+ all: globalThis.Ref<{
2104
+ id: string;
2105
+ slug: string;
2106
+ title: string;
2107
+ metadata: {
2108
+ active: boolean;
2109
+ text: string;
2110
+ short_text: string;
2111
+ images: {
2112
+ default: {
2113
+ url: string;
2114
+ } | null;
2115
+ logolight: {
2116
+ url: string;
2117
+ } | null;
2118
+ logodark: {
2119
+ url: string;
2120
+ } | null;
2121
+ bgdark: {
2122
+ url: string;
2123
+ } | null;
2124
+ bglight: {
2125
+ url: string;
2126
+ } | null;
2127
+ };
2128
+ url: string;
2129
+ discoverable: boolean;
2130
+ advertisement: boolean;
2131
+ startdate: string | null;
2132
+ enddate: string | null;
2133
+ price: number;
2134
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2135
+ };
2136
+ }[]>;
2137
+ aall: globalThis.Ref<{
2138
+ id: string;
2139
+ slug: string;
2140
+ title: string;
2141
+ metadata: {
2142
+ active: boolean;
2143
+ text: string;
2144
+ short_text: string;
2145
+ images: {
2146
+ default: {
2147
+ url: string;
2148
+ } | null;
2149
+ logolight: {
2150
+ url: string;
2151
+ } | null;
2152
+ logodark: {
2153
+ url: string;
2154
+ } | null;
2155
+ bgdark: {
2156
+ url: string;
2157
+ } | null;
2158
+ bglight: {
2159
+ url: string;
2160
+ } | null;
2161
+ };
2162
+ url: string;
2163
+ discoverable: boolean;
2164
+ advertisement: boolean;
2165
+ startdate: string | null;
2166
+ enddate: string | null;
2167
+ price: number;
2168
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2169
+ };
2170
+ }[]>;
2171
+ isLoading: vue.ShallowRef<boolean>;
2172
+ discoverable: globalThis.ComputedRef<{
2173
+ id: string;
2174
+ slug: string;
2175
+ title: string;
2176
+ metadata: {
2177
+ active: boolean;
2178
+ text: string;
2179
+ short_text: string;
2180
+ images: {
2181
+ default: {
2182
+ url: string;
2183
+ } | null;
2184
+ logolight: {
2185
+ url: string;
2186
+ } | null;
2187
+ logodark: {
2188
+ url: string;
2189
+ } | null;
2190
+ bgdark: {
2191
+ url: string;
2192
+ } | null;
2193
+ bglight: {
2194
+ url: string;
2195
+ } | null;
2196
+ };
2197
+ url: string;
2198
+ discoverable: boolean;
2199
+ advertisement: boolean;
2200
+ startdate: string | null;
2201
+ enddate: string | null;
2202
+ price: number;
2203
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2204
+ };
2205
+ }[]>;
2206
+ record: globalThis.Ref<Promotion | null | undefined>;
2207
+ admin: () => Promise<{
2208
+ id: string;
2209
+ slug: string;
2210
+ title: string;
2211
+ metadata: {
2212
+ active: boolean;
2213
+ text: string;
2214
+ short_text: string;
2215
+ images: {
2216
+ default: {
2217
+ url: string;
2218
+ } | null;
2219
+ logolight: {
2220
+ url: string;
2221
+ } | null;
2222
+ logodark: {
2223
+ url: string;
2224
+ } | null;
2225
+ bgdark: {
2226
+ url: string;
2227
+ } | null;
2228
+ bglight: {
2229
+ url: string;
2230
+ } | null;
2231
+ };
2232
+ url: string;
2233
+ discoverable: boolean;
2234
+ advertisement: boolean;
2235
+ startdate: string | null;
2236
+ enddate: string | null;
2237
+ price: number;
2238
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2239
+ };
2240
+ }[]>;
2241
+ destroy: () => Promise<void>;
2242
+ index: () => Promise<{
2243
+ id: string;
2244
+ slug: string;
2245
+ title: string;
2246
+ metadata: {
2247
+ active: boolean;
2248
+ text: string;
2249
+ short_text: string;
2250
+ images: {
2251
+ default: {
2252
+ url: string;
2253
+ } | null;
2254
+ logolight: {
2255
+ url: string;
2256
+ } | null;
2257
+ logodark: {
2258
+ url: string;
2259
+ } | null;
2260
+ bgdark: {
2261
+ url: string;
2262
+ } | null;
2263
+ bglight: {
2264
+ url: string;
2265
+ } | null;
2266
+ };
2267
+ url: string;
2268
+ discoverable: boolean;
2269
+ advertisement: boolean;
2270
+ startdate: string | null;
2271
+ enddate: string | null;
2272
+ price: number;
2273
+ type: 'theme' | 'video' | 'book' | 'course' | 'website' | 'job' | 'merch' | 'digital' | 'services' | 'documentation';
2274
+ };
2275
+ }[]>;
2276
+ random: (array: Promotion[]) => Promotion;
2277
+ show: (id: string) => Promise<Promotion | undefined>;
2278
+ store: (data: FormData) => Promise<Promotion | undefined>;
2279
+ update: (id: string, data: FormData) => Promise<Promotion | undefined>;
2280
+ }, "show" | "admin" | "destroy" | "index" | "store" | "update" | "random">>;
2281
+
1718
2282
  interface Suit {
1719
2283
  'app-bar': string;
1720
2284
  'drawer': string;
1721
2285
  footer: string;
1722
2286
  }
1723
2287
  declare const useSettingsStore: pinia.StoreDefinition<"settings", pinia._UnwrapAll<Pick<{
1724
- suit: vue.ComputedRef<Partial<Suit>>;
2288
+ suit: globalThis.ComputedRef<Partial<Suit>>;
1725
2289
  CDN_URL: string;
1726
2290
  }, "CDN_URL">>, Pick<{
1727
- suit: vue.ComputedRef<Partial<Suit>>;
2291
+ suit: globalThis.ComputedRef<Partial<Suit>>;
1728
2292
  CDN_URL: string;
1729
2293
  }, "suit">, Pick<{
1730
- suit: vue.ComputedRef<Partial<Suit>>;
2294
+ suit: globalThis.ComputedRef<Partial<Suit>>;
1731
2295
  CDN_URL: string;
1732
2296
  }, never>>;
1733
2297
 
2298
+ interface Spot {
2299
+ id: string;
2300
+ status: 'published' | 'draft';
2301
+ modified_at: string;
2302
+ created_at: string;
2303
+ slug: string;
2304
+ title: string;
2305
+ metadata: {
2306
+ active: boolean;
2307
+ href: string;
2308
+ start_date: string;
2309
+ sponsor: string;
2310
+ site: ('*' | 'dev' | 'vbin' | 'vplay' | 'docs' | 'home' | 'server')[];
2311
+ end_date: string;
2312
+ image: {
2313
+ url: string;
2314
+ } | null;
2315
+ };
2316
+ }
2317
+ interface State {
2318
+ all: Ref<Spot[]>;
2319
+ aall: Ref<Spot[]>;
2320
+ isLoading: ShallowRef<boolean>;
2321
+ spot: ComputedRef<Spot | undefined>;
2322
+ record: Ref<Spot | undefined>;
2323
+ admin: () => Promise<Spot[]>;
2324
+ index: () => Promise<Spot[]>;
2325
+ show: (slug: string) => Promise<Spot>;
2326
+ store: (data: FormData) => Promise<Spot>;
2327
+ update: (slug: string, data: FormData) => Promise<Spot>;
2328
+ destroy: (slug: string) => Promise<void>;
2329
+ }
2330
+ declare const useSpotsStore: pinia.StoreDefinition<"spots", pinia._UnwrapAll<Pick<State, "isLoading" | "all" | "aall" | "record">>, Pick<State, "spot">, Pick<State, "show" | "admin" | "destroy" | "index" | "store" | "update">>;
2331
+
1734
2332
  declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<{
1735
2333
  load: () => void;
1736
2334
  save: () => void;
1737
2335
  reset: () => void;
1738
- v: vue.Ref<3 | 2 | 4 | 5>;
1739
- api: vue.Ref<"link-only" | "inline">;
1740
- avatar: vue.Ref<string>;
1741
- dev: vue.Ref<boolean>;
1742
- disableAds: vue.Ref<boolean>;
1743
- composition: vue.Ref<"options" | "composition">;
1744
- pwaRefresh: vue.Ref<boolean>;
1745
- slashSearch: vue.Ref<boolean>;
1746
- syncSettings: vue.Ref<boolean>;
1747
- theme: vue.Ref<string>;
1748
- mixedTheme: vue.Ref<boolean>;
1749
- direction: vue.Ref<"rtl" | "ltr">;
1750
- quickbar: vue.Ref<boolean>;
1751
- railDrawer: vue.Ref<boolean>;
1752
- pins: vue.Ref<boolean>;
1753
- pinned: vue.Ref<Record<string, unknown>[]>;
1754
- suits: vue.Ref<{
2336
+ v: globalThis.Ref<2 | 3 | 4 | 5>;
2337
+ api: globalThis.Ref<"link-only" | "inline">;
2338
+ avatar: globalThis.Ref<string>;
2339
+ dev: globalThis.Ref<boolean>;
2340
+ disableAds: globalThis.Ref<boolean>;
2341
+ composition: globalThis.Ref<"composition" | "options">;
2342
+ pwaRefresh: globalThis.Ref<boolean>;
2343
+ slashSearch: globalThis.Ref<boolean>;
2344
+ syncSettings: globalThis.Ref<boolean>;
2345
+ theme: globalThis.Ref<string>;
2346
+ mixedTheme: globalThis.Ref<boolean>;
2347
+ direction: globalThis.Ref<"rtl" | "ltr">;
2348
+ quickbar: globalThis.Ref<boolean>;
2349
+ railDrawer: globalThis.Ref<boolean>;
2350
+ pins: globalThis.Ref<boolean>;
2351
+ pinned: globalThis.Ref<Record<string, unknown>[]>;
2352
+ suits: globalThis.Ref<{
1755
2353
  show: boolean;
1756
2354
  elements: (keyof Suit)[];
1757
2355
  suit: string;
1758
2356
  }>;
1759
- colors: vue.Ref<{
2357
+ colors: globalThis.Ref<{
1760
2358
  one: string;
1761
2359
  }>;
1762
- notifications: vue.Ref<{
2360
+ notifications: globalThis.Ref<{
1763
2361
  show: boolean;
1764
2362
  banners: boolean;
1765
2363
  read: string[];
@@ -1776,31 +2374,31 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
1776
2374
  load: () => void;
1777
2375
  save: () => void;
1778
2376
  reset: () => void;
1779
- v: vue.Ref<3 | 2 | 4 | 5>;
1780
- api: vue.Ref<"link-only" | "inline">;
1781
- avatar: vue.Ref<string>;
1782
- dev: vue.Ref<boolean>;
1783
- disableAds: vue.Ref<boolean>;
1784
- composition: vue.Ref<"options" | "composition">;
1785
- pwaRefresh: vue.Ref<boolean>;
1786
- slashSearch: vue.Ref<boolean>;
1787
- syncSettings: vue.Ref<boolean>;
1788
- theme: vue.Ref<string>;
1789
- mixedTheme: vue.Ref<boolean>;
1790
- direction: vue.Ref<"rtl" | "ltr">;
1791
- quickbar: vue.Ref<boolean>;
1792
- railDrawer: vue.Ref<boolean>;
1793
- pins: vue.Ref<boolean>;
1794
- pinned: vue.Ref<Record<string, unknown>[]>;
1795
- suits: vue.Ref<{
2377
+ v: globalThis.Ref<2 | 3 | 4 | 5>;
2378
+ api: globalThis.Ref<"link-only" | "inline">;
2379
+ avatar: globalThis.Ref<string>;
2380
+ dev: globalThis.Ref<boolean>;
2381
+ disableAds: globalThis.Ref<boolean>;
2382
+ composition: globalThis.Ref<"composition" | "options">;
2383
+ pwaRefresh: globalThis.Ref<boolean>;
2384
+ slashSearch: globalThis.Ref<boolean>;
2385
+ syncSettings: globalThis.Ref<boolean>;
2386
+ theme: globalThis.Ref<string>;
2387
+ mixedTheme: globalThis.Ref<boolean>;
2388
+ direction: globalThis.Ref<"rtl" | "ltr">;
2389
+ quickbar: globalThis.Ref<boolean>;
2390
+ railDrawer: globalThis.Ref<boolean>;
2391
+ pins: globalThis.Ref<boolean>;
2392
+ pinned: globalThis.Ref<Record<string, unknown>[]>;
2393
+ suits: globalThis.Ref<{
1796
2394
  show: boolean;
1797
2395
  elements: (keyof Suit)[];
1798
2396
  suit: string;
1799
2397
  }>;
1800
- colors: vue.Ref<{
2398
+ colors: globalThis.Ref<{
1801
2399
  one: string;
1802
2400
  }>;
1803
- notifications: vue.Ref<{
2401
+ notifications: globalThis.Ref<{
1804
2402
  show: boolean;
1805
2403
  banners: boolean;
1806
2404
  read: string[];
@@ -1817,31 +2415,31 @@ declare const useUserStore: pinia.StoreDefinition<"user", pinia._UnwrapAll<Pick<
1817
2415
  load: () => void;
1818
2416
  save: () => void;
1819
2417
  reset: () => void;
1820
- v: vue.Ref<3 | 2 | 4 | 5>;
1821
- api: vue.Ref<"link-only" | "inline">;
1822
- avatar: vue.Ref<string>;
1823
- dev: vue.Ref<boolean>;
1824
- disableAds: vue.Ref<boolean>;
1825
- composition: vue.Ref<"options" | "composition">;
1826
- pwaRefresh: vue.Ref<boolean>;
1827
- slashSearch: vue.Ref<boolean>;
1828
- syncSettings: vue.Ref<boolean>;
1829
- theme: vue.Ref<string>;
1830
- mixedTheme: vue.Ref<boolean>;
1831
- direction: vue.Ref<"rtl" | "ltr">;
1832
- quickbar: vue.Ref<boolean>;
1833
- railDrawer: vue.Ref<boolean>;
1834
- pins: vue.Ref<boolean>;
1835
- pinned: vue.Ref<Record<string, unknown>[]>;
1836
- suits: vue.Ref<{
2418
+ v: globalThis.Ref<2 | 3 | 4 | 5>;
2419
+ api: globalThis.Ref<"link-only" | "inline">;
2420
+ avatar: globalThis.Ref<string>;
2421
+ dev: globalThis.Ref<boolean>;
2422
+ disableAds: globalThis.Ref<boolean>;
2423
+ composition: globalThis.Ref<"composition" | "options">;
2424
+ pwaRefresh: globalThis.Ref<boolean>;
2425
+ slashSearch: globalThis.Ref<boolean>;
2426
+ syncSettings: globalThis.Ref<boolean>;
2427
+ theme: globalThis.Ref<string>;
2428
+ mixedTheme: globalThis.Ref<boolean>;
2429
+ direction: globalThis.Ref<"rtl" | "ltr">;
2430
+ quickbar: globalThis.Ref<boolean>;
2431
+ railDrawer: globalThis.Ref<boolean>;
2432
+ pins: globalThis.Ref<boolean>;
2433
+ pinned: globalThis.Ref<Record<string, unknown>[]>;
2434
+ suits: globalThis.Ref<{
1837
2435
  show: boolean;
1838
2436
  elements: (keyof Suit)[];
1839
2437
  suit: string;
1840
2438
  }>;
1841
- colors: vue.Ref<{
2439
+ colors: globalThis.Ref<{
1842
2440
  one: string;
1843
2441
  }>;
1844
- notifications: vue.Ref<{
2442
+ notifications: globalThis.Ref<{
1845
2443
  show: boolean;
1846
2444
  banners: boolean;
1847
2445
  read: string[];
@@ -1861,4 +2459,4 @@ declare function createOne(): {
1861
2459
  };
1862
2460
  declare function one(id: string[], url: string): (context: PiniaPluginContext) => void;
1863
2461
 
1864
- export { createOne, one, useAuthStore, useBannersStore, useBinsStore, useHttpStore, useOneStore, useSettingsStore, useUserStore };
2462
+ export { createOne, one, useAuthStore, useBannersStore, useBinsStore, useHttpStore, useOneStore, usePromotionsStore, useSettingsStore, useSpotsStore, useUserStore };