yellowgrid-api-ts 3.0.85-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 +12 -0
- package/dist/api.d.ts +12 -0
- package/docs/AdminOrderRequestDTO.md +4 -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}
|
|
@@ -772,6 +778,12 @@ export interface AdminOrderRequestDTO {
|
|
|
772
778
|
* @memberof AdminOrderRequestDTO
|
|
773
779
|
*/
|
|
774
780
|
'includeNfrPromos'?: boolean;
|
|
781
|
+
/**
|
|
782
|
+
* Carriage Charge
|
|
783
|
+
* @type {number}
|
|
784
|
+
* @memberof AdminOrderRequestDTO
|
|
785
|
+
*/
|
|
786
|
+
'carriageCharge'?: number;
|
|
775
787
|
}
|
|
776
788
|
/**
|
|
777
789
|
* Admin User
|
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}
|
|
@@ -762,6 +768,12 @@ export interface AdminOrderRequestDTO {
|
|
|
762
768
|
* @memberof AdminOrderRequestDTO
|
|
763
769
|
*/
|
|
764
770
|
'includeNfrPromos'?: boolean;
|
|
771
|
+
/**
|
|
772
|
+
* Carriage Charge
|
|
773
|
+
* @type {number}
|
|
774
|
+
* @memberof AdminOrderRequestDTO
|
|
775
|
+
*/
|
|
776
|
+
'carriageCharge'?: number;
|
|
765
777
|
}
|
|
766
778
|
/**
|
|
767
779
|
* Admin User
|
|
@@ -14,9 +14,11 @@ 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]
|
|
21
|
+
**carriageCharge** | **number** | Carriage Charge | [optional] [default to undefined]
|
|
20
22
|
|
|
21
23
|
## Example
|
|
22
24
|
|
|
@@ -32,9 +34,11 @@ const instance: AdminOrderRequestDTO = {
|
|
|
32
34
|
partShip,
|
|
33
35
|
quote,
|
|
34
36
|
customerId,
|
|
37
|
+
contact,
|
|
35
38
|
ignoreOnHold,
|
|
36
39
|
ignoreCreditLimit,
|
|
37
40
|
includeNfrPromos,
|
|
41
|
+
carriageCharge,
|
|
38
42
|
};
|
|
39
43
|
```
|
|
40
44
|
|