@vue-skuilder/db 0.1.32-e → 0.1.32-f

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.cts CHANGED
@@ -106,6 +106,7 @@ interface HydratedCard<TView = unknown> {
106
106
  item: StudySessionItem;
107
107
  view: TView;
108
108
  data: any[];
109
+ tags: string[];
109
110
  }
110
111
 
111
112
  interface MigrationOptions {
@@ -347,6 +348,7 @@ interface StudySessionRecord {
347
348
  course_id: string;
348
349
  card_id: string;
349
350
  card_elo: number;
351
+ tags: string[];
350
352
  };
351
353
  item: StudySessionItem;
352
354
  records: CardRecord[];
package/dist/index.d.ts CHANGED
@@ -106,6 +106,7 @@ interface HydratedCard<TView = unknown> {
106
106
  item: StudySessionItem;
107
107
  view: TView;
108
108
  data: any[];
109
+ tags: string[];
109
110
  }
110
111
 
111
112
  interface MigrationOptions {
@@ -347,6 +348,7 @@ interface StudySessionRecord {
347
348
  course_id: string;
348
349
  card_id: string;
349
350
  card_elo: number;
351
+ tags: string[];
350
352
  };
351
353
  item: StudySessionItem;
352
354
  records: CardRecord[];