@timardex/cluemart-shared 1.5.550 → 1.5.552
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-CRZP6KYI.mjs → chunk-IMTMBZI7.mjs} +2 -2
- package/dist/{chunk-CPT4WZKU.mjs → chunk-L74HNX7U.mjs} +5 -5
- package/dist/chunk-L74HNX7U.mjs.map +1 -0
- package/dist/{chunk-LOABFNIJ.mjs → chunk-SBY5HTAP.mjs} +3 -20
- package/dist/chunk-SBY5HTAP.mjs.map +1 -0
- package/dist/{chunk-FICQ3PR5.mjs → chunk-UNLBGUZ6.mjs} +24 -2
- package/dist/chunk-UNLBGUZ6.mjs.map +1 -0
- package/dist/{chunk-UBAAAYJY.mjs → chunk-VG2GTCY7.mjs} +16 -8
- package/dist/{chunk-UBAAAYJY.mjs.map → chunk-VG2GTCY7.mjs.map} +1 -1
- package/dist/{game-1CSiEjlf.d.ts → dailyClue-BFo8YN7B.d.mts} +18 -61
- package/dist/{game-BPtE3yaQ.d.mts → dailyClue-BFo8YN7B.d.ts} +18 -61
- package/dist/formFields/index.cjs +1 -1
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +3 -3
- package/dist/graphql/index.cjs +15 -7
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +16 -8
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +2 -2
- package/dist/hooks/index.d.ts +2 -2
- package/dist/hooks/index.mjs +5 -5
- package/dist/index.cjs +38 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +28 -18
- package/dist/index.d.ts +28 -18
- package/dist/index.mjs +38 -25
- package/dist/index.mjs.map +1 -1
- package/dist/{post-Lc5PrxY6.d.ts → post-DWRt-yGc.d.ts} +55 -4
- package/dist/{post-CY53UsA7.d.mts → post-DsOgFGgJ.d.mts} +55 -4
- package/dist/types/index.cjs +13 -8
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.mjs +7 -7
- package/dist/utils/index.cjs +4 -4
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-CPT4WZKU.mjs.map +0 -1
- package/dist/chunk-FICQ3PR5.mjs.map +0 -1
- package/dist/chunk-LOABFNIJ.mjs.map +0 -1
- /package/dist/{chunk-CRZP6KYI.mjs.map → chunk-IMTMBZI7.mjs.map} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -1021,6 +1021,19 @@ interface PartnerType extends BaseResourceType {
|
|
|
1021
1021
|
partnerType: EnumPartnerType;
|
|
1022
1022
|
}
|
|
1023
1023
|
|
|
1024
|
+
declare enum EnumGameType {
|
|
1025
|
+
DAILY_CLUE = "dailyClue"
|
|
1026
|
+
}
|
|
1027
|
+
type GameDate = {
|
|
1028
|
+
startDate: Date;
|
|
1029
|
+
endDate: Date;
|
|
1030
|
+
};
|
|
1031
|
+
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
1032
|
+
type GlobalGameData = {
|
|
1033
|
+
points: number;
|
|
1034
|
+
streak: number;
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1024
1037
|
declare const gameScreenIdentifierList: readonly [{
|
|
1025
1038
|
readonly clue: "Where your actions turn into a timeline.";
|
|
1026
1039
|
readonly id: "activities";
|
|
@@ -1096,31 +1109,28 @@ declare const gameScreenIdentifierList: readonly [{
|
|
|
1096
1109
|
}];
|
|
1097
1110
|
type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
|
|
1098
1111
|
type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
|
|
1099
|
-
|
|
1100
|
-
DAILY_CLUE = "dailyClue"
|
|
1101
|
-
}
|
|
1102
|
-
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
1103
|
-
type GameDate = {
|
|
1104
|
-
startDate: Date;
|
|
1105
|
-
endDate: Date;
|
|
1106
|
-
};
|
|
1107
|
-
type BaseGame = {
|
|
1112
|
+
type DailyClueBaseGame = {
|
|
1108
1113
|
gameDate: GameDate;
|
|
1109
1114
|
gameSolution: string;
|
|
1110
|
-
gameType: EnumGameType;
|
|
1111
1115
|
};
|
|
1112
|
-
type DailyClueGameData = {
|
|
1113
|
-
gameFields:
|
|
1116
|
+
type DailyClueGameData = GlobalGameData & {
|
|
1117
|
+
gameFields: DailyClueBaseGame;
|
|
1114
1118
|
lastFoundDate: Date | null;
|
|
1115
|
-
points: number;
|
|
1116
1119
|
letterInfo: {
|
|
1117
1120
|
collected: string[] | null;
|
|
1118
|
-
|
|
1119
|
-
todaysLetter: string | null;
|
|
1121
|
+
solutionShuffled: string[];
|
|
1120
1122
|
todaysClue: GamePlacementClue | null;
|
|
1123
|
+
todaysLetter: string | null;
|
|
1121
1124
|
todaysPlacement: GamePlacement | null;
|
|
1122
1125
|
};
|
|
1123
|
-
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
type BaseGameMap = {
|
|
1129
|
+
[EnumGameType.DAILY_CLUE]: DailyClueBaseGame;
|
|
1130
|
+
};
|
|
1131
|
+
type BaseGameType = {
|
|
1132
|
+
gameType: EnumGameType;
|
|
1133
|
+
gameFields: BaseGameMap[EnumGameType];
|
|
1124
1134
|
};
|
|
1125
1135
|
declare enum EnumGameStatus {
|
|
1126
1136
|
GAME_COMPLETED = "GAME_COMPLETED",
|
|
@@ -1207,7 +1217,7 @@ type PostContentList = {
|
|
|
1207
1217
|
};
|
|
1208
1218
|
};
|
|
1209
1219
|
type PostContentGame = {
|
|
1210
|
-
game:
|
|
1220
|
+
game: BaseGameType;
|
|
1211
1221
|
};
|
|
1212
1222
|
type PostContentData = PostContentGame | PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
|
|
1213
1223
|
type PostContentFormData = {
|
|
@@ -2647,4 +2657,4 @@ declare const ANDROID_URL = "https://play.google.com/store/apps/details?id=com.t
|
|
|
2647
2657
|
declare const SCHOOL_MIN_STUDENT_COUNT = 300;
|
|
2648
2658
|
declare const SCHOOL_MAX_STUDENT_COUNT = 0;
|
|
2649
2659
|
|
|
2650
|
-
export { ANDROID_URL, type AdFormData, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BadgeBasename, type BadgeId, type
|
|
2660
|
+
export { ANDROID_URL, type AdFormData, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, PROMO_CODE_PREFIX, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type RefundPolicy, type Region, type RegisterFormData, type RelationDate, type RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, type TermsAgreement, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetEventsByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, companyContactFields, computeDailyClueState, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultLocation, defaultPartnerFormValues, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, gameScreenIdentifierList, gameTypeToDisplayName, getCurrentAndFutureDates, globalDefaultValues, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isIsoDateString, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, seededShuffle, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSchoolForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUpdateAd, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|
package/dist/index.d.ts
CHANGED
|
@@ -1021,6 +1021,19 @@ interface PartnerType extends BaseResourceType {
|
|
|
1021
1021
|
partnerType: EnumPartnerType;
|
|
1022
1022
|
}
|
|
1023
1023
|
|
|
1024
|
+
declare enum EnumGameType {
|
|
1025
|
+
DAILY_CLUE = "dailyClue"
|
|
1026
|
+
}
|
|
1027
|
+
type GameDate = {
|
|
1028
|
+
startDate: Date;
|
|
1029
|
+
endDate: Date;
|
|
1030
|
+
};
|
|
1031
|
+
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
1032
|
+
type GlobalGameData = {
|
|
1033
|
+
points: number;
|
|
1034
|
+
streak: number;
|
|
1035
|
+
};
|
|
1036
|
+
|
|
1024
1037
|
declare const gameScreenIdentifierList: readonly [{
|
|
1025
1038
|
readonly clue: "Where your actions turn into a timeline.";
|
|
1026
1039
|
readonly id: "activities";
|
|
@@ -1096,31 +1109,28 @@ declare const gameScreenIdentifierList: readonly [{
|
|
|
1096
1109
|
}];
|
|
1097
1110
|
type GamePlacement = (typeof gameScreenIdentifierList)[number]["id"];
|
|
1098
1111
|
type GamePlacementClue = (typeof gameScreenIdentifierList)[number]["clue"];
|
|
1099
|
-
|
|
1100
|
-
DAILY_CLUE = "dailyClue"
|
|
1101
|
-
}
|
|
1102
|
-
declare const gameTypeToDisplayName: Record<EnumGameType, string>;
|
|
1103
|
-
type GameDate = {
|
|
1104
|
-
startDate: Date;
|
|
1105
|
-
endDate: Date;
|
|
1106
|
-
};
|
|
1107
|
-
type BaseGame = {
|
|
1112
|
+
type DailyClueBaseGame = {
|
|
1108
1113
|
gameDate: GameDate;
|
|
1109
1114
|
gameSolution: string;
|
|
1110
|
-
gameType: EnumGameType;
|
|
1111
1115
|
};
|
|
1112
|
-
type DailyClueGameData = {
|
|
1113
|
-
gameFields:
|
|
1116
|
+
type DailyClueGameData = GlobalGameData & {
|
|
1117
|
+
gameFields: DailyClueBaseGame;
|
|
1114
1118
|
lastFoundDate: Date | null;
|
|
1115
|
-
points: number;
|
|
1116
1119
|
letterInfo: {
|
|
1117
1120
|
collected: string[] | null;
|
|
1118
|
-
|
|
1119
|
-
todaysLetter: string | null;
|
|
1121
|
+
solutionShuffled: string[];
|
|
1120
1122
|
todaysClue: GamePlacementClue | null;
|
|
1123
|
+
todaysLetter: string | null;
|
|
1121
1124
|
todaysPlacement: GamePlacement | null;
|
|
1122
1125
|
};
|
|
1123
|
-
|
|
1126
|
+
};
|
|
1127
|
+
|
|
1128
|
+
type BaseGameMap = {
|
|
1129
|
+
[EnumGameType.DAILY_CLUE]: DailyClueBaseGame;
|
|
1130
|
+
};
|
|
1131
|
+
type BaseGameType = {
|
|
1132
|
+
gameType: EnumGameType;
|
|
1133
|
+
gameFields: BaseGameMap[EnumGameType];
|
|
1124
1134
|
};
|
|
1125
1135
|
declare enum EnumGameStatus {
|
|
1126
1136
|
GAME_COMPLETED = "GAME_COMPLETED",
|
|
@@ -1207,7 +1217,7 @@ type PostContentList = {
|
|
|
1207
1217
|
};
|
|
1208
1218
|
};
|
|
1209
1219
|
type PostContentGame = {
|
|
1210
|
-
game:
|
|
1220
|
+
game: BaseGameType;
|
|
1211
1221
|
};
|
|
1212
1222
|
type PostContentData = PostContentGame | PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
|
|
1213
1223
|
type PostContentFormData = {
|
|
@@ -2647,4 +2657,4 @@ declare const ANDROID_URL = "https://play.google.com/store/apps/details?id=com.t
|
|
|
2647
2657
|
declare const SCHOOL_MIN_STUDENT_COUNT = 300;
|
|
2648
2658
|
declare const SCHOOL_MAX_STUDENT_COUNT = 0;
|
|
2649
2659
|
|
|
2650
|
-
export { ANDROID_URL, type AdFormData, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BadgeBasename, type BadgeId, type
|
|
2660
|
+
export { ANDROID_URL, type AdFormData, type AdResource, type AdType, type AdminUpdateResourceType, type AppSettingsFormData, type AppSettingsType, type AssociateType, type BadgeBasename, type BadgeId, type BaseGameMap, type BaseGameType, type BaseResourceType, type BaseResourceTypeFormData, type Category, type ChatMessageInput, type ChatMessageReaction, type ChatMessageReplyPreview, type ChatMessageSeen, type ChatMessageType, type ChatType, type CluiImageBasename, type CluiImageId, type ContactUsFormData, type CreateAdFormData, type CreateAppSettingsFormData, type CreateBulkNotificationInput, type CreateContactUsFormData, type CreateEventFormData, type CreateEventInfoFormData, type CreateFormData, type CreateLoginFormData, type CreatePartnerFormData, type CreatePostFormData, type CreateRegisterFormData, type CreateRequestPasswordResetFormData, type CreateResetPasswordFormData, type CreateSchoolFormData, type CreateUnregisteredVendorFormData, type CreateUserFormData, type CreateValidateVerificationTokenFormData, type CreateVendorFormData, type CreateVendorInfoFormData, type DailyClueBaseGame, type DailyClueGameData, type DateTimeType, type DateTimeWithPriceType, type DeviceInfo, EnumActivity, EnumAdShowOn, EnumAdStatus, EnumAdStyle, EnumAdType, EnumBillingPeriod, EnumChatReportReason, EnumChatType, EnumEventDateStatus, EnumEventType, EnumFoodFlavor, EnumFoodType, EnumGameStatus, EnumGameType, EnumInviteStatus, EnumNotificationResourceType, EnumNotificationType, EnumOSPlatform, EnumPartnerType, EnumPaymentMethod, EnumPostContentType, EnumPostType, EnumRegions, EnumRelationResource, EnumResourceType, EnumSocialMedia, EnumSubscriptionStatus, EnumUserLicence, EnumUserRole, EnumVendorType, EnumVerificationType, type EventFormData, type EventInfoFormData, type EventInfoType, type EventListItemType, type EventStatusType, type EventType, type FormDateField, type FormField, type GameDate, type GameDocType, type GameHistory, type GameLeaderboard, type GamePlacement, type GamePlacementClue, type GameType, type GeocodeLocation, type GlobalGameData, type GoogleAddressComponent, type GoogleImportedMarket, IMAGE_EXTENSION, IOS_URL, type IconBasename, type IconId, type ImageObjectType, ImageTypeEnum, type LocationGeoType, type LocationType, type LoginFormData, type LogoBasename, type LogoId, type MarketingMaterialRequestInputType, type NotificationCount, type NotificationDataType, type NotificationType, type Nullable, type OptionItem, type OtherImagesBasename, type OtherImagesId, type OwnerType, PROMO_CODE_PREFIX, type ParticipantType, type PartnerFormData, type PartnerType, type PaymentInfoType, type PlacePrediction, type PostContentData, type PostContentFormData, type PostContentGame, type PostContentImage, type PostContentList, type PostContentTextarea, type PostContentType, type PostContentVideo, type PostFileInput, type PostFormData, type PostType, type PosterAssetId, type PosterImageBasename, type PosterInputType, type PosterUsageType, type PromoCodeType, type RefundPolicy, type Region, type RegisterFormData, type RelationDate, type RelationType, type ReportChatUser, type RequestPasswordResetFormData, type Requirement, type ResetPasswordFormData, type ResourceActivityEntry, type ResourceActivityInputType, type ResourceActivityType, type ResourceByUser, type ResourceConnectionsType, type ResourceContactDetailsType, type ResourceDetails, type ResourceImageType, SAVED_EMAIL_KEY, SAVED_PASSWORD_KEY, SAVED_REFRESH_TOKEN_KEY, SAVED_TOKEN_KEY, SCHOOL_MAX_STUDENT_COUNT, SCHOOL_MIN_STUDENT_COUNT, type SchoolFormData, type SchoolRegisteredUserType, type SchoolReturnType, type SchoolType, type SocialMediaType, type StallType, type StripeSubscription, type Subcategory, type SubcategoryItems, type SubscriptionPlanData, type SubscriptionPlansResponse, type SubscriptionPricingData, type SubscriptionStatusData, type TermsAgreement, USER_STORAGE_KEY, type UnregisteredVendorFormData, type UnregisteredVendorInvitationType, type UnregisteredVendorType, type UseGetEventsByRegionOptions, type UserActivity, type UserActivityEvent, type UserFormData, type UserLicenceType, type UserType, type ValidateVerificationTokenFormData, type VendorAttributes, type VendorCalendarData, type VendorFormData, type VendorInfoFormData, type VendorInfoType, type VendorProductList, type VendorType, availableCategories, availableRegionOptions, availableRegionTypes, availableTagTypes, badgeFiles, badgeIds, badges, capitalizeFirstLetter, categoryColors, cluemartSocialMedia, cluiFiles, cluiIds, cluiImages, companyContactFields, computeDailyClueState, contactUsFields, darkColors, dateFormat, defaultEventFormValues, defaultEventInfoFormValues, defaultLocation, defaultPartnerFormValues, defaultUnregisteredVendorFormValues, defaultVendorFormValues, defaultVendorInfoFormValues, emailField, eventBasicInfoFields, eventEndDateFields, eventInfo, eventInfoPaymentInfo, eventStartDateFields, fonts, foodFlavourOptions, formatDate, formatTimestamp, gameScreenIdentifierList, gameTypeToDisplayName, getCurrentAndFutureDates, globalDefaultValues, iconFiles, iconIds, icons, isFutureDatesBeforeThreshold, isIsoDateString, licenseNiceNames, lightColors, loginFields, logoFiles, logoIds, logos, mapArrayToOptions, mapBaseResourceTypeToFormData, normalizeUrl, nzStartOfDay, otherImages, otherImagesFiles, otherImagesIds, packagingOptions, partnerBasicInfoFields, paymentMethodOptions, posterFiles, posterIds, posters, priceUnits, producedIngOptions, productLabelGroups, profileFields, refundPolicyOptions, registerFields, removeTypename, requestPasswordResetFields, requirementsOptions, resetPasswordFields, seededShuffle, socialMediaFields, sortDatesChronologically, stallTypeOptions, statusOptions, tagOptions, timeFormat, toNZTime, truncateText, useAdForm, useAddParticipantToChat, useAddUserFavouriteResource, useAddUserGoingResource, useAddUserInterestResource, useAddUserPresentResource, useAdminPermanentlyDeleteResource, useAdminResendUserVerificationEmail, useAdminUpdateResourceType, useAppSettingsForm, useCancelSubscription, useContactUs, useContactUsForm, useCrawlGoogleMarkets, useCreateAd, useCreateBulkNotifications, useCreateCheckoutSession, useCreateCustomerPortal, useCreateEvent, useCreateEventInfo, useCreatePartner, useCreatePost, useCreatePoster, useCreatePrivateChat, useCreatePushToken, useCreateRelation, useCreateResourceActivity, useCreateSchool, useCreateUnregisteredVendor, useCreateUser, useCreateVendor, useCreateVendorInfo, useDeleteAd, useDeleteAllNotifications, useDeleteChat, useDeleteEvent, useDeleteNotification, useDeletePartner, useDeletePost, useDeleteRelation, useDeleteSchool, useDeleteUnregisteredVendor, useDeleteUser, useDeleteVendor, useEventForm, useEventInfoForm, useGetAd, useGetAds, useGetAdsByRegion, useGetAppSettings, useGetChat, useGetChatSubscription, useGetChatsByRegion, useGetEvent, useGetEventByPlaceId, useGetEventInfo, useGetEventRelations, useGetEvents, useGetEventsByRegion, useGetEventsNearMe, useGetGame, useGetGameLeaderboard, useGetGames, useGetNotificationCount, useGetNotificationCountSubscription, useGetPartner, useGetPartners, useGetPartnersByRegion, useGetPost, useGetPosts, useGetPostsByType, useGetRelation, useGetRelationByEventAndVendor, useGetReportedChatUsers, useGetResourceActivity, useGetResourceConnections, useGetSchool, useGetSchools, useGetSubscriptionPlans, useGetSubscriptionStatus, useGetUnregisteredVendor, useGetUnregisteredVendors, useGetUser, useGetUserActivities, useGetUserChats, useGetUserEvents, useGetUserNotifications, useGetUserNotificationsSubscription, useGetUserPartners, useGetUserResources, useGetUserVendors, useGetUsers, useGetVendor, useGetVendorInfo, useGetVendorRelations, useGetVendors, useGetVendorsByRegion, useLeaveGame, useLocationSearch, useLogin, useLoginForm, useLogout, useMarkAllNotificationsRead, useMarkChatMessagesSeen, useMarkNotificationRead, usePartnerForm, usePostForm, useRefreshToken, useRegister, useRegisterForm, useRemoveParticipantFromChat, useRemoveUserFavouriteResource, useRemoveUserGoingResource, useRemoveUserInterestResource, useRemoveUserPresentResource, useReportChatUser, useRequestMarketingMaterial, useRequestPasswordReset, useRequestPasswordResetForm, useResetPassword, useResetPasswordForm, useSchoolForm, useSearchEvents, useSearchPartners, useSearchVendors, useSelectPackage, useSelectStandardPackage, useSendChatMessage, useStartGame, useToggleChatMessageLike, useUpdateAd, useUpdateAppSettings, useUpdateDailyClueGame, useUpdateEvent, useUpdateEventInfo, useUpdateGoogleImportedMarkets, useUpdatePartner, useUpdatePost, useUpdateRelation, useUpdateSchool, useUpdateSubscriptionPlan, useUpdateUnregisteredVendor, useUpdateUser, useUpdateVendor, useUpdateVendorInfo, useUserForm, useValidateVerificationToken, useValidateVerificationTokenForm, useVendorForm, useVendorInfoForm, validateVerificationTokenFields, vendorAvailability, vendorBasicInfoFields, vendorCompliance, vendorElectricity, vendorEndDateFields, vendorFoodFlavour, vendorFullAddress, vendorGazebo, vendorLocationDescription, vendorMenuFields, vendorPackaging, vendorPriceRange, vendorProducedIn, vendorStallSize, vendorStartDateFields, vendorTable };
|
package/dist/index.mjs
CHANGED
|
@@ -435,7 +435,7 @@ var priceUnits = [
|
|
|
435
435
|
{ label: "Half dozen", value: "HALF_DOZEN" }
|
|
436
436
|
];
|
|
437
437
|
|
|
438
|
-
// src/types/game.ts
|
|
438
|
+
// src/types/game/dailyClue.ts
|
|
439
439
|
var OBJECT_ID_PATH_SEGMENT = "[a-f0-9]{24}";
|
|
440
440
|
var OBJECT_ID_PATH_SEGMENT_END = `${OBJECT_ID_PATH_SEGMENT}$`;
|
|
441
441
|
var gameScreenIdentifierList = [
|
|
@@ -530,20 +530,6 @@ var gameScreenIdentifierList = [
|
|
|
530
530
|
match: "/visitors"
|
|
531
531
|
}
|
|
532
532
|
];
|
|
533
|
-
var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
|
|
534
|
-
EnumGameType2["DAILY_CLUE"] = "dailyClue";
|
|
535
|
-
return EnumGameType2;
|
|
536
|
-
})(EnumGameType || {});
|
|
537
|
-
var gameTypeToDisplayName = {
|
|
538
|
-
["dailyClue" /* DAILY_CLUE */]: "Daily Clue"
|
|
539
|
-
};
|
|
540
|
-
var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus3) => {
|
|
541
|
-
EnumGameStatus3["GAME_COMPLETED"] = "GAME_COMPLETED";
|
|
542
|
-
EnumGameStatus3["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
|
|
543
|
-
EnumGameStatus3["GAME_LEFT"] = "GAME_LEFT";
|
|
544
|
-
EnumGameStatus3["GAME_STARTED"] = "GAME_STARTED";
|
|
545
|
-
return EnumGameStatus3;
|
|
546
|
-
})(EnumGameStatus || {});
|
|
547
533
|
|
|
548
534
|
// src/utils/date.ts
|
|
549
535
|
import dayjs from "dayjs";
|
|
@@ -653,7 +639,7 @@ function getDayIndex(start, today) {
|
|
|
653
639
|
}
|
|
654
640
|
function computeDailyClueState(dailyClue) {
|
|
655
641
|
const { startDate, endDate } = dailyClue.gameFields.gameDate;
|
|
656
|
-
const {
|
|
642
|
+
const { solutionShuffled, collected } = dailyClue.letterInfo;
|
|
657
643
|
const today = nzStartOfDay();
|
|
658
644
|
const start = nzStartOfDay(startDate);
|
|
659
645
|
const end = nzStartOfDay(endDate);
|
|
@@ -672,10 +658,10 @@ function computeDailyClueState(dailyClue) {
|
|
|
672
658
|
todaysPlacement: null
|
|
673
659
|
};
|
|
674
660
|
}
|
|
675
|
-
if (index < 0 || index >=
|
|
661
|
+
if (index < 0 || index >= solutionShuffled.length || index >= shuffledPlacements.length) {
|
|
676
662
|
return null;
|
|
677
663
|
}
|
|
678
|
-
const letterToday =
|
|
664
|
+
const letterToday = solutionShuffled[index];
|
|
679
665
|
const placement = shuffledPlacements[index];
|
|
680
666
|
if (!letterToday || !placement) return null;
|
|
681
667
|
const alreadyCollectedToday = (collected ?? []).includes(letterToday);
|
|
@@ -5690,33 +5676,32 @@ var GAME_DATE_FIELDS_FRAGMENT = gql29`
|
|
|
5690
5676
|
endDate
|
|
5691
5677
|
}
|
|
5692
5678
|
`;
|
|
5693
|
-
var
|
|
5694
|
-
fragment
|
|
5679
|
+
var DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT = gql29`
|
|
5680
|
+
fragment DailyClueBaseGameFields on DailyClueBaseGameType {
|
|
5695
5681
|
gameDate {
|
|
5696
5682
|
...GameDateFields
|
|
5697
5683
|
}
|
|
5698
5684
|
gameSolution
|
|
5699
|
-
gameType
|
|
5700
5685
|
}
|
|
5701
5686
|
${GAME_DATE_FIELDS_FRAGMENT}
|
|
5702
5687
|
`;
|
|
5703
5688
|
var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = gql29`
|
|
5704
5689
|
fragment DailyClueGameDataFields on DailyClueGameDataType {
|
|
5705
5690
|
gameFields {
|
|
5706
|
-
...
|
|
5691
|
+
...DailyClueBaseGameFields
|
|
5707
5692
|
}
|
|
5708
5693
|
lastFoundDate
|
|
5709
5694
|
points
|
|
5710
5695
|
letterInfo {
|
|
5711
5696
|
collected
|
|
5712
|
-
|
|
5713
|
-
todaysLetter
|
|
5697
|
+
solutionShuffled
|
|
5714
5698
|
todaysClue
|
|
5699
|
+
todaysLetter
|
|
5715
5700
|
todaysPlacement
|
|
5716
5701
|
}
|
|
5717
5702
|
streak
|
|
5718
5703
|
}
|
|
5719
|
-
${
|
|
5704
|
+
${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
|
|
5720
5705
|
`;
|
|
5721
5706
|
var GAME_HISTORY_FIELDS_FRAGMENT = gql29`
|
|
5722
5707
|
fragment GameHistoryFields on GameHistoryType {
|
|
@@ -5806,6 +5791,15 @@ var GET_GAME_LEADERBOARD = gql29`
|
|
|
5806
5791
|
`;
|
|
5807
5792
|
|
|
5808
5793
|
// src/graphql/queries/post.ts
|
|
5794
|
+
var BASE_GAME_FIELDS_FRAGMENT = gql30`
|
|
5795
|
+
fragment BaseGameFields on BaseGameType {
|
|
5796
|
+
gameType
|
|
5797
|
+
dailyClue {
|
|
5798
|
+
...DailyClueBaseGameFields
|
|
5799
|
+
}
|
|
5800
|
+
}
|
|
5801
|
+
${DAILY_CLUE_BASE_GAME_FIELDS_FRAGMENT}
|
|
5802
|
+
`;
|
|
5809
5803
|
var POST_CONTENT_DATA_FIELDS_FRAGMENT = gql30`
|
|
5810
5804
|
fragment PostContentDataFields on PostContentData {
|
|
5811
5805
|
game {
|
|
@@ -8336,6 +8330,25 @@ var EnumActivity = /* @__PURE__ */ ((EnumActivity2) => {
|
|
|
8336
8330
|
EnumActivity2["VIEW"] = "VIEW";
|
|
8337
8331
|
return EnumActivity2;
|
|
8338
8332
|
})(EnumActivity || {});
|
|
8333
|
+
|
|
8334
|
+
// src/types/game/index.ts
|
|
8335
|
+
var EnumGameStatus = /* @__PURE__ */ ((EnumGameStatus2) => {
|
|
8336
|
+
EnumGameStatus2["GAME_COMPLETED"] = "GAME_COMPLETED";
|
|
8337
|
+
EnumGameStatus2["GAME_IN_PROGRESS"] = "GAME_IN_PROGRESS";
|
|
8338
|
+
EnumGameStatus2["GAME_LEFT"] = "GAME_LEFT";
|
|
8339
|
+
EnumGameStatus2["GAME_STARTED"] = "GAME_STARTED";
|
|
8340
|
+
return EnumGameStatus2;
|
|
8341
|
+
})(EnumGameStatus || {});
|
|
8342
|
+
|
|
8343
|
+
// src/types/game/global.ts
|
|
8344
|
+
var EnumGameType = /* @__PURE__ */ ((EnumGameType2) => {
|
|
8345
|
+
EnumGameType2["DAILY_CLUE"] = "dailyClue";
|
|
8346
|
+
return EnumGameType2;
|
|
8347
|
+
})(EnumGameType || {});
|
|
8348
|
+
var gameTypeToDisplayName = {
|
|
8349
|
+
["dailyClue" /* DAILY_CLUE */]: "Daily Clue"
|
|
8350
|
+
//[EnumGameType.MINI_QUIZ]: "Mini Quiz",
|
|
8351
|
+
};
|
|
8339
8352
|
export {
|
|
8340
8353
|
ANDROID_URL,
|
|
8341
8354
|
EnumActivity,
|