@timardex/cluemart-server-shared 1.0.76 → 1.0.77

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
@@ -49,6 +49,7 @@ interface SubscriptionPayload {
49
49
  };
50
50
  }
51
51
  interface GraphQLContext {
52
+ appVersion: string | null;
52
53
  user: AuthUser | null;
53
54
  pubsub: {
54
55
  publish: (eventName: EnumPubSubEvents, payload: SubscriptionPayload) => void;
package/dist/index.d.ts CHANGED
@@ -49,6 +49,7 @@ interface SubscriptionPayload {
49
49
  };
50
50
  }
51
51
  interface GraphQLContext {
52
+ appVersion: string | null;
52
53
  user: AuthUser | null;
53
54
  pubsub: {
54
55
  publish: (eventName: EnumPubSubEvents, payload: SubscriptionPayload) => void;
package/dist/index.mjs CHANGED
@@ -11939,7 +11939,7 @@ var schema11 = new MongooseSchema15(
11939
11939
  {
11940
11940
  ...baseResourceFields,
11941
11941
  // Importing base resource fields from global.ts
11942
- claimed: { default: true, required: true, type: Boolean },
11942
+ claimed: { default: true, required: false, type: Boolean },
11943
11943
  dateTime: [dateTimeSchema3],
11944
11944
  eventInfoId: {
11945
11945
  ref: "EventInfo",