@timardex/cluemart-shared 1.5.569 → 1.5.571
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/{auth-BDvPkMFk.d.ts → auth-CQiRtrAh.d.ts} +1 -1
- package/dist/{auth-DBhUhOg-.d.mts → auth-DH0WOTYB.d.mts} +1 -1
- package/dist/{chunk-LNHT4D45.mjs → chunk-IGDHXFQR.mjs} +35 -14
- package/dist/chunk-IGDHXFQR.mjs.map +1 -0
- package/dist/{chunk-J7JHBSR7.mjs → chunk-VA5YN2K3.mjs} +13 -13
- package/dist/chunk-VA5YN2K3.mjs.map +1 -0
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-3liXCxkc.d.mts → global-BbTqWv4Y.d.mts} +9 -10
- package/dist/{global-BebbAtVP.d.ts → global-pfQm7lSE.d.ts} +9 -10
- package/dist/graphql/index.cjs +34 -13
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +3 -3
- package/dist/graphql/index.d.ts +3 -3
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +40 -28
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/hooks/index.mjs +8 -17
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +52 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +17 -10
- package/dist/index.d.ts +17 -10
- package/dist/index.mjs +52 -40
- package/dist/index.mjs.map +1 -1
- package/dist/{post-HPDnvpBB.d.ts → post-B2KhkTqZ.d.ts} +10 -2
- package/dist/{post-CSzn0CyV.d.mts → post-BH1gZOgP.d.mts} +10 -2
- package/dist/{resourceActivities-Bmt-2ItD.d.mts → resourceActivities-BUBwaTTV.d.mts} +1 -1
- package/dist/{resourceActivities-2dcCvRIM.d.ts → resourceActivities-nugL4NlE.d.ts} +1 -1
- package/dist/theme/index.cjs +12 -12
- package/dist/theme/index.cjs.map +1 -1
- package/dist/theme/index.mjs +1 -1
- package/dist/types/index.d.mts +5 -5
- package/dist/types/index.d.ts +5 -5
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/chunk-J7JHBSR7.mjs.map +0 -1
- package/dist/chunk-LNHT4D45.mjs.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumResourceType, EnumPartnerType } from './enums/index.js';
|
|
2
|
-
import { A as AssociateType, W as ResourceImageType, h as UserLicenceType, J as PromoCodeType, _ as TermsAgreement, D as DateTimeType, s as CreateFormData, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, y as OwnerType, Q as ResourceContactDetailsType, X as SocialMediaType } from './global-
|
|
2
|
+
import { A as AssociateType, W as ResourceImageType, h as UserLicenceType, J as PromoCodeType, _ as TermsAgreement, D as DateTimeType, s as CreateFormData, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, y as OwnerType, Q as ResourceContactDetailsType, X as SocialMediaType } from './global-pfQm7lSE.js';
|
|
3
3
|
import { PosterAssetId } from './images/index.js';
|
|
4
4
|
import { d as GlobalGameData, E as EnumGameType, a as DailyClueGameData, G as GameDate, D as DailyClueBaseGame } from './dailyClue-BnlktK68.js';
|
|
5
5
|
|
|
@@ -135,6 +135,8 @@ interface AppSettingsFormData {
|
|
|
135
135
|
type CreateAppSettingsFormData = CreateFormData<AppSettingsFormData>;
|
|
136
136
|
type AppSettingsType = AppSettingsFormData & {
|
|
137
137
|
_id: string;
|
|
138
|
+
activeSchoolsStudentCountTotal: number;
|
|
139
|
+
activeSchoolsStudentCountUpdatedAt: Date;
|
|
138
140
|
createdAt: Date;
|
|
139
141
|
key: string;
|
|
140
142
|
updatedAt: Date | null;
|
|
@@ -246,8 +248,14 @@ interface SchoolFormData {
|
|
|
246
248
|
termsAgreement?: TermsAgreement | null;
|
|
247
249
|
}
|
|
248
250
|
type CreateSchoolFormData = CreateFormData<SchoolFormData>;
|
|
251
|
+
type SchoolCampaignType = {
|
|
252
|
+
endDate: Date;
|
|
253
|
+
name: string;
|
|
254
|
+
startDate: Date;
|
|
255
|
+
};
|
|
249
256
|
type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
|
|
250
257
|
_id: string;
|
|
258
|
+
campaigns: SchoolCampaignType[];
|
|
251
259
|
createdAt: Date;
|
|
252
260
|
deletedAt: Date | null;
|
|
253
261
|
overallPoints: number | null;
|
|
@@ -388,4 +396,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
|
388
396
|
updatedAt: Date | null;
|
|
389
397
|
};
|
|
390
398
|
|
|
391
|
-
export { type
|
|
399
|
+
export { type SchoolRegisteredUserType as $, type AdType as A, type BaseGameMap as B, type CreateUserFormData as C, type GameType as D, EnumAdStatus as E, type MiniQuizAnswer as F, type GameDocType as G, type MiniQuizAnsweredQuestion as H, type MiniQuizBaseGame as I, type MiniQuizGameData as J, type MiniQuizQuestion as K, type PostContentData as L, type MarketingMaterialRequestInputType as M, type PostContentFormData as N, type PostContentGame as O, type PartnerType as P, type PostContentImage as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type PostContentList as T, type UserType as U, type PostContentTextarea as V, type PostContentType as W, type PostContentVideo as X, type PostFileInput as Y, type PosterInputType as Z, type SchoolCampaignType as _, type SubscriptionStatusData as a, type StripeSubscription as a0, type SubscriptionPlanData as a1, type SubscriptionPricingData as a2, type UserActivity as a3, type UserActivityEvent as a4, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type SchoolReturnType as f, type SchoolType as g, type UserFormData as h, type PartnerFormData as i, type AdFormData as j, type CreateAdFormData as k, type CreatePartnerFormData as l, type PostFormData as m, type CreatePostFormData as n, type AppSettingsFormData as o, type CreateAppSettingsFormData as p, type SchoolFormData as q, type CreateSchoolFormData as r, type AdResource as s, type BaseGameType as t, EnumAdShowOn as u, EnumAdStyle as v, EnumAdType as w, EnumGameStatus as x, EnumPostContentType as y, type GameHistory as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumOSPlatform, EnumUserRole, EnumSubscriptionStatus, EnumUserLicence, EnumResourceType, EnumPartnerType } from './enums/index.mjs';
|
|
2
|
-
import { A as AssociateType, W as ResourceImageType, h as UserLicenceType, J as PromoCodeType, _ as TermsAgreement, D as DateTimeType, s as CreateFormData, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, y as OwnerType, Q as ResourceContactDetailsType, X as SocialMediaType } from './global-
|
|
2
|
+
import { A as AssociateType, W as ResourceImageType, h as UserLicenceType, J as PromoCodeType, _ as TermsAgreement, D as DateTimeType, s as CreateFormData, r as BaseResourceType, L as LocationType, B as BaseResourceTypeFormData, y as OwnerType, Q as ResourceContactDetailsType, X as SocialMediaType } from './global-BbTqWv4Y.mjs';
|
|
3
3
|
import { PosterAssetId } from './images/index.mjs';
|
|
4
4
|
import { d as GlobalGameData, E as EnumGameType, a as DailyClueGameData, G as GameDate, D as DailyClueBaseGame } from './dailyClue-BnlktK68.mjs';
|
|
5
5
|
|
|
@@ -135,6 +135,8 @@ interface AppSettingsFormData {
|
|
|
135
135
|
type CreateAppSettingsFormData = CreateFormData<AppSettingsFormData>;
|
|
136
136
|
type AppSettingsType = AppSettingsFormData & {
|
|
137
137
|
_id: string;
|
|
138
|
+
activeSchoolsStudentCountTotal: number;
|
|
139
|
+
activeSchoolsStudentCountUpdatedAt: Date;
|
|
138
140
|
createdAt: Date;
|
|
139
141
|
key: string;
|
|
140
142
|
updatedAt: Date | null;
|
|
@@ -246,8 +248,14 @@ interface SchoolFormData {
|
|
|
246
248
|
termsAgreement?: TermsAgreement | null;
|
|
247
249
|
}
|
|
248
250
|
type CreateSchoolFormData = CreateFormData<SchoolFormData>;
|
|
251
|
+
type SchoolCampaignType = {
|
|
252
|
+
endDate: Date;
|
|
253
|
+
name: string;
|
|
254
|
+
startDate: Date;
|
|
255
|
+
};
|
|
249
256
|
type SchoolType = Omit<SchoolFormData, "logoUpload"> & {
|
|
250
257
|
_id: string;
|
|
258
|
+
campaigns: SchoolCampaignType[];
|
|
251
259
|
createdAt: Date;
|
|
252
260
|
deletedAt: Date | null;
|
|
253
261
|
overallPoints: number | null;
|
|
@@ -388,4 +396,4 @@ type PostType = Omit<PostFormData, "content" | "coverUpload"> & {
|
|
|
388
396
|
updatedAt: Date | null;
|
|
389
397
|
};
|
|
390
398
|
|
|
391
|
-
export { type
|
|
399
|
+
export { type SchoolRegisteredUserType as $, type AdType as A, type BaseGameMap as B, type CreateUserFormData as C, type GameType as D, EnumAdStatus as E, type MiniQuizAnswer as F, type GameDocType as G, type MiniQuizAnsweredQuestion as H, type MiniQuizBaseGame as I, type MiniQuizGameData as J, type MiniQuizQuestion as K, type PostContentData as L, type MarketingMaterialRequestInputType as M, type PostContentFormData as N, type PostContentGame as O, type PartnerType as P, type PostContentImage as Q, type ResourceByUser as R, type SubscriptionPlansResponse as S, type PostContentList as T, type UserType as U, type PostContentTextarea as V, type PostContentType as W, type PostContentVideo as X, type PostFileInput as Y, type PosterInputType as Z, type SchoolCampaignType as _, type SubscriptionStatusData as a, type StripeSubscription as a0, type SubscriptionPlanData as a1, type SubscriptionPricingData as a2, type UserActivity as a3, type UserActivityEvent as a4, type PostType as b, EnumPostType as c, type AppSettingsType as d, type GameLeaderboard as e, type SchoolReturnType as f, type SchoolType as g, type UserFormData as h, type PartnerFormData as i, type AdFormData as j, type CreateAdFormData as k, type CreatePartnerFormData as l, type PostFormData as m, type CreatePostFormData as n, type AppSettingsFormData as o, type CreateAppSettingsFormData as p, type SchoolFormData as q, type CreateSchoolFormData as r, type AdResource as s, type BaseGameType as t, EnumAdShowOn as u, EnumAdStyle as v, EnumAdType as w, EnumGameStatus as x, EnumPostContentType as y, type GameHistory as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumChatType, EnumChatReportReason, EnumNotificationType, EnumNotificationResourceType, EnumResourceType, EnumEventDateStatus, EnumOSPlatform } from './enums/index.mjs';
|
|
2
|
-
import { x as LocationGeoType } from './global-
|
|
2
|
+
import { x as LocationGeoType } from './global-BbTqWv4Y.mjs';
|
|
3
3
|
|
|
4
4
|
type ParticipantType = {
|
|
5
5
|
active: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EnumChatType, EnumChatReportReason, EnumNotificationType, EnumNotificationResourceType, EnumResourceType, EnumEventDateStatus, EnumOSPlatform } from './enums/index.js';
|
|
2
|
-
import { x as LocationGeoType } from './global-
|
|
2
|
+
import { x as LocationGeoType } from './global-pfQm7lSE.js';
|
|
3
3
|
|
|
4
4
|
type ParticipantType = {
|
|
5
5
|
active: boolean;
|
package/dist/theme/index.cjs
CHANGED
|
@@ -25,26 +25,26 @@ __export(theme_exports, {
|
|
|
25
25
|
lightColors: () => lightColors
|
|
26
26
|
});
|
|
27
27
|
module.exports = __toCommonJS(theme_exports);
|
|
28
|
-
var primaryColor = "#ff7a00";
|
|
29
|
-
var secondaryColor = "#371134";
|
|
30
|
-
var tertiaryColor = "#191a75";
|
|
31
|
-
var quaternaryColor = "#3b7c67";
|
|
32
28
|
var darkColors = {
|
|
33
29
|
background: "#3D3D3F",
|
|
34
30
|
card: "#1c1c1e",
|
|
35
|
-
primary: "#
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
31
|
+
primary: "#c96520",
|
|
32
|
+
// burnt orange — same hue, lower brightness
|
|
33
|
+
quaternary: "#3d7a68",
|
|
34
|
+
// barely shifted from light — already sits well on dark
|
|
35
|
+
secondary: "#7a4f78",
|
|
36
|
+
// muted plum — visible but not vivid
|
|
37
|
+
tertiary: "#4e5099",
|
|
38
|
+
// dusty indigo
|
|
39
39
|
textMuted: "#8e8e93"
|
|
40
40
|
};
|
|
41
41
|
var lightColors = {
|
|
42
42
|
background: "#ffffff",
|
|
43
43
|
card: "#f1f2f6",
|
|
44
|
-
primary:
|
|
45
|
-
quaternary:
|
|
46
|
-
secondary:
|
|
47
|
-
tertiary:
|
|
44
|
+
primary: "#ff7a00",
|
|
45
|
+
quaternary: "#3b7c67",
|
|
46
|
+
secondary: "#371134",
|
|
47
|
+
tertiary: "#191a75",
|
|
48
48
|
textMuted: "#6c757d"
|
|
49
49
|
};
|
|
50
50
|
var fonts = {
|
package/dist/theme/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/theme/index.ts"],"sourcesContent":["const
|
|
1
|
+
{"version":3,"sources":["../../src/theme/index.ts"],"sourcesContent":["export const darkColors = {\n background: \"#3D3D3F\",\n card: \"#1c1c1e\",\n primary: \"#c96520\", // burnt orange — same hue, lower brightness\n quaternary: \"#3d7a68\", // barely shifted from light — already sits well on dark\n secondary: \"#7a4f78\", // muted plum — visible but not vivid\n tertiary: \"#4e5099\", // dusty indigo\n textMuted: \"#8e8e93\",\n};\n\nexport const lightColors = {\n background: \"#ffffff\",\n card: \"#f1f2f6\",\n primary: \"#ff7a00\",\n quaternary: \"#3b7c67\",\n secondary: \"#371134\",\n tertiary: \"#191a75\",\n textMuted: \"#6c757d\",\n};\n\nexport const fonts = {\n bold: {\n fontFamily: \"Roboto-Bold\",\n fontWeight: \"700\" as const,\n },\n heavy: {\n fontFamily: \"Roboto-ExtraBold\",\n fontWeight: \"900\" as const,\n },\n medium: {\n fontFamily: \"Roboto-Medium\",\n fontWeight: \"500\" as const,\n },\n regular: {\n fontFamily: \"Roboto-Regular\",\n fontWeight: \"400\" as const,\n },\n};\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAO,IAAM,aAAa;AAAA,EACxB,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,SAAS;AAAA;AAAA,EACT,YAAY;AAAA;AAAA,EACZ,WAAW;AAAA;AAAA,EACX,UAAU;AAAA;AAAA,EACV,WAAW;AACb;AAEO,IAAM,cAAc;AAAA,EACzB,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,UAAU;AAAA,EACV,WAAW;AACb;AAEO,IAAM,QAAQ;AAAA,EACnB,MAAM;AAAA,IACJ,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,OAAO;AAAA,IACL,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,QAAQ;AAAA,IACN,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,SAAS;AAAA,IACP,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AACF;","names":[]}
|
package/dist/theme/index.mjs
CHANGED
package/dist/types/index.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.mjs';
|
|
2
|
-
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, E as EnumVerificationType, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-
|
|
3
|
-
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-
|
|
4
|
-
import { c as EventListItemType } from '../global-
|
|
5
|
-
export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PROMO_CODE_PREFIX, z as PaymentInfoType, H as PosterUsageType, J as PromoCodeType, R as RefundPolicy, K as Region, M as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, Q as ResourceContactDetailsType, T as ResourceDetails, W as ResourceImageType, X as SocialMediaType, S as StallType, Y as Subcategory, Z as SubcategoryItems, _ as TermsAgreement, q as UnregisteredVendorFormData, $ as
|
|
6
|
-
export { j as AdFormData, s as AdResource, A as AdType, o as AppSettingsFormData, d as AppSettingsType, B as BaseGameMap, t as BaseGameType, k as CreateAdFormData, p as CreateAppSettingsFormData, l as CreatePartnerFormData, n as CreatePostFormData, r as CreateSchoolFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, v as EnumAdStyle, w as EnumAdType, x as EnumGameStatus, y as EnumPostContentType, c as EnumPostType, G as GameDocType, z as GameHistory, e as GameLeaderboard, D as GameType, M as MarketingMaterialRequestInputType, F as MiniQuizAnswer, H as MiniQuizAnsweredQuestion, I as MiniQuizBaseGame, J as MiniQuizGameData, K as MiniQuizQuestion, i as PartnerFormData, P as PartnerType, L as PostContentData, N as PostContentFormData, O as PostContentGame, Q as PostContentImage, T as PostContentList, V as PostContentTextarea, W as PostContentType, X as PostContentVideo, Y as PostFileInput, m as PostFormData, b as PostType, Z as PosterInputType, R as ResourceByUser, q as SchoolFormData,
|
|
2
|
+
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, E as EnumVerificationType, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-DH0WOTYB.mjs';
|
|
3
|
+
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-BUBwaTTV.mjs';
|
|
4
|
+
import { c as EventListItemType } from '../global-BbTqWv4Y.mjs';
|
|
5
|
+
export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PROMO_CODE_PREFIX, z as PaymentInfoType, H as PosterUsageType, J as PromoCodeType, R as RefundPolicy, K as Region, M as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, Q as ResourceContactDetailsType, T as ResourceDetails, W as ResourceImageType, X as SocialMediaType, S as StallType, Y as Subcategory, Z as SubcategoryItems, _ as TermsAgreement, q as UnregisteredVendorFormData, $ as UnregisteredVendorListItemType, U as UnregisteredVendorType, h as UserLicenceType, a0 as VendorAttributes, a1 as VendorCalendarData, i as VendorFormData, k as VendorInfoFormData, g as VendorInfoType, a2 as VendorProductList, V as VendorType } from '../global-BbTqWv4Y.mjs';
|
|
6
|
+
export { j as AdFormData, s as AdResource, A as AdType, o as AppSettingsFormData, d as AppSettingsType, B as BaseGameMap, t as BaseGameType, k as CreateAdFormData, p as CreateAppSettingsFormData, l as CreatePartnerFormData, n as CreatePostFormData, r as CreateSchoolFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, v as EnumAdStyle, w as EnumAdType, x as EnumGameStatus, y as EnumPostContentType, c as EnumPostType, G as GameDocType, z as GameHistory, e as GameLeaderboard, D as GameType, M as MarketingMaterialRequestInputType, F as MiniQuizAnswer, H as MiniQuizAnsweredQuestion, I as MiniQuizBaseGame, J as MiniQuizGameData, K as MiniQuizQuestion, i as PartnerFormData, P as PartnerType, L as PostContentData, N as PostContentFormData, O as PostContentGame, Q as PostContentImage, T as PostContentList, V as PostContentTextarea, W as PostContentType, X as PostContentVideo, Y as PostFileInput, m as PostFormData, b as PostType, Z as PosterInputType, R as ResourceByUser, _ as SchoolCampaignType, q as SchoolFormData, $ as SchoolRegisteredUserType, f as SchoolReturnType, g as SchoolType, a0 as StripeSubscription, a1 as SubscriptionPlanData, S as SubscriptionPlansResponse, a2 as SubscriptionPricingData, a as SubscriptionStatusData, a3 as UserActivity, a4 as UserActivityEvent, h as UserFormData, U as UserType } from '../post-BH1gZOgP.mjs';
|
|
7
7
|
export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-BnlktK68.mjs';
|
|
8
8
|
import 'react-hook-form';
|
|
9
9
|
import '../images/index.mjs';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { EnumResourceType } from '../enums/index.js';
|
|
2
|
-
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, E as EnumVerificationType, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-
|
|
3
|
-
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-
|
|
4
|
-
import { c as EventListItemType } from '../global-
|
|
5
|
-
export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PROMO_CODE_PREFIX, z as PaymentInfoType, H as PosterUsageType, J as PromoCodeType, R as RefundPolicy, K as Region, M as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, Q as ResourceContactDetailsType, T as ResourceDetails, W as ResourceImageType, X as SocialMediaType, S as StallType, Y as Subcategory, Z as SubcategoryItems, _ as TermsAgreement, q as UnregisteredVendorFormData, $ as
|
|
6
|
-
export { j as AdFormData, s as AdResource, A as AdType, o as AppSettingsFormData, d as AppSettingsType, B as BaseGameMap, t as BaseGameType, k as CreateAdFormData, p as CreateAppSettingsFormData, l as CreatePartnerFormData, n as CreatePostFormData, r as CreateSchoolFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, v as EnumAdStyle, w as EnumAdType, x as EnumGameStatus, y as EnumPostContentType, c as EnumPostType, G as GameDocType, z as GameHistory, e as GameLeaderboard, D as GameType, M as MarketingMaterialRequestInputType, F as MiniQuizAnswer, H as MiniQuizAnsweredQuestion, I as MiniQuizBaseGame, J as MiniQuizGameData, K as MiniQuizQuestion, i as PartnerFormData, P as PartnerType, L as PostContentData, N as PostContentFormData, O as PostContentGame, Q as PostContentImage, T as PostContentList, V as PostContentTextarea, W as PostContentType, X as PostContentVideo, Y as PostFileInput, m as PostFormData, b as PostType, Z as PosterInputType, R as ResourceByUser, q as SchoolFormData,
|
|
2
|
+
export { e as ContactUsFormData, f as CreateContactUsFormData, C as CreateLoginFormData, a as CreateRegisterFormData, b as CreateRequestPasswordResetFormData, d as CreateResetPasswordFormData, c as CreateValidateVerificationTokenFormData, E as EnumVerificationType, L as LoginFormData, R as RegisterFormData, g as RequestPasswordResetFormData, h as ResetPasswordFormData, V as ValidateVerificationTokenFormData } from '../auth-CQiRtrAh.js';
|
|
3
|
+
export { c as ChatMessageInput, d as ChatMessageReaction, e as ChatMessageReplyPreview, f as ChatMessageSeen, g as ChatMessageType, C as ChatType, h as CreateBulkNotificationInput, E as EnumActivity, N as NotificationCount, i as NotificationDataType, a as NotificationType, P as ParticipantType, R as ReportChatUser, j as ResourceActivityEntry, k as ResourceActivityInputType, b as ResourceActivityType } from '../resourceActivities-nugL4NlE.js';
|
|
4
|
+
import { c as EventListItemType } from '../global-pfQm7lSE.js';
|
|
5
|
+
export { A as AssociateType, r as BaseResourceType, B as BaseResourceTypeFormData, C as Category, n as CreateEventFormData, p as CreateEventInfoFormData, s as CreateFormData, t as CreateUnregisteredVendorFormData, j as CreateVendorFormData, l as CreateVendorInfoFormData, D as DateTimeType, u as DateTimeWithPriceType, v as DeviceInfo, m as EventFormData, o as EventInfoFormData, d as EventInfoType, w as EventStatusType, E as EventType, a as FormDateField, F as FormField, G as GeocodeLocation, I as ImageObjectType, x as LocationGeoType, L as LocationType, N as Nullable, O as OptionItem, y as OwnerType, P as PROMO_CODE_PREFIX, z as PaymentInfoType, H as PosterUsageType, J as PromoCodeType, R as RefundPolicy, K as Region, M as RelationDate, e as RelationType, b as Requirement, f as ResourceConnectionsType, Q as ResourceContactDetailsType, T as ResourceDetails, W as ResourceImageType, X as SocialMediaType, S as StallType, Y as Subcategory, Z as SubcategoryItems, _ as TermsAgreement, q as UnregisteredVendorFormData, $ as UnregisteredVendorListItemType, U as UnregisteredVendorType, h as UserLicenceType, a0 as VendorAttributes, a1 as VendorCalendarData, i as VendorFormData, k as VendorInfoFormData, g as VendorInfoType, a2 as VendorProductList, V as VendorType } from '../global-pfQm7lSE.js';
|
|
6
|
+
export { j as AdFormData, s as AdResource, A as AdType, o as AppSettingsFormData, d as AppSettingsType, B as BaseGameMap, t as BaseGameType, k as CreateAdFormData, p as CreateAppSettingsFormData, l as CreatePartnerFormData, n as CreatePostFormData, r as CreateSchoolFormData, C as CreateUserFormData, u as EnumAdShowOn, E as EnumAdStatus, v as EnumAdStyle, w as EnumAdType, x as EnumGameStatus, y as EnumPostContentType, c as EnumPostType, G as GameDocType, z as GameHistory, e as GameLeaderboard, D as GameType, M as MarketingMaterialRequestInputType, F as MiniQuizAnswer, H as MiniQuizAnsweredQuestion, I as MiniQuizBaseGame, J as MiniQuizGameData, K as MiniQuizQuestion, i as PartnerFormData, P as PartnerType, L as PostContentData, N as PostContentFormData, O as PostContentGame, Q as PostContentImage, T as PostContentList, V as PostContentTextarea, W as PostContentType, X as PostContentVideo, Y as PostFileInput, m as PostFormData, b as PostType, Z as PosterInputType, R as ResourceByUser, _ as SchoolCampaignType, q as SchoolFormData, $ as SchoolRegisteredUserType, f as SchoolReturnType, g as SchoolType, a0 as StripeSubscription, a1 as SubscriptionPlanData, S as SubscriptionPlansResponse, a2 as SubscriptionPricingData, a as SubscriptionStatusData, a3 as UserActivity, a4 as UserActivityEvent, h as UserFormData, U as UserType } from '../post-B2KhkTqZ.js';
|
|
7
7
|
export { D as DailyClueBaseGame, a as DailyClueGameData, E as EnumGameType, G as GameDate, b as GamePlacement, c as GamePlacementClue, d as GlobalGameData, g as gameScreenIdentifierList, e as gameTypeToDisplayName } from '../dailyClue-BnlktK68.js';
|
|
8
8
|
import 'react-hook-form';
|
|
9
9
|
import '../images/index.js';
|
package/dist/utils/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-BnlktK68.mjs';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import { EnumRegions, EnumUserLicence, EnumInviteStatus } from '../enums/index.mjs';
|
|
4
|
-
import { O as OptionItem, X as SocialMediaType } from '../global-
|
|
4
|
+
import { O as OptionItem, X as SocialMediaType } from '../global-BbTqWv4Y.mjs';
|
|
5
5
|
import 'react-hook-form';
|
|
6
6
|
|
|
7
7
|
/** Seeded shuffle so all players see the same letter order / placements for a game. */
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { a as DailyClueGameData, c as GamePlacementClue, b as GamePlacement } from '../dailyClue-BnlktK68.js';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import { EnumRegions, EnumUserLicence, EnumInviteStatus } from '../enums/index.js';
|
|
4
|
-
import { O as OptionItem, X as SocialMediaType } from '../global-
|
|
4
|
+
import { O as OptionItem, X as SocialMediaType } from '../global-pfQm7lSE.js';
|
|
5
5
|
import 'react-hook-form';
|
|
6
6
|
|
|
7
7
|
/** Seeded shuffle so all players see the same letter order / placements for a game. */
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/theme/index.ts"],"sourcesContent":["const primaryColor = \"#ff7a00\";\nconst secondaryColor = \"#371134\";\nconst tertiaryColor = \"#191a75\";\nconst quaternaryColor = \"#3b7c67\";\n\nexport const darkColors = {\n background: \"#3D3D3F\",\n card: \"#1c1c1e\",\n primary: \"#ff7a00\",\n quaternary: quaternaryColor,\n secondary: secondaryColor,\n tertiary: tertiaryColor,\n textMuted: \"#8e8e93\",\n};\n\nexport const lightColors = {\n background: \"#ffffff\",\n card: \"#f1f2f6\",\n primary: primaryColor,\n quaternary: quaternaryColor,\n secondary: secondaryColor,\n tertiary: tertiaryColor,\n textMuted: \"#6c757d\",\n};\n\nexport const fonts = {\n bold: {\n fontFamily: \"Roboto-Bold\",\n fontWeight: \"700\" as const,\n },\n heavy: {\n fontFamily: \"Roboto-ExtraBold\",\n fontWeight: \"900\" as const,\n },\n medium: {\n fontFamily: \"Roboto-Medium\",\n fontWeight: \"500\" as const,\n },\n regular: {\n fontFamily: \"Roboto-Regular\",\n fontWeight: \"400\" as const,\n },\n};\n"],"mappings":";AAAA,IAAM,eAAe;AACrB,IAAM,iBAAiB;AACvB,IAAM,gBAAgB;AACtB,IAAM,kBAAkB;AAEjB,IAAM,aAAa;AAAA,EACxB,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,UAAU;AAAA,EACV,WAAW;AACb;AAEO,IAAM,cAAc;AAAA,EACzB,YAAY;AAAA,EACZ,MAAM;AAAA,EACN,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,UAAU;AAAA,EACV,WAAW;AACb;AAEO,IAAM,QAAQ;AAAA,EACnB,MAAM;AAAA,IACJ,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,OAAO;AAAA,IACL,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,QAAQ;AAAA,IACN,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AAAA,EACA,SAAS;AAAA,IACP,YAAY;AAAA,IACZ,YAAY;AAAA,EACd;AACF;","names":[]}
|