@timardex/cluemart-shared 1.2.92 → 1.2.93
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/{ad-Dz2H7DBc.d.ts → ad-BAdLwWe8.d.ts} +1 -0
- package/dist/{ad-lpA7ovDO.d.mts → ad-B_E4DMtS.d.mts} +1 -0
- package/dist/{chunk-HDGKA6GS.mjs → chunk-BK3ZTKW7.mjs} +1 -1
- package/dist/chunk-BK3ZTKW7.mjs.map +1 -0
- package/dist/graphql/index.cjs +6 -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 +6 -5
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +2 -1
- 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 +3 -2
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +8 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +8 -6
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-HDGKA6GS.mjs.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -788,6 +788,7 @@ type TesterEvent = {
|
|
|
788
788
|
completeFinalQuestionnaire: boolean;
|
|
789
789
|
/** Promotion Support */
|
|
790
790
|
allowMarketingAppearance?: boolean;
|
|
791
|
+
spaceForClueMart?: boolean;
|
|
791
792
|
/** Open Questions */
|
|
792
793
|
organizerExpectations?: string;
|
|
793
794
|
dailyCoordinationNeeds?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -788,6 +788,7 @@ type TesterEvent = {
|
|
|
788
788
|
completeFinalQuestionnaire: boolean;
|
|
789
789
|
/** Promotion Support */
|
|
790
790
|
allowMarketingAppearance?: boolean;
|
|
791
|
+
spaceForClueMart?: boolean;
|
|
791
792
|
/** Open Questions */
|
|
792
793
|
organizerExpectations?: string;
|
|
793
794
|
dailyCoordinationNeeds?: string;
|
package/dist/index.mjs
CHANGED
|
@@ -4155,14 +4155,15 @@ var TESTER_EVENT_FIELDS_FRAGMENT = gql21`
|
|
|
4155
4155
|
averageStallCount
|
|
4156
4156
|
}
|
|
4157
4157
|
questionary {
|
|
4158
|
-
registerMarketsFirstWeek
|
|
4159
|
-
inviteAtLeastFiveStallholders
|
|
4160
|
-
manageApplicationsAndCommunication
|
|
4161
|
-
completeFinalQuestionnaire
|
|
4162
4158
|
allowMarketingAppearance
|
|
4163
|
-
|
|
4159
|
+
completeFinalQuestionnaire
|
|
4164
4160
|
dailyCoordinationNeeds
|
|
4165
4161
|
interestedInCharityInitiative
|
|
4162
|
+
inviteAtLeastFiveStallholders
|
|
4163
|
+
manageApplicationsAndCommunication
|
|
4164
|
+
organizerExpectations
|
|
4165
|
+
registerMarketsFirstWeek
|
|
4166
|
+
spaceForClueMart
|
|
4166
4167
|
}
|
|
4167
4168
|
}
|
|
4168
4169
|
`;
|
|
@@ -5525,7 +5526,8 @@ var testerEventSchema = yup6.object().shape({
|
|
|
5525
5526
|
inviteAtLeastFiveStallholders: yup6.boolean().required("Required field"),
|
|
5526
5527
|
manageApplicationsAndCommunication: yup6.boolean().required("Required field"),
|
|
5527
5528
|
organizerExpectations: yup6.string().trim().optional(),
|
|
5528
|
-
registerMarketsFirstWeek: yup6.boolean().required("Required field")
|
|
5529
|
+
registerMarketsFirstWeek: yup6.boolean().required("Required field"),
|
|
5530
|
+
spaceForClueMart: yup6.boolean().optional()
|
|
5529
5531
|
})
|
|
5530
5532
|
});
|
|
5531
5533
|
var testerSchema = yup6.object().shape({
|