@speakableio/core 1.0.43 → 1.0.45

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.
@@ -120,7 +120,7 @@ interface PageActivity {
120
120
  grading_criteria?: string;
121
121
  scoring_type?: string;
122
122
  grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
123
- feedback_types?: string[];
123
+ feedback_types?: FeedbackTypesCard[];
124
124
  rubricId?: string;
125
125
  prompt?: string;
126
126
  title?: string;
@@ -220,7 +220,7 @@ declare function useCards({ cardIds, enabled, asObject, }: {
220
220
  grading_criteria?: string;
221
221
  scoring_type?: string;
222
222
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
223
- feedback_types?: string[];
223
+ feedback_types?: FeedbackTypesCard[];
224
224
  rubricId?: string;
225
225
  prompt?: string;
226
226
  title?: string;
@@ -299,7 +299,7 @@ declare function useCreateCards(): {
299
299
  grading_criteria?: string;
300
300
  scoring_type?: string;
301
301
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
302
- feedback_types?: string[];
302
+ feedback_types?: FeedbackTypesCard[];
303
303
  rubricId?: string;
304
304
  prompt?: string;
305
305
  title?: string;
@@ -384,7 +384,7 @@ declare function useGetCard({ cardId, enabled }: {
384
384
  grading_criteria?: string;
385
385
  scoring_type?: string;
386
386
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
387
- feedback_types?: string[];
387
+ feedback_types?: FeedbackTypesCard[];
388
388
  rubricId?: string;
389
389
  prompt?: string;
390
390
  title?: string;
@@ -463,7 +463,7 @@ declare const createCardRepo: () => {
463
463
  grading_criteria?: string;
464
464
  scoring_type?: string;
465
465
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
466
- feedback_types?: string[];
466
+ feedback_types?: FeedbackTypesCard[];
467
467
  rubricId?: string;
468
468
  prompt?: string;
469
469
  title?: string;
@@ -535,7 +535,7 @@ declare const createCardRepo: () => {
535
535
  grading_criteria?: string;
536
536
  scoring_type?: string;
537
537
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
538
- feedback_types?: string[];
538
+ feedback_types?: FeedbackTypesCard[];
539
539
  rubricId?: string;
540
540
  prompt?: string;
541
541
  title?: string;
@@ -1164,6 +1164,13 @@ interface Set {
1164
1164
  feedbackLanguage?: string;
1165
1165
  respondMaxCharacters?: number;
1166
1166
  respondMaxTime?: number;
1167
+ respondLimitAttempts?: boolean;
1168
+ respondMaxAttempts?: number;
1169
+ mcLimitAttempts?: boolean;
1170
+ mcMaxAttempts?: number;
1171
+ shortAnswerLimitAttempts?: boolean;
1172
+ shortAnswerMaxAttempts?: number;
1173
+ isTemplate?: boolean;
1167
1174
  }
1168
1175
 
1169
1176
  declare const setsQueryKeys: {
@@ -1383,7 +1390,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1383
1390
  grading_criteria?: string;
1384
1391
  scoring_type?: string;
1385
1392
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1386
- feedback_types?: string[];
1393
+ feedback_types?: FeedbackTypesCard[];
1387
1394
  rubricId?: string;
1388
1395
  prompt?: string;
1389
1396
  title?: string;
@@ -1455,7 +1462,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1455
1462
  grading_criteria?: string;
1456
1463
  scoring_type?: string;
1457
1464
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1458
- feedback_types?: string[];
1465
+ feedback_types?: FeedbackTypesCard[];
1459
1466
  rubricId?: string;
1460
1467
  prompt?: string;
1461
1468
  title?: string;
@@ -1711,7 +1718,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
1711
1718
  grading_criteria?: string;
1712
1719
  scoring_type?: string;
1713
1720
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1714
- feedback_types?: string[];
1721
+ feedback_types?: FeedbackTypesCard[];
1715
1722
  rubricId?: string;
1716
1723
  prompt?: string;
1717
1724
  title?: string;
@@ -3256,7 +3263,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3256
3263
  grading_criteria?: string;
3257
3264
  scoring_type?: string;
3258
3265
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
3259
- feedback_types?: string[];
3266
+ feedback_types?: FeedbackTypesCard[];
3260
3267
  rubricId?: string;
3261
3268
  prompt?: string;
3262
3269
  title?: string;
@@ -3328,7 +3335,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3328
3335
  grading_criteria?: string;
3329
3336
  scoring_type?: string;
3330
3337
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
3331
- feedback_types?: string[];
3338
+ feedback_types?: FeedbackTypesCard[];
3332
3339
  rubricId?: string;
3333
3340
  prompt?: string;
3334
3341
  title?: string;
@@ -120,7 +120,7 @@ interface PageActivity {
120
120
  grading_criteria?: string;
121
121
  scoring_type?: string;
122
122
  grading_method?: 'simple' | 'rubric' | 'manual' | 'standards_based';
123
- feedback_types?: string[];
123
+ feedback_types?: FeedbackTypesCard[];
124
124
  rubricId?: string;
125
125
  prompt?: string;
126
126
  title?: string;
@@ -220,7 +220,7 @@ declare function useCards({ cardIds, enabled, asObject, }: {
220
220
  grading_criteria?: string;
221
221
  scoring_type?: string;
222
222
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
223
- feedback_types?: string[];
223
+ feedback_types?: FeedbackTypesCard[];
224
224
  rubricId?: string;
225
225
  prompt?: string;
226
226
  title?: string;
@@ -299,7 +299,7 @@ declare function useCreateCards(): {
299
299
  grading_criteria?: string;
300
300
  scoring_type?: string;
301
301
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
302
- feedback_types?: string[];
302
+ feedback_types?: FeedbackTypesCard[];
303
303
  rubricId?: string;
304
304
  prompt?: string;
305
305
  title?: string;
@@ -384,7 +384,7 @@ declare function useGetCard({ cardId, enabled }: {
384
384
  grading_criteria?: string;
385
385
  scoring_type?: string;
386
386
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
387
- feedback_types?: string[];
387
+ feedback_types?: FeedbackTypesCard[];
388
388
  rubricId?: string;
389
389
  prompt?: string;
390
390
  title?: string;
@@ -463,7 +463,7 @@ declare const createCardRepo: () => {
463
463
  grading_criteria?: string;
464
464
  scoring_type?: string;
465
465
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
466
- feedback_types?: string[];
466
+ feedback_types?: FeedbackTypesCard[];
467
467
  rubricId?: string;
468
468
  prompt?: string;
469
469
  title?: string;
@@ -535,7 +535,7 @@ declare const createCardRepo: () => {
535
535
  grading_criteria?: string;
536
536
  scoring_type?: string;
537
537
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
538
- feedback_types?: string[];
538
+ feedback_types?: FeedbackTypesCard[];
539
539
  rubricId?: string;
540
540
  prompt?: string;
541
541
  title?: string;
@@ -1164,6 +1164,13 @@ interface Set {
1164
1164
  feedbackLanguage?: string;
1165
1165
  respondMaxCharacters?: number;
1166
1166
  respondMaxTime?: number;
1167
+ respondLimitAttempts?: boolean;
1168
+ respondMaxAttempts?: number;
1169
+ mcLimitAttempts?: boolean;
1170
+ mcMaxAttempts?: number;
1171
+ shortAnswerLimitAttempts?: boolean;
1172
+ shortAnswerMaxAttempts?: number;
1173
+ isTemplate?: boolean;
1167
1174
  }
1168
1175
 
1169
1176
  declare const setsQueryKeys: {
@@ -1383,7 +1390,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1383
1390
  grading_criteria?: string;
1384
1391
  scoring_type?: string;
1385
1392
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1386
- feedback_types?: string[];
1393
+ feedback_types?: FeedbackTypesCard[];
1387
1394
  rubricId?: string;
1388
1395
  prompt?: string;
1389
1396
  title?: string;
@@ -1455,7 +1462,7 @@ declare function createFsClientBase({ db, helpers, httpsCallable, logEvent, }: {
1455
1462
  grading_criteria?: string;
1456
1463
  scoring_type?: string;
1457
1464
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1458
- feedback_types?: string[];
1465
+ feedback_types?: FeedbackTypesCard[];
1459
1466
  rubricId?: string;
1460
1467
  prompt?: string;
1461
1468
  title?: string;
@@ -1711,7 +1718,7 @@ declare function useActivity({ id, isAssignment, onAssignmentSubmitted, ltiData,
1711
1718
  grading_criteria?: string;
1712
1719
  scoring_type?: string;
1713
1720
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
1714
- feedback_types?: string[];
1721
+ feedback_types?: FeedbackTypesCard[];
1715
1722
  rubricId?: string;
1716
1723
  prompt?: string;
1717
1724
  title?: string;
@@ -3256,7 +3263,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3256
3263
  grading_criteria?: string;
3257
3264
  scoring_type?: string;
3258
3265
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
3259
- feedback_types?: string[];
3266
+ feedback_types?: FeedbackTypesCard[];
3260
3267
  rubricId?: string;
3261
3268
  prompt?: string;
3262
3269
  title?: string;
@@ -3328,7 +3335,7 @@ declare const createFsClientNative: ({ db, httpsCallable, logEvent }: FsClientPa
3328
3335
  grading_criteria?: string;
3329
3336
  scoring_type?: string;
3330
3337
  grading_method?: "simple" | "rubric" | "manual" | "standards_based";
3331
- feedback_types?: string[];
3338
+ feedback_types?: FeedbackTypesCard[];
3332
3339
  rubricId?: string;
3333
3340
  prompt?: string;
3334
3341
  title?: string;