@timardex/cluemart-shared 1.4.80 → 1.4.82

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/index.d.mts CHANGED
@@ -1004,9 +1004,9 @@ type PostContentGame = {
1004
1004
  title: string;
1005
1005
  gameType: EnumGameType;
1006
1006
  gameInfo: {
1007
- dailyClue?: string;
1007
+ dailyClue?: string | null;
1008
1008
  };
1009
- gameEndDate?: string;
1009
+ gameEndDate: string;
1010
1010
  };
1011
1011
  };
1012
1012
  type PostContentData = PostContentGame | PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
@@ -1077,7 +1077,7 @@ type DailyClueGameData = {
1077
1077
  streak: number;
1078
1078
  points: number;
1079
1079
  collectedLetters?: string[];
1080
- gameEndDate?: string;
1080
+ gameEndDate: string;
1081
1081
  };
1082
1082
  type GameType = {
1083
1083
  _id: string;
@@ -1086,9 +1086,9 @@ type GameType = {
1086
1086
  deletedAt: Date | null;
1087
1087
  gameData: {
1088
1088
  dailyClue?: DailyClueGameData | null;
1089
- };
1089
+ } | null;
1090
1090
  updatedAt: Date | null;
1091
- owner: OwnerType | null;
1091
+ owner: OwnerType;
1092
1092
  };
1093
1093
 
1094
1094
  declare const vendorElectricity: {
package/dist/index.d.ts CHANGED
@@ -1004,9 +1004,9 @@ type PostContentGame = {
1004
1004
  title: string;
1005
1005
  gameType: EnumGameType;
1006
1006
  gameInfo: {
1007
- dailyClue?: string;
1007
+ dailyClue?: string | null;
1008
1008
  };
1009
- gameEndDate?: string;
1009
+ gameEndDate: string;
1010
1010
  };
1011
1011
  };
1012
1012
  type PostContentData = PostContentGame | PostContentTextarea | PostContentImage | PostContentVideo | PostContentList;
@@ -1077,7 +1077,7 @@ type DailyClueGameData = {
1077
1077
  streak: number;
1078
1078
  points: number;
1079
1079
  collectedLetters?: string[];
1080
- gameEndDate?: string;
1080
+ gameEndDate: string;
1081
1081
  };
1082
1082
  type GameType = {
1083
1083
  _id: string;
@@ -1086,9 +1086,9 @@ type GameType = {
1086
1086
  deletedAt: Date | null;
1087
1087
  gameData: {
1088
1088
  dailyClue?: DailyClueGameData | null;
1089
- };
1089
+ } | null;
1090
1090
  updatedAt: Date | null;
1091
- owner: OwnerType | null;
1091
+ owner: OwnerType;
1092
1092
  };
1093
1093
 
1094
1094
  declare const vendorElectricity: {