@timardex/cluemart-shared 1.5.527 → 1.5.529
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-IBKLW65U.mjs +16 -0
- package/dist/chunk-IBKLW65U.mjs.map +1 -0
- package/dist/{chunk-DJZW3O5D.mjs → chunk-PYMLMTOQ.mjs} +2 -2
- package/dist/{chunk-DJZW3O5D.mjs.map → chunk-PYMLMTOQ.mjs.map} +1 -1
- package/dist/graphql/index.cjs +1 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +12 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +12 -11
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/images/index.cjs +41 -0
- package/dist/images/index.cjs.map +1 -0
- package/dist/images/index.d.mts +25 -0
- package/dist/images/index.d.ts +25 -0
- package/dist/images/index.mjs +9 -0
- package/dist/images/index.mjs.map +1 -0
- package/dist/images/node.cjs +74 -0
- package/dist/images/node.d.ts +13 -0
- package/dist/images/node.mjs +60 -0
- package/dist/images/poster1.png +0 -0
- package/dist/images/poster1.png.d.ts +2 -0
- package/dist/images/poster2.png +0 -0
- package/dist/images/poster2.png.d.ts +2 -0
- package/dist/images/poster3.png +0 -0
- package/dist/images/poster3.png.d.ts +2 -0
- package/dist/index.cjs +16 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +25 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.mjs +14 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -3
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4152,7 +4152,7 @@ var GET_GAMES = import_client55.gql`
|
|
|
4152
4152
|
${GAME_DOC_FIELDS_FRAGMENT}
|
|
4153
4153
|
`;
|
|
4154
4154
|
var GET_GAME = import_client55.gql`
|
|
4155
|
-
query getGame($_id: ID
|
|
4155
|
+
query getGame($_id: ID) {
|
|
4156
4156
|
game(_id: $_id) {
|
|
4157
4157
|
...GameDocFields
|
|
4158
4158
|
}
|
|
@@ -4484,6 +4484,17 @@ var REQUEST_MARKETING_MATERIAL_MUTATION = import_client68.gql`
|
|
|
4484
4484
|
// src/graphql/hooks/school/hooksQuery.ts
|
|
4485
4485
|
var import_client70 = require("@apollo/client");
|
|
4486
4486
|
|
|
4487
|
+
// src/images/index.ts
|
|
4488
|
+
var PKG = "@timardex/cluemart-shared";
|
|
4489
|
+
var posterFiles = {
|
|
4490
|
+
poster1: "poster1.png",
|
|
4491
|
+
poster2: "poster2.png",
|
|
4492
|
+
poster3: "poster3.png"
|
|
4493
|
+
};
|
|
4494
|
+
var posters = Object.fromEntries(
|
|
4495
|
+
Object.entries(posterFiles).map(([key, file]) => [key, `${PKG}/images/${file}`])
|
|
4496
|
+
);
|
|
4497
|
+
|
|
4487
4498
|
// src/types/post.ts
|
|
4488
4499
|
var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|
|
4489
4500
|
EnumPostType2["DAILY_MEETS"] = "daily_meets";
|