@grapadigital/shared-schemas 1.0.106 → 1.0.107

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.
@@ -121,7 +121,7 @@ export declare const CollabSchema: MongooseSchema<Collab, import("mongoose").Mod
121
121
  export declare class Exclusivity {
122
122
  startDate: Date;
123
123
  endDate: Date;
124
- categoty: string;
124
+ category: string;
125
125
  }
126
126
  export declare const ExclusivitySchema: MongooseSchema<Exclusivity, import("mongoose").Model<Exclusivity, any, any, any, import("mongoose").Document<unknown, any, Exclusivity, any, {}> & Exclusivity & {
127
127
  _id: Types.ObjectId;
@@ -165,7 +165,7 @@ __decorate([
165
165
  __decorate([
166
166
  (0, mongoose_1.Prop)(),
167
167
  __metadata("design:type", String)
168
- ], Exclusivity.prototype, "categoty", void 0);
168
+ ], Exclusivity.prototype, "category", void 0);
169
169
  Exclusivity = __decorate([
170
170
  (0, mongoose_1.Schema)({ _id: false })
171
171
  ], Exclusivity);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-schemas",
3
- "version": "1.0.106",
3
+ "version": "1.0.107",
4
4
  "description": "Shared Mongoose Schemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -118,7 +118,7 @@ export class Exclusivity {
118
118
  endDate: Date;
119
119
 
120
120
  @Prop()
121
- categoty: string;
121
+ category: string;
122
122
  }
123
123
 
124
124
  export const ExclusivitySchema = SchemaFactory.createForClass(Exclusivity);