@speakableio/core 1.0.36 → 1.0.37

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.
@@ -97,6 +97,7 @@ interface PageActivity {
97
97
  media?: {
98
98
  type: 'image' | 'video' | 'link';
99
99
  url: string;
100
+ transcript?: string | null;
100
101
  } | null;
101
102
  score?: number;
102
103
  verificationStatus?: VerificationCardStatus;
@@ -202,6 +203,7 @@ declare function useCards({ cardIds, enabled, asObject, }: {
202
203
  media?: {
203
204
  type: "image" | "video" | "link";
204
205
  url: string;
206
+ transcript?: string | null;
205
207
  } | null;
206
208
  score?: number;
207
209
  verificationStatus?: VerificationCardStatus;
@@ -284,6 +286,7 @@ declare function useCreateCards(): {
284
286
  media?: {
285
287
  type: "image" | "video" | "link";
286
288
  url: string;
289
+ transcript?: string | null;
287
290
  } | null;
288
291
  score?: number;
289
292
  verificationStatus?: VerificationCardStatus;
@@ -374,6 +377,7 @@ declare function useGetCard({ cardId, enabled }: {
374
377
  media?: {
375
378
  type: "image" | "video" | "link";
376
379
  url: string;
380
+ transcript?: string | null;
377
381
  } | null;
378
382
  score?: number;
379
383
  verificationStatus?: VerificationCardStatus;
@@ -456,6 +460,7 @@ declare const createCardRepo: () => {
456
460
  media?: {
457
461
  type: "image" | "video" | "link";
458
462
  url: string;
463
+ transcript?: string | null;
459
464
  } | null;
460
465
  score?: number;
461
466
  verificationStatus?: VerificationCardStatus;
@@ -533,6 +538,7 @@ declare const createCardRepo: () => {
533
538
  media?: {
534
539
  type: "image" | "video" | "link";
535
540
  url: string;
541
+ transcript?: string | null;
536
542
  } | null;
537
543
  score?: number;
538
544
  verificationStatus?: VerificationCardStatus;
@@ -648,6 +654,7 @@ declare function getPageMediaData(page: PageActivityWithId): {
648
654
  rawObject: {
649
655
  type: "image" | "video" | "link";
650
656
  url: string;
657
+ transcript?: string | null;
651
658
  };
652
659
  type: "image" | "video" | "link";
653
660
  content: string;
@@ -661,6 +668,7 @@ declare function getSingleMediaPageData(page: PageActivityWithId): {
661
668
  rawObject: {
662
669
  type: "image" | "video" | "link";
663
670
  url: string;
671
+ transcript?: string | null;
664
672
  };
665
673
  type: "image" | "video" | "link";
666
674
  content: string;
@@ -1401,6 +1409,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1401
1409
  media?: {
1402
1410
  type: "image" | "video" | "link";
1403
1411
  url: string;
1412
+ transcript?: string | null;
1404
1413
  } | null;
1405
1414
  score?: number;
1406
1415
  verificationStatus?: VerificationCardStatus;
@@ -1478,6 +1487,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1478
1487
  media?: {
1479
1488
  type: "image" | "video" | "link";
1480
1489
  url: string;
1490
+ transcript?: string | null;
1481
1491
  } | null;
1482
1492
  score?: number;
1483
1493
  verificationStatus?: VerificationCardStatus;
@@ -1738,6 +1748,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
1738
1748
  media?: {
1739
1749
  type: "image" | "video" | "link";
1740
1750
  url: string;
1751
+ transcript?: string | null;
1741
1752
  } | null;
1742
1753
  score?: number;
1743
1754
  verificationStatus?: VerificationCardStatus;
@@ -3286,6 +3297,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3286
3297
  media?: {
3287
3298
  type: "image" | "video" | "link";
3288
3299
  url: string;
3300
+ transcript?: string | null;
3289
3301
  } | null;
3290
3302
  score?: number;
3291
3303
  verificationStatus?: VerificationCardStatus;
@@ -3363,6 +3375,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3363
3375
  media?: {
3364
3376
  type: "image" | "video" | "link";
3365
3377
  url: string;
3378
+ transcript?: string | null;
3366
3379
  } | null;
3367
3380
  score?: number;
3368
3381
  verificationStatus?: VerificationCardStatus;
@@ -97,6 +97,7 @@ interface PageActivity {
97
97
  media?: {
98
98
  type: 'image' | 'video' | 'link';
99
99
  url: string;
100
+ transcript?: string | null;
100
101
  } | null;
101
102
  score?: number;
102
103
  verificationStatus?: VerificationCardStatus;
@@ -202,6 +203,7 @@ declare function useCards({ cardIds, enabled, asObject, }: {
202
203
  media?: {
203
204
  type: "image" | "video" | "link";
204
205
  url: string;
206
+ transcript?: string | null;
205
207
  } | null;
206
208
  score?: number;
207
209
  verificationStatus?: VerificationCardStatus;
@@ -284,6 +286,7 @@ declare function useCreateCards(): {
284
286
  media?: {
285
287
  type: "image" | "video" | "link";
286
288
  url: string;
289
+ transcript?: string | null;
287
290
  } | null;
288
291
  score?: number;
289
292
  verificationStatus?: VerificationCardStatus;
@@ -374,6 +377,7 @@ declare function useGetCard({ cardId, enabled }: {
374
377
  media?: {
375
378
  type: "image" | "video" | "link";
376
379
  url: string;
380
+ transcript?: string | null;
377
381
  } | null;
378
382
  score?: number;
379
383
  verificationStatus?: VerificationCardStatus;
@@ -456,6 +460,7 @@ declare const createCardRepo: () => {
456
460
  media?: {
457
461
  type: "image" | "video" | "link";
458
462
  url: string;
463
+ transcript?: string | null;
459
464
  } | null;
460
465
  score?: number;
461
466
  verificationStatus?: VerificationCardStatus;
@@ -533,6 +538,7 @@ declare const createCardRepo: () => {
533
538
  media?: {
534
539
  type: "image" | "video" | "link";
535
540
  url: string;
541
+ transcript?: string | null;
536
542
  } | null;
537
543
  score?: number;
538
544
  verificationStatus?: VerificationCardStatus;
@@ -648,6 +654,7 @@ declare function getPageMediaData(page: PageActivityWithId): {
648
654
  rawObject: {
649
655
  type: "image" | "video" | "link";
650
656
  url: string;
657
+ transcript?: string | null;
651
658
  };
652
659
  type: "image" | "video" | "link";
653
660
  content: string;
@@ -661,6 +668,7 @@ declare function getSingleMediaPageData(page: PageActivityWithId): {
661
668
  rawObject: {
662
669
  type: "image" | "video" | "link";
663
670
  url: string;
671
+ transcript?: string | null;
664
672
  };
665
673
  type: "image" | "video" | "link";
666
674
  content: string;
@@ -1401,6 +1409,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1401
1409
  media?: {
1402
1410
  type: "image" | "video" | "link";
1403
1411
  url: string;
1412
+ transcript?: string | null;
1404
1413
  } | null;
1405
1414
  score?: number;
1406
1415
  verificationStatus?: VerificationCardStatus;
@@ -1478,6 +1487,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1478
1487
  media?: {
1479
1488
  type: "image" | "video" | "link";
1480
1489
  url: string;
1490
+ transcript?: string | null;
1481
1491
  } | null;
1482
1492
  score?: number;
1483
1493
  verificationStatus?: VerificationCardStatus;
@@ -1738,6 +1748,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
1738
1748
  media?: {
1739
1749
  type: "image" | "video" | "link";
1740
1750
  url: string;
1751
+ transcript?: string | null;
1741
1752
  } | null;
1742
1753
  score?: number;
1743
1754
  verificationStatus?: VerificationCardStatus;
@@ -3286,6 +3297,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3286
3297
  media?: {
3287
3298
  type: "image" | "video" | "link";
3288
3299
  url: string;
3300
+ transcript?: string | null;
3289
3301
  } | null;
3290
3302
  score?: number;
3291
3303
  verificationStatus?: VerificationCardStatus;
@@ -3363,6 +3375,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3363
3375
  media?: {
3364
3376
  type: "image" | "video" | "link";
3365
3377
  url: string;
3378
+ transcript?: string | null;
3366
3379
  } | null;
3367
3380
  score?: number;
3368
3381
  verificationStatus?: VerificationCardStatus;