@timardex/cluemart-shared 1.5.558 → 1.5.559
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-EQZIARZY.mjs → chunk-UNB5ZQBB.mjs} +3 -3
- package/dist/{chunk-EQZIARZY.mjs.map → chunk-UNB5ZQBB.mjs.map} +1 -1
- package/dist/graphql/index.cjs +2 -2
- 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 +2 -2
- 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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{post-gCzzuzeR.d.ts → post-BUpCIA1c.d.ts} +2 -2
- package/dist/{post-B6WEACv2.d.mts → post-Bt2_nLqh.d.mts} +2 -2
- 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
|
@@ -1128,12 +1128,12 @@ type DailyClueGameData = GlobalGameData & {
|
|
|
1128
1128
|
};
|
|
1129
1129
|
|
|
1130
1130
|
type MiniQuizAnswer = {
|
|
1131
|
-
|
|
1131
|
+
id: string;
|
|
1132
1132
|
answer: string;
|
|
1133
1133
|
correct: boolean;
|
|
1134
1134
|
};
|
|
1135
1135
|
type MiniQuizQuestion = {
|
|
1136
|
-
|
|
1136
|
+
id: string;
|
|
1137
1137
|
answers: MiniQuizAnswer[];
|
|
1138
1138
|
question: string;
|
|
1139
1139
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1128,12 +1128,12 @@ type DailyClueGameData = GlobalGameData & {
|
|
|
1128
1128
|
};
|
|
1129
1129
|
|
|
1130
1130
|
type MiniQuizAnswer = {
|
|
1131
|
-
|
|
1131
|
+
id: string;
|
|
1132
1132
|
answer: string;
|
|
1133
1133
|
correct: boolean;
|
|
1134
1134
|
};
|
|
1135
1135
|
type MiniQuizQuestion = {
|
|
1136
|
-
|
|
1136
|
+
id: string;
|
|
1137
1137
|
answers: MiniQuizAnswer[];
|
|
1138
1138
|
question: string;
|
|
1139
1139
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -5706,14 +5706,14 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
|
|
|
5706
5706
|
`;
|
|
5707
5707
|
var MINI_QUIZ_ANSWER_FIELDS_FRAGMENT = gql29`
|
|
5708
5708
|
fragment MiniQuizAnswerFields on MiniQuizAnswerType {
|
|
5709
|
-
|
|
5709
|
+
id
|
|
5710
5710
|
answer
|
|
5711
5711
|
correct
|
|
5712
5712
|
}
|
|
5713
5713
|
`;
|
|
5714
5714
|
var MINI_QUIZ_QUESTION_FIELDS_FRAGMENT = gql29`
|
|
5715
5715
|
fragment MiniQuizQuestionFields on MiniQuizQuestionType {
|
|
5716
|
-
|
|
5716
|
+
id
|
|
5717
5717
|
answers {
|
|
5718
5718
|
...MiniQuizAnswerFields
|
|
5719
5719
|
}
|