@timardex/cluemart-shared 1.5.555 → 1.5.557
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/{chunk-3244ZVPR.mjs → chunk-EBLNP3KF.mjs} +2 -6
- package/dist/{chunk-3244ZVPR.mjs.map → chunk-EBLNP3KF.mjs.map} +1 -1
- package/dist/graphql/index.cjs +1 -5
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +1 -5
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +1 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +1 -5
- package/dist/index.mjs.map +1 -1
- package/dist/{post-_paHbhaK.d.mts → post-CKsYy2l0.d.mts} +2 -3
- package/dist/{post-D4B7jPBU.d.ts → post-DlIsUwHE.d.ts} +2 -3
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1129,13 +1129,12 @@ type DailyClueGameData = GlobalGameData & {
|
|
|
1129
1129
|
|
|
1130
1130
|
type MiniQuizQuestion = {
|
|
1131
1131
|
answers: {
|
|
1132
|
-
|
|
1132
|
+
answer: string;
|
|
1133
1133
|
correct: boolean;
|
|
1134
1134
|
}[];
|
|
1135
1135
|
question: string;
|
|
1136
1136
|
};
|
|
1137
1137
|
type MiniQuizBaseGame = {
|
|
1138
|
-
gameDate: GameDate;
|
|
1139
1138
|
questions: MiniQuizQuestion[];
|
|
1140
1139
|
};
|
|
1141
1140
|
type MiniQuizGameData = GlobalGameData & {
|
package/dist/index.d.ts
CHANGED
|
@@ -1129,13 +1129,12 @@ type DailyClueGameData = GlobalGameData & {
|
|
|
1129
1129
|
|
|
1130
1130
|
type MiniQuizQuestion = {
|
|
1131
1131
|
answers: {
|
|
1132
|
-
|
|
1132
|
+
answer: string;
|
|
1133
1133
|
correct: boolean;
|
|
1134
1134
|
}[];
|
|
1135
1135
|
question: string;
|
|
1136
1136
|
};
|
|
1137
1137
|
type MiniQuizBaseGame = {
|
|
1138
|
-
gameDate: GameDate;
|
|
1139
1138
|
questions: MiniQuizQuestion[];
|
|
1140
1139
|
};
|
|
1141
1140
|
type MiniQuizGameData = GlobalGameData & {
|
package/dist/index.mjs
CHANGED
|
@@ -5707,7 +5707,7 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
|
|
|
5707
5707
|
var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql29`
|
|
5708
5708
|
fragment MiniQuizQuestionFields on MiniQuizQuestionType {
|
|
5709
5709
|
answers {
|
|
5710
|
-
|
|
5710
|
+
answer
|
|
5711
5711
|
correct
|
|
5712
5712
|
}
|
|
5713
5713
|
question
|
|
@@ -5715,14 +5715,10 @@ var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql29`
|
|
|
5715
5715
|
`;
|
|
5716
5716
|
var MINI_QUIZ_BASE_GAME_FIELDS_FRAGMENT = gql29`
|
|
5717
5717
|
fragment MiniQuizBaseGameFields on MiniQuizBaseGameType {
|
|
5718
|
-
gameDate {
|
|
5719
|
-
...GameDateFields
|
|
5720
|
-
}
|
|
5721
5718
|
questions {
|
|
5722
5719
|
...MiniQuizQuestionFields
|
|
5723
5720
|
}
|
|
5724
5721
|
}
|
|
5725
|
-
${GAME_DATE_FIELDS_FRAGMENT}
|
|
5726
5722
|
${MINI_QUIZ_QUESTION_FIELDS_FRAGMENT}
|
|
5727
5723
|
`;
|
|
5728
5724
|
var MINI_QUIZ_GAME_DATA_FIELDS_FRAGMENT = gql29`
|