yellowgrid-api-ts 3.2.133-dev.0 → 3.2.134-dev.0
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/api.ts +4 -0
- package/dist/api.d.ts +4 -0
- package/docs/ProspectDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -4626,6 +4626,10 @@ export interface ProspectDTO {
|
|
|
4626
4626
|
* Status
|
|
4627
4627
|
*/
|
|
4628
4628
|
'status'?: ProspectDTOStatusEnum;
|
|
4629
|
+
/**
|
|
4630
|
+
* Order Count
|
|
4631
|
+
*/
|
|
4632
|
+
'orderCount'?: number;
|
|
4629
4633
|
}
|
|
4630
4634
|
export declare const ProspectDTOStatusEnum: {
|
|
4631
4635
|
readonly NoCallBackSet: "No Call Back Set";
|
package/docs/ProspectDTO.md
CHANGED
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**xeroId** | **string** | Xero ID | [optional] [default to undefined]
|
|
14
14
|
**removed** | **boolean** | Removed From Prospects | [optional] [default to undefined]
|
|
15
15
|
**status** | **string** | Status | [optional] [default to undefined]
|
|
16
|
+
**orderCount** | **number** | Order Count | [optional] [default to undefined]
|
|
16
17
|
|
|
17
18
|
## Example
|
|
18
19
|
|
|
@@ -27,6 +28,7 @@ const instance: ProspectDTO = {
|
|
|
27
28
|
xeroId,
|
|
28
29
|
removed,
|
|
29
30
|
status,
|
|
31
|
+
orderCount,
|
|
30
32
|
};
|
|
31
33
|
```
|
|
32
34
|
|