Skip to content

Commit

Permalink
Update to latest openapi definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ShipEngineBuild committed Aug 30, 2024
1 parent 06cfbdc commit a510e56
Show file tree
Hide file tree
Showing 4 changed files with 119 additions and 10 deletions.
14 changes: 7 additions & 7 deletions docs/index.html

Large diffs are not rendered by default.

89 changes: 88 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.0",
"info": {
"title": "ShipEngine API",
"version": "1.1.202408251008",
"version": "1.1.202408290608",
"termsOfService": "https://www.shipengine.com/terms-of-service/",
"x-logo": {
"url": "https://shipengine.github.io/img/shipengine-logo-square.png",
Expand Down Expand Up @@ -80987,6 +80987,35 @@
}
],
"description": "Shipment total weight"
},
"packages": {
"type": "array",
"description": "An array of package dimensions",
"items": {
"type": "object",
"properties": {
"unit": {
"type": "string",
"example": "centimeter",
"description": "Unit of the dimensions of the packages"
},
"length": {
"type": "double",
"example": 60,
"description": "Package length"
},
"width": {
"type": "double",
"example": 60,
"description": "Package width"
},
"height": {
"type": "double",
"example": 60,
"description": "Package height"
}
}
}
}
}
}
Expand Down Expand Up @@ -201480,6 +201509,35 @@
}
],
"description": "Shipment total weight"
},
"packages": {
"type": "array",
"description": "An array of package dimensions",
"items": {
"type": "object",
"properties": {
"unit": {
"type": "string",
"example": "centimeter",
"description": "Unit of the dimensions of the packages"
},
"length": {
"type": "double",
"example": 60,
"description": "Package length"
},
"width": {
"type": "double",
"example": 60,
"description": "Package width"
},
"height": {
"type": "double",
"example": 60,
"description": "Package height"
}
}
}
}
}
}
Expand Down Expand Up @@ -201640,6 +201698,35 @@
}
],
"description": "Shipment total weight"
},
"packages": {
"type": "array",
"description": "An array of package dimensions",
"items": {
"type": "object",
"properties": {
"unit": {
"type": "string",
"example": "centimeter",
"description": "Unit of the dimensions of the packages"
},
"length": {
"type": "double",
"example": 60,
"description": "Package length"
},
"width": {
"type": "double",
"example": 60,
"description": "Package width"
},
"height": {
"type": "double",
"example": 60,
"description": "Package height"
}
}
}
}
}
}
Expand Down
24 changes: 23 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
info:
title: ShipEngine API
version: 1.1.202408251008
version: 1.1.202408290608
termsOfService: 'https://www.shipengine.com/terms-of-service/'
x-logo:
url: 'https://shipengine.github.io/img/shipengine-logo-square.png'
Expand Down Expand Up @@ -12061,6 +12061,28 @@ components:
allOf:
- $ref: '#/components/schemas/weight'
description: Shipment total weight
packages:
type: array
description: An array of package dimensions
items:
type: object
properties:
unit:
type: string
example: centimeter
description: Unit of the dimensions of the packages
length:
type: double
example: 60
description: Package length
width:
type: double
example: 60
description: Package width
height:
type: double
example: 60
description: Package height
list_service_points_response_body:
title: list_service_points_response_body
type: object
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shipengine-openapi",
"version": "1.16.6",
"version": "1.16.7",
"description": "The official OpenAPI 3.0 definitions for ShipEngine™",
"main": "openapi.json",
"repository": {
Expand Down

0 comments on commit a510e56

Please sign in to comment.