yellowgrid-api-ts 3.0.87-dev.0 → 3.0.88-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 +12 -0
- package/dist/api.d.ts +12 -0
- package/docs/AccountDetailedSummaryDTO.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -357,6 +357,18 @@ export interface AccountDetailedSummaryDTO {
|
|
|
357
357
|
* @memberof AccountDetailedSummaryDTO
|
|
358
358
|
*/
|
|
359
359
|
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
360
|
+
/**
|
|
361
|
+
* On Hold
|
|
362
|
+
* @type {boolean}
|
|
363
|
+
* @memberof AccountDetailedSummaryDTO
|
|
364
|
+
*/
|
|
365
|
+
'onHold'?: boolean;
|
|
366
|
+
/**
|
|
367
|
+
* Balance (£)
|
|
368
|
+
* @type {number}
|
|
369
|
+
* @memberof AccountDetailedSummaryDTO
|
|
370
|
+
*/
|
|
371
|
+
'balance'?: number | null;
|
|
360
372
|
}
|
|
361
373
|
/**
|
|
362
374
|
* New Account Request
|
package/dist/api.d.ts
CHANGED
|
@@ -347,6 +347,18 @@ export interface AccountDetailedSummaryDTO {
|
|
|
347
347
|
* @memberof AccountDetailedSummaryDTO
|
|
348
348
|
*/
|
|
349
349
|
'provisioningUrls'?: Array<ProvisioningModel>;
|
|
350
|
+
/**
|
|
351
|
+
* On Hold
|
|
352
|
+
* @type {boolean}
|
|
353
|
+
* @memberof AccountDetailedSummaryDTO
|
|
354
|
+
*/
|
|
355
|
+
'onHold'?: boolean;
|
|
356
|
+
/**
|
|
357
|
+
* Balance (£)
|
|
358
|
+
* @type {number}
|
|
359
|
+
* @memberof AccountDetailedSummaryDTO
|
|
360
|
+
*/
|
|
361
|
+
'balance'?: number | null;
|
|
350
362
|
}
|
|
351
363
|
/**
|
|
352
364
|
* New Account Request
|
|
@@ -14,6 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**billingAddress** | [**AddressModel**](AddressModel.md) | | [optional] [default to undefined]
|
|
15
15
|
**addresses** | [**Array<AddressModel>**](AddressModel.md) | Addresses | [optional] [default to undefined]
|
|
16
16
|
**provisioningUrls** | [**Array<ProvisioningModel>**](ProvisioningModel.md) | Provisioning URLs | [optional] [default to undefined]
|
|
17
|
+
**onHold** | **boolean** | On Hold | [optional] [default to undefined]
|
|
18
|
+
**balance** | **number** | Balance (£) | [optional] [default to undefined]
|
|
17
19
|
|
|
18
20
|
## Example
|
|
19
21
|
|
|
@@ -29,6 +31,8 @@ const instance: AccountDetailedSummaryDTO = {
|
|
|
29
31
|
billingAddress,
|
|
30
32
|
addresses,
|
|
31
33
|
provisioningUrls,
|
|
34
|
+
onHold,
|
|
35
|
+
balance,
|
|
32
36
|
};
|
|
33
37
|
```
|
|
34
38
|
|