@timardex/cluemart-shared 1.5.528 → 1.5.530
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-4PJQMQVX.mjs +24 -0
- package/dist/chunk-4PJQMQVX.mjs.map +1 -0
- package/dist/{chunk-PYMLMTOQ.mjs → chunk-G2YFRN6A.mjs} +1 -1
- package/dist/{chunk-PYMLMTOQ.mjs.map → chunk-G2YFRN6A.mjs.map} +1 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +17 -0
- 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/cluiTui.png +0 -0
- package/dist/images/cluiTui.png.d.ts +2 -0
- package/dist/images/index.cjs +51 -0
- package/dist/images/index.cjs.map +1 -0
- package/dist/images/index.d.mts +40 -0
- package/dist/images/index.d.ts +40 -0
- package/dist/images/index.mjs +13 -0
- package/dist/images/index.mjs.map +1 -0
- package/dist/images/node.cjs +80 -0
- package/dist/images/node.d.ts +25 -0
- package/dist/images/node.mjs +62 -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 +25 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +40 -1
- package/dist/index.d.ts +40 -1
- package/dist/index.mjs +21 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -5
package/dist/graphql/index.mjs
CHANGED
package/dist/hooks/index.cjs
CHANGED
|
@@ -4484,6 +4484,23 @@ 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 otherFiles = {
|
|
4495
|
+
cluiTui: "cluiTui.png"
|
|
4496
|
+
};
|
|
4497
|
+
var posters = Object.fromEntries(
|
|
4498
|
+
Object.entries(posterFiles).map(([key, file]) => [key, `${PKG}/images/${file}`])
|
|
4499
|
+
);
|
|
4500
|
+
var otherImages = Object.fromEntries(
|
|
4501
|
+
Object.entries(otherFiles).map(([key, file]) => [key, `${PKG}/images/${file}`])
|
|
4502
|
+
);
|
|
4503
|
+
|
|
4487
4504
|
// src/types/post.ts
|
|
4488
4505
|
var EnumPostType = /* @__PURE__ */ ((EnumPostType2) => {
|
|
4489
4506
|
EnumPostType2["DAILY_MEETS"] = "daily_meets";
|