yellowgrid-api-ts 3.2.11 → 3.2.12
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
|
@@ -741,6 +741,12 @@ export interface AdminOrderRequestDTO {
|
|
|
741
741
|
* @memberof AdminOrderRequestDTO
|
|
742
742
|
*/
|
|
743
743
|
'carriageCharge'?: number;
|
|
744
|
+
/**
|
|
745
|
+
* Send Order Email
|
|
746
|
+
* @type {boolean}
|
|
747
|
+
* @memberof AdminOrderRequestDTO
|
|
748
|
+
*/
|
|
749
|
+
'sendOrderEmail'?: boolean | null;
|
|
744
750
|
}
|
|
745
751
|
/**
|
|
746
752
|
* Admin User
|
package/dist/api.d.ts
CHANGED
|
@@ -731,6 +731,12 @@ export interface AdminOrderRequestDTO {
|
|
|
731
731
|
* @memberof AdminOrderRequestDTO
|
|
732
732
|
*/
|
|
733
733
|
'carriageCharge'?: number;
|
|
734
|
+
/**
|
|
735
|
+
* Send Order Email
|
|
736
|
+
* @type {boolean}
|
|
737
|
+
* @memberof AdminOrderRequestDTO
|
|
738
|
+
*/
|
|
739
|
+
'sendOrderEmail'?: boolean | null;
|
|
734
740
|
}
|
|
735
741
|
/**
|
|
736
742
|
* Admin User
|
|
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
|
|
|
19
19
|
**ignoreCreditLimit** | **boolean** | Ignore Customer Credit Limit | [optional] [default to false]
|
|
20
20
|
**includeNfrPromos** | **boolean** | Include NFR Promos | [optional] [default to false]
|
|
21
21
|
**carriageCharge** | **number** | Carriage Charge | [optional] [default to undefined]
|
|
22
|
+
**sendOrderEmail** | **boolean** | Send Order Email | [optional] [default to undefined]
|
|
22
23
|
|
|
23
24
|
## Example
|
|
24
25
|
|
|
@@ -39,6 +40,7 @@ const instance: AdminOrderRequestDTO = {
|
|
|
39
40
|
ignoreCreditLimit,
|
|
40
41
|
includeNfrPromos,
|
|
41
42
|
carriageCharge,
|
|
43
|
+
sendOrderEmail,
|
|
42
44
|
};
|
|
43
45
|
```
|
|
44
46
|
|