yellowgrid-api-ts 3.2.173 → 3.2.174
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
|
@@ -4953,6 +4953,14 @@ export interface ProspectDTO {
|
|
|
4953
4953
|
* Order Count
|
|
4954
4954
|
*/
|
|
4955
4955
|
'orderCount'?: number;
|
|
4956
|
+
/**
|
|
4957
|
+
* 3CX Order Count
|
|
4958
|
+
*/
|
|
4959
|
+
'tcxOrderCount'?: number;
|
|
4960
|
+
/**
|
|
4961
|
+
* Branded Video Count
|
|
4962
|
+
*/
|
|
4963
|
+
'videoCount'?: number;
|
|
4956
4964
|
}
|
|
4957
4965
|
|
|
4958
4966
|
export const ProspectDTOStatusEnum = {
|
package/dist/api.d.ts
CHANGED
|
@@ -4899,6 +4899,14 @@ export interface ProspectDTO {
|
|
|
4899
4899
|
* Order Count
|
|
4900
4900
|
*/
|
|
4901
4901
|
'orderCount'?: number;
|
|
4902
|
+
/**
|
|
4903
|
+
* 3CX Order Count
|
|
4904
|
+
*/
|
|
4905
|
+
'tcxOrderCount'?: number;
|
|
4906
|
+
/**
|
|
4907
|
+
* Branded Video Count
|
|
4908
|
+
*/
|
|
4909
|
+
'videoCount'?: number;
|
|
4902
4910
|
}
|
|
4903
4911
|
export declare const ProspectDTOStatusEnum: {
|
|
4904
4912
|
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
|
|