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 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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.11",
3
+ "version": "3.2.12",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {