yellowgrid-api-ts 3.2.175-dev.0 → 3.2.176-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 +8 -0
- package/dist/api.d.ts +8 -0
- package/docs/ProspectDTO.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4936,6 +4936,14 @@ export interface ProspectDTO {
|
|
|
4936
4936
|
* Order Count
|
|
4937
4937
|
*/
|
|
4938
4938
|
'orderCount'?: number;
|
|
4939
|
+
/**
|
|
4940
|
+
* 3CX Order Count
|
|
4941
|
+
*/
|
|
4942
|
+
'tcxOrderCount'?: number;
|
|
4943
|
+
/**
|
|
4944
|
+
* Branded Video Count
|
|
4945
|
+
*/
|
|
4946
|
+
'videoCount'?: number;
|
|
4939
4947
|
}
|
|
4940
4948
|
|
|
4941
4949
|
export const ProspectDTOStatusEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -4882,6 +4882,14 @@ export interface ProspectDTO {
|
|
|
4882
4882
|
* Order Count
|
|
4883
4883
|
*/
|
|
4884
4884
|
'orderCount'?: number;
|
|
4885
|
+
/**
|
|
4886
|
+
* 3CX Order Count
|
|
4887
|
+
*/
|
|
4888
|
+
'tcxOrderCount'?: number;
|
|
4889
|
+
/**
|
|
4890
|
+
* Branded Video Count
|
|
4891
|
+
*/
|
|
4892
|
+
'videoCount'?: number;
|
|
4885
4893
|
}
|
|
4886
4894
|
export declare const ProspectDTOStatusEnum: {
|
|
4887
4895
|
readonly NoCallBackSet: "No Call Back Set";
|
package/docs/ProspectDTO.md
CHANGED
|
@@ -14,6 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**removed** | **boolean** | Removed From Prospects | [optional] [default to undefined]
|
|
15
15
|
**status** | **string** | Status | [optional] [default to undefined]
|
|
16
16
|
**orderCount** | **number** | Order Count | [optional] [default to undefined]
|
|
17
|
+
**tcxOrderCount** | **number** | 3CX Order Count | [optional] [default to undefined]
|
|
18
|
+
**videoCount** | **number** | Branded Video Count | [optional] [default to undefined]
|
|
17
19
|
|
|
18
20
|
## Example
|
|
19
21
|
|
|
@@ -29,6 +31,8 @@ const instance: ProspectDTO = {
|
|
|
29
31
|
removed,
|
|
30
32
|
status,
|
|
31
33
|
orderCount,
|
|
34
|
+
tcxOrderCount,
|
|
35
|
+
videoCount,
|
|
32
36
|
};
|
|
33
37
|
```
|
|
34
38
|
|