addedInput schema / properties / body
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "lineItems": {
+ "description": "Line items to fulfill",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "lineItemId": {
+ "type": "string"
+ },
+ "quantity": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "lineItemId"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "shippedDate": {
+ "description": "Date the items were shipped (ISO 8601 format)",
+ "type": "string"
+ },
+ "shippingCarrierCode": {
+ "description": "Shipping carrier code",
+ "type": "string"
+ },
+ "trackingNumber": {
+ "description": "Tracking number for the shipment",
+ "type": "string"
+ }
+ },
+ "required": [
+ "lineItems"
+ ],
+ "type": "object"
+}
removedInput schema / properties / fulfillment
Removed value: -{
- "additionalProperties": true,
- "description": "Shipping fulfillment details including tracking number",
- "properties": {
- "lineItems": {
- "items": {
- "additionalProperties": true,
- "properties": {
- "lineItemId": {
- "type": "string"
- },
- "quantity": {
- "type": "number"
- }
- },
- "required": [
- "lineItemId"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "shippedDate": {
- "type": "string"
- },
- "shippingCarrierCode": {
- "type": "string"
- },
- "trackingNumber": {
- "type": "string"
- }
- },
- "required": [
- "lineItems"
- ],
- "type": "object"
-}
changedInput schema / properties / orderId / description
Previous value: -"The order ID"New value: +"The unique identifier of the order"
changedInput schema / required
Previous value: -[
- "orderId",
- "fulfillment"
-]New value: +[
+ "orderId",
+ "body"
+]