@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;
|
package/package.json
CHANGED
|
@@ -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';
|