yellowgrid-api-ts 3.0.86-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 +18 -0
- package/dist/api.d.ts +18 -0
- package/docs/AccountDetailedSummaryDTO.md +4 -0
- package/docs/AdminOrderRequestDTO.md +2 -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
|
|
@@ -754,6 +766,12 @@ export interface AdminOrderRequestDTO {
|
|
|
754
766
|
* @memberof AdminOrderRequestDTO
|
|
755
767
|
*/
|
|
756
768
|
'customerId'?: number;
|
|
769
|
+
/**
|
|
770
|
+
* Contact
|
|
771
|
+
* @type {string}
|
|
772
|
+
* @memberof AdminOrderRequestDTO
|
|
773
|
+
*/
|
|
774
|
+
'contact'?: string;
|
|
757
775
|
/**
|
|
758
776
|
* Ignore Customer On Hold
|
|
759
777
|
* @type {boolean}
|
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
|
|
@@ -744,6 +756,12 @@ export interface AdminOrderRequestDTO {
|
|
|
744
756
|
* @memberof AdminOrderRequestDTO
|
|
745
757
|
*/
|
|
746
758
|
'customerId'?: number;
|
|
759
|
+
/**
|
|
760
|
+
* Contact
|
|
761
|
+
* @type {string}
|
|
762
|
+
* @memberof AdminOrderRequestDTO
|
|
763
|
+
*/
|
|
764
|
+
'contact'?: string;
|
|
747
765
|
/**
|
|
748
766
|
* Ignore Customer On Hold
|
|
749
767
|
* @type {boolean}
|
|
@@ -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
|
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**partShip** | **boolean** | Part Ship Order | [optional] [default to undefined]
|
|
15
15
|
**quote** | **boolean** | Quote | [optional] [default to undefined]
|
|
16
16
|
**customerId** | **number** | Customer ID | [optional] [default to undefined]
|
|
17
|
+
**contact** | **string** | Contact | [optional] [default to undefined]
|
|
17
18
|
**ignoreOnHold** | **boolean** | Ignore Customer On Hold | [optional] [default to false]
|
|
18
19
|
**ignoreCreditLimit** | **boolean** | Ignore Customer Credit Limit | [optional] [default to false]
|
|
19
20
|
**includeNfrPromos** | **boolean** | Include NFR Promos | [optional] [default to false]
|
|
@@ -33,6 +34,7 @@ const instance: AdminOrderRequestDTO = {
|
|
|
33
34
|
partShip,
|
|
34
35
|
quote,
|
|
35
36
|
customerId,
|
|
37
|
+
contact,
|
|
36
38
|
ignoreOnHold,
|
|
37
39
|
ignoreCreditLimit,
|
|
38
40
|
includeNfrPromos,
|