@redotech/redo-api-schema 2.2.116 → 2.2.122
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 +1 -7
- package/lib/openapi.yaml +1 -9
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -772,12 +772,6 @@ export interface components {
|
|
|
772
772
|
*/
|
|
773
773
|
"shipment-document.schema": {
|
|
774
774
|
type: components["schemas"]["shipment-document-type.schema"];
|
|
775
|
-
/**
|
|
776
|
-
* URL
|
|
777
|
-
* Format: uri
|
|
778
|
-
* @description URL to download the document
|
|
779
|
-
*/
|
|
780
|
-
url: string;
|
|
781
775
|
};
|
|
782
776
|
/**
|
|
783
777
|
* Shipment Rate
|
|
@@ -823,7 +817,7 @@ export interface components {
|
|
|
823
817
|
"shipment.schema": {
|
|
824
818
|
/**
|
|
825
819
|
* Documents
|
|
826
|
-
* @description
|
|
820
|
+
* @description Available shipping documents. You can access these documents using the GET Shipment document endpoint.
|
|
827
821
|
*/
|
|
828
822
|
documents: components["schemas"]["shipment-document.schema"][];
|
|
829
823
|
/**
|
package/lib/openapi.yaml
CHANGED
|
@@ -789,16 +789,8 @@ components:
|
|
|
789
789
|
properties:
|
|
790
790
|
type:
|
|
791
791
|
$ref: '#/components/schemas/shipment-document-type.schema'
|
|
792
|
-
url:
|
|
793
|
-
description: URL to download the document
|
|
794
|
-
examples:
|
|
795
|
-
- https://example.com/labels/123.pdf
|
|
796
|
-
format: uri
|
|
797
|
-
title: URL
|
|
798
|
-
type: string
|
|
799
792
|
required:
|
|
800
793
|
- type
|
|
801
|
-
- url
|
|
802
794
|
title: Shipment Document
|
|
803
795
|
type: object
|
|
804
796
|
shipment-rate.schema:
|
|
@@ -858,7 +850,7 @@ components:
|
|
|
858
850
|
description: Shipment information.
|
|
859
851
|
properties:
|
|
860
852
|
documents:
|
|
861
|
-
description:
|
|
853
|
+
description: Available shipping documents. You can access these documents using the GET Shipment document endpoint.
|
|
862
854
|
items:
|
|
863
855
|
$ref: '#/components/schemas/shipment-document.schema'
|
|
864
856
|
title: Documents
|
package/package.json
CHANGED