@redotech/redo-api-schema 2.2.435 → 2.2.447

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
@@ -1178,6 +1178,32 @@ export interface components {
1178
1178
  */
1179
1179
  name: string;
1180
1180
  };
1181
+ /**
1182
+ * Return Dropoff
1183
+ * @description Dropoff entry for returns using QR-code-based drop-off methods (e.g. BlueYonder/FedEx Easy Returns)
1184
+ */
1185
+ "return-dropoff.schema": {
1186
+ /**
1187
+ * Provider
1188
+ * @description Dropoff provider name (e.g. "FedEx Easy Returns", "Virtual")
1189
+ */
1190
+ provider: string;
1191
+ /**
1192
+ * QR Code
1193
+ * @description Raw QR code data
1194
+ */
1195
+ qrCode?: string;
1196
+ /**
1197
+ * QR Code URL
1198
+ * @description URL to a rendered QR code image
1199
+ */
1200
+ qrCodeUrl?: string;
1201
+ /**
1202
+ * Shipment Group ID
1203
+ * @description ID of the shipment group this dropoff belongs to
1204
+ */
1205
+ shipmentGroupId: string;
1206
+ };
1181
1207
  /**
1182
1208
  * Return
1183
1209
  * @description Return read.
@@ -1211,6 +1237,11 @@ export interface components {
1211
1237
  */
1212
1238
  phoneNumber?: components["schemas"]["phone-number.schema"];
1213
1239
  };
1240
+ /**
1241
+ * Dropoffs
1242
+ * @description Array of QR-code-based dropoff entries for returns using drop-off methods such as BlueYonder/FedEx Easy Returns. Empty for standard label-based returns.
1243
+ */
1244
+ dropoffs?: components["schemas"]["return-dropoff.schema"][];
1214
1245
  /**
1215
1246
  * Exchange
1216
1247
  * @description Exchange order
package/lib/openapi.yaml CHANGED
@@ -2691,6 +2691,30 @@ components:
2691
2691
  type: string
2692
2692
  title: Return Shipment
2693
2693
  type: object
2694
+ return-dropoff.schema:
2695
+ description: Dropoff entry for returns using QR-code-based drop-off methods (e.g. BlueYonder/FedEx Easy Returns)
2696
+ properties:
2697
+ shipmentGroupId:
2698
+ description: ID of the shipment group this dropoff belongs to
2699
+ title: Shipment Group ID
2700
+ type: string
2701
+ provider:
2702
+ description: Dropoff provider name (e.g. "FedEx Easy Returns", "Virtual")
2703
+ title: Provider
2704
+ type: string
2705
+ qrCode:
2706
+ description: Raw QR code data
2707
+ title: QR Code
2708
+ type: string
2709
+ qrCodeUrl:
2710
+ description: URL to a rendered QR code image
2711
+ title: QR Code URL
2712
+ type: string
2713
+ required:
2714
+ - shipmentGroupId
2715
+ - provider
2716
+ title: Return Dropoff
2717
+ type: object
2694
2718
  return-status.schema:
2695
2719
  description: |
2696
2720
  Return status.
@@ -3168,6 +3192,12 @@ components:
3168
3192
  $ref: '#/components/schemas/return-shipment.schema'
3169
3193
  title: Shipments
3170
3194
  type: array
3195
+ dropoffs:
3196
+ description: Array of QR-code-based dropoff entries for returns using drop-off methods such as BlueYonder/FedEx Easy Returns. Empty for standard label-based returns.
3197
+ items:
3198
+ $ref: '#/components/schemas/return-dropoff.schema'
3199
+ title: Dropoffs
3200
+ type: array
3171
3201
  shopifyOrderIds:
3172
3202
  description: Array of Shopify order IDs (deprecated, use externalOrderIds)
3173
3203
  items:
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  ]
32
32
  }
33
33
  },
34
- "version": "2.2.435"
34
+ "version": "2.2.447"
35
35
  }