yellowgrid-api-ts 3.2.266 → 3.2.268

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
@@ -260,6 +260,10 @@ export interface AccountDetailedSummaryDTO {
260
260
  * Balance (£)
261
261
  */
262
262
  'balance'?: number | null;
263
+ /**
264
+ * First Order
265
+ */
266
+ 'firstOrder'?: boolean;
263
267
  }
264
268
  /**
265
269
  * Account Finance DTO
package/dist/api.d.ts CHANGED
@@ -250,6 +250,10 @@ export interface AccountDetailedSummaryDTO {
250
250
  * Balance (£)
251
251
  */
252
252
  'balance'?: number | null;
253
+ /**
254
+ * First Order
255
+ */
256
+ 'firstOrder'?: boolean;
253
257
  }
254
258
  /**
255
259
  * Account Finance DTO
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
16
16
  **provisioningUrls** | [**Array<ProvisioningModel>**](ProvisioningModel.md) | Provisioning URLs | [optional] [default to undefined]
17
17
  **onHold** | **boolean** | On Hold | [optional] [default to undefined]
18
18
  **balance** | **number** | Balance (£) | [optional] [default to undefined]
19
+ **firstOrder** | **boolean** | First Order | [optional] [default to undefined]
19
20
 
20
21
  ## Example
21
22
 
@@ -33,6 +34,7 @@ const instance: AccountDetailedSummaryDTO = {
33
34
  provisioningUrls,
34
35
  onHold,
35
36
  balance,
37
+ firstOrder,
36
38
  };
37
39
  ```
38
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.266",
3
+ "version": "3.2.268",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {