New ShippingEnabled Field in Get Inventory Endpoints

In /inventory/fulfillmentCenters and /inventory/details fulfillment level, added shippingEnabled field.

When shippingEnabled is true, means this FC is in function, when shippingEnabled is false, mean this FC is temporarily closed.

Sample response of /inventory/fulfillmentCenters

[
  {
		"locationName": "LNK01",
    "shippingEnabled": true,// Change
		"city": "Lincoln",
		"state": "NE",
		"zip": "68521",
		"region": "NA",
		"country": "US",
		"airportCode": "LNK"
  },
  {
		"locationName": "LAS01",
    "shippingEnabled": false,,// Change
		"city": "Las Vegas",
		"state": "NV",
		"zip": "89115",
		"region": "NA",
		"country": "US",
		"airportCode": "LAS"
  }
]

Sample response of /inventory/details

{
  "partNumber": "PRODUCT-SKU",
  "productId": "123456",
  "upc": "123456789012",
  "isBundle": false,
  "totalOnHand": 895,
  "totalOrdersPendingPlanning": 2,
  "totalPending": 5,
  "totalAvailable": 828,
  "totalInNetwork": 995,
  "totalInTransit": 10,
  "totalInboundInTransit": 100,
  "totalPendingFCTransfer": 50,
  "totalFCQUalityControl": 0,
  "totalReturnsInProcess": 0,
  "totalPendingReturns": 0,
  "totalReturnDamaged": 0,
  "totalDamaged": 0,
  "totalInboundConfirmed": 0,
  "totalPendingReceiving": 0,
  "totalLowInventoryWarning": true,
  "totalPendingReceiving": 20,
  "locationInventoryDetails": [
		{
        "locationName": "FC-NAME1",
      	"shippingEnabled": true,  // Change
        "quantityOnHand": 400,
        "quantityPending": 3,
        "quantityInboundInTransit": 0,
        "quantityPendingReceiving": 0,
        "quantityInboundConfirmed": 0,
        "quantityInTransit": 0,
        "quantityPendingFCTransfer": 50,
        "quantityPendingReturns": 0,
        "quantityReturnDamaged": 0,
        "quantityReturnsInProcess": 0,
        "quantityFCProcessing": 0,
        "quantityFCQualityControl": 0,
        "quantityDamaged": 0,
        "quantityAvailable": 347,
        "lowInventoryWarning": False,
		},
    ...
}