@speakableio/core 1.0.3 → 1.0.5
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.native.d.mts +12 -1
- package/dist/index.native.d.ts +12 -1
- package/dist/index.web.d.mts +12 -1
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -446,7 +446,9 @@ interface Assignment {
|
|
|
446
446
|
};
|
|
447
447
|
aiEnabled?: boolean;
|
|
448
448
|
chat_experience?: boolean;
|
|
449
|
+
showScores?: boolean;
|
|
449
450
|
}
|
|
451
|
+
type AssignmentAnalyticsType$1 = 'macro' | 'gradebook' | 'cards' | 'student' | 'student_summary';
|
|
450
452
|
interface AssignmentWithId extends Assignment {
|
|
451
453
|
id: string;
|
|
452
454
|
isAvailable: boolean;
|
|
@@ -631,6 +633,7 @@ declare const createAssignmentRepo: () => {
|
|
|
631
633
|
types?: { [key in ActivityPageType]?: number; };
|
|
632
634
|
aiEnabled?: boolean;
|
|
633
635
|
chat_experience?: boolean;
|
|
636
|
+
showScores?: boolean;
|
|
634
637
|
} | null>;
|
|
635
638
|
attachScoresAssignment: (args_0: {
|
|
636
639
|
assignments: AssignmentWithId[];
|
|
@@ -681,6 +684,7 @@ declare const createAssignmentRepo: () => {
|
|
|
681
684
|
types?: { [key in ActivityPageType]?: number; };
|
|
682
685
|
aiEnabled?: boolean;
|
|
683
686
|
chat_experience?: boolean;
|
|
687
|
+
showScores?: boolean;
|
|
684
688
|
}[]>;
|
|
685
689
|
getAssignmentScores: (args_0: {
|
|
686
690
|
assignmentId: string;
|
|
@@ -750,6 +754,7 @@ declare function useAssignment({ assignmentId, enabled, analyticType, userId, }:
|
|
|
750
754
|
types?: { [key in ActivityPageType]?: number; };
|
|
751
755
|
aiEnabled?: boolean;
|
|
752
756
|
chat_experience?: boolean;
|
|
757
|
+
showScores?: boolean;
|
|
753
758
|
} | null, Error>;
|
|
754
759
|
|
|
755
760
|
declare const scoreQueryKeys: {
|
|
@@ -1012,6 +1017,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1012
1017
|
types?: { [key in ActivityPageType]?: number; };
|
|
1013
1018
|
aiEnabled?: boolean;
|
|
1014
1019
|
chat_experience?: boolean;
|
|
1020
|
+
showScores?: boolean;
|
|
1015
1021
|
} | null>;
|
|
1016
1022
|
attachScoresAssignment: (args_0: {
|
|
1017
1023
|
assignments: AssignmentWithId[];
|
|
@@ -1062,6 +1068,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1062
1068
|
types?: { [key in ActivityPageType]?: number; };
|
|
1063
1069
|
aiEnabled?: boolean;
|
|
1064
1070
|
chat_experience?: boolean;
|
|
1071
|
+
showScores?: boolean;
|
|
1065
1072
|
}[]>;
|
|
1066
1073
|
getAssignmentScores: (args_0: {
|
|
1067
1074
|
assignmentId: string;
|
|
@@ -1374,6 +1381,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1374
1381
|
types?: { [key in ActivityPageType]?: number; };
|
|
1375
1382
|
aiEnabled?: boolean;
|
|
1376
1383
|
chat_experience?: boolean;
|
|
1384
|
+
showScores?: boolean;
|
|
1377
1385
|
} | null | undefined;
|
|
1378
1386
|
query: _tanstack_react_query.UseQueryResult<AssignmentWithId | {
|
|
1379
1387
|
scores: any;
|
|
@@ -1419,6 +1427,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1419
1427
|
types?: { [key in ActivityPageType]?: number; };
|
|
1420
1428
|
aiEnabled?: boolean;
|
|
1421
1429
|
chat_experience?: boolean;
|
|
1430
|
+
showScores?: boolean;
|
|
1422
1431
|
} | null, Error>;
|
|
1423
1432
|
};
|
|
1424
1433
|
scores: {
|
|
@@ -2688,6 +2697,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2688
2697
|
types?: { [key in ActivityPageType]?: number; };
|
|
2689
2698
|
aiEnabled?: boolean;
|
|
2690
2699
|
chat_experience?: boolean;
|
|
2700
|
+
showScores?: boolean;
|
|
2691
2701
|
} | null>;
|
|
2692
2702
|
attachScoresAssignment: (args_0: {
|
|
2693
2703
|
assignments: AssignmentWithId[];
|
|
@@ -2738,6 +2748,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2738
2748
|
types?: { [key in ActivityPageType]?: number; };
|
|
2739
2749
|
aiEnabled?: boolean;
|
|
2740
2750
|
chat_experience?: boolean;
|
|
2751
|
+
showScores?: boolean;
|
|
2741
2752
|
}[]>;
|
|
2742
2753
|
getAssignmentScores: (args_0: {
|
|
2743
2754
|
assignmentId: string;
|
|
@@ -2833,4 +2844,4 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2833
2844
|
};
|
|
2834
2845
|
};
|
|
2835
2846
|
|
|
2836
|
-
export { ActivityPageType, type Assignment, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientNative as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|
|
2847
|
+
export { ActivityPageType, type Assignment, type AssignmentAnalyticsType$1 as AssignmentAnalyticsType, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientNative as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|
package/dist/index.native.d.ts
CHANGED
|
@@ -446,7 +446,9 @@ interface Assignment {
|
|
|
446
446
|
};
|
|
447
447
|
aiEnabled?: boolean;
|
|
448
448
|
chat_experience?: boolean;
|
|
449
|
+
showScores?: boolean;
|
|
449
450
|
}
|
|
451
|
+
type AssignmentAnalyticsType$1 = 'macro' | 'gradebook' | 'cards' | 'student' | 'student_summary';
|
|
450
452
|
interface AssignmentWithId extends Assignment {
|
|
451
453
|
id: string;
|
|
452
454
|
isAvailable: boolean;
|
|
@@ -631,6 +633,7 @@ declare const createAssignmentRepo: () => {
|
|
|
631
633
|
types?: { [key in ActivityPageType]?: number; };
|
|
632
634
|
aiEnabled?: boolean;
|
|
633
635
|
chat_experience?: boolean;
|
|
636
|
+
showScores?: boolean;
|
|
634
637
|
} | null>;
|
|
635
638
|
attachScoresAssignment: (args_0: {
|
|
636
639
|
assignments: AssignmentWithId[];
|
|
@@ -681,6 +684,7 @@ declare const createAssignmentRepo: () => {
|
|
|
681
684
|
types?: { [key in ActivityPageType]?: number; };
|
|
682
685
|
aiEnabled?: boolean;
|
|
683
686
|
chat_experience?: boolean;
|
|
687
|
+
showScores?: boolean;
|
|
684
688
|
}[]>;
|
|
685
689
|
getAssignmentScores: (args_0: {
|
|
686
690
|
assignmentId: string;
|
|
@@ -750,6 +754,7 @@ declare function useAssignment({ assignmentId, enabled, analyticType, userId, }:
|
|
|
750
754
|
types?: { [key in ActivityPageType]?: number; };
|
|
751
755
|
aiEnabled?: boolean;
|
|
752
756
|
chat_experience?: boolean;
|
|
757
|
+
showScores?: boolean;
|
|
753
758
|
} | null, Error>;
|
|
754
759
|
|
|
755
760
|
declare const scoreQueryKeys: {
|
|
@@ -1012,6 +1017,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1012
1017
|
types?: { [key in ActivityPageType]?: number; };
|
|
1013
1018
|
aiEnabled?: boolean;
|
|
1014
1019
|
chat_experience?: boolean;
|
|
1020
|
+
showScores?: boolean;
|
|
1015
1021
|
} | null>;
|
|
1016
1022
|
attachScoresAssignment: (args_0: {
|
|
1017
1023
|
assignments: AssignmentWithId[];
|
|
@@ -1062,6 +1068,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1062
1068
|
types?: { [key in ActivityPageType]?: number; };
|
|
1063
1069
|
aiEnabled?: boolean;
|
|
1064
1070
|
chat_experience?: boolean;
|
|
1071
|
+
showScores?: boolean;
|
|
1065
1072
|
}[]>;
|
|
1066
1073
|
getAssignmentScores: (args_0: {
|
|
1067
1074
|
assignmentId: string;
|
|
@@ -1374,6 +1381,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1374
1381
|
types?: { [key in ActivityPageType]?: number; };
|
|
1375
1382
|
aiEnabled?: boolean;
|
|
1376
1383
|
chat_experience?: boolean;
|
|
1384
|
+
showScores?: boolean;
|
|
1377
1385
|
} | null | undefined;
|
|
1378
1386
|
query: _tanstack_react_query.UseQueryResult<AssignmentWithId | {
|
|
1379
1387
|
scores: any;
|
|
@@ -1419,6 +1427,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1419
1427
|
types?: { [key in ActivityPageType]?: number; };
|
|
1420
1428
|
aiEnabled?: boolean;
|
|
1421
1429
|
chat_experience?: boolean;
|
|
1430
|
+
showScores?: boolean;
|
|
1422
1431
|
} | null, Error>;
|
|
1423
1432
|
};
|
|
1424
1433
|
scores: {
|
|
@@ -2688,6 +2697,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2688
2697
|
types?: { [key in ActivityPageType]?: number; };
|
|
2689
2698
|
aiEnabled?: boolean;
|
|
2690
2699
|
chat_experience?: boolean;
|
|
2700
|
+
showScores?: boolean;
|
|
2691
2701
|
} | null>;
|
|
2692
2702
|
attachScoresAssignment: (args_0: {
|
|
2693
2703
|
assignments: AssignmentWithId[];
|
|
@@ -2738,6 +2748,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2738
2748
|
types?: { [key in ActivityPageType]?: number; };
|
|
2739
2749
|
aiEnabled?: boolean;
|
|
2740
2750
|
chat_experience?: boolean;
|
|
2751
|
+
showScores?: boolean;
|
|
2741
2752
|
}[]>;
|
|
2742
2753
|
getAssignmentScores: (args_0: {
|
|
2743
2754
|
assignmentId: string;
|
|
@@ -2833,4 +2844,4 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
|
|
|
2833
2844
|
};
|
|
2834
2845
|
};
|
|
2835
2846
|
|
|
2836
|
-
export { ActivityPageType, type Assignment, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientNative as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|
|
2847
|
+
export { ActivityPageType, type Assignment, type AssignmentAnalyticsType$1 as AssignmentAnalyticsType, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientNative as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|
package/dist/index.web.d.mts
CHANGED
|
@@ -446,7 +446,9 @@ interface Assignment {
|
|
|
446
446
|
};
|
|
447
447
|
aiEnabled?: boolean;
|
|
448
448
|
chat_experience?: boolean;
|
|
449
|
+
showScores?: boolean;
|
|
449
450
|
}
|
|
451
|
+
type AssignmentAnalyticsType$1 = 'macro' | 'gradebook' | 'cards' | 'student' | 'student_summary';
|
|
450
452
|
interface AssignmentWithId extends Assignment {
|
|
451
453
|
id: string;
|
|
452
454
|
isAvailable: boolean;
|
|
@@ -631,6 +633,7 @@ declare const createAssignmentRepo: () => {
|
|
|
631
633
|
types?: { [key in ActivityPageType]?: number; };
|
|
632
634
|
aiEnabled?: boolean;
|
|
633
635
|
chat_experience?: boolean;
|
|
636
|
+
showScores?: boolean;
|
|
634
637
|
} | null>;
|
|
635
638
|
attachScoresAssignment: (args_0: {
|
|
636
639
|
assignments: AssignmentWithId[];
|
|
@@ -681,6 +684,7 @@ declare const createAssignmentRepo: () => {
|
|
|
681
684
|
types?: { [key in ActivityPageType]?: number; };
|
|
682
685
|
aiEnabled?: boolean;
|
|
683
686
|
chat_experience?: boolean;
|
|
687
|
+
showScores?: boolean;
|
|
684
688
|
}[]>;
|
|
685
689
|
getAssignmentScores: (args_0: {
|
|
686
690
|
assignmentId: string;
|
|
@@ -750,6 +754,7 @@ declare function useAssignment({ assignmentId, enabled, analyticType, userId, }:
|
|
|
750
754
|
types?: { [key in ActivityPageType]?: number; };
|
|
751
755
|
aiEnabled?: boolean;
|
|
752
756
|
chat_experience?: boolean;
|
|
757
|
+
showScores?: boolean;
|
|
753
758
|
} | null, Error>;
|
|
754
759
|
|
|
755
760
|
declare const scoreQueryKeys: {
|
|
@@ -1012,6 +1017,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1012
1017
|
types?: { [key in ActivityPageType]?: number; };
|
|
1013
1018
|
aiEnabled?: boolean;
|
|
1014
1019
|
chat_experience?: boolean;
|
|
1020
|
+
showScores?: boolean;
|
|
1015
1021
|
} | null>;
|
|
1016
1022
|
attachScoresAssignment: (args_0: {
|
|
1017
1023
|
assignments: AssignmentWithId[];
|
|
@@ -1062,6 +1068,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
|
|
|
1062
1068
|
types?: { [key in ActivityPageType]?: number; };
|
|
1063
1069
|
aiEnabled?: boolean;
|
|
1064
1070
|
chat_experience?: boolean;
|
|
1071
|
+
showScores?: boolean;
|
|
1065
1072
|
}[]>;
|
|
1066
1073
|
getAssignmentScores: (args_0: {
|
|
1067
1074
|
assignmentId: string;
|
|
@@ -1374,6 +1381,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1374
1381
|
types?: { [key in ActivityPageType]?: number; };
|
|
1375
1382
|
aiEnabled?: boolean;
|
|
1376
1383
|
chat_experience?: boolean;
|
|
1384
|
+
showScores?: boolean;
|
|
1377
1385
|
} | null | undefined;
|
|
1378
1386
|
query: _tanstack_react_query.UseQueryResult<AssignmentWithId | {
|
|
1379
1387
|
scores: any;
|
|
@@ -1419,6 +1427,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
|
|
|
1419
1427
|
types?: { [key in ActivityPageType]?: number; };
|
|
1420
1428
|
aiEnabled?: boolean;
|
|
1421
1429
|
chat_experience?: boolean;
|
|
1430
|
+
showScores?: boolean;
|
|
1422
1431
|
} | null, Error>;
|
|
1423
1432
|
};
|
|
1424
1433
|
scores: {
|
|
@@ -2688,6 +2697,7 @@ declare const createFsClientWeb: ({ db, httpsCallable, logEvent }: FsClientParam
|
|
|
2688
2697
|
types?: { [key in ActivityPageType]?: number; };
|
|
2689
2698
|
aiEnabled?: boolean;
|
|
2690
2699
|
chat_experience?: boolean;
|
|
2700
|
+
showScores?: boolean;
|
|
2691
2701
|
} | null>;
|
|
2692
2702
|
attachScoresAssignment: (args_0: {
|
|
2693
2703
|
assignments: AssignmentWithId[];
|
|
@@ -2738,6 +2748,7 @@ declare const createFsClientWeb: ({ db, httpsCallable, logEvent }: FsClientParam
|
|
|
2738
2748
|
types?: { [key in ActivityPageType]?: number; };
|
|
2739
2749
|
aiEnabled?: boolean;
|
|
2740
2750
|
chat_experience?: boolean;
|
|
2751
|
+
showScores?: boolean;
|
|
2741
2752
|
}[]>;
|
|
2742
2753
|
getAssignmentScores: (args_0: {
|
|
2743
2754
|
assignmentId: string;
|
|
@@ -2833,4 +2844,4 @@ declare const createFsClientWeb: ({ db, httpsCallable, logEvent }: FsClientParam
|
|
|
2833
2844
|
};
|
|
2834
2845
|
};
|
|
2835
2846
|
|
|
2836
|
-
export { ActivityPageType, type Assignment, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientWeb as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|
|
2847
|
+
export { ActivityPageType, type Assignment, type AssignmentAnalyticsType$1 as AssignmentAnalyticsType, type AssignmentWithId, BASE_MULTIPLE_CHOICE_FIELD_VALUES, BASE_REPEAT_FIELD_VALUES, BASE_RESPOND_FIELD_VALUES, type CreditContract, FeedbackTypesCard, FsCtx, type InstitutionSubscription, LENIENCY_OPTIONS, LeniencyCard, MULTIPLE_CHOICE_PAGE_ACTIVITY_TYPES, type Organization, type OrganizationAccess, type PageActivity, type PageActivityWithId, type PageScore, REPEAT_PAGE_ACTIVITY_TYPES, RESPOND_AUDIO_PAGE_ACTIVITY_TYPES, RESPOND_PAGE_ACTIVITY_TYPES, RESPOND_WRITE_PAGE_ACTIVITY_TYPES, type RefsCardsFiresotre, type RefsSetsFirestore, SPEAKABLE_NOTIFICATIONS, STUDENT_LEVELS_OPTIONS, type Score, type ScoreWithId, type Set, type SetWithId, type SpeakableNotificationType, SpeakableNotificationTypes, SpeakableProvider, VerificationCardStatus, assignmentQueryKeys, cardsQueryKeys, checkIsMCPage, checkIsMediaPage, checkIsRepeatPage, checkIsRespondAudioPage, checkIsRespondPage, checkIsRespondWrittenPage, checkIsShortAnswerPage, checkTypePageActivity, cleanString, createAssignmentRepo, createCardRepo, createFsClientWeb as createFsClient, createSetRepo, creditQueryKeys, debounce, getCardFromCache, getLabelPage, getPagePrompt, getPhraseLength, getRespondCardTool, getSetFromCache, getTotalCompletedCards, getWordHash, purify, refsCardsFiresotre, refsSetsFirestore, scoreQueryKeys, setsQueryKeys, updateCardInCache, updateSetInCache, useActivity, useActivityFeedbackAccess, useAssignment, useBaseOpenAI, useCards, useClearScore, useCreateCard, useCreateCards, useCreateNotification, useGetCard, useOrganizationAccess, useScore, useSet, useSpeakableApi, useSubmitAssignmentScore, useSubmitPracticeScore, useUpdateCardScore, useUpdateScore, useUpdateStudentVocab, useUserCredits };
|