@redotech/redo-api-schema 2.2.315 → 2.2.320
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 +5 -0
- package/lib/openapi.yaml +4 -0
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -967,6 +967,11 @@ export interface components {
|
|
|
967
967
|
* @description Carrier code
|
|
968
968
|
*/
|
|
969
969
|
carrier?: string;
|
|
970
|
+
/**
|
|
971
|
+
* Postage Label
|
|
972
|
+
* @description Postage label URL
|
|
973
|
+
*/
|
|
974
|
+
postageLabel?: string;
|
|
970
975
|
/**
|
|
971
976
|
* Status
|
|
972
977
|
* @description Status of shipment
|
package/lib/openapi.yaml
CHANGED
|
@@ -1037,6 +1037,10 @@ components:
|
|
|
1037
1037
|
description: Carrier code
|
|
1038
1038
|
title: Carrier
|
|
1039
1039
|
type: string
|
|
1040
|
+
postageLabel:
|
|
1041
|
+
description: Postage label URL
|
|
1042
|
+
title: Postage Label
|
|
1043
|
+
type: string
|
|
1040
1044
|
status:
|
|
1041
1045
|
description: Status of shipment
|
|
1042
1046
|
enum:
|
package/package.json
CHANGED