yellowgrid-api-ts 3.0.86-dev.0 → 3.0.87-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 +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/AdminOrderRequestDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -754,6 +754,12 @@ export interface AdminOrderRequestDTO {
|
|
|
754
754
|
* @memberof AdminOrderRequestDTO
|
|
755
755
|
*/
|
|
756
756
|
'customerId'?: number;
|
|
757
|
+
/**
|
|
758
|
+
* Contact
|
|
759
|
+
* @type {string}
|
|
760
|
+
* @memberof AdminOrderRequestDTO
|
|
761
|
+
*/
|
|
762
|
+
'contact'?: string;
|
|
757
763
|
/**
|
|
758
764
|
* Ignore Customer On Hold
|
|
759
765
|
* @type {boolean}
|
package/dist/api.d.ts
CHANGED
|
@@ -744,6 +744,12 @@ export interface AdminOrderRequestDTO {
|
|
|
744
744
|
* @memberof AdminOrderRequestDTO
|
|
745
745
|
*/
|
|
746
746
|
'customerId'?: number;
|
|
747
|
+
/**
|
|
748
|
+
* Contact
|
|
749
|
+
* @type {string}
|
|
750
|
+
* @memberof AdminOrderRequestDTO
|
|
751
|
+
*/
|
|
752
|
+
'contact'?: string;
|
|
747
753
|
/**
|
|
748
754
|
* Ignore Customer On Hold
|
|
749
755
|
* @type {boolean}
|
|
@@ -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,
|