@redotech/redo-api-schema 2.2.110 → 2.2.112

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/lib/openapi.d.ts CHANGED
@@ -809,6 +809,7 @@ export interface components {
809
809
  * @description Shipment identifier
810
810
  */
811
811
  id: string;
812
+ price: components["schemas"]["money.schema"];
812
813
  tracker: components["schemas"]["shipment-tracker.schema"];
813
814
  };
814
815
  /**
package/lib/openapi.yaml CHANGED
@@ -852,12 +852,15 @@ components:
852
852
  description: Shipment identifier
853
853
  title: Shipment ID
854
854
  type: string
855
+ price:
856
+ $ref: '#/components/schemas/money.schema'
855
857
  tracker:
856
858
  $ref: '#/components/schemas/shipment-tracker.schema'
857
859
  required:
858
860
  - id
859
861
  - documents
860
862
  - tracker
863
+ - price
861
864
  title: Shipment
862
865
  type: object
863
866
  shipping-contact.schema:
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  ]
32
32
  }
33
33
  },
34
- "version": "2.2.110"
34
+ "version": "2.2.112"
35
35
  }