@timardex/cluemart-server-shared 1.0.134 → 1.0.135

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.cjs CHANGED
@@ -10212,6 +10212,7 @@ var SCHOOL = gql`
10212
10212
  overallPoints
10213
10213
  region
10214
10214
  studentCount
10215
+ schoolCode
10215
10216
  socialMedia {
10216
10217
  ...SocialMediaFields
10217
10218
  }
@@ -12253,8 +12254,9 @@ var schema15 = new MongooseSchema20(
12253
12254
  type: OwnerTypeSchema
12254
12255
  },
12255
12256
  region: { required: true, type: String },
12257
+ schoolCode: { required: true, type: String },
12256
12258
  socialMedia: { required: false, type: [SocialMediaTypeSchema] },
12257
- studentCount: { required: true, type: Number },
12259
+ studentCount: { default: 0, required: true, type: Number },
12258
12260
  termsAgreement: { required: true, type: termsAgreementSchema }
12259
12261
  },
12260
12262
  { timestamps: true }