@grapadigital/shared-schemas 1.0.122 → 1.0.123

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.
@@ -107,7 +107,7 @@ export declare class CommissionInfo {
107
107
  export declare class Sale {
108
108
  _id?: Types.ObjectId;
109
109
  title: string;
110
- phase: 'screening' | 'proposal' | 'negotiation' | 'formalization' | 'closed' | 'lost';
110
+ phase: 'screening' | 'proposal' | 'negotiation' | 'commission' | 'formalization' | 'closed' | 'lost';
111
111
  screening?: Screening;
112
112
  proposal?: Proposal;
113
113
  negotiation?: Negotiation;
@@ -320,6 +320,7 @@ __decorate([
320
320
  'screening',
321
321
  'proposal',
322
322
  'negotiation',
323
+ 'commission',
323
324
  'formalization',
324
325
  'closed',
325
326
  'lost'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-schemas",
3
- "version": "1.0.122",
3
+ "version": "1.0.123",
4
4
  "description": "Shared Mongoose Schemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -159,6 +159,7 @@ export class Sale {
159
159
  'screening',
160
160
  'proposal',
161
161
  'negotiation',
162
+ 'commission',
162
163
  'formalization',
163
164
  'closed',
164
165
  'lost'
@@ -168,6 +169,7 @@ export class Sale {
168
169
  | 'screening'
169
170
  | 'proposal'
170
171
  | 'negotiation'
172
+ | 'commission'
171
173
  | 'formalization'
172
174
  | 'closed'
173
175
  | 'lost';