yellowgrid-api-ts 3.2.87-dev.0 → 3.2.89-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 CHANGED
@@ -7293,6 +7293,12 @@ export interface ShippingRequestDTO {
7293
7293
  * @memberof ShippingRequestDTO
7294
7294
  */
7295
7295
  'printer'?: ShippingRequestDTOPrinterEnum | null;
7296
+ /**
7297
+ *
7298
+ * @type {ShipmentRequestDTO}
7299
+ * @memberof ShippingRequestDTO
7300
+ */
7301
+ 'shipment'?: ShipmentRequestDTO | null;
7296
7302
  }
7297
7303
 
7298
7304
  export const ShippingRequestDTOCourierEnum = {
package/dist/api.d.ts CHANGED
@@ -7239,6 +7239,12 @@ export interface ShippingRequestDTO {
7239
7239
  * @memberof ShippingRequestDTO
7240
7240
  */
7241
7241
  'printer'?: ShippingRequestDTOPrinterEnum | null;
7242
+ /**
7243
+ *
7244
+ * @type {ShipmentRequestDTO}
7245
+ * @memberof ShippingRequestDTO
7246
+ */
7247
+ 'shipment'?: ShipmentRequestDTO | null;
7242
7248
  }
7243
7249
  export declare const ShippingRequestDTOCourierEnum: {
7244
7250
  readonly Dpd: "DPD";
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **service** | **string** | Courier Service | [optional] [default to undefined]
10
10
  **boxes** | **number** | Boxes | [optional] [default to undefined]
11
11
  **printer** | **number** | Printer | [optional] [default to undefined]
12
+ **shipment** | [**ShipmentRequestDTO**](ShipmentRequestDTO.md) | | [optional] [default to undefined]
12
13
 
13
14
  ## Example
14
15
 
@@ -20,6 +21,7 @@ const instance: ShippingRequestDTO = {
20
21
  service,
21
22
  boxes,
22
23
  printer,
24
+ shipment,
23
25
  };
24
26
  ```
25
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.87-dev.0",
3
+ "version": "3.2.89-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {