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 CHANGED
@@ -4668,6 +4668,10 @@ export interface ProspectDTO {
4668
4668
  * Status
4669
4669
  */
4670
4670
  'status'?: ProspectDTOStatusEnum;
4671
+ /**
4672
+ * Order Count
4673
+ */
4674
+ 'orderCount'?: number;
4671
4675
  }
4672
4676
 
4673
4677
  export const ProspectDTOStatusEnum = {
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";
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.133-dev.0",
3
+ "version": "3.2.134-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {