@grapadigital/shared-schemas 1.0.15 → 1.0.16

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.
@@ -92,6 +92,7 @@ export declare class Influencer {
92
92
  maritalStatus: string;
93
93
  nationality: string;
94
94
  profession: string;
95
+ financialManagementSheet: string;
95
96
  isExclusive: boolean;
96
97
  address: Address;
97
98
  payment: PaymentInfo;
@@ -163,6 +163,10 @@ __decorate([
163
163
  (0, mongoose_1.Prop)(),
164
164
  __metadata("design:type", String)
165
165
  ], Influencer.prototype, "profession", void 0);
166
+ __decorate([
167
+ (0, mongoose_1.Prop)(),
168
+ __metadata("design:type", String)
169
+ ], Influencer.prototype, "financialManagementSheet", void 0);
166
170
  __decorate([
167
171
  (0, mongoose_1.Prop)({ type: Boolean, default: false }),
168
172
  __metadata("design:type", Boolean)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-schemas",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Shared Mongoose Schemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -117,6 +117,9 @@ export class Influencer {
117
117
  @Prop()
118
118
  profession: string;
119
119
 
120
+ @Prop()
121
+ financialManagementSheet: string;
122
+
120
123
  @Prop({ type: Boolean, default: false })
121
124
  isExclusive: boolean;
122
125