REST API: Update the client test fixtures after changes to post formats.
This commit updates the `wp-api-generated.js` fixture file after recent changes to the way post formats work in the API. See #39232. git-svn-id: https://develop.svn.wordpress.org/trunk@40121 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
162e1a6f2a
commit
c0ad5e4a50
|
@ -388,7 +388,16 @@ mockedApiResponse.Schema = {
|
||||||
"format": {
|
"format": {
|
||||||
"required": false,
|
"required": false,
|
||||||
"enum": [
|
"enum": [
|
||||||
"standard"
|
"standard",
|
||||||
|
"aside",
|
||||||
|
"chat",
|
||||||
|
"gallery",
|
||||||
|
"link",
|
||||||
|
"image",
|
||||||
|
"quote",
|
||||||
|
"status",
|
||||||
|
"video",
|
||||||
|
"audio"
|
||||||
],
|
],
|
||||||
"description": "The format for the object.",
|
"description": "The format for the object.",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -562,7 +571,16 @@ mockedApiResponse.Schema = {
|
||||||
"format": {
|
"format": {
|
||||||
"required": false,
|
"required": false,
|
||||||
"enum": [
|
"enum": [
|
||||||
"standard"
|
"standard",
|
||||||
|
"aside",
|
||||||
|
"chat",
|
||||||
|
"gallery",
|
||||||
|
"link",
|
||||||
|
"image",
|
||||||
|
"quote",
|
||||||
|
"status",
|
||||||
|
"video",
|
||||||
|
"audio"
|
||||||
],
|
],
|
||||||
"description": "The format for the object.",
|
"description": "The format for the object.",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|
Loading…
Reference in New Issue