diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 0bd7ba420..f0299762d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -42,6 +42,9 @@ steps: echo "--- :rust: Ensuring Code Conforms to rustfmt" make fmt-check-rust + + echo "--- :json: Ensuring JSON Test Fixtures are Pretty-Printed" + make fmt-check-json - label: ":rust: Build Docs" command: | echo "--- :rust: Building Documentation" diff --git a/Makefile b/Makefile index 909bce182..ac5674e96 100644 --- a/Makefile +++ b/Makefile @@ -246,7 +246,7 @@ stop-server: @# Help: Stop the running server. docker-compose down -lint: lint-rust lint-swift +lint: lint-rust lint-swift fmt-check-json @# Help: Run the linter for all languages. lint-rust: @@ -264,6 +264,14 @@ lint-swift: lintfix-swift: fmt-swift +fmt-json: + @# Help: Format all JSON test fixtures with 2-space indent. + @./scripts/check-json-formatting.sh --fix + +fmt-check-json: + @# Help: Check that all JSON test fixtures are pretty-printed. + @./scripts/check-json-formatting.sh + fmt-rust: $(rust_docker_run) /bin/bash -c "rustup component add rustfmt && cargo fmt" diff --git a/scripts/check-json-formatting.sh b/scripts/check-json-formatting.sh new file mode 100755 index 000000000..61af57161 --- /dev/null +++ b/scripts/check-json-formatting.sh @@ -0,0 +1,46 @@ +#!/bin/bash +# +# Check that JSON test fixtures are pretty-printed (2-space indent via jq). +# Usage: +# ./scripts/check-json-formatting.sh # check mode (exit 1 on failure) +# ./scripts/check-json-formatting.sh --fix # rewrite files in place + +set -euo pipefail + +fix=false +if [[ "${1:-}" == "--fix" ]]; then + fix=true +fi + +failed=false + +while IFS= read -r -d '' file; do + # Strip BOM if present — jq handles it, but we want consistent output + contents=$(sed '1s/^\xef\xbb\xbf//' "$file") + + formatted=$(echo "$contents" | jq .) || { + echo "Invalid JSON: $file" + failed=true + continue + } + + actual=$(cat "$file") + if [[ "$actual" != "$formatted" ]]; then + if $fix; then + echo "$formatted" > "$file" + echo "Fixed: $file" + else + echo "Not properly formatted: $file" + failed=true + fi + fi +done < <(find wp_api/tests test-data -name '*.json' -print0 | sort -z) + +if $failed; then + echo + echo "Some JSON files are not properly formatted." + echo "Run 'make fmt-json' to fix them." + exit 1 +elif ! $fix; then + echo "All JSON test fixtures are properly formatted." +fi diff --git a/test-data/api-details/test-case-01.json b/test-data/api-details/test-case-01.json index 9236ded6b..d29c74462 100644 --- a/test-data/api-details/test-case-01.json +++ b/test-data/api-details/test-case-01.json @@ -1,4 +1,4 @@ -{ +{ "name": "Site with BOM", "description": "Site with BOM", "url": "https://example.com", diff --git a/test-data/api-details/test-case-03.json b/test-data/api-details/test-case-03.json index cee3e5691..5d8f2d4d4 100644 --- a/test-data/api-details/test-case-03.json +++ b/test-data/api-details/test-case-03.json @@ -1,43 +1,43 @@ { "name": "jetpack.wpmt.co", "description": "", - "url": "https:\/\/jetpack.wpmt.co", - "home": "https:\/\/jetpack.wpmt.co", + "url": "https://jetpack.wpmt.co", + "home": "https://jetpack.wpmt.co", "gmt_offset": "0", "timezone_string": "", "page_for_posts": 0, "page_on_front": 0, "show_on_front": "posts", "namespaces": [ - "oembed\/1.0", - "akismet\/v1", - "application-password-extras\/v1", - "__experimental\/wp-block-editor\/v1", - "wp-block-editor\/v1", - "jetpack\/v4", + "oembed/1.0", + "akismet/v1", + "application-password-extras/v1", + "__experimental/wp-block-editor/v1", + "wp-block-editor/v1", + "jetpack/v4", "jetpack-boost-ds", - "jetpack-boost\/v1", - "my-jetpack\/v1", - "jetpack\/v4\/explat", - "wpcom\/v2", - "videopress\/v1", - "jetpack\/v4\/stats-app", - "jetpack\/v4\/import", - "wpcom\/v3", - "jetpack\/v4\/blaze-app", - "jetpack\/v4\/blaze", - "wp\/v2", - "wp-site-health\/v1" + "jetpack-boost/v1", + "my-jetpack/v1", + "jetpack/v4/explat", + "wpcom/v2", + "videopress/v1", + "jetpack/v4/stats-app", + "jetpack/v4/import", + "wpcom/v3", + "jetpack/v4/blaze-app", + "jetpack/v4/blaze", + "wp/v2", + "wp-site-health/v1" ], "authentication": { "application-passwords": { "endpoints": { - "authorization": "https:\/\/jetpack.wpmt.co\/wp-admin\/authorize-application.php" + "authorization": "https://jetpack.wpmt.co/wp-admin/authorize-application.php" } } }, "routes": { - "\/": { + "/": { "namespace": "", "methods": [ "GET" @@ -58,12 +58,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/" + "href": "https://jetpack.wpmt.co/wp-json/" } ] } }, - "\/batch\/v1": { + "/batch/v1": { "namespace": "", "methods": [ "POST" @@ -131,13 +131,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/batch\/v1" + "href": "https://jetpack.wpmt.co/wp-json/batch/v1" } ] } }, - "\/oembed\/1.0": { - "namespace": "oembed\/1.0", + "/oembed/1.0": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -148,7 +148,7 @@ ], "args": { "namespace": { - "default": "oembed\/1.0", + "default": "oembed/1.0", "required": false }, "context": { @@ -161,13 +161,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/oembed\/1.0" + "href": "https://jetpack.wpmt.co/wp-json/oembed/1.0" } ] } }, - "\/oembed\/1.0\/embed": { - "namespace": "oembed\/1.0", + "/oembed/1.0/embed": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -197,13 +197,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/oembed\/1.0\/embed" + "href": "https://jetpack.wpmt.co/wp-json/oembed/1.0/embed" } ] } }, - "\/oembed\/1.0\/proxy": { - "namespace": "oembed\/1.0", + "/oembed/1.0/proxy": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -252,13 +252,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/oembed\/1.0\/proxy" + "href": "https://jetpack.wpmt.co/wp-json/oembed/1.0/proxy" } ] } }, - "\/akismet\/v1": { - "namespace": "akismet\/v1", + "/akismet/v1": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -269,7 +269,7 @@ ], "args": { "namespace": { - "default": "akismet\/v1", + "default": "akismet/v1", "required": false }, "context": { @@ -282,13 +282,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1" } ] } }, - "\/akismet\/v1\/key": { - "namespace": "akismet\/v1", + "/akismet/v1/key": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -312,7 +312,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": true } } @@ -327,13 +327,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1\/key" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1/key" } ] } }, - "\/akismet\/v1\/settings": { - "namespace": "akismet\/v1", + "/akismet/v1/settings": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -370,13 +370,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1\/settings" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1/settings" } ] } }, - "\/akismet\/v1\/stats": { - "namespace": "akismet\/v1", + "/akismet/v1/stats": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -398,13 +398,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1\/stats" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1/stats" } ] } }, - "\/akismet\/v1\/stats\/(?P[\\w+])": { - "namespace": "akismet\/v1", + "/akismet/v1/stats/(?P[\\w+])": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -423,8 +423,8 @@ } ] }, - "\/akismet\/v1\/alert": { - "namespace": "akismet\/v1", + "/akismet/v1/alert": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -440,7 +440,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } @@ -454,7 +454,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } @@ -466,7 +466,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } @@ -475,13 +475,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1\/alert" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1/alert" } ] } }, - "\/akismet\/v1\/webhook": { - "namespace": "akismet\/v1", + "/akismet/v1/webhook": { + "namespace": "akismet/v1", "methods": [ "POST" ], @@ -496,13 +496,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/akismet\/v1\/webhook" + "href": "https://jetpack.wpmt.co/wp-json/akismet/v1/webhook" } ] } }, - "\/application-password-extras\/v1": { - "namespace": "application-password-extras\/v1", + "/application-password-extras/v1": { + "namespace": "application-password-extras/v1", "methods": [ "GET" ], @@ -513,7 +513,7 @@ ], "args": { "namespace": { - "default": "application-password-extras\/v1", + "default": "application-password-extras/v1", "required": false }, "context": { @@ -526,13 +526,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/application-password-extras\/v1" + "href": "https://jetpack.wpmt.co/wp-json/application-password-extras/v1" } ] } }, - "\/application-password-extras\/v1\/capabilities": { - "namespace": "application-password-extras\/v1", + "/application-password-extras/v1/capabilities": { + "namespace": "application-password-extras/v1", "methods": [ "GET" ], @@ -547,13 +547,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/application-password-extras\/v1\/capabilities" + "href": "https://jetpack.wpmt.co/wp-json/application-password-extras/v1/capabilities" } ] } }, - "\/application-password-extras\/v1\/admin-ajax": { - "namespace": "application-password-extras\/v1", + "/application-password-extras/v1/admin-ajax": { + "namespace": "application-password-extras/v1", "methods": [ "GET" ], @@ -568,13 +568,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/application-password-extras\/v1\/admin-ajax" + "href": "https://jetpack.wpmt.co/wp-json/application-password-extras/v1/admin-ajax" } ] } }, - "\/application-password-extras\/v1\/post-previews": { - "namespace": "application-password-extras\/v1", + "/application-password-extras/v1/post-previews": { + "namespace": "application-password-extras/v1", "methods": [ "GET" ], @@ -589,13 +589,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/application-password-extras\/v1\/post-previews" + "href": "https://jetpack.wpmt.co/wp-json/application-password-extras/v1/post-previews" } ] } }, - "\/__experimental\/wp-block-editor\/v1": { - "namespace": "__experimental\/wp-block-editor\/v1", + "/__experimental/wp-block-editor/v1": { + "namespace": "__experimental/wp-block-editor/v1", "methods": [ "GET" ], @@ -606,7 +606,7 @@ ], "args": { "namespace": { - "default": "__experimental\/wp-block-editor\/v1", + "default": "__experimental/wp-block-editor/v1", "required": false }, "context": { @@ -619,13 +619,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/__experimental\/wp-block-editor\/v1" + "href": "https://jetpack.wpmt.co/wp-json/__experimental/wp-block-editor/v1" } ] } }, - "\/__experimental\/wp-block-editor\/v1\/editor-assets": { - "namespace": "__experimental\/wp-block-editor\/v1", + "/__experimental/wp-block-editor/v1/editor-assets": { + "namespace": "__experimental/wp-block-editor/v1", "methods": [ "GET" ], @@ -640,13 +640,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/__experimental\/wp-block-editor\/v1\/editor-assets" + "href": "https://jetpack.wpmt.co/wp-json/__experimental/wp-block-editor/v1/editor-assets" } ] } }, - "\/wp-block-editor\/v1": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -657,7 +657,7 @@ ], "args": { "namespace": { - "default": "wp-block-editor\/v1", + "default": "wp-block-editor/v1", "required": false }, "context": { @@ -670,13 +670,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-block-editor\/v1" + "href": "https://jetpack.wpmt.co/wp-json/wp-block-editor/v1" } ] } }, - "\/wp-block-editor\/v1\/export": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/export": { + "namespace": "wp-block-editor/v1", "methods": [ "GET", "GET" @@ -698,13 +698,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-block-editor\/v1\/export" + "href": "https://jetpack.wpmt.co/wp-json/wp-block-editor/v1/export" } ] } }, - "\/wp-block-editor\/v1\/settings": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/settings": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -719,13 +719,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-block-editor\/v1\/settings" + "href": "https://jetpack.wpmt.co/wp-json/wp-block-editor/v1/settings" } ] } }, - "\/jetpack\/v4": { - "namespace": "jetpack\/v4", + "/jetpack/v4": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -736,7 +736,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4", + "default": "jetpack/v4", "required": false }, "context": { @@ -749,13 +749,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4" } ] } }, - "\/jetpack\/v4\/backup-helper-script": { - "namespace": "jetpack\/v4", + "/jetpack/v4/backup-helper-script": { + "namespace": "jetpack/v4", "methods": [ "POST", "DELETE" @@ -789,13 +789,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/backup-helper-script" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/backup-helper-script" } ] } }, - "\/jetpack\/v4\/database-object\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/database-object/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -820,13 +820,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/database-object\/backup" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/database-object/backup" } ] } }, - "\/jetpack\/v4\/options\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/options/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -846,13 +846,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/options\/backup" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/options/backup" } ] } }, - "\/jetpack\/v4\/comments\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/comments/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -865,8 +865,8 @@ } ] }, - "\/jetpack\/v4\/posts\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/posts/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -879,8 +879,8 @@ } ] }, - "\/jetpack\/v4\/terms\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/terms/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -893,8 +893,8 @@ } ] }, - "\/jetpack\/v4\/users\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/users/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -907,8 +907,8 @@ } ] }, - "\/jetpack\/v4\/site\/backup\/undo-event": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/backup/undo-event": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -923,13 +923,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/backup\/undo-event" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/backup/undo-event" } ] } }, - "\/jetpack\/v4\/orders\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/orders/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -942,8 +942,8 @@ } ] }, - "\/jetpack\/v4\/site\/backup\/preflight": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/backup/preflight": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -958,12 +958,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/backup\/preflight" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/backup/preflight" } ] } }, - "\/jetpack-boost-ds": { + "/jetpack-boost-ds": { "namespace": "jetpack-boost-ds", "methods": [ "GET" @@ -988,12 +988,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds" } ] } }, - "\/jetpack-boost-ds\/dismissed-alerts": { + "/jetpack-boost-ds/dismissed-alerts": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1011,12 +1011,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/dismissed-alerts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/dismissed-alerts" } ] } }, - "\/jetpack-boost-ds\/dismissed-alerts\/set": { + "/jetpack-boost-ds/dismissed-alerts/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -1036,12 +1036,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/dismissed-alerts\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/dismissed-alerts/set" } ] } }, - "\/jetpack-boost-ds\/dismissed-alerts\/merge": { + "/jetpack-boost-ds/dismissed-alerts/merge": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -1061,12 +1061,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/dismissed-alerts\/merge" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/dismissed-alerts/merge" } ] } }, - "\/jetpack-boost-ds\/connection": { + "/jetpack-boost-ds/connection": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1084,12 +1084,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/connection" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/connection" } ] } }, - "\/jetpack-boost-ds\/pricing": { + "/jetpack-boost-ds/pricing": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1107,12 +1107,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/pricing" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/pricing" } ] } }, - "\/jetpack-boost-ds\/product": { + "/jetpack-boost-ds/product": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1130,12 +1130,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/product" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/product" } ] } }, - "\/jetpack-boost-ds\/premium-features": { + "/jetpack-boost-ds/premium-features": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1153,12 +1153,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/premium-features" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/premium-features" } ] } }, - "\/jetpack-boost-ds\/getting-started": { + "/jetpack-boost-ds/getting-started": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -1176,12 +1176,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/getting-started" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/getting-started" } ] } }, - "\/jetpack-boost-ds\/getting-started\/set": { + "/jetpack-boost-ds/getting-started/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -1201,13 +1201,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/getting-started\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/getting-started/set" } ] } }, - "\/jetpack\/v4\/jetpack-ai-jwt": { - "namespace": "jetpack\/v4", + "/jetpack/v4/jetpack-ai-jwt": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -1226,13 +1226,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/jetpack-ai-jwt" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/jetpack-ai-jwt" } ] } }, - "\/jetpack\/v4\/plans": { - "namespace": "jetpack\/v4", + "/jetpack/v4/plans": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1247,13 +1247,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/plans" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/plans" } ] } }, - "\/jetpack\/v4\/products": { - "namespace": "jetpack\/v4", + "/jetpack/v4/products": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1268,13 +1268,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/products" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/products" } ] } }, - "\/jetpack\/v4\/marketing\/survey": { - "namespace": "jetpack\/v4", + "/jetpack/v4/marketing/survey": { + "namespace": "jetpack/v4", "methods": [ "POST" ], @@ -1289,13 +1289,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/marketing\/survey" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/marketing/survey" } ] } }, - "\/jetpack\/v4\/connection\/test": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/test": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1310,13 +1310,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/test" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/test" } ] } }, - "\/jetpack\/v4\/connection\/test-wpcom": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/test-wpcom": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1331,13 +1331,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/test-wpcom" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/test-wpcom" } ] } }, - "\/jetpack\/v4\/rewind": { - "namespace": "jetpack\/v4", + "/jetpack/v4/rewind": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1352,13 +1352,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/rewind" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/rewind" } ] } }, - "\/jetpack\/v4\/scan": { - "namespace": "jetpack\/v4", + "/jetpack/v4/scan": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1373,13 +1373,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/scan" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/scan" } ] } }, - "\/jetpack\/v4\/connection\/url": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/url": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1403,13 +1403,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/url" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/url" } ] } }, - "\/jetpack\/v4\/tracking\/settings": { - "namespace": "jetpack\/v4", + "/jetpack/v4/tracking/settings": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -1440,13 +1440,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/tracking\/settings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/tracking/settings" } ] } }, - "\/jetpack\/v4\/site": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1461,13 +1461,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site" } ] } }, - "\/jetpack\/v4\/site\/features": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/features": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1482,13 +1482,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/features" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/features" } ] } }, - "\/jetpack\/v4\/site\/products": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/products": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1503,13 +1503,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/products" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/products" } ] } }, - "\/jetpack\/v4\/site\/purchases": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/purchases": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1524,13 +1524,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/purchases" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/purchases" } ] } }, - "\/jetpack\/v4\/site\/benefits": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/benefits": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1545,13 +1545,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/benefits" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/benefits" } ] } }, - "\/jetpack\/v4\/site\/activity": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/activity": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1566,13 +1566,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/activity" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/activity" } ] } }, - "\/jetpack\/v4\/module\/all": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/all": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -1587,13 +1587,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/module\/all" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/module/all" } ] } }, - "\/jetpack\/v4\/module\/all\/active": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/all/active": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -1626,13 +1626,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/module\/all\/active" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/module/all/active" } ] } }, - "\/jetpack\/v4\/module\/(?P[a-z\\-]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/(?P[a-z\\-]+)": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -1674,7 +1674,7 @@ "required": false }, "carousel_display_exif": { - "description": "Show photo metadata (Exif<\/a>) in carousel, when available.", + "description": "Show photo metadata (Exif) in carousel, when available.", "type": "boolean", "default": 0, "required": false @@ -1936,13 +1936,13 @@ "required": false }, "stb_enabled": { - "description": "Show a <em>'follow blog'<\/em> option in the comment form", + "description": "Show a <em>'follow blog'</em> option in the comment form", "type": "boolean", "default": 1, "required": false }, "stc_enabled": { - "description": "Show a <em>'follow comments'<\/em> option in the comment form", + "description": "Show a <em>'follow comments'</em> option in the comment form", "type": "boolean", "default": 1, "required": false @@ -2594,8 +2594,8 @@ } ] }, - "\/jetpack\/v4\/module\/(?P[a-z\\-]+)\/active": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/(?P[a-z\\-]+)/active": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -2618,8 +2618,8 @@ } ] }, - "\/jetpack\/v4\/module\/(?P[a-z\\-]+)\/data": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/(?P[a-z\\-]+)/data": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -2638,8 +2638,8 @@ } ] }, - "\/jetpack\/v4\/module\/(?P[a-z\\-]+)\/key\/check": { - "namespace": "jetpack\/v4", + "/jetpack/v4/module/(?P[a-z\\-]+)/key/check": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -2669,8 +2669,8 @@ } ] }, - "\/jetpack\/v4\/settings": { - "namespace": "jetpack\/v4", + "/jetpack/v4/settings": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -2706,7 +2706,7 @@ "required": false }, "carousel_display_exif": { - "description": "Show photo metadata (Exif<\/a>) in carousel, when available.", + "description": "Show photo metadata (Exif) in carousel, when available.", "type": "boolean", "default": 0, "required": false @@ -2968,13 +2968,13 @@ "required": false }, "stb_enabled": { - "description": "Show a <em>'follow blog'<\/em> option in the comment form", + "description": "Show a <em>'follow blog'</em> option in the comment form", "type": "boolean", "default": 1, "required": false }, "stc_enabled": { - "description": "Show a <em>'follow comments'<\/em> option in the comment form", + "description": "Show a <em>'follow comments'</em> option in the comment form", "type": "boolean", "default": 1, "required": false @@ -3634,13 +3634,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/settings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/settings" } ] } }, - "\/jetpack\/v4\/settings\/(?P[a-z\\-]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/settings/(?P[a-z\\-]+)": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -3662,8 +3662,8 @@ } ] }, - "\/jetpack\/v4\/options\/(?P[a-z\\-]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/options/(?P[a-z\\-]+)": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -3680,8 +3680,8 @@ } ] }, - "\/jetpack\/v4\/updates\/plugins": { - "namespace": "jetpack\/v4", + "/jetpack/v4/updates/plugins": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3696,13 +3696,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/updates\/plugins" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/updates/plugins" } ] } }, - "\/jetpack\/v4\/notice\/(?P[a-z\\-_]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/notice/(?P[a-z\\-_]+)": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -3719,8 +3719,8 @@ } ] }, - "\/jetpack\/v4\/plugins": { - "namespace": "jetpack\/v4", + "/jetpack/v4/plugins": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST" @@ -3763,13 +3763,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/plugins" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/plugins" } ] } }, - "\/jetpack\/v4\/plugins\/(?P[^.\\\/]+(?:\\\/[^.\\\/]+)?)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/plugins/(?P[^.\\/]+(?:\\/[^.\\/]+)?)": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -3795,8 +3795,8 @@ } ] }, - "\/jetpack\/v4\/plugin\/(?P[a-z\\\/\\.\\-_]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/plugin/(?P[a-z\\/\\.\\-_]+)": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3809,8 +3809,8 @@ } ] }, - "\/jetpack\/v4\/widgets\/(?P[0-9a-z\\-_]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/widgets/(?P[0-9a-z\\-_]+)": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3823,8 +3823,8 @@ } ] }, - "\/jetpack\/v4\/verify-site\/(?P[a-z\\-_]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/verify-site/(?P[a-z\\-_]+)": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -3853,8 +3853,8 @@ } ] }, - "\/jetpack\/v4\/verify-site\/(?P[a-z\\-_]+)\/(?[0-9]+)": { - "namespace": "jetpack\/v4", + "/jetpack/v4/verify-site/(?P[a-z\\-_]+)/(?[0-9]+)": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3867,8 +3867,8 @@ } ] }, - "\/jetpack\/v4\/recommendations\/data": { - "namespace": "jetpack\/v4", + "/jetpack/v4/recommendations/data": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -3899,13 +3899,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/recommendations\/data" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/recommendations/data" } ] } }, - "\/jetpack\/v4\/recommendations\/step": { - "namespace": "jetpack\/v4", + "/jetpack/v4/recommendations/step": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -3936,13 +3936,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/recommendations\/step" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/recommendations/step" } ] } }, - "\/jetpack\/v4\/recommendations\/product-suggestions": { - "namespace": "jetpack\/v4", + "/jetpack/v4/recommendations/product-suggestions": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3957,13 +3957,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/recommendations\/product-suggestions" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/recommendations/product-suggestions" } ] } }, - "\/jetpack\/v4\/recommendations\/upsell": { - "namespace": "jetpack\/v4", + "/jetpack/v4/recommendations/upsell": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3978,13 +3978,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/recommendations\/upsell" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/recommendations/upsell" } ] } }, - "\/jetpack\/v4\/recommendations\/conditional": { - "namespace": "jetpack\/v4", + "/jetpack/v4/recommendations/conditional": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -3999,13 +3999,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/recommendations\/conditional" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/recommendations/conditional" } ] } }, - "\/jetpack\/v4\/site\/discount": { - "namespace": "jetpack\/v4", + "/jetpack/v4/site/discount": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4020,13 +4020,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/site\/discount" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/site/discount" } ] } }, - "\/jetpack\/v4\/jetpack_crm": { - "namespace": "jetpack\/v4", + "/jetpack/v4/jetpack_crm": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -4057,13 +4057,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/jetpack_crm" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/jetpack_crm" } ] } }, - "\/jetpack\/v4\/purchase-token": { - "namespace": "jetpack\/v4", + "/jetpack/v4/purchase-token": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST" @@ -4085,13 +4085,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/purchase-token" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/purchase-token" } ] } }, - "\/jetpack\/v4\/seen-wc-connection-modal": { - "namespace": "jetpack\/v4", + "/jetpack/v4/seen-wc-connection-modal": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -4110,13 +4110,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/seen-wc-connection-modal" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/seen-wc-connection-modal" } ] } }, - "\/jetpack\/v4\/intro-offers": { - "namespace": "jetpack\/v4", + "/jetpack/v4/intro-offers": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4131,13 +4131,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/intro-offers" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/intro-offers" } ] } }, - "\/jetpack\/v4\/subscribers\/auth": { - "namespace": "jetpack\/v4", + "/jetpack/v4/subscribers/auth": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4159,13 +4159,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/subscribers\/auth" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/subscribers/auth" } ] } }, - "\/jetpack\/v4\/features\/available": { - "namespace": "jetpack\/v4", + "/jetpack/v4/features/available": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4180,13 +4180,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/features\/available" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/features/available" } ] } }, - "\/jetpack\/v4\/features\/enabled": { - "namespace": "jetpack\/v4", + "/jetpack/v4/features/enabled": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4201,13 +4201,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/features\/enabled" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/features/enabled" } ] } }, - "\/jetpack\/v4\/licensing\/error": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/error": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -4238,13 +4238,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/error" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/error" } ] } }, - "\/jetpack\/v4\/licensing\/set-license": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/set-license": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -4268,13 +4268,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/set-license" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/set-license" } ] } }, - "\/jetpack\/v4\/licensing\/user\/licenses": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/user/licenses": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4289,13 +4289,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/user\/licenses" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/user/licenses" } ] } }, - "\/jetpack\/v4\/licensing\/user\/counts": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/user/counts": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4310,13 +4310,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/user\/counts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/user/counts" } ] } }, - "\/jetpack\/v4\/licensing\/user\/activation-notice-dismiss": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/user/activation-notice-dismiss": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -4340,13 +4340,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/user\/activation-notice-dismiss" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/user/activation-notice-dismiss" } ] } }, - "\/jetpack\/v4\/licensing\/attach-licenses": { - "namespace": "jetpack\/v4", + "/jetpack/v4/licensing/attach-licenses": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -4373,13 +4373,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/licensing\/attach-licenses" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/licensing/attach-licenses" } ] } }, - "\/jetpack\/v4\/heartbeat\/data": { - "namespace": "jetpack\/v4", + "/jetpack/v4/heartbeat/data": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -4400,13 +4400,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/heartbeat\/data" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/heartbeat/data" } ] } }, - "\/jetpack-boost\/v1": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1": { + "namespace": "jetpack-boost/v1", "methods": [ "GET" ], @@ -4417,7 +4417,7 @@ ], "args": { "namespace": { - "default": "jetpack-boost\/v1", + "default": "jetpack-boost/v1", "required": false }, "context": { @@ -4430,13 +4430,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1" } ] } }, - "\/jetpack-boost\/v1\/connection": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/connection": { + "namespace": "jetpack-boost/v1", "methods": [ "GET", "POST", @@ -4462,12 +4462,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/connection" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/connection" } ] } }, - "\/jetpack-boost-ds\/modules-state": { + "/jetpack-boost-ds/modules-state": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4485,12 +4485,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/modules-state" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/modules-state" } ] } }, - "\/jetpack-boost-ds\/modules-state\/set": { + "/jetpack-boost-ds/modules-state/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4510,12 +4510,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/modules-state\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/modules-state/set" } ] } }, - "\/jetpack-boost-ds\/modules-state\/merge": { + "/jetpack-boost-ds/modules-state/merge": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4535,12 +4535,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/modules-state\/merge" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/modules-state/merge" } ] } }, - "\/jetpack-boost-ds\/critical-css-state": { + "/jetpack-boost-ds/critical-css-state": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4558,12 +4558,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/set": { + "/jetpack-boost-ds/critical-css-state/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4583,12 +4583,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/set" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/delete": { + "/jetpack-boost-ds/critical-css-state/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4606,12 +4606,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/delete" } ] } }, - "\/jetpack-boost-ds\/critical-css-meta": { + "/jetpack-boost-ds/critical-css-meta": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4629,12 +4629,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-meta" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-meta" } ] } }, - "\/jetpack-boost-ds\/critical-css-suggest-regenerate": { + "/jetpack-boost-ds/critical-css-suggest-regenerate": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4652,12 +4652,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-suggest-regenerate" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-suggest-regenerate" } ] } }, - "\/jetpack-boost-ds\/critical-css-suggest-regenerate\/set": { + "/jetpack-boost-ds/critical-css-suggest-regenerate/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4677,12 +4677,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-suggest-regenerate\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-suggest-regenerate/set" } ] } }, - "\/jetpack-boost-ds\/critical-css-suggest-regenerate\/delete": { + "/jetpack-boost-ds/critical-css-suggest-regenerate/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4700,12 +4700,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-suggest-regenerate\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-suggest-regenerate/delete" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/action\/request-regenerate": { + "/jetpack-boost-ds/critical-css-state/action/request-regenerate": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4725,12 +4725,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/action\/request-regenerate" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/action/request-regenerate" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-css": { + "/jetpack-boost-ds/critical-css-state/action/set-provider-css": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4750,12 +4750,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-css" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/action/set-provider-css" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-errors": { + "/jetpack-boost-ds/critical-css-state/action/set-provider-errors": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4775,12 +4775,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-errors" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/action/set-provider-errors" } ] } }, - "\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-errors-dismissed": { + "/jetpack-boost-ds/critical-css-state/action/set-provider-errors-dismissed": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4800,12 +4800,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/critical-css-state\/action\/set-provider-errors-dismissed" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/critical-css-state/action/set-provider-errors-dismissed" } ] } }, - "\/jetpack-boost-ds\/lcp-state": { + "/jetpack-boost-ds/lcp-state": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4823,12 +4823,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/lcp-state" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/lcp-state" } ] } }, - "\/jetpack-boost-ds\/lcp-state\/set": { + "/jetpack-boost-ds/lcp-state/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4848,12 +4848,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/lcp-state\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/lcp-state/set" } ] } }, - "\/jetpack-boost-ds\/lcp-state\/delete": { + "/jetpack-boost-ds/lcp-state/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4871,12 +4871,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/lcp-state\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/lcp-state/delete" } ] } }, - "\/jetpack-boost-ds\/lcp-state\/action\/request-analyze": { + "/jetpack-boost-ds/lcp-state/action/request-analyze": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4896,12 +4896,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/lcp-state\/action\/request-analyze" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/lcp-state/action/request-analyze" } ] } }, - "\/jetpack-boost-ds\/minify-js-excludes": { + "/jetpack-boost-ds/minify-js-excludes": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4919,12 +4919,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-js-excludes" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-js-excludes" } ] } }, - "\/jetpack-boost-ds\/minify-js-excludes\/set": { + "/jetpack-boost-ds/minify-js-excludes/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -4944,12 +4944,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-js-excludes\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-js-excludes/set" } ] } }, - "\/jetpack-boost-ds\/minify-js-excludes-default": { + "/jetpack-boost-ds/minify-js-excludes-default": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4967,12 +4967,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-js-excludes-default" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-js-excludes-default" } ] } }, - "\/jetpack-boost-ds\/minify-css-excludes": { + "/jetpack-boost-ds/minify-css-excludes": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -4990,12 +4990,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-css-excludes" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-css-excludes" } ] } }, - "\/jetpack-boost-ds\/minify-css-excludes\/set": { + "/jetpack-boost-ds/minify-css-excludes/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5015,12 +5015,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-css-excludes\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-css-excludes/set" } ] } }, - "\/jetpack-boost-ds\/minify-css-excludes-default": { + "/jetpack-boost-ds/minify-css-excludes-default": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5038,12 +5038,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-css-excludes-default" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-css-excludes-default" } ] } }, - "\/jetpack-boost-ds\/performance-history-toggle": { + "/jetpack-boost-ds/performance-history-toggle": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5061,12 +5061,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/performance-history-toggle" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/performance-history-toggle" } ] } }, - "\/jetpack-boost-ds\/performance-history-toggle\/set": { + "/jetpack-boost-ds/performance-history-toggle/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5086,12 +5086,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/performance-history-toggle\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/performance-history-toggle/set" } ] } }, - "\/jetpack-boost-ds\/performance-history-toggle\/delete": { + "/jetpack-boost-ds/performance-history-toggle/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5109,12 +5109,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/performance-history-toggle\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/performance-history-toggle/delete" } ] } }, - "\/jetpack-boost-ds\/performance-history": { + "/jetpack-boost-ds/performance-history": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5132,12 +5132,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/performance-history" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/performance-history" } ] } }, - "\/jetpack-boost-ds\/performance-history\/set": { + "/jetpack-boost-ds/performance-history/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5157,12 +5157,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/performance-history\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/performance-history/set" } ] } }, - "\/jetpack-boost-ds\/cache-debug-log": { + "/jetpack-boost-ds/cache-debug-log": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5180,12 +5180,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/cache-debug-log" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/cache-debug-log" } ] } }, - "\/jetpack-boost-ds\/cache-engine-loading": { + "/jetpack-boost-ds/cache-engine-loading": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5203,12 +5203,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/cache-engine-loading" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/cache-engine-loading" } ] } }, - "\/jetpack-boost-ds\/page-cache": { + "/jetpack-boost-ds/page-cache": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5226,12 +5226,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache" } ] } }, - "\/jetpack-boost-ds\/page-cache\/set": { + "/jetpack-boost-ds/page-cache/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5251,12 +5251,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache/set" } ] } }, - "\/jetpack-boost-ds\/page-cache-error": { + "/jetpack-boost-ds/page-cache-error": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5274,12 +5274,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache-error" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache-error" } ] } }, - "\/jetpack-boost-ds\/page-cache-error\/set": { + "/jetpack-boost-ds/page-cache-error/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5299,12 +5299,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache-error\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache-error/set" } ] } }, - "\/jetpack-boost-ds\/page-cache-error\/delete": { + "/jetpack-boost-ds/page-cache-error/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5322,12 +5322,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache-error\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache-error/delete" } ] } }, - "\/jetpack-boost-ds\/page-cache\/action\/run-setup": { + "/jetpack-boost-ds/page-cache/action/run-setup": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5347,12 +5347,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache\/action\/run-setup" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache/action/run-setup" } ] } }, - "\/jetpack-boost-ds\/page-cache\/action\/clear-page-cache": { + "/jetpack-boost-ds/page-cache/action/clear-page-cache": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5372,12 +5372,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache\/action\/clear-page-cache" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache/action/clear-page-cache" } ] } }, - "\/jetpack-boost-ds\/page-cache\/action\/deactivate-wpsc": { + "/jetpack-boost-ds/page-cache/action/deactivate-wpsc": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5397,12 +5397,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/page-cache\/action\/deactivate-wpsc" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/page-cache/action/deactivate-wpsc" } ] } }, - "\/jetpack-boost-ds\/minify-legacy-notice": { + "/jetpack-boost-ds/minify-legacy-notice": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5420,12 +5420,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/minify-legacy-notice" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/minify-legacy-notice" } ] } }, - "\/jetpack-boost-ds\/image-cdn-quality": { + "/jetpack-boost-ds/image-cdn-quality": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5443,12 +5443,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/image-cdn-quality" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/image-cdn-quality" } ] } }, - "\/jetpack-boost-ds\/image-cdn-quality\/set": { + "/jetpack-boost-ds/image-cdn-quality/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5468,12 +5468,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/image-cdn-quality\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/image-cdn-quality/set" } ] } }, - "\/jetpack-boost-ds\/image-cdn-quality\/delete": { + "/jetpack-boost-ds/image-cdn-quality/delete": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5491,13 +5491,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/image-cdn-quality\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/image-cdn-quality/delete" } ] } }, - "\/jetpack-boost\/v1\/cloud-css\/update": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/cloud-css/update": { + "namespace": "jetpack-boost/v1", "methods": [ "POST", "PUT", @@ -5516,13 +5516,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/cloud-css\/update" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/cloud-css/update" } ] } }, - "\/jetpack-boost\/v1\/lcp\/update": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/lcp/update": { + "namespace": "jetpack-boost/v1", "methods": [ "POST", "PUT", @@ -5541,12 +5541,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/lcp\/update" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/lcp/update" } ] } }, - "\/jetpack-boost-ds\/cornerstone-pages-list": { + "/jetpack-boost-ds/cornerstone-pages-list": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5564,12 +5564,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/cornerstone-pages-list" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/cornerstone-pages-list" } ] } }, - "\/jetpack-boost-ds\/cornerstone-pages-list\/set": { + "/jetpack-boost-ds/cornerstone-pages-list/set": { "namespace": "jetpack-boost-ds", "methods": [ "POST", @@ -5589,12 +5589,12 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/cornerstone-pages-list\/set" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/cornerstone-pages-list/set" } ] } }, - "\/jetpack-boost-ds\/cornerstone-pages-properties": { + "/jetpack-boost-ds/cornerstone-pages-properties": { "namespace": "jetpack-boost-ds", "methods": [ "GET", @@ -5612,13 +5612,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost-ds\/cornerstone-pages-properties" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost-ds/cornerstone-pages-properties" } ] } }, - "\/jetpack-boost\/v1\/list-site-urls": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/list-site-urls": { + "namespace": "jetpack-boost/v1", "methods": [ "GET" ], @@ -5633,13 +5633,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/list-site-urls" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/list-site-urls" } ] } }, - "\/jetpack-boost\/v1\/list-source-providers": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/list-source-providers": { + "namespace": "jetpack-boost/v1", "methods": [ "GET" ], @@ -5654,13 +5654,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/list-source-providers" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/list-source-providers" } ] } }, - "\/jetpack-boost\/v1\/list-cornerstone-pages": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/list-cornerstone-pages": { + "namespace": "jetpack-boost/v1", "methods": [ "GET" ], @@ -5675,13 +5675,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/list-cornerstone-pages" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/list-cornerstone-pages" } ] } }, - "\/jetpack-boost\/v1\/list-lcp-analysis": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/list-lcp-analysis": { + "namespace": "jetpack-boost/v1", "methods": [ "GET" ], @@ -5696,13 +5696,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/list-lcp-analysis" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/list-lcp-analysis" } ] } }, - "\/jetpack-boost\/v1\/speed-scores": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/speed-scores": { + "namespace": "jetpack-boost/v1", "methods": [ "POST", "PUT", @@ -5743,13 +5743,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/speed-scores" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/speed-scores" } ] } }, - "\/jetpack-boost\/v1\/speed-scores\/refresh": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/speed-scores/refresh": { + "namespace": "jetpack-boost/v1", "methods": [ "POST", "PUT", @@ -5790,13 +5790,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/speed-scores\/refresh" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/speed-scores/refresh" } ] } }, - "\/jetpack-boost\/v1\/speed-scores-history": { - "namespace": "jetpack-boost\/v1", + "/jetpack-boost/v1/speed-scores-history": { + "namespace": "jetpack-boost/v1", "methods": [ "POST", "PUT", @@ -5864,13 +5864,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack-boost\/v1\/speed-scores-history" + "href": "https://jetpack.wpmt.co/wp-json/jetpack-boost/v1/speed-scores-history" } ] } }, - "\/my-jetpack\/v1": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -5881,7 +5881,7 @@ ], "args": { "namespace": { - "default": "my-jetpack\/v1", + "default": "my-jetpack/v1", "required": false }, "context": { @@ -5894,13 +5894,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1" } ] } }, - "\/my-jetpack\/v1\/site\/products": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -5921,13 +5921,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products" } ] } }, - "\/my-jetpack\/v1\/site\/products\/install": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products/install": { + "namespace": "my-jetpack/v1", "methods": [ "POST", "PUT", @@ -5977,13 +5977,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products\/install" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products/install" } ] } }, - "\/my-jetpack\/v1\/site\/products\/activate": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products/activate": { + "namespace": "my-jetpack/v1", "methods": [ "POST", "PUT", @@ -6033,13 +6033,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products\/activate" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products/activate" } ] } }, - "\/my-jetpack\/v1\/site\/products\/interstitials": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products/interstitials": { + "namespace": "my-jetpack/v1", "methods": [ "GET", "POST", @@ -6135,13 +6135,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products\/interstitials" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products/interstitials" } ] } }, - "\/my-jetpack\/v1\/site\/products\/deactivate": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products/deactivate": { + "namespace": "my-jetpack/v1", "methods": [ "DELETE" ], @@ -6187,13 +6187,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products\/deactivate" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products/deactivate" } ] } }, - "\/my-jetpack\/v1\/site\/products-ownership": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/products-ownership": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6208,13 +6208,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/products-ownership" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/products-ownership" } ] } }, - "\/my-jetpack\/v1\/site\/purchases": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/purchases": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6229,13 +6229,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/purchases" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/purchases" } ] } }, - "\/my-jetpack\/v1\/chat\/availability": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/chat/availability": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6250,13 +6250,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/chat\/availability" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/chat/availability" } ] } }, - "\/my-jetpack\/v1\/chat\/authentication": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/chat/authentication": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6280,13 +6280,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/chat\/authentication" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/chat/authentication" } ] } }, - "\/my-jetpack\/v1\/site\/recommendations\/evaluation": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/recommendations/evaluation": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6301,13 +6301,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/recommendations\/evaluation" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/recommendations/evaluation" } ] } }, - "\/my-jetpack\/v1\/site\/recommendations\/evaluation\/result": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/recommendations/evaluation/result": { + "namespace": "my-jetpack/v1", "methods": [ "POST", "PUT", @@ -6333,13 +6333,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/recommendations\/evaluation\/result" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/recommendations/evaluation/result" } ] } }, - "\/my-jetpack\/v1\/site\/backup\/undo-event": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/backup/undo-event": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6354,13 +6354,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/backup\/undo-event" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/backup/undo-event" } ] } }, - "\/my-jetpack\/v1\/site\/protect\/data": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/protect/data": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6375,13 +6375,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/protect\/data" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/protect/data" } ] } }, - "\/my-jetpack\/v1\/site\/videopress\/data": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/videopress/data": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6396,13 +6396,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/videopress\/data" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/videopress/data" } ] } }, - "\/my-jetpack\/v1\/site\/update-historically-active-modules": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/update-historically-active-modules": { + "namespace": "my-jetpack/v1", "methods": [ "POST", "PUT", @@ -6421,13 +6421,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/update-historically-active-modules" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/update-historically-active-modules" } ] } }, - "\/my-jetpack\/v1\/jetpack-manage\/data": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/jetpack-manage/data": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6442,13 +6442,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/jetpack-manage\/data" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/jetpack-manage/data" } ] } }, - "\/my-jetpack\/v1\/red-bubble-notifications": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/red-bubble-notifications": { + "namespace": "my-jetpack/v1", "methods": [ "POST" ], @@ -6472,13 +6472,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/red-bubble-notifications" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/red-bubble-notifications" } ] } }, - "\/my-jetpack\/v1\/site": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site": { + "namespace": "my-jetpack/v1", "methods": [ "GET" ], @@ -6493,13 +6493,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site" } ] } }, - "\/my-jetpack\/v1\/site\/dismiss-welcome-banner": { - "namespace": "my-jetpack\/v1", + "/my-jetpack/v1/site/dismiss-welcome-banner": { + "namespace": "my-jetpack/v1", "methods": [ "POST", "PUT", @@ -6518,13 +6518,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/my-jetpack\/v1\/site\/dismiss-welcome-banner" + "href": "https://jetpack.wpmt.co/wp-json/my-jetpack/v1/site/dismiss-welcome-banner" } ] } }, - "\/jetpack\/v4\/explat": { - "namespace": "jetpack\/v4\/explat", + "/jetpack/v4/explat": { + "namespace": "jetpack/v4/explat", "methods": [ "GET" ], @@ -6535,7 +6535,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/explat", + "default": "jetpack/v4/explat", "required": false }, "context": { @@ -6548,13 +6548,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/explat" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/explat" } ] } }, - "\/jetpack\/v4\/explat\/assignments": { - "namespace": "jetpack\/v4\/explat", + "/jetpack/v4/explat/assignments": { + "namespace": "jetpack/v4/explat", "methods": [ "GET" ], @@ -6582,13 +6582,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/explat\/assignments" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/explat/assignments" } ] } }, - "\/jetpack\/v4\/jitm": { - "namespace": "jetpack\/v4", + "/jetpack/v4/jitm": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST" @@ -6610,13 +6610,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/jitm" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/jitm" } ] } }, - "\/jetpack\/v4\/verify_xmlrpc_error": { - "namespace": "jetpack\/v4", + "/jetpack/v4/verify_xmlrpc_error": { + "namespace": "jetpack/v4", "methods": [ "POST" ], @@ -6636,13 +6636,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/verify_xmlrpc_error" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/verify_xmlrpc_error" } ] } }, - "\/jetpack\/v4\/sync\/full-sync": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/full-sync": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6686,13 +6686,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/full-sync" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/full-sync" } ] } }, - "\/jetpack\/v4\/sync\/status": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/status": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -6713,13 +6713,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/status" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/status" } ] } }, - "\/jetpack\/v4\/sync\/health": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/health": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6744,13 +6744,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/health" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/health" } ] } }, - "\/jetpack\/v4\/sync\/settings": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/settings": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -6776,13 +6776,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/settings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/settings" } ] } }, - "\/jetpack\/v4\/sync\/object": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/object": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -6821,13 +6821,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/object" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/object" } ] } }, - "\/jetpack\/v4\/sync\/now": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/now": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6852,13 +6852,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/now" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/now" } ] } }, - "\/jetpack\/v4\/sync\/checkout": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/checkout": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6877,13 +6877,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/checkout" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/checkout" } ] } }, - "\/jetpack\/v4\/sync\/close": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/close": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6902,13 +6902,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/close" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/close" } ] } }, - "\/jetpack\/v4\/sync\/unlock": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/unlock": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -6933,13 +6933,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/unlock" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/unlock" } ] } }, - "\/jetpack\/v4\/sync\/object-id-range": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/object-id-range": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -6965,13 +6965,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/object-id-range" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/object-id-range" } ] } }, - "\/jetpack\/v4\/sync\/data-check": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/data-check": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -6992,13 +6992,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/data-check" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/data-check" } ] } }, - "\/jetpack\/v4\/sync\/data-histogram": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/data-histogram": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7068,13 +7068,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/data-histogram" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/data-histogram" } ] } }, - "\/jetpack\/v4\/sync\/spawn-sync": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/spawn-sync": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7089,13 +7089,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/spawn-sync" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/spawn-sync" } ] } }, - "\/jetpack\/v4\/sync\/locks": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sync/locks": { + "namespace": "jetpack/v4", "methods": [ "DELETE" ], @@ -7110,13 +7110,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/sync\/locks" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/sync/locks" } ] } }, - "\/jetpack\/v4\/identity-crisis\/confirm-safe-mode": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/confirm-safe-mode": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7135,13 +7135,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/confirm-safe-mode" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/confirm-safe-mode" } ] } }, - "\/jetpack\/v4\/identity-crisis\/migrate": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/migrate": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7160,13 +7160,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/migrate" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/migrate" } ] } }, - "\/jetpack\/v4\/identity-crisis\/start-fresh": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/start-fresh": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7191,13 +7191,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/start-fresh" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/start-fresh" } ] } }, - "\/jetpack\/v4\/identity-crisis\/idc-url-validation": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/idc-url-validation": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7212,13 +7212,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/idc-url-validation" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/idc-url-validation" } ] } }, - "\/jetpack\/v4\/identity-crisis\/url-secret": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/url-secret": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7233,13 +7233,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/url-secret" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/url-secret" } ] } }, - "\/jetpack\/v4\/identity-crisis\/compare-url-secret": { - "namespace": "jetpack\/v4", + "/jetpack/v4/identity-crisis/compare-url-secret": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7264,13 +7264,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/identity-crisis\/compare-url-secret" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/identity-crisis/compare-url-secret" } ] } }, - "\/jetpack\/v4\/search\/plan": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/plan": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7285,13 +7285,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/plan" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/plan" } ] } }, - "\/jetpack\/v4\/search\/settings": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/settings": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7317,13 +7317,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/settings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/settings" } ] } }, - "\/jetpack\/v4\/search\/stats": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/stats": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7338,13 +7338,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/stats" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/stats" } ] } }, - "\/jetpack\/v4\/search\/pricing": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/pricing": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7359,13 +7359,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/pricing" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/pricing" } ] } }, - "\/jetpack\/v4\/search\/plan\/activate": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/plan/activate": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7384,13 +7384,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/plan\/activate" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/plan/activate" } ] } }, - "\/jetpack\/v4\/search\/plan\/deactivate": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/plan/deactivate": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7409,13 +7409,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/plan\/deactivate" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/plan/deactivate" } ] } }, - "\/jetpack\/v4\/search": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7430,13 +7430,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search" } ] } }, - "\/jetpack\/v4\/search\/local-stats": { - "namespace": "jetpack\/v4", + "/jetpack/v4/search/local-stats": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7451,13 +7451,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/search\/local-stats" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/search/local-stats" } ] } }, - "\/jetpack\/v4\/waf": { - "namespace": "jetpack\/v4", + "/jetpack/v4/waf": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -7483,13 +7483,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/waf" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/waf" } ] } }, - "\/jetpack\/v4\/waf\/update-rules": { - "namespace": "jetpack\/v4", + "/jetpack/v4/waf/update-rules": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -7508,13 +7508,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/waf\/update-rules" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/waf/update-rules" } ] } }, - "\/wpcom\/v2": { - "namespace": "wpcom\/v2", + "/wpcom/v2": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7525,7 +7525,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2", + "default": "wpcom/v2", "required": false }, "context": { @@ -7538,13 +7538,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2" } ] } }, - "\/wpcom\/v2\/videopress\/meta": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videopress/meta": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -7604,13 +7604,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/videopress\/meta" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/videopress/meta" } ] } }, - "\/wpcom\/v2\/videopress\/(?P\\w+)\/poster": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videopress/(?P\\w+)/poster": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -7650,8 +7650,8 @@ } ] }, - "\/wpcom\/v2\/videopress\/(?P\\w+)\/check-ownership\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videopress/(?P\\w+)/check-ownership/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7664,8 +7664,8 @@ } ] }, - "\/wpcom\/v2\/videopress\/upload-jwt": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videopress/upload-jwt": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -7684,13 +7684,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/videopress\/upload-jwt" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/videopress/upload-jwt" } ] } }, - "\/wpcom\/v2\/videopress\/playback-jwt\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videopress/playback-jwt/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -7707,8 +7707,8 @@ } ] }, - "\/videopress\/v1": { - "namespace": "videopress\/v1", + "/videopress/v1": { + "namespace": "videopress/v1", "methods": [ "GET" ], @@ -7719,7 +7719,7 @@ ], "args": { "namespace": { - "default": "videopress\/v1", + "default": "videopress/v1", "required": false }, "context": { @@ -7732,13 +7732,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/videopress\/v1" + "href": "https://jetpack.wpmt.co/wp-json/videopress/v1" } ] } }, - "\/videopress\/v1\/upload\/(?P\\d+)": { - "namespace": "videopress\/v1", + "/videopress/v1/upload/(?P\\d+)": { + "namespace": "videopress/v1", "methods": [ "GET", "POST", @@ -7774,8 +7774,8 @@ } ] }, - "\/videopress\/v1\/stats": { - "namespace": "videopress\/v1", + "/videopress/v1/stats": { + "namespace": "videopress/v1", "methods": [ "GET" ], @@ -7790,13 +7790,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/videopress\/v1\/stats" + "href": "https://jetpack.wpmt.co/wp-json/videopress/v1/stats" } ] } }, - "\/videopress\/v1\/stats\/featured": { - "namespace": "videopress\/v1", + "/videopress/v1/stats/featured": { + "namespace": "videopress/v1", "methods": [ "GET" ], @@ -7811,13 +7811,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/videopress\/v1\/stats\/featured" + "href": "https://jetpack.wpmt.co/wp-json/videopress/v1/stats/featured" } ] } }, - "\/videopress\/v1\/site": { - "namespace": "videopress\/v1", + "/videopress/v1/site": { + "namespace": "videopress/v1", "methods": [ "GET" ], @@ -7832,13 +7832,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/videopress\/v1\/site" + "href": "https://jetpack.wpmt.co/wp-json/videopress/v1/site" } ] } }, - "\/videopress\/v1\/settings": { - "namespace": "videopress\/v1", + "/videopress/v1/settings": { + "namespace": "videopress/v1", "methods": [ "GET", "POST", @@ -7870,13 +7870,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/videopress\/v1\/settings" + "href": "https://jetpack.wpmt.co/wp-json/videopress/v1/settings" } ] } }, - "\/jetpack\/v4\/stats\/blog": { - "namespace": "jetpack\/v4", + "/jetpack/v4/stats/blog": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -7891,13 +7891,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats\/blog" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats/blog" } ] } }, - "\/jetpack\/v4\/stats-app": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7908,7 +7908,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/stats-app", + "default": "jetpack/v4/stats-app", "required": false }, "context": { @@ -7921,13 +7921,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/(?P[\\-\\w]+)\/(?P[\\d]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/(?P[\\-\\w]+)/(?P[\\d]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7940,8 +7940,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/(?P[\\-\\w]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/(?P[\\-\\w]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7954,8 +7954,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/posts\/(?P[\\d]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/posts/(?P[\\d]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7968,8 +7968,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/posts\/(?P[\\d]+)\/likes": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/posts/(?P[\\d]+)/likes": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7982,8 +7982,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -7998,13 +7998,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/stats" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/stats" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/site-has-never-published-post": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/site-has-never-published-post": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8019,13 +8019,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/site-has-never-published-post" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/site-has-never-published-post" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/posts": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/posts": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8040,13 +8040,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/posts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/posts" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/subscribers\/counts": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/subscribers/counts": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8061,13 +8061,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/subscribers\/counts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/subscribers/counts" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats\/usage": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/jetpack-stats/usage": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8082,13 +8082,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats\/usage" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/jetpack-stats/usage" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats\/user-feedback": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/jetpack-stats/user-feedback": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST" ], @@ -8103,13 +8103,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats\/user-feedback" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/jetpack-stats/user-feedback" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/wordads\/earnings": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/wordads/earnings": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8124,13 +8124,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/wordads\/earnings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/wordads/earnings" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/wordads\/stats": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/wordads/stats": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8145,13 +8145,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/wordads\/stats" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/wordads/stats" } ] } }, - "\/jetpack\/v4\/stats-app\/stats\/notices": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/stats/notices": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8188,13 +8188,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/stats\/notices" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/stats/notices" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/notices": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/notices": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8238,13 +8238,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/notices" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/notices" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/referrers\/spam\/new": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/referrers/spam/new": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8269,13 +8269,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/referrers\/spam\/new" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/stats/referrers/spam/new" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/referrers\/spam\/delete": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/referrers/spam/delete": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8300,13 +8300,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/referrers\/spam\/delete" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/stats/referrers/spam/delete" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/modules": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/modules": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8332,13 +8332,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/modules" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/modules" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/module-settings": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/module-settings": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8364,13 +8364,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/jetpack-stats-dashboard\/module-settings" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/jetpack-stats-dashboard/module-settings" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/emails\/(?P[\\-\\w\\d]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/emails/(?P[\\-\\w\\d]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8383,8 +8383,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/opens\/emails\/(?P[\\d]+)\/(?P[\\-\\w]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/opens/emails/(?P[\\d]+)/(?P[\\-\\w]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8397,8 +8397,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/clicks\/emails\/(?P[\\d]+)\/(?P[\\-\\w]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/clicks/emails/(?P[\\d]+)/(?P[\\-\\w]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8411,8 +8411,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/(?P[\\-\\w]+)\/emails\/(?P[\\d]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/(?P[\\-\\w]+)/emails/(?P[\\d]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8425,8 +8425,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/utm\/(?P[_,\\-\\w]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/utm/(?P[_,\\-\\w]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8439,8 +8439,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/devices\/(?P[\\w]+)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/devices/(?P[\\w]+)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8453,8 +8453,8 @@ } ] }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/commercial-classification": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/commercial-classification": { + "namespace": "jetpack/v4/stats-app", "methods": [ "POST", "PUT", @@ -8473,13 +8473,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/commercial-classification" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/commercial-classification" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/purchases": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/purchases": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8494,13 +8494,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/stats-app\/sites\/236026851\/purchases" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/stats-app/sites/236026851/purchases" } ] } }, - "\/jetpack\/v4\/stats-app\/sites\/236026851\/stats\/location-views\/(?Pcountry|region|city)": { - "namespace": "jetpack\/v4\/stats-app", + "/jetpack/v4/stats-app/sites/236026851/stats/location-views/(?Pcountry|region|city)": { + "namespace": "jetpack/v4/stats-app", "methods": [ "GET" ], @@ -8513,8 +8513,8 @@ } ] }, - "\/jetpack\/v4\/import": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import": { + "namespace": "jetpack/v4/import", "methods": [ "GET" ], @@ -8525,7 +8525,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/import", + "default": "jetpack/v4/import", "required": false }, "context": { @@ -8538,13 +8538,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import" } ] } }, - "\/jetpack\/v4\/import\/blocks": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/blocks": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -8727,13 +8727,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/blocks" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/blocks" } ] } }, - "\/jetpack\/v4\/import\/categories": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/categories": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -8783,13 +8783,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/categories" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/categories" } ] } }, - "\/jetpack\/v4\/import\/comments": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/comments": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -8905,13 +8905,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/comments" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/comments" } ] } }, - "\/jetpack\/v4\/import\/custom-css": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/custom-css": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9005,13 +9005,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/custom-css" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/custom-css" } ] } }, - "\/jetpack\/v4\/import\/end": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/end": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9026,13 +9026,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/end" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/end" } ] } }, - "\/jetpack\/v4\/import\/global-styles": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/global-styles": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9172,13 +9172,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/global-styles" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/global-styles" } ] } }, - "\/jetpack\/v4\/import\/media": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/media": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9293,7 +9293,7 @@ "string", "null" ], - "pattern": "^\\d{4}\\\/\\d{2}$", + "pattern": "^\\d{4}\\/\\d{2}$", "required": false }, "unified_importer_id": { @@ -9364,13 +9364,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/media" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/media" } ] } }, - "\/jetpack\/v4\/import\/media\/(?P[\\d]+)": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/media/(?P[\\d]+)": { + "namespace": "jetpack/v4/import", "methods": [ "POST", "PUT", @@ -9497,7 +9497,7 @@ "string", "null" ], - "pattern": "^\\d{4}\\\/\\d{2}$", + "pattern": "^\\d{4}\\/\\d{2}$", "required": false }, "unified_importer_id": { @@ -9566,8 +9566,8 @@ } ] }, - "\/jetpack\/v4\/import\/media\/(?P[\\d]+)\/post-process": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/media/(?P[\\d]+)/post-process": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9593,8 +9593,8 @@ } ] }, - "\/jetpack\/v4\/import\/menu-items": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/menu-items": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9749,13 +9749,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/menu-items" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/menu-items" } ] } }, - "\/jetpack\/v4\/import\/menus": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/menus": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9813,13 +9813,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/menus" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/menus" } ] } }, - "\/jetpack\/v4\/import\/navigation": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/navigation": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -9958,13 +9958,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/navigation" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/navigation" } ] } }, - "\/jetpack\/v4\/import\/pages": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/pages": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -10196,13 +10196,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/pages" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/pages" } ] } }, - "\/jetpack\/v4\/import\/posts": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/posts": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -10456,13 +10456,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/posts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/posts" } ] } }, - "\/jetpack\/v4\/import\/start": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/start": { + "namespace": "jetpack/v4/import", "methods": [ "GET" ], @@ -10477,13 +10477,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/start" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/start" } ] } }, - "\/jetpack\/v4\/import\/tags": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/tags": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -10528,13 +10528,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/tags" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/tags" } ] } }, - "\/jetpack\/v4\/import\/template-parts": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/template-parts": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -10662,13 +10662,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/template-parts" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/template-parts" } ] } }, - "\/jetpack\/v4\/import\/templates": { - "namespace": "jetpack\/v4\/import", + "/jetpack/v4/import/templates": { + "namespace": "jetpack/v4/import", "methods": [ "POST" ], @@ -10791,13 +10791,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/import\/templates" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/import/templates" } ] } }, - "\/wpcom\/v2\/business-hours\/localized-week": { - "namespace": "wpcom\/v2", + "/wpcom/v2/business-hours/localized-week": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10812,13 +10812,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/business-hours\/localized-week" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/business-hours/localized-week" } ] } }, - "\/wpcom\/v2\/admin-color": { - "namespace": "wpcom\/v2", + "/wpcom/v2/admin-color": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10833,13 +10833,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/admin-color" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/admin-color" } ] } }, - "\/wpcom\/v2\/admin-menu": { - "namespace": "wpcom\/v2", + "/wpcom/v2/admin-menu": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10854,13 +10854,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/admin-menu" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/admin-menu" } ] } }, - "\/wpcom\/v2\/jetpack-ai\/ai-assistant-feature": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-ai/ai-assistant-feature": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10875,13 +10875,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/jetpack-ai\/ai-assistant-feature" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/jetpack-ai/ai-assistant-feature" } ] } }, - "\/wpcom\/v2\/jetpack-search\/ai\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-search/ai/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10905,13 +10905,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/jetpack-search\/ai\/search" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/jetpack-search/ai/search" } ] } }, - "\/wpcom\/v2\/jetpack-search\/ai\/rank": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-search/ai/rank": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10939,13 +10939,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/jetpack-search\/ai\/rank" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/jetpack-search/ai/rank" } ] } }, - "\/wpcom\/v2\/app-media": { - "namespace": "wpcom\/v2", + "/wpcom/v2/app-media": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10978,13 +10978,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/app-media" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/app-media" } ] } }, - "\/wpcom\/v2\/editor-assets": { - "namespace": "wpcom\/v2", + "/wpcom/v2/editor-assets": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10999,13 +10999,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/editor-assets" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/editor-assets" } ] } }, - "\/wpcom\/v2\/blog-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/blog-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11029,13 +11029,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/blog-stats" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/blog-stats" } ] } }, - "\/wpcom\/v2\/email-preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/email-preview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11066,13 +11066,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/email-preview" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/email-preview" } ] } }, - "\/wpcom\/v2\/external-media\/list\/(?Pgoogle_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/list/(?Pgoogle_photos|openverse|pexels)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11110,8 +11110,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/copy\/(?Pgoogle_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/copy/(?Pgoogle_photos|openverse|pexels)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11188,8 +11188,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/connection\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/connection/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -11209,8 +11209,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/connection\/(?Pgoogle_photos)\/picker_status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/connection/(?Pgoogle_photos)/picker_status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11223,8 +11223,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/session\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/session/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11237,8 +11237,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/session\/(?Pgoogle_photos)\/(?P.*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/session/(?Pgoogle_photos)/(?P.*)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -11258,8 +11258,8 @@ } ] }, - "\/wpcom\/v2\/external-media\/proxy\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/external-media/proxy/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11277,8 +11277,8 @@ } ] }, - "\/wpcom\/v2\/following\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/following/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11298,13 +11298,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/following\/mine" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/following/mine" } ] } }, - "\/wpcom\/v2\/following\/recommendations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/following/recommendations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11325,13 +11325,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/following\/recommendations" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/following/recommendations" } ] } }, - "\/wpcom\/v2\/goodreads\/user-id": { - "namespace": "wpcom\/v2", + "/wpcom/v2/goodreads/user-id": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11353,13 +11353,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/goodreads\/user-id" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/goodreads/user-id" } ] } }, - "\/wpcom\/v2\/checkGoogleDocVisibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/checkGoogleDocVisibility": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11374,13 +11374,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/checkGoogleDocVisibility" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/checkGoogleDocVisibility" } ] } }, - "\/wpcom\/v2\/instagram-gallery\/connect-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/instagram-gallery/connect-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11395,13 +11395,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/instagram-gallery\/connect-url" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/instagram-gallery/connect-url" } ] } }, - "\/wpcom\/v2\/instagram-gallery\/connections": { - "namespace": "wpcom\/v2", + "/wpcom/v2/instagram-gallery/connections": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11416,13 +11416,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/instagram-gallery\/connections" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/instagram-gallery/connections" } ] } }, - "\/wpcom\/v2\/instagram-gallery\/gallery": { - "namespace": "wpcom\/v2", + "/wpcom/v2/instagram-gallery/gallery": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11450,13 +11450,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/instagram-gallery\/gallery" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/instagram-gallery/gallery" } ] } }, - "\/wpcom\/v2\/mailchimp": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mailchimp": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11471,13 +11471,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/mailchimp" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/mailchimp" } ] } }, - "\/wpcom\/v2\/mailchimp\/groups": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mailchimp/groups": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11492,13 +11492,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/mailchimp\/groups" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/mailchimp/groups" } ] } }, - "\/wpcom\/v2\/newsletter-categories": { - "namespace": "wpcom\/v2", + "/wpcom/v2/newsletter-categories": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11513,13 +11513,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/newsletter-categories" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/newsletter-categories" } ] } }, - "\/wpcom\/v2\/newsletter-categories\/count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/newsletter-categories/count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11539,13 +11539,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/newsletter-categories\/count" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/newsletter-categories/count" } ] } }, - "\/wpcom\/v2\/podcast-player": { - "namespace": "wpcom\/v2", + "/wpcom/v2/podcast-player": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11576,13 +11576,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/podcast-player" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/podcast-player" } ] } }, - "\/wpcom\/v2\/podcast-player\/track-quantity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/podcast-player/track-quantity": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11597,13 +11597,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/podcast-player\/track-quantity" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/podcast-player/track-quantity" } ] } }, - "\/wpcom\/v2\/profile": { - "namespace": "wpcom\/v2", + "/wpcom/v2/profile": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11618,13 +11618,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/profile" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/profile" } ] } }, - "\/wpcom\/v2\/related-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/related-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11639,13 +11639,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/related-posts" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/related-posts" } ] } }, - "\/wpcom\/v2\/related-posts\/enable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/related-posts/enable": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11660,13 +11660,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/related-posts\/enable" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/related-posts/enable" } ] } }, - "\/wpcom\/v2\/related-posts\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/related-posts/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11685,8 +11685,8 @@ } ] }, - "\/wpcom\/v2\/resolve-redirect\/?(?P.+)?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/resolve-redirect/?(?P.+)?": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11705,8 +11705,8 @@ } ] }, - "\/wpcom\/v2\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11721,13 +11721,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/search" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/search" } ] } }, - "\/wpcom\/v2\/send-email-preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/send-email-preview": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11748,13 +11748,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/send-email-preview" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/send-email-preview" } ] } }, - "\/wpcom\/v2\/template-loader\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/template-loader/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11773,8 +11773,8 @@ } ] }, - "\/wpcom\/v2\/post-types": { - "namespace": "wpcom\/v2", + "/wpcom/v2/post-types": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11789,13 +11789,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/post-types" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/post-types" } ] } }, - "\/wpcom\/v2\/top-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/top-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11819,13 +11819,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/top-posts" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/top-posts" } ] } }, - "\/wpcom\/v2\/transients\/(?P\\w{1,172})": { - "namespace": "wpcom\/v2", + "/wpcom/v2/transients/(?P\\w{1,172})": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -11844,8 +11844,8 @@ } ] }, - "\/wpcom\/v3": { - "namespace": "wpcom\/v3", + "/wpcom/v3": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -11856,7 +11856,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v3", + "default": "wpcom/v3", "required": false }, "context": { @@ -11869,13 +11869,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v3" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v3" } ] } }, - "\/wpcom\/v3\/blogging-prompts": { - "namespace": "wpcom\/v3", + "/wpcom/v3/blogging-prompts": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -11972,13 +11972,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v3\/blogging-prompts" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v3/blogging-prompts" } ] } }, - "\/wpcom\/v3\/blogging-prompts\/(?P[\\d]+)": { - "namespace": "wpcom\/v3", + "/wpcom/v3/blogging-prompts/(?P[\\d]+)": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -11997,8 +11997,8 @@ } ] }, - "\/wpcom\/v3\/jitm": { - "namespace": "wpcom\/v3", + "/wpcom/v3/jitm": { + "namespace": "wpcom/v3", "methods": [ "GET", "POST" @@ -12047,13 +12047,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v3\/jitm" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v3/jitm" } ] } }, - "\/wpcom\/v2\/gutenberg\/available-extensions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gutenberg/available-extensions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12068,13 +12068,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/gutenberg\/available-extensions" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/gutenberg/available-extensions" } ] } }, - "\/wpcom\/v2\/hello": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hello": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12089,13 +12089,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/hello" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/hello" } ] } }, - "\/wpcom\/v2\/memberships\/status\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/memberships/status/?": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12123,13 +12123,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/memberships\/status\/?" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/memberships/status/?" } ] } }, - "\/wpcom\/v2\/memberships\/product\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/memberships/product/?": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12173,13 +12173,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/memberships\/product\/?" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/memberships/product/?" } ] } }, - "\/wpcom\/v2\/memberships\/products\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/memberships/products/?": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -12214,13 +12214,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/memberships\/products\/?" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/memberships/products/?" } ] } }, - "\/wpcom\/v2\/memberships\/product\/(?P[0-9]+)\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/memberships/product/(?P[0-9]+)/?": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -12278,8 +12278,8 @@ } ] }, - "\/wpcom\/v2\/publicize\/connection-test-results": { - "namespace": "wpcom\/v2", + "/wpcom/v2/publicize/connection-test-results": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12294,13 +12294,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wpcom\/v2\/publicize\/connection-test-results" + "href": "https://jetpack.wpmt.co/wp-json/wpcom/v2/publicize/connection-test-results" } ] } }, - "\/wpcom\/v2\/service-api-keys\/(?P[a-z\\-_]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/service-api-keys/(?P[a-z\\-_]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -12336,8 +12336,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12348,7 +12348,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze-app", + "default": "jetpack/v4/blaze-app", "required": false }, "context": { @@ -12361,13 +12361,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12382,13 +12382,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app\/sites\/236026851\/blaze\/posts(\\?.*)?" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app/sites/236026851/blaze/posts(\\?.*)?" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/sites\/236026851\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/sites/236026851/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12403,13 +12403,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/sites\/236026851\/blaze\/posts(\\?.*)?" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/sites/236026851/blaze/posts(\\?.*)?" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/checkout": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/checkout": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12428,13 +12428,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/checkout" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/checkout" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/credits(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/credits(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12447,8 +12447,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/sites\/236026851\/media(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/sites/236026851/media(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12461,8 +12461,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/sites\/236026851\/media": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/sites/236026851/media": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST" ], @@ -12477,13 +12477,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/sites\/236026851\/media" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/sites/236026851/media" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/wpcom\/media(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/wpcom/media(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12496,8 +12496,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/experiments(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/experiments(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12510,8 +12510,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/campaigns(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/campaigns(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12524,8 +12524,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/campaigns(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/campaigns(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12542,8 +12542,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/sites\/236026851\/campaigns(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/sites/236026851/campaigns(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12556,8 +12556,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/stats(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/stats(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12570,8 +12570,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/stats(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/stats(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12588,8 +12588,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/search(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/search(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12602,8 +12602,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/user(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/user(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12616,8 +12616,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/templates(?P[a-zA-Z0-9-_\\\/:]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/templates(?P[a-zA-Z0-9-_\\/:]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12630,8 +12630,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/subscriptions(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/subscriptions(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12644,8 +12644,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/subscriptions(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/subscriptions(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12662,8 +12662,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/payments(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/payments(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12676,8 +12676,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/payments(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/payments(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12694,8 +12694,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/smart(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/smart(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12708,8 +12708,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/smart(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/smart(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12726,8 +12726,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/locations(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/locations(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12740,8 +12740,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/woo(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/woo(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12754,8 +12754,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/image(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/image(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -12768,8 +12768,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/logs": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/logs": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -12788,13 +12788,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze-app\/sites\/236026851\/wordads\/dsp\/api\/v1\/logs" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze-app/sites/236026851/wordads/dsp/api/v1/logs" } ] } }, - "\/jetpack\/v4\/blaze": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -12805,7 +12805,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze", + "default": "jetpack/v4/blaze", "required": false }, "context": { @@ -12818,13 +12818,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze" } ] } }, - "\/jetpack\/v4\/blaze\/eligibility": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze/eligibility": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -12839,13 +12839,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze\/eligibility" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze/eligibility" } ] } }, - "\/jetpack\/v4\/blaze\/dashboard": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze/dashboard": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -12860,13 +12860,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/blaze\/dashboard" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/blaze/dashboard" } ] } }, - "\/jetpack\/v4\/feature\/custom-content-types": { - "namespace": "jetpack\/v4", + "/jetpack/v4/feature/custom-content-types": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -12881,13 +12881,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/feature\/custom-content-types" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/feature/custom-content-types" } ] } }, - "\/jetpack\/v4\/hints": { - "namespace": "jetpack\/v4", + "/jetpack/v4/hints": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -12912,13 +12912,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/hints" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/hints" } ] } }, - "\/jetpack\/v4\/remote_authorize": { - "namespace": "jetpack\/v4", + "/jetpack/v4/remote_authorize": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -12937,13 +12937,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/remote_authorize" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/remote_authorize" } ] } }, - "\/jetpack\/v4\/remote_provision": { - "namespace": "jetpack\/v4", + "/jetpack/v4/remote_provision": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -12962,13 +12962,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/remote_provision" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/remote_provision" } ] } }, - "\/jetpack\/v4\/remote_register": { - "namespace": "jetpack\/v4", + "/jetpack/v4/remote_register": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -12987,13 +12987,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/remote_register" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/remote_register" } ] } }, - "\/jetpack\/v4\/remote_connect": { - "namespace": "jetpack\/v4", + "/jetpack/v4/remote_connect": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13012,13 +13012,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/remote_connect" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/remote_connect" } ] } }, - "\/jetpack\/v4\/connection\/check": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/check": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -13033,13 +13033,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/check" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/check" } ] } }, - "\/jetpack\/v4\/connection": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection": { + "namespace": "jetpack/v4", "methods": [ "GET", "POST", @@ -13070,13 +13070,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection" } ] } }, - "\/jetpack\/v4\/connection\/user": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/user": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13095,13 +13095,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/user" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/user" } ] } }, - "\/jetpack\/v4\/connection\/data": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/data": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -13116,13 +13116,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/data" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/data" } ] } }, - "\/jetpack\/v4\/connection\/plugins": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/plugins": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -13137,13 +13137,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/plugins" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/plugins" } ] } }, - "\/jetpack\/v4\/connection\/reconnect": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/reconnect": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13162,13 +13162,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/reconnect" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/reconnect" } ] } }, - "\/jetpack\/v4\/connection\/register": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/register": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13183,7 +13183,7 @@ ], "args": { "from": { - "description": "Indicates where the registration action was triggered for tracking\/segmentation purposes", + "description": "Indicates where the registration action was triggered for tracking/segmentation purposes", "type": "string", "required": false }, @@ -13203,13 +13203,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/register" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/register" } ] } }, - "\/jetpack\/v4\/connection\/authorize_url": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/authorize_url": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -13230,13 +13230,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/authorize_url" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/authorize_url" } ] } }, - "\/jetpack\/v4\/user-token": { - "namespace": "jetpack\/v4", + "/jetpack/v4/user-token": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13266,13 +13266,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/user-token" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/user-token" } ] } }, - "\/jetpack\/v4\/connection\/owner": { - "namespace": "jetpack\/v4", + "/jetpack/v4/connection/owner": { + "namespace": "jetpack/v4", "methods": [ "POST", "PUT", @@ -13297,13 +13297,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/jetpack\/v4\/connection\/owner" + "href": "https://jetpack.wpmt.co/wp-json/jetpack/v4/connection/owner" } ] } }, - "\/wp\/v2": { - "namespace": "wp\/v2", + "/wp/v2": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -13314,7 +13314,7 @@ ], "args": { "namespace": { - "default": "wp\/v2", + "default": "wp/v2", "required": false }, "context": { @@ -13327,13 +13327,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2" } ] } }, - "\/wp\/v2\/posts": { - "namespace": "wp\/v2", + "/wp/v2/posts": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -13982,13 +13982,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/posts" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/posts" } ] } }, - "\/wp\/v2\/posts\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/posts/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -14308,8 +14308,8 @@ } ] }, - "\/wp\/v2\/posts\/(?P[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/posts/(?P[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -14406,8 +14406,8 @@ } ] }, - "\/wp\/v2\/posts\/(?P[\\d]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/posts/(?P[\\d]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -14466,8 +14466,8 @@ } ] }, - "\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/posts/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -14745,8 +14745,8 @@ } ] }, - "\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/posts/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -14781,8 +14781,8 @@ } ] }, - "\/wp\/v2\/pages": { - "namespace": "wp\/v2", + "/wp/v2/pages": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -15222,13 +15222,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/pages" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/pages" } ] } }, - "\/wp\/v2\/pages\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/pages/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -15514,8 +15514,8 @@ } ] }, - "\/wp\/v2\/pages\/(?P[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/pages/(?P[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -15612,8 +15612,8 @@ } ] }, - "\/wp\/v2\/pages\/(?P[\\d]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/pages/(?P[\\d]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -15672,8 +15672,8 @@ } ] }, - "\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/pages/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -15912,8 +15912,8 @@ } ] }, - "\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/pages/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -15948,8 +15948,8 @@ } ] }, - "\/wp\/v2\/media": { - "namespace": "wp\/v2", + "/wp/v2/media": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -16339,13 +16339,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/media" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/media" } ] } }, - "\/wp\/v2\/media\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/media/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -16572,8 +16572,8 @@ } ] }, - "\/wp\/v2\/media\/(?P[\\d]+)\/post-process": { - "namespace": "wp\/v2", + "/wp/v2/media/(?P[\\d]+)/post-process": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -16599,8 +16599,8 @@ } ] }, - "\/wp\/v2\/media\/(?P[\\d]+)\/edit": { - "namespace": "wp\/v2", + "/wp/v2/media/(?P[\\d]+)/edit": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -16738,8 +16738,8 @@ } ] }, - "\/wp\/v2\/menu-items": { - "namespace": "wp\/v2", + "/wp/v2/menu-items": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -17153,13 +17153,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/menu-items" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/menu-items" } ] } }, - "\/wp\/v2\/menu-items\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/menu-items/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -17360,8 +17360,8 @@ } ] }, - "\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/menu-items/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -17525,8 +17525,8 @@ } ] }, - "\/wp\/v2\/menu-items\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/menu-items/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -17561,8 +17561,8 @@ } ] }, - "\/wp\/v2\/blocks": { - "namespace": "wp\/v2", + "/wp/v2/blocks": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -17998,13 +17998,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/blocks" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/blocks" } ] } }, - "\/wp\/v2\/blocks\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/blocks/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -18248,8 +18248,8 @@ } ] }, - "\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/blocks/(?P[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -18346,8 +18346,8 @@ } ] }, - "\/wp\/v2\/blocks\/(?P[\\d]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/blocks/(?P[\\d]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -18406,8 +18406,8 @@ } ] }, - "\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/blocks/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -18609,8 +18609,8 @@ } ] }, - "\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/blocks/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -18645,8 +18645,8 @@ } ] }, - "\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/templates/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -18743,8 +18743,8 @@ } ] }, - "\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/templates/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -18803,8 +18803,8 @@ } ] }, - "\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/templates/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -18942,8 +18942,8 @@ } ] }, - "\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/templates/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -18978,8 +18978,8 @@ } ] }, - "\/wp\/v2\/templates": { - "namespace": "wp\/v2", + "/wp/v2/templates": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -19128,13 +19128,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/templates" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/templates" } ] } }, - "\/wp\/v2\/templates\/lookup": { - "namespace": "wp\/v2", + "/wp/v2/templates/lookup": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -19165,13 +19165,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/templates\/lookup" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/templates/lookup" } ] } }, - "\/wp\/v2\/templates\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", + "/wp/v2/templates/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -19332,8 +19332,8 @@ } ] }, - "\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -19430,8 +19430,8 @@ } ] }, - "\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -19490,8 +19490,8 @@ } ] }, - "\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -19634,8 +19634,8 @@ } ] }, - "\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -19670,8 +19670,8 @@ } ] }, - "\/wp\/v2\/template-parts": { - "namespace": "wp\/v2", + "/wp/v2/template-parts": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -19825,13 +19825,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/template-parts" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/template-parts" } ] } }, - "\/wp\/v2\/template-parts\/lookup": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/lookup": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -19862,13 +19862,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/template-parts\/lookup" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/template-parts/lookup" } ] } }, - "\/wp\/v2\/template-parts\/(?P([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", + "/wp/v2/template-parts/(?P([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -20034,8 +20034,8 @@ } ] }, - "\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/global-styles/(?P[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -20084,8 +20084,8 @@ } ] }, - "\/wp\/v2\/global-styles\/(?P[\\d]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/global-styles/(?P[\\d]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -20120,8 +20120,8 @@ } ] }, - "\/wp\/v2\/global-styles\/themes\/(?P[\\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)\/variations": { - "namespace": "wp\/v2", + "/wp/v2/global-styles/themes/(?P[\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)/variations": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -20143,8 +20143,8 @@ } ] }, - "\/wp\/v2\/global-styles\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/global-styles/themes/(?P[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -20166,8 +20166,8 @@ } ] }, - "\/wp\/v2\/global-styles\/(?P[\\\/\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/global-styles/(?P[\\/\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -20247,8 +20247,8 @@ } ] }, - "\/wp\/v2\/navigation": { - "namespace": "wp\/v2", + "/wp/v2/navigation": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -20554,13 +20554,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/navigation" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/navigation" } ] } }, - "\/wp\/v2\/navigation\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/navigation/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -20755,8 +20755,8 @@ } ] }, - "\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/navigation/(?P[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -20853,8 +20853,8 @@ } ] }, - "\/wp\/v2\/navigation\/(?P[\\d]+)\/revisions\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/navigation/(?P[\\d]+)/revisions/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -20913,8 +20913,8 @@ } ] }, - "\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/navigation/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -21072,8 +21072,8 @@ } ] }, - "\/wp\/v2\/navigation\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/navigation/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -21108,8 +21108,8 @@ } ] }, - "\/wp\/v2\/font-families": { - "namespace": "wp\/v2", + "/wp/v2/font-families": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -21231,13 +21231,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/font-families" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/font-families" } ] } }, - "\/wp\/v2\/font-families\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/font-families/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -21316,8 +21316,8 @@ } ] }, - "\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces": { - "namespace": "wp\/v2", + "/wp/v2/font-families/(?P[\\d]+)/font-faces": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -21439,8 +21439,8 @@ } ] }, - "\/wp\/v2\/font-families\/(?P[\\d]+)\/font-faces\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/font-families/(?P[\\d]+)/font-faces/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -21499,8 +21499,8 @@ } ] }, - "\/wp\/v2\/jb_store_css": { - "namespace": "wp\/v2", + "/wp/v2/jb_store_css": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -21802,13 +21802,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/jb_store_css" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/jb_store_css" } ] } }, - "\/wp\/v2\/jb_store_css\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/jb_store_css/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -21999,8 +21999,8 @@ } ] }, - "\/wp\/v2\/jb_store_css\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/jb_store_css/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -22154,8 +22154,8 @@ } ] }, - "\/wp\/v2\/jb_store_css\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/jb_store_css/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -22190,8 +22190,8 @@ } ] }, - "\/wp\/v2\/feedback": { - "namespace": "wp\/v2", + "/wp/v2/feedback": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -22511,13 +22511,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/feedback" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/feedback" } ] } }, - "\/wp\/v2\/feedback\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/feedback/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -22708,8 +22708,8 @@ } ] }, - "\/wp\/v2\/feedback\/filters": { - "namespace": "wp\/v2", + "/wp/v2/feedback/filters": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -22724,13 +22724,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/feedback\/filters" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/feedback/filters" } ] } }, - "\/wp\/v2\/feedback\/integrations": { - "namespace": "wp\/v2", + "/wp/v2/feedback/integrations": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -22751,13 +22751,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/feedback\/integrations" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/feedback/integrations" } ] } }, - "\/wp\/v2\/feedback\/integrations\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/feedback/integrations/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -22787,8 +22787,8 @@ } ] }, - "\/wp\/v2\/feedback\/bulk_actions": { - "namespace": "wp\/v2", + "/wp/v2/feedback/bulk_actions": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -22819,13 +22819,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/feedback\/bulk_actions" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/feedback/bulk_actions" } ] } }, - "\/wp\/v2\/feedback\/trash": { - "namespace": "wp\/v2", + "/wp/v2/feedback/trash": { + "namespace": "wp/v2", "methods": [ "DELETE" ], @@ -22850,13 +22850,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/feedback\/trash" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/feedback/trash" } ] } }, - "\/wp\/v2\/feedback\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/feedback/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -23010,8 +23010,8 @@ } ] }, - "\/wp\/v2\/feedback\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/feedback/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -23046,8 +23046,8 @@ } ] }, - "\/wp\/v2\/jp_pay_order": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_order": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -23324,13 +23324,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/jp_pay_order" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/jp_pay_order" } ] } }, - "\/wp\/v2\/jp_pay_order\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_order/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -23501,8 +23501,8 @@ } ] }, - "\/wp\/v2\/jp_pay_product": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_product": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -23875,13 +23875,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/jp_pay_product" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/jp_pay_product" } ] } }, - "\/wp\/v2\/jp_pay_product\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_product/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -24125,8 +24125,8 @@ } ] }, - "\/wp\/v2\/jp_pay_product\/(?P[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_product/(?P[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -24333,8 +24333,8 @@ } ] }, - "\/wp\/v2\/jp_pay_product\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/jp_pay_product/(?P[\\d]+)/autosaves/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24369,8 +24369,8 @@ } ] }, - "\/wp\/v2\/types": { - "namespace": "wp\/v2", + "/wp/v2/types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24397,13 +24397,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/types" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/types" } ] } }, - "\/wp\/v2\/types\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/types/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24433,8 +24433,8 @@ } ] }, - "\/wp\/v2\/statuses": { - "namespace": "wp\/v2", + "/wp/v2/statuses": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24461,13 +24461,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/statuses" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/statuses" } ] } }, - "\/wp\/v2\/statuses\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/statuses/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24497,8 +24497,8 @@ } ] }, - "\/wp\/v2\/taxonomies": { - "namespace": "wp\/v2", + "/wp/v2/taxonomies": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24530,13 +24530,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/taxonomies" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/taxonomies" } ] } }, - "\/wp\/v2\/taxonomies\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/taxonomies/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -24566,8 +24566,8 @@ } ] }, - "\/wp\/v2\/categories": { - "namespace": "wp\/v2", + "/wp/v2/categories": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -24723,13 +24723,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/categories" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/categories" } ] } }, - "\/wp\/v2\/categories\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/categories/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -24830,8 +24830,8 @@ } ] }, - "\/wp\/v2\/tags": { - "namespace": "wp\/v2", + "/wp/v2/tags": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -24982,13 +24982,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/tags" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/tags" } ] } }, - "\/wp\/v2\/tags\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/tags/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -25084,8 +25084,8 @@ } ] }, - "\/wp\/v2\/menus": { - "namespace": "wp\/v2", + "/wp/v2/menus": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -25249,13 +25249,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/menus" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/menus" } ] } }, - "\/wp\/v2\/menus\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/menus/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -25364,8 +25364,8 @@ } ] }, - "\/wp\/v2\/wp_pattern_category": { - "namespace": "wp\/v2", + "/wp/v2/wp_pattern_category": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -25516,13 +25516,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/wp_pattern_category" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/wp_pattern_category" } ] } }, - "\/wp\/v2\/wp_pattern_category\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/wp_pattern_category/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -25618,8 +25618,8 @@ } ] }, - "\/wp\/v2\/users": { - "namespace": "wp\/v2", + "/wp/v2/users": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -25906,13 +25906,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/users" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/users" } ] } }, - "\/wp\/v2\/users\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/users/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -26093,8 +26093,8 @@ } ] }, - "\/wp\/v2\/users\/me": { - "namespace": "wp\/v2", + "/wp/v2/users/me": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -26253,13 +26253,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/users\/me" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/users/me" } ] } }, - "\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords": { - "namespace": "wp\/v2", + "/wp/v2/users/(?P(?:[\\d]+|me))/application-passwords": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -26312,8 +26312,8 @@ } ] }, - "\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/introspect": { - "namespace": "wp\/v2", + "/wp/v2/users/(?P(?:[\\d]+|me))/application-passwords/introspect": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -26338,8 +26338,8 @@ } ] }, - "\/wp\/v2\/users\/(?P(?:[\\d]+|me))\/application-passwords\/(?P[\\w\\-]+)": { - "namespace": "wp\/v2", + "/wp/v2/users/(?P(?:[\\d]+|me))/application-passwords/(?P[\\w\\-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -26396,8 +26396,8 @@ } ] }, - "\/wp\/v2\/comments": { - "namespace": "wp\/v2", + "/wp/v2/comments": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -26671,13 +26671,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/comments" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/comments" } ] } }, - "\/wp\/v2\/comments\/(?P[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/comments/(?P[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -26843,8 +26843,8 @@ } ] }, - "\/wp\/v2\/search": { - "namespace": "wp\/v2", + "/wp/v2/search": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -26935,13 +26935,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/search" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/search" } ] } }, - "\/wp\/v2\/block-renderer\/(?P[a-z0-9-]+\/[a-z0-9-]+)": { - "namespace": "wp\/v2", + "/wp/v2/block-renderer/(?P[a-z0-9-]+/[a-z0-9-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -26982,8 +26982,8 @@ } ] }, - "\/wp\/v2\/block-types": { - "namespace": "wp\/v2", + "/wp/v2/block-types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27015,13 +27015,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/block-types" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/block-types" } ] } }, - "\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/block-types/(?P[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27051,8 +27051,8 @@ } ] }, - "\/wp\/v2\/block-types\/(?P[a-zA-Z0-9_-]+)\/(?P[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/block-types/(?P[a-zA-Z0-9_-]+)/(?P[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27087,8 +27087,8 @@ } ] }, - "\/wp\/v2\/settings": { - "namespace": "wp\/v2", + "/wp/v2/settings": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -27358,13 +27358,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/settings" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/settings" } ] } }, - "\/wp\/v2\/themes": { - "namespace": "wp\/v2", + "/wp/v2/themes": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27392,13 +27392,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/themes" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/themes" } ] } }, - "\/wp\/v2\/themes\/(?P[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/themes/(?P[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27417,8 +27417,8 @@ } ] }, - "\/wp\/v2\/plugins": { - "namespace": "wp\/v2", + "/wp/v2/plugins": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -27486,13 +27486,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/plugins" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/plugins" } ] } }, - "\/wp\/v2\/plugins\/(?P[^.\\\/]+(?:\\\/[^.\\\/]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/plugins/(?P[^.\\/]+(?:\\/[^.\\/]+)?)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -27519,7 +27519,7 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } @@ -27544,7 +27544,7 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false }, "status": { @@ -27576,15 +27576,15 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } } ] }, - "\/wp\/v2\/sidebars": { - "namespace": "wp\/v2", + "/wp/v2/sidebars": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27611,13 +27611,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/sidebars" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/sidebars" } ] } }, - "\/wp\/v2\/sidebars\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sidebars/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -27670,8 +27670,8 @@ } ] }, - "\/wp\/v2\/widget-types": { - "namespace": "wp\/v2", + "/wp/v2/widget-types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27698,13 +27698,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/widget-types" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/widget-types" } ] } }, - "\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -27734,8 +27734,8 @@ } ] }, - "\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/encode": { - "namespace": "wp\/v2", + "/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)/encode": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -27764,8 +27764,8 @@ } ] }, - "\/wp\/v2\/widget-types\/(?P[a-zA-Z0-9_-]+)\/render": { - "namespace": "wp\/v2", + "/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)/render": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -27789,8 +27789,8 @@ } ] }, - "\/wp\/v2\/widgets": { - "namespace": "wp\/v2", + "/wp/v2/widgets": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -27885,13 +27885,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/widgets" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/widgets" } ] } }, - "\/wp\/v2\/widgets\/(?P[\\w\\-]+)": { - "namespace": "wp\/v2", + "/wp/v2/widgets/(?P[\\w\\-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -27998,8 +27998,8 @@ } ] }, - "\/wp\/v2\/block-directory\/search": { - "namespace": "wp\/v2", + "/wp/v2/block-directory/search": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28045,13 +28045,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/block-directory\/search" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/block-directory/search" } ] } }, - "\/wp\/v2\/pattern-directory\/patterns": { - "namespace": "wp\/v2", + "/wp/v2/pattern-directory/patterns": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28150,13 +28150,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/pattern-directory\/patterns" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/pattern-directory/patterns" } ] } }, - "\/wp\/v2\/block-patterns\/patterns": { - "namespace": "wp\/v2", + "/wp/v2/block-patterns/patterns": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28171,13 +28171,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/block-patterns\/patterns" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/block-patterns/patterns" } ] } }, - "\/wp\/v2\/block-patterns\/categories": { - "namespace": "wp\/v2", + "/wp/v2/block-patterns/categories": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28192,13 +28192,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/block-patterns\/categories" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/block-patterns/categories" } ] } }, - "\/wp-site-health\/v1": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28209,7 +28209,7 @@ ], "args": { "namespace": { - "default": "wp-site-health\/v1", + "default": "wp-site-health/v1", "required": false }, "context": { @@ -28222,13 +28222,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1" } ] } }, - "\/wp-site-health\/v1\/tests\/background-updates": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/background-updates": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28243,13 +28243,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/background-updates" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/background-updates" } ] } }, - "\/wp-site-health\/v1\/tests\/loopback-requests": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/loopback-requests": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28264,13 +28264,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/loopback-requests" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/loopback-requests" } ] } }, - "\/wp-site-health\/v1\/tests\/https-status": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/https-status": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28285,13 +28285,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/https-status" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/https-status" } ] } }, - "\/wp-site-health\/v1\/tests\/dotorg-communication": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/dotorg-communication": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28306,13 +28306,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/dotorg-communication" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/dotorg-communication" } ] } }, - "\/wp-site-health\/v1\/tests\/authorization-header": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/authorization-header": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28327,13 +28327,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/authorization-header" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/authorization-header" } ] } }, - "\/wp-site-health\/v1\/directory-sizes": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/directory-sizes": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28348,13 +28348,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/directory-sizes" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/directory-sizes" } ] } }, - "\/wp-site-health\/v1\/tests\/page-cache": { - "namespace": "wp-site-health\/v1", + "/wp-site-health/v1/tests/page-cache": { + "namespace": "wp-site-health/v1", "methods": [ "GET" ], @@ -28369,13 +28369,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-site-health\/v1\/tests\/page-cache" + "href": "https://jetpack.wpmt.co/wp-json/wp-site-health/v1/tests/page-cache" } ] } }, - "\/wp-block-editor\/v1\/url-details": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/url-details": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -28397,13 +28397,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-block-editor\/v1\/url-details" + "href": "https://jetpack.wpmt.co/wp-json/wp-block-editor/v1/url-details" } ] } }, - "\/wp\/v2\/menu-locations": { - "namespace": "wp\/v2", + "/wp/v2/menu-locations": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28430,13 +28430,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/menu-locations" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/menu-locations" } ] } }, - "\/wp\/v2\/menu-locations\/(?P[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/menu-locations/(?P[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28466,8 +28466,8 @@ } ] }, - "\/wp-block-editor\/v1\/navigation-fallback": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/navigation-fallback": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -28482,13 +28482,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp-block-editor\/v1\/navigation-fallback" + "href": "https://jetpack.wpmt.co/wp-json/wp-block-editor/v1/navigation-fallback" } ] } }, - "\/wp\/v2\/font-collections": { - "namespace": "wp\/v2", + "/wp/v2/font-collections": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28530,13 +28530,13 @@ "_links": { "self": [ { - "href": "https:\/\/jetpack.wpmt.co\/wp-json\/wp\/v2\/font-collections" + "href": "https://jetpack.wpmt.co/wp-json/wp/v2/font-collections" } ] } }, - "\/wp\/v2\/font-collections\/(?P[\\\/\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/font-collections/(?P[\\/\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -28568,7 +28568,7 @@ "_links": { "help": [ { - "href": "https:\/\/developer.wordpress.org\/rest-api\/" + "href": "https://developer.wordpress.org/rest-api/" } ] } diff --git a/test-data/api-details/test-case-04.json b/test-data/api-details/test-case-04.json index 3d9d38215..4655cc966 100644 --- a/test-data/api-details/test-case-04.json +++ b/test-data/api-details/test-case-04.json @@ -1,36 +1,36 @@ { "name": "Mobile.blog", "description": "Mobile development at Automattic", - "url": "http:\/\/mobiledotblog.wordpress.com", - "home": "https:\/\/mobile.blog", + "url": "http://mobiledotblog.wordpress.com", + "home": "https://mobile.blog", "gmt_offset": 0, "timezone_string": "", "page_for_posts": 0, "page_on_front": 0, "show_on_front": "posts", "namespaces": [ - "oembed\/1.0", - "jetpack\/v4", - "wp\/v2", - "crowdsignal-forms\/v1", - "wpcom\/v2", - "wpcom\/v3", - "wpcom\/v2\/happytools\/internal\/v1", - "wpcom\/v2\/happytools\/external\/v1", - "wpcom\/v2\/happytools", - "wpcom\/v2\/sites", - "wpcom-origin\/jetpack\/v4", - "wp-block-editor\/v1", - "newspack-blocks\/v1", - "akismet\/v1", - "jetpack\/v4\/blaze-app", - "jetpack\/v4\/blaze", - "wpcom\/v2\/mailpoet-bridge\/v2\/internal", - "wpcom\/v2\/mailpoet-bridge\/v2" + "oembed/1.0", + "jetpack/v4", + "wp/v2", + "crowdsignal-forms/v1", + "wpcom/v2", + "wpcom/v3", + "wpcom/v2/happytools/internal/v1", + "wpcom/v2/happytools/external/v1", + "wpcom/v2/happytools", + "wpcom/v2/sites", + "wpcom-origin/jetpack/v4", + "wp-block-editor/v1", + "newspack-blocks/v1", + "akismet/v1", + "jetpack/v4/blaze-app", + "jetpack/v4/blaze", + "wpcom/v2/mailpoet-bridge/v2/internal", + "wpcom/v2/mailpoet-bridge/v2" ], "authentication": [], "routes": { - "\/sites\/mobile.blog": { + "/sites/mobile.blog": { "namespace": "", "methods": [ "GET" @@ -49,7 +49,7 @@ } ] }, - "\/batch\/v1": { + "/batch/v1": { "namespace": "", "methods": [ "POST" @@ -117,13 +117,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/batch\/v1" + "href": "https://mobile.blog/batch/v1" } ] } }, - "\/oembed\/1.0": { - "namespace": "oembed\/1.0", + "/oembed/1.0": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -134,7 +134,7 @@ ], "args": { "namespace": { - "default": "oembed\/1.0", + "default": "oembed/1.0", "required": false }, "context": { @@ -147,13 +147,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/oembed\/1.0" + "href": "https://mobile.blog/oembed/1.0" } ] } }, - "\/oembed\/1.0\/sites\/mobile.blog": { - "namespace": "oembed\/1.0", + "/oembed/1.0/sites/mobile.blog": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -164,7 +164,7 @@ ], "args": { "namespace": { - "default": "oembed\/1.0", + "default": "oembed/1.0", "required": false }, "context": { @@ -175,8 +175,8 @@ } ] }, - "\/oembed\/1.0\/sites\/mobile.blog\/proxy": { - "namespace": "oembed\/1.0", + "/oembed/1.0/sites/mobile.blog/proxy": { + "namespace": "oembed/1.0", "methods": [ "GET" ], @@ -223,8 +223,8 @@ } ] }, - "\/jetpack\/v4": { - "namespace": "jetpack\/v4", + "/jetpack/v4": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -235,7 +235,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4", + "default": "jetpack/v4", "required": false }, "context": { @@ -248,13 +248,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/jetpack\/v4" + "href": "https://mobile.blog/jetpack/v4" } ] } }, - "\/jetpack\/v4\/sites\/mobile.blog": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -265,7 +265,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4", + "default": "jetpack/v4", "required": false }, "context": { @@ -276,8 +276,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/backup-helper-script": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/backup-helper-script": { + "namespace": "jetpack/v4", "methods": [ "POST", "DELETE" @@ -309,8 +309,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/database-object\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/database-object/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -333,8 +333,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/options\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/options/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -352,8 +352,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/comments\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/comments/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -366,8 +366,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/posts\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/posts/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -380,8 +380,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/terms\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/terms/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -394,8 +394,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/users\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/users/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -408,8 +408,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/site\/backup\/undo-event": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/site/backup/undo-event": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -422,8 +422,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/orders\/(?P\\d+)\/backup": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/orders/(?P\\d+)/backup": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -436,8 +436,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/site\/backup\/preflight": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/site/backup/preflight": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -450,8 +450,8 @@ } ] }, - "\/wp\/v2": { - "namespace": "wp\/v2", + "/wp/v2": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -462,7 +462,7 @@ ], "args": { "namespace": { - "default": "wp\/v2", + "default": "wp/v2", "required": false }, "context": { @@ -475,13 +475,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wp\/v2" + "href": "https://mobile.blog/wp/v2" } ] } }, - "\/wp\/v2\/sites\/mobile.blog": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -492,7 +492,7 @@ ], "args": { "namespace": { - "default": "wp\/v2", + "default": "wp/v2", "required": false }, "context": { @@ -503,8 +503,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/akismet\/v1\/webhook": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/akismet/v1/webhook": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -517,8 +517,8 @@ } ] }, - "\/crowdsignal-forms\/v1": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -529,7 +529,7 @@ ], "args": { "namespace": { - "default": "crowdsignal-forms\/v1", + "default": "crowdsignal-forms/v1", "required": false }, "context": { @@ -542,13 +542,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/crowdsignal-forms\/v1" + "href": "https://mobile.blog/crowdsignal-forms/v1" } ] } }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -559,7 +559,7 @@ ], "args": { "namespace": { - "default": "crowdsignal-forms\/v1", + "default": "crowdsignal-forms/v1", "required": false }, "context": { @@ -570,8 +570,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/account\/info": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/account/info": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -584,8 +584,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/account\/connected": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/account/connected": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -598,8 +598,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/nps": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/nps": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST" ], @@ -612,8 +612,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/nps\/(?P\\d+)": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/nps/(?P\\d+)": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -634,8 +634,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/nps\/(?P\\d+)\/response": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/nps/(?P\\d+)/response": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -656,8 +656,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET", "POST" @@ -677,8 +677,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls\/(?P[a-zA-Z0-9\\-\\_]+)": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls/(?P[a-zA-Z0-9\\-\\_]+)": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -695,8 +695,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls\/(?P[a-zA-Z0-9\\-\\_]+)\/results": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls/(?P[a-zA-Z0-9\\-\\_]+)/results": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -709,8 +709,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/post-polls\/(?P\\d+)\/(?P[a-zA-Z0-9\\-\\_]+)": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/post-polls/(?P\\d+)/(?P[a-zA-Z0-9\\-\\_]+)": { + "namespace": "crowdsignal-forms/v1", "methods": [ "GET" ], @@ -723,8 +723,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls\/(?P\\d+)": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls/(?P\\d+)": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -745,8 +745,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls\/(?P\\d+)\/archive": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls/(?P\\d+)/archive": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -763,8 +763,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/polls\/(?P\\d+)\/unarchive": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/polls/(?P\\d+)/unarchive": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -781,8 +781,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/feedback": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/feedback": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST" ], @@ -795,8 +795,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/feedback\/(?P\\d+)": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/feedback/(?P\\d+)": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -817,8 +817,8 @@ } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobile.blog\/feedback\/(?P\\d+)\/response": { - "namespace": "crowdsignal-forms\/v1", + "/crowdsignal-forms/v1/sites/mobile.blog/feedback/(?P\\d+)/response": { + "namespace": "crowdsignal-forms/v1", "methods": [ "POST", "PUT", @@ -839,8 +839,8 @@ } ] }, - "\/wpcom\/v2": { - "namespace": "wpcom\/v2", + "/wpcom/v2": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -851,7 +851,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2", + "default": "wpcom/v2", "required": false }, "context": { @@ -864,13 +864,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom\/v2" + "href": "https://mobile.blog/wpcom/v2" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -881,7 +881,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2", + "default": "wpcom/v2", "required": false }, "context": { @@ -892,8 +892,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-start-webhooks\/stripe": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-start-webhooks/stripe": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -908,13 +908,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-start-webhooks\/stripe" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-start-webhooks/stripe" } ] } }, - "\/wpcom\/v2\/telegram-bot\/webhook(?:\/(?P[a-z]+))?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/telegram-bot/webhook(?:/(?P[a-z]+))?": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -933,8 +933,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/license": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/license": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -987,13 +987,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/license" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P[a-zA-Z0-9_-]+)\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/license/(?P[a-zA-Z0-9_-]+)/download": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1006,8 +1006,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P[a-zA-Z0-9_-]+)\/children": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/license/(?P[a-zA-Z0-9_-]+)/children": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1024,8 +1024,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P[a-zA-Z0-9_-]+)\/site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/license/(?P[a-zA-Z0-9_-]+)/site": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -1057,8 +1057,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/jetpack-crm\/license": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/jetpack-crm/license": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1077,13 +1077,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/jetpack-crm\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/jetpack-crm/license" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/product-families": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/product-families": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1098,13 +1098,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/product-families" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/product-families" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/product-families": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/partner/product-families": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1119,13 +1119,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/partner\/product-families" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/partner/product-families" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/public\/manage-pricing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/public/manage-pricing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1140,13 +1140,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/public\/manage-pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/public/manage-pricing" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/partner": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/partner": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -1287,13 +1287,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/partner" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/partner" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/dev-licenses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/dev-licenses": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1308,13 +1308,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/dev-licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/dev-licenses" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/licenses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/licenses": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -1374,13 +1374,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/licenses" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/licenses\/counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/licenses/counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1395,13 +1395,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/licenses\/counts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/licenses/counts" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/licenses\/billing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/licenses/billing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1416,13 +1416,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/licenses\/billing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/licenses/billing" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/site-connection": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/site-connection": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -1444,13 +1444,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/site-connection" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/site-connection" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/invoices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/partner/invoices": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1484,13 +1484,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/partner\/invoices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/partner/invoices" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/invoice\/(?P[a-zA-Z0-9_-]+)\/payment": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/partner/invoice/(?P[a-zA-Z0-9_-]+)/payment": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -1508,8 +1508,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/stripe\/payment-method": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/stripe/payment-method": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -1560,13 +1560,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/stripe\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/stripe/payment-method" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/stripe\/payment-methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/stripe/payment-methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1592,13 +1592,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/stripe\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/stripe/payment-methods" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/licenses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/user/licenses": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1613,13 +1613,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/user\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/user/licenses" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/licenses\/counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/user/licenses/counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1634,13 +1634,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-licensing\/user\/licenses\/counts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-licensing/user/licenses/counts" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/order\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/user/order/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1657,8 +1657,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/user\/receipt\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/user/receipt/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1675,8 +1675,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/user\/subscription\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/user/subscription/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1693,8 +1693,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-licensing\/vendasta\/provision-or-deprovision\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-licensing/vendasta/provision-or-deprovision/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -1713,8 +1713,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/coupon": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partner/coupon/v1/coupon": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -1758,13 +1758,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partner\/coupon\/v1\/coupon" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partner/coupon/v1/coupon" } ] } }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/coupons": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partner/coupon/v1/coupons": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -1803,13 +1803,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partner\/coupon\/v1\/coupons" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partner/coupon/v1/coupons" } ] } }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/presets": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partner/coupon/v1/presets": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1824,13 +1824,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partner\/coupon\/v1\/presets" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partner/coupon/v1/presets" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partner\/coupon\/v1\/site\/coupon": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-partner/coupon/v1/site/coupon": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1848,8 +1848,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-agency\/sites": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/sites": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -1901,13 +1901,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/sites" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/favorite": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/sites/favorite": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -1945,13 +1945,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/sites\/favorite" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/sites/favorite" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/boost-scores": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/sites/boost-scores": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -1971,13 +1971,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/sites\/boost-scores" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/sites/boost-scores" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/plugins\/install": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/sites/plugins/install": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2004,13 +2004,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/sites\/plugins\/install" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/sites/plugins/install" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/contacts": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -2061,13 +2061,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/contacts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/contacts" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts\/verify": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/contacts/verify": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2099,13 +2099,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/contacts\/verify" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/contacts/verify" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts\/resend-verification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/contacts/resend-verification": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2133,13 +2133,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/contacts\/resend-verification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/contacts/resend-verification" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/provisioning-sites": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-agency/provisioning-sites": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2154,13 +2154,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-agency\/provisioning-sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-agency/provisioning-sites" } ] } }, - "\/wpcom\/v2\/jetpack-manage\/site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-manage/site": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2181,13 +2181,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-manage\/site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-manage/site" } ] } }, - "\/wpcom\/v2\/jetpack-manage\/user-feedback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-manage/user-feedback": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2215,13 +2215,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-manage\/user-feedback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-manage/user-feedback" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/profile": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/profile": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -2301,8 +2301,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/profile\/application": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/profile/application": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -2340,8 +2340,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/profile\/logo": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/profile/logo": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2359,8 +2359,8 @@ } ] }, - "\/wpcom\/v2\/agency": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -2476,13 +2476,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency" } ] } }, - "\/wpcom\/v2\/agency\/blog\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/blog/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2500,8 +2500,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -2551,8 +2551,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/transfer-ownership": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/transfer-ownership": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -2578,8 +2578,8 @@ } ] }, - "\/wpcom\/v2\/agency\/validate\/(?P[a-zA-Z0-9_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/validate/(?P[a-zA-Z0-9_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2601,8 +2601,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/schedule-call-link": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/schedule-call-link": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2620,8 +2620,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/clients": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/clients": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -2655,8 +2655,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/clients\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/clients/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "PUT", @@ -2714,8 +2714,8 @@ } ] }, - "\/wpcom\/v2\/agency\/help\/zendesk\/create-ticket": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/help/zendesk/create-ticket": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2754,13 +2754,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/help\/zendesk\/create-ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/help/zendesk/create-ticket" } ] } }, - "\/wpcom\/v2\/agency\/help\/pressable\/support": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/help/pressable/support": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2800,13 +2800,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/help\/pressable\/support" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/help/pressable/support" } ] } }, - "\/wpcom\/v2\/agency\/embeds\/tipalti": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/embeds/tipalti": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2826,13 +2826,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/embeds\/tipalti" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/embeds/tipalti" } ] } }, - "\/wpcom\/v2\/agency\/hire-an-expert": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/hire-an-expert": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2888,13 +2888,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/hire-an-expert" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/hire-an-expert" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+(-[a-zA-Z]+-\\d+)?)\/pressable\/mrr": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+(-[a-zA-Z]+-\\d+)?)/pressable/mrr": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -2912,8 +2912,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+(-[a-zA-Z]+-\\d+)?)\/pressable\/event": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+(-[a-zA-Z]+-\\d+)?)/pressable/event": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2931,8 +2931,8 @@ } ] }, - "\/wpcom\/v2\/agency\/pressable\/new-account": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/pressable/new-account": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2960,13 +2960,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/pressable\/new-account" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/pressable/new-account" } ] } }, - "\/wpcom\/v2\/agency\/hubspot\/webhook": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/hubspot/webhook": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -2981,13 +2981,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/hubspot\/webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/hubspot/webhook" } ] } }, - "\/wpcom\/v2\/agency\/license": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/license": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -3006,13 +3006,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/license" } ] } }, - "\/wpcom\/v2\/agency\/license\/dev-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/license/dev-site": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -3031,13 +3031,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/license\/dev-site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/license/dev-site" } ] } }, - "\/wpcom\/v2\/agency\/partner-directory": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/partner-directory": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -3057,13 +3057,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/partner-directory" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/partner-directory" } ] } }, - "\/wpcom\/v2\/agency\/partner-directory\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/partner-directory/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -3081,8 +3081,8 @@ } ] }, - "\/wpcom\/v2\/agency\/partner-directory\/form-submission": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/partner-directory/form-submission": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -3134,13 +3134,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/partner-directory\/form-submission" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/partner-directory/form-submission" } ] } }, - "\/wpcom\/v2\/agency\/pressable\/premium-plan-referral": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/pressable/premium-plan-referral": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -3212,13 +3212,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/pressable\/premium-plan-referral" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/pressable/premium-plan-referral" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/referrals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/referrals": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -3278,8 +3278,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/referrals\/invoices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/referrals/invoices": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -3297,8 +3297,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/referrals\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/referrals/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -3336,8 +3336,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/referrals\/(?P\\d+)\/archive": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/referrals/(?P\\d+)/archive": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -3363,8 +3363,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/referrals\/(?P\\d+)\/resend": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/referrals/(?P\\d+)/resend": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -3390,8 +3390,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/reports": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/reports": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -3513,8 +3513,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/reports\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/reports/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -3552,8 +3552,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/reports\/(?P\\d+)\/send": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/reports/(?P\\d+)/send": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -3580,8 +3580,8 @@ } ] }, - "\/wpcom\/v2\/agency\/signup": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/signup": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -3713,13 +3713,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/signup" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/signup" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/monitor": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/monitor": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -3745,8 +3745,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/notes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/notes": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -3788,8 +3788,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/notes\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/notes/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "PUT", "DELETE" @@ -3839,8 +3839,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/tags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/tags": { + "namespace": "wpcom/v2", "methods": [ "GET", "PUT" @@ -3885,8 +3885,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/tags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/tags": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -3918,8 +3918,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/pending": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/pending": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -3938,8 +3938,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/provision-dev-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/provision-dev-site": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -3978,8 +3978,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -4002,7 +4002,7 @@ "properties": { "tags": { "type": "array", - "description": "Filter sites by tags. Use `tags_relation` to control matching logic (AND\/OR).", + "description": "Filter sites by tags. Use `tags_relation` to control matching logic (AND/OR).", "items": { "type": "string" }, @@ -4063,8 +4063,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "PUT", "DELETE" @@ -4106,8 +4106,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/provision": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/provision": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -4151,8 +4151,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/validate-site-address": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/validate-site-address": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -4176,8 +4176,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/sites\/(?P\\d+)\/delete-dev-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/sites/(?P\\d+)/delete-dev-site": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -4201,8 +4201,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/tipalti": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/tipalti": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4220,8 +4220,8 @@ } ] }, - "\/wpcom\/v2\/agency\/user-feedback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/user-feedback": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -4249,13 +4249,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/user-feedback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/user-feedback" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/user-invites": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/user-invites": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -4293,8 +4293,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/user-invites\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/user-invites/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -4352,8 +4352,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/user-invites\/(?P\\d+)\/resend": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/user-invites/(?P\\d+)/resend": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -4375,8 +4375,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/users": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/users": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4394,8 +4394,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/users\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/users/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -4417,8 +4417,8 @@ } ] }, - "\/wpcom\/v2\/agency\/vip\/partner-opportunity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/vip/partner-opportunity": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -4498,13 +4498,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency\/vip\/partner-opportunity" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency/vip/partner-opportunity" } ] } }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/woocommerce\/woopayments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/woocommerce/woopayments": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4522,8 +4522,8 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P\\d+)\/woocommerce\/woopayments\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency/(?P\\d+)/woocommerce/woopayments/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4554,8 +4554,8 @@ } ] }, - "\/wpcom\/v2\/agency-client\/license": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/license": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -4574,13 +4574,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/license" } ] } }, - "\/wpcom\/v2\/agency-client\/public\/pricing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/public/pricing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4595,13 +4595,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/public\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/public/pricing" } ] } }, - "\/wpcom\/v2\/agency-client\/referrals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/referrals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4616,13 +4616,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/referrals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/referrals" } ] } }, - "\/wpcom\/v2\/agency-client\/agency\/(?P\\d+)\/referrals\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/agency/(?P\\d+)/referrals/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -4668,8 +4668,8 @@ } ] }, - "\/wpcom\/v2\/agency-client\/stripe\/payment-method": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/stripe/payment-method": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -4720,13 +4720,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/stripe\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/stripe/payment-method" } ] } }, - "\/wpcom\/v2\/agency-client\/stripe\/payment-methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/stripe/payment-methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4752,13 +4752,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/stripe\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/stripe/payment-methods" } ] } }, - "\/wpcom\/v2\/agency-client\/stripe\/invoices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/agency-client/stripe/invoices": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4796,13 +4796,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/agency-client\/stripe\/invoices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/agency-client/stripe/invoices" } ] } }, - "\/wpcom\/v2\/host-partners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4817,13 +4817,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners" } ] } }, - "\/wpcom\/v2\/host-partners\/payment-methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/payment-methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4838,13 +4838,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/payment-methods" } ] } }, - "\/wpcom\/v2\/host-partners\/payment-method": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/payment-method": { + "namespace": "wpcom/v2", "methods": [ "DELETE", "POST" @@ -4890,13 +4890,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/payment-method" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/stripe\/configuration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/stripe/configuration": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4911,13 +4911,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/stripe\/configuration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/stripe/configuration" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/stripe\/setup-intent": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/stripe/setup-intent": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -4932,13 +4932,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/stripe\/setup-intent" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/stripe/setup-intent" } ] } }, - "\/wpcom\/v2\/host-partners\/jetpack\/licenses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/jetpack/licenses": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5014,13 +5014,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/jetpack\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/jetpack/licenses" } ] } }, - "\/wpcom\/v2\/host-partners\/jetpack\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/jetpack/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -5038,8 +5038,8 @@ } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -5165,13 +5165,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -5189,8 +5189,8 @@ } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/pricing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/pricing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5238,13 +5238,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/pricing" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/pricing\/simple": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/pricing/simple": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5259,13 +5259,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/pricing\/simple" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/pricing/simple" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/news": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/news": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5280,13 +5280,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/news" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/news" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/inventory": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/inventory": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5338,13 +5338,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/inventory" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/inventory" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/usage": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/usage": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5369,13 +5369,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/usage" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/usage" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/billing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5390,13 +5390,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/billing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/billing" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/billing/invoices": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5417,13 +5417,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/billing\/invoices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/billing/invoices" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices\/(?P\\d+)\/usage-report": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/billing/invoices/(?P\\d+)/usage-report": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5441,8 +5441,8 @@ } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices\/(?P[a-zA-Z0-9_-]+)\/payment": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/billing/invoices/(?P[a-zA-Z0-9_-]+)/payment": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -5460,8 +5460,8 @@ } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/api-access": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/api-access": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -5494,13 +5494,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/api-access" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/api-access" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/onboarding": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/onboarding": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -5527,13 +5527,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/onboarding" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/onboarding" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/support": { - "namespace": "wpcom\/v2", + "/wpcom/v2/host-partners/wpcloud/support": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -5573,13 +5573,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/host-partners\/wpcloud\/support" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/host-partners/wpcloud/support" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5620,13 +5620,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/contact-identifiers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/contact-identifiers" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5652,8 +5652,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers\/(?P[\\d]+)\/contact-points": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers/(?P[\\d]+)/contact-points": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5679,8 +5679,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers\/(?P[\\d]+)\/relationships\/contact-points": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers/(?P[\\d]+)/relationships/contact-points": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5699,8 +5699,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers\/(?P[\\d]+)\/source-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers/(?P[\\d]+)/source-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5726,8 +5726,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-identifiers\/(?P[\\d]+)\/relationships\/source-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-identifiers/(?P[\\d]+)/relationships/source-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5746,8 +5746,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-points": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5788,13 +5788,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/contact-points" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/contact-points" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/contact-points\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5820,8 +5820,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-points\/(?P[\\d]+)\/party": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points/(?P[\\d]+)/party": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5847,8 +5847,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-points\/(?P[\\d]+)\/relationships\/party": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points/(?P[\\d]+)/relationships/party": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5867,8 +5867,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-points\/(?P[\\d]+)\/identifier": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points/(?P[\\d]+)/identifier": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5894,8 +5894,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/contact-points\/(?P[\\d]+)\/relationships\/identifier": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/contact-points/(?P[\\d]+)/relationships/identifier": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -5914,8 +5914,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6034,13 +6034,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/parties" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/parties" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/parties\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/parties/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6066,8 +6066,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/parties\/(?P[\\d]+)\/contact-points": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/parties/(?P[\\d]+)/contact-points": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6093,8 +6093,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/parties\/(?P[\\d]+)\/relationships\/contact-points": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/parties/(?P[\\d]+)/relationships/contact-points": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6113,8 +6113,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6132,8 +6132,8 @@ "type": "array", "items": { "type": "string", - "description": "The ID of the source conversation in the format service_id\/instance_id\/record_type\/record_id.", - "pattern": "(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)" + "description": "The ID of the source conversation in the format service_id/instance_id/record_type/record_id.", + "pattern": "(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)" }, "minItems": 1, "maxItems": 100, @@ -6156,13 +6156,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/source-conversations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/source-conversations" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6203,8 +6203,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6245,8 +6245,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6280,8 +6280,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/messages": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/messages": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6322,8 +6322,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-conversations\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/messages": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-conversations/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/messages": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6357,8 +6357,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6376,8 +6376,8 @@ "type": "array", "items": { "type": "string", - "description": "The ID of the source deal in the format service_id\/instance_id\/record_type\/record_id.", - "pattern": "(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)" + "description": "The ID of the source deal in the format service_id/instance_id/record_type/record_id.", + "pattern": "(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)" }, "minItems": 1, "maxItems": 100, @@ -6400,13 +6400,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/source-deals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/source-deals" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6447,8 +6447,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6489,8 +6489,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6524,8 +6524,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/record-owners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/record-owners": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6587,8 +6587,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/record-owners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/record-owners": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6643,8 +6643,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/involved-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/involved-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6706,8 +6706,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-deals\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/involved-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-deals/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/involved-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6762,8 +6762,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6781,8 +6781,8 @@ "type": "array", "items": { "type": "string", - "description": "The ID of the source party in the format service_id\/instance_id\/record_type\/record_id.", - "pattern": "(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)" + "description": "The ID of the source party in the format service_id/instance_id/record_type/record_id.", + "pattern": "(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)" }, "minItems": 1, "maxItems": 100, @@ -6805,13 +6805,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8c-customer360\/source-parties" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8c-customer360/source-parties" } ] } }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6852,8 +6852,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6894,8 +6894,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/source-system": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/source-system": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6929,8 +6929,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/record-owners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/record-owners": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -6992,8 +6992,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/record-owners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/record-owners": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7048,8 +7048,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/owned-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/owned-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7111,8 +7111,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/owned-parties": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/owned-parties": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7167,8 +7167,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/contacts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/contacts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7230,8 +7230,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/contacts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/contacts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7286,8 +7286,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/contact-for": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/contact-for": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7349,8 +7349,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/contact-for": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/contact-for": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7405,8 +7405,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/contact-identifiers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/contact-identifiers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7447,8 +7447,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/contact-identifiers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/contact-identifiers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7482,8 +7482,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/legal-identifiers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/legal-identifiers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7524,8 +7524,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/legal-identifiers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/legal-identifiers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7559,8 +7559,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/business-tags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/business-tags": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7601,8 +7601,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/business-tags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/business-tags": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7636,8 +7636,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/involved-conversations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/involved-conversations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7678,8 +7678,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/involved-conversations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/involved-conversations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7713,8 +7713,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/owned-conversations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/owned-conversations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7755,8 +7755,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/owned-conversations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/owned-conversations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7790,8 +7790,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/involved-deals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/involved-deals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7832,8 +7832,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/involved-deals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/involved-deals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7867,8 +7867,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/owned-deals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/owned-deals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7909,8 +7909,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-parties\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)\/(?P[\\w-]+)\/(?P[\\w.-]+)\/relationships\/owned-deals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-parties/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)/(?P[\\w-]+)/(?P[\\w.-]+)/relationships/owned-deals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7944,8 +7944,8 @@ } ] }, - "\/wpcom\/v2\/a8c-customer360\/source-systems\/(?P[a-z0-9-]+)\/(?P[a-z0-9+-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8c-customer360/source-systems/(?P[a-z0-9-]+)/(?P[a-z0-9+-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -7969,8 +7969,8 @@ } ] }, - "\/wpcom\/v2\/a8cpayments-backbone\/available-payment-methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8cpayments-backbone/available-payment-methods": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8002,13 +8002,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8cpayments-backbone\/available-payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8cpayments-backbone/available-payment-methods" } ] } }, - "\/wpcom\/v2\/a8cpayments-backbone\/prepurchase": { - "namespace": "wpcom\/v2", + "/wpcom/v2/a8cpayments-backbone/prepurchase": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8048,13 +8048,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/a8cpayments-backbone\/prepurchase" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/a8cpayments-backbone/prepurchase" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/activitypub\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activitypub/status": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -8084,8 +8084,8 @@ } ] }, - "\/wpcom\/v2\/ai\/agent\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/ai/agent/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8098,8 +8098,8 @@ } ] }, - "\/wpcom\/v2\/sites\/(?P[\\d]+)\/ai\/agent\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/(?P[\\d]+)/ai/agent/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8112,8 +8112,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai\/blogging\/prompts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-ai/blogging/prompts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8126,8 +8126,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/ai-image": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/ai-image": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8207,8 +8207,8 @@ } ] }, - "\/wpcom\/v2\/pattern-assembler\/ai\/v5\/generate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/v5/generate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8233,13 +8233,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/v5\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/v5/generate" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/styles": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/custom-gpt/styles": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8254,13 +8254,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/custom-gpt\/styles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/custom-gpt/styles" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/patterns": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/custom-gpt/patterns": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8275,13 +8275,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/custom-gpt\/patterns" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/custom-gpt/patterns" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/generate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/custom-gpt/generate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8360,13 +8360,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/custom-gpt\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/custom-gpt/generate" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/get_schema": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/custom-gpt/get_schema": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8381,13 +8381,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/custom-gpt\/get_schema" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/custom-gpt/get_schema" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/latest\/generate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pattern-assembler/ai/latest/generate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8412,13 +8412,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pattern-assembler\/ai\/latest\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pattern-assembler/ai/latest/generate" } ] } }, - "\/wpcom\/v2\/playground\/ai\/blueprint": { - "namespace": "wpcom\/v2", + "/wpcom/v2/playground/ai/blueprint": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8442,13 +8442,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/playground\/ai\/blueprint" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/playground/ai/blueprint" } ] } }, - "\/wpcom\/v2\/playground\/declarative\/ai\/blueprint": { - "namespace": "wpcom\/v2", + "/wpcom/v2/playground/declarative/ai/blueprint": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8472,13 +8472,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/playground\/declarative\/ai\/blueprint" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/playground/declarative/ai/blueprint" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/p2\/summary\/summarize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/p2/summary/summarize": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8496,8 +8496,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/p2\/summary\/rank": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/p2/summary/rank": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8519,8 +8519,8 @@ } ] }, - "\/wpcom\/v2\/text-completion": { - "namespace": "wpcom\/v2", + "/wpcom/v2/text-completion": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8585,13 +8585,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/text-completion" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/text-completion" } ] } }, - "\/wpcom\/v2\/text-completion\/stream": { - "namespace": "wpcom\/v2", + "/wpcom/v2/text-completion/stream": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8656,13 +8656,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/text-completion\/stream" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/text-completion/stream" } ] } }, - "\/wpcom\/v2\/analyze-url\/colors": { - "namespace": "wpcom\/v2", + "/wpcom/v2/analyze-url/colors": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8687,13 +8687,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/analyze-url\/colors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/analyze-url/colors" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/ssh-keys": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/ssh-keys": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -8730,8 +8730,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/ssh-keys\/(?P[\\w]+)\/(?P[\\w.:-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/ssh-keys/(?P[\\w]+)/(?P[\\w.:-]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -8760,8 +8760,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/atomic-migration-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/atomic-migration-status": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8791,8 +8791,8 @@ } ] }, - "\/wpcom\/v2\/big-sky\/replace-content": { - "namespace": "wpcom\/v2", + "/wpcom/v2/big-sky/replace-content": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8823,13 +8823,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/big-sky\/replace-content" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/big-sky/replace-content" } ] } }, - "\/wpcom\/v2\/big-sky\/site-spec\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/big-sky/site-spec/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8842,8 +8842,8 @@ } ] }, - "\/wpcom\/v2\/blaze\/assign-user-to-experiment": { - "namespace": "wpcom\/v2", + "/wpcom/v2/blaze/assign-user-to-experiment": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -8867,13 +8867,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/blaze\/assign-user-to-experiment" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/blaze/assign-user-to-experiment" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/blaze\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blaze/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8886,8 +8886,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/blaze\/posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blaze/posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8946,8 +8946,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/blaze\/posts\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blaze/posts/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8971,8 +8971,8 @@ } ] }, - "\/wpcom\/v2\/block-previews\/pattern": { - "namespace": "wpcom\/v2", + "/wpcom/v2/block-previews/pattern": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -8988,8 +8988,8 @@ "required": false }, "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", - "default": "pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", + "default": "pub/zoologist", "type": "string", "required": false }, @@ -9045,13 +9045,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/block-previews\/pattern" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/block-previews/pattern" } ] } }, - "\/wpcom\/v2\/block-previews\/site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/block-previews/site": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9067,8 +9067,8 @@ "required": false }, "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", - "default": "pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", + "default": "pub/zoologist", "type": "string", "required": false }, @@ -9152,13 +9152,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/block-previews\/site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/block-previews/site" } ] } }, - "\/wpcom\/v2\/block-recipes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/block-recipes": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -9192,13 +9192,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/block-recipes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/block-recipes" } ] } }, - "\/wpcom\/v2\/block-recipes\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/block-recipes/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -9247,8 +9247,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-renderer\/patterns\/render": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-renderer/patterns/render": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9259,7 +9259,7 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -9283,8 +9283,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-renderer\/content\/render": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-renderer/content/render": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -9295,7 +9295,7 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -9318,8 +9318,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-renderer\/settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-renderer/settings": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9330,7 +9330,7 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -9343,8 +9343,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/blogging-prompts\/settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blogging-prompts/settings": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -9416,8 +9416,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/blogging-prompts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blogging-prompts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9442,8 +9442,8 @@ } ] }, - "\/wpcom\/v2\/breakingbot\/resolveuser": { - "namespace": "wpcom\/v2", + "/wpcom/v2/breakingbot/resolveuser": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9466,13 +9466,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/breakingbot\/resolveuser" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/breakingbot/resolveuser" } ] } }, - "\/wpcom\/v2\/breakingbot\/report\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/breakingbot/report/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -9508,13 +9508,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/breakingbot\/report\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/breakingbot/report/new" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/code-deployments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/code-deployments": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -9581,8 +9581,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/code-deployments\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/code-deployments/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -9665,8 +9665,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/code-deployments\/(?P[\\d]+)\/runs": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/code-deployments/(?P[\\d]+)/runs": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -9708,8 +9708,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/code-deployments\/(?P[\\d]+)\/runs\/(?P[\\d]+)\/logs": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/code-deployments/(?P[\\d]+)/runs/(?P[\\d]+)/logs": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9738,8 +9738,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting\/code-deployments\/(?P[\\d]+)\/runs\/(?P[\\d]+)\/logs\/(?P[0-9a-fA-F]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting/code-deployments/(?P[\\d]+)/runs/(?P[\\d]+)/logs/(?P[0-9a-fA-F]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9752,8 +9752,8 @@ } ] }, - "\/wpcom\/v2\/colors\/patterns": { - "namespace": "wpcom\/v2", + "/wpcom/v2/colors/patterns": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9781,13 +9781,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/colors\/patterns" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/colors/patterns" } ] } }, - "\/wpcom\/v2\/colors\/palettes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/colors/palettes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9819,13 +9819,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/colors\/palettes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/colors/palettes" } ] } }, - "\/wpcom\/v2\/colors\/patterns\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/colors/patterns/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9838,8 +9838,8 @@ } ] }, - "\/wpcom\/v2\/colors\/palettes\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/colors/palettes/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9852,8 +9852,8 @@ } ] }, - "\/wpcom\/v2\/common-block-layouts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/common-block-layouts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9892,13 +9892,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/common-block-layouts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/common-block-layouts" } ] } }, - "\/wpcom\/v2\/common-starter-site-designs": { - "namespace": "wpcom\/v2", + "/wpcom/v2/common-starter-site-designs": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -9934,13 +9934,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/common-starter-site-designs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/common-starter-site-designs" } ] } }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -10002,8 +10002,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/all": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/all": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10042,8 +10042,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/(?P[\\d]+)\/detail": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/(?P[\\d]+)/detail": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10067,8 +10067,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/(?P[\\d]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/(?P[\\d]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10097,8 +10097,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/(?P[\\d]+)\/reassign": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/(?P[\\d]+)/reassign": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10125,15 +10125,15 @@ }, "availability_type": { "type": "string", - "description": "Indicates availability category of picked staff as one one with buffer\/without buffer\/not scheduled", + "description": "Indicates availability category of picked staff as one one with buffer/without buffer/not scheduled", "required": false } } } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/(?P[\\d]+)\/update-conference-link": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/(?P[\\d]+)/update-conference-link": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10162,8 +10162,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/appointments\/(?P[\\d]+)\/reschedule": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/appointments/(?P[\\d]+)/reschedule": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10197,8 +10197,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/available_times": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/available_times": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10222,8 +10222,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10238,13 +10238,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/concierge\/schedules" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/concierge/schedules" } ] } }, - "\/wpcom\/v2\/concierge\/schedules\/(?P[\\d]+)\/available_staff": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/schedules/(?P[\\d]+)/available_staff": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10273,8 +10273,8 @@ } ] }, - "\/wpcom\/v2\/concierge\/initial": { - "namespace": "wpcom\/v2", + "/wpcom/v2/concierge/initial": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10305,13 +10305,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/concierge\/initial" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/concierge/initial" } ] } }, - "\/wpcom\/v2\/country-codes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/country-codes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10326,13 +10326,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/country-codes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/country-codes" } ] } }, - "\/wpcom\/v2\/courses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/courses": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10351,13 +10351,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/courses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/courses" } ] } }, - "\/wpcom\/v2\/courses\/videos": { - "namespace": "wpcom\/v2", + "/wpcom/v2/courses/videos": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10379,13 +10379,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/courses\/videos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/courses/videos" } ] } }, - "\/wpcom\/v2\/deepl\/translate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/deepl/translate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10409,13 +10409,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/deepl\/translate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/deepl/translate" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/do-it-for-me\/website-content": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/do-it-for-me/website-content": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -10612,8 +10612,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/advanced-move-domain\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[1-9][0-9]*)(?:\/(?P[1-9][0-9]*)){0,1}": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/advanced-move-domain/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[1-9][0-9]*)(?:/(?P[1-9][0-9]*)){0,1}": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10639,8 +10639,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/atomic-info\/(?P[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/atomic-info/(?P[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10658,8 +10658,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/cancel\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/cancel/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10677,8 +10677,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/cancel-wwd-pending-contact-update\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/cancel-wwd-pending-contact-update/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10696,8 +10696,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/change-primary-domain\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/change-primary-domain/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10719,8 +10719,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/contact-information\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/contact-information/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10738,8 +10738,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/create-dns-zone\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/create-dns-zone/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10757,8 +10757,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/delete-mapping-record\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/delete-mapping-record/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10776,8 +10776,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/disable-privacy\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/disable-privacy/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10795,8 +10795,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/disconnect-domain-from-site\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/disconnect-domain-from-site/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10814,8 +10814,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/dns-revisions\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/dns-revisions/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10833,8 +10833,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/dns\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/dns/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10852,8 +10852,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-dispute-flags\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-dispute-flags/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10871,8 +10871,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/email-forwards\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/email-forwards/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -10890,8 +10890,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/enable-privacy\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/enable-privacy/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10909,8 +10909,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/create\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/create/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10928,8 +10928,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/customer\/update\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/customer/update/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10947,8 +10947,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/dns\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/dns/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10963,13 +10963,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains-tools\/gsuite\/dns\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains-tools/gsuite/dns/delete" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/create-conflicting\/(?P[0-9a-z\\@\\_'.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/user/create-conflicting/(?P[0-9a-z\\@\\_'.-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -10987,8 +10987,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/create\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/user/create/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11006,8 +11006,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/reset-password": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/user/reset-password": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11022,13 +11022,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains-tools\/gsuite\/user\/reset-password" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains-tools/gsuite/user/reset-password" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/reset-recovery-email": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/user/reset-recovery-email": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11043,13 +11043,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains-tools\/gsuite\/user\/reset-recovery-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains-tools/gsuite/user/reset-recovery-email" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/users\/activate\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/gsuite/users/activate/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11067,8 +11067,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/info-fix-restored-domain\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/info-fix-restored-domain/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11086,8 +11086,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/info\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/info/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11105,8 +11105,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/initiate-transfer-out\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/initiate-transfer-out/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11124,8 +11124,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/loads-wpcom\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/loads-wpcom/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11143,8 +11143,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/logs\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/logs/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11162,8 +11162,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/mapping\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/mapping/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11181,8 +11181,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/medic\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/medic/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11200,8 +11200,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/move-domain-to-blog\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[1-9][0-9]*)\/(?Ptrue|false)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/move-domain-to-blog/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[1-9][0-9]*)/(?Ptrue|false)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11227,8 +11227,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/redeem-domain\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/redeem-domain/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11246,8 +11246,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/remove-async-renewal\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/remove-async-renewal/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11265,8 +11265,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/resend-verification-email\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/resend-verification-email/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11284,8 +11284,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/reset-default-atomic-root-a-records\/(?P[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/reset-default-atomic-root-a-records/(?P[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11303,8 +11303,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/reset-nameservers\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/reset-nameservers/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11322,8 +11322,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/reset-wwd-password\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/reset-wwd-password/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11341,8 +11341,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/restore-domain\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/restore-domain/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11360,8 +11360,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/redirects\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/redirects/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11379,8 +11379,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/send-authorization-code\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/send-authorization-code/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11398,8 +11398,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/set-domain-dispute-flag\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[a-z][a-zx\\_]+)\/(?P[0,1])": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/set-domain-dispute-flag/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[a-z][a-zx\\_]+)/(?P[0,1])": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11425,8 +11425,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/set-domain-status\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[a-z0-9][a-z0-9\\-]+)\/(?P[0,1])": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/set-domain-status/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[a-z0-9][a-z0-9\\-]+)/(?P[0,1])": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11452,8 +11452,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/set-primary-domain\/(?P\\d+)\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/set-primary-domain/(?P\\d+)/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11475,8 +11475,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-info\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/ssl-info/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11494,8 +11494,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-new-order\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/ssl-new-order/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11513,8 +11513,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-retry\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/ssl-retry/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11532,8 +11532,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/subscriptions\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/subscriptions/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11551,8 +11551,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/sync-wwd-contact-information\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/sync-wwd-contact-information/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11570,8 +11570,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/transfer-lock-flags\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/transfer-lock-flags/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11589,8 +11589,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/unverify-contact\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/unverify-contact/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11608,8 +11608,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/update-authorization-code\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/update-authorization-code/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11627,8 +11627,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/user-privileges\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/user-privileges/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11646,8 +11646,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/verify-contact\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/verify-contact/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11665,8 +11665,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/whois\/(?P[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/whois/(?P[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11684,8 +11684,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/wpcomdns\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/wpcomdns/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11703,8 +11703,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/billing-transactions\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/billing-transactions/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11722,8 +11722,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/contact-information\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/contact-information/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11741,8 +11741,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/events\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/events/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11760,8 +11760,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/domain-dispute-flags\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/domain-dispute-flags/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11779,8 +11779,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/info\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/info/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11798,8 +11798,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/log-details\/(?P[a-z0-9\\.\\-\\:\\_]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/log-details/(?P[a-z0-9\\.\\-\\:\\_]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11817,8 +11817,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/logs\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/logs/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11836,8 +11836,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/resend-verification-email\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/resend-verification-email/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11855,8 +11855,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/set-domain-dispute-flag\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[a-z][a-zx\\_]+)\/(?P[0,1])": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/set-domain-dispute-flag/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[a-z][a-zx\\_]+)/(?P[0,1])": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11882,8 +11882,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/set-domain-status\/(?P[a-z0-9][a-z0-9\\.\\-]+)\/(?P[a-z0-9][a-z0-9\\-]+)\/(?P[0,1])": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/set-domain-status/(?P[a-z0-9][a-z0-9\\.\\-]+)/(?P[a-z0-9][a-z0-9\\-]+)/(?P[0,1])": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11909,8 +11909,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/user-privileges\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/user-privileges/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -11928,8 +11928,8 @@ } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/initiate-transfer-out\/(?P[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains-tools/domain-services-api/initiate-transfer-out/(?P[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11947,8 +11947,8 @@ } ] }, - "\/wpcom\/v2\/domains\/bulk-actions\/update-contact-info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/bulk-actions/update-contact-info": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11963,13 +11963,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/bulk-actions\/update-contact-info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/bulk-actions/update-contact-info" } ] } }, - "\/wpcom\/v2\/domains\/bulk-actions\/set-auto-renew": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/bulk-actions/set-auto-renew": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -11984,13 +11984,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/bulk-actions\/set-auto-renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/bulk-actions/set-auto-renew" } ] } }, - "\/wpcom\/v2\/domains\/bulk-actions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/bulk-actions": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -12012,13 +12012,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/bulk-actions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/bulk-actions" } ] } }, - "\/wpcom\/v2\/domains\/bulk-availability-check\/(?P.*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/bulk-availability-check/(?P.*)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12037,8 +12037,8 @@ } ] }, - "\/wpcom\/v2\/domains\/diagnostics\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/diagnostics/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12051,8 +12051,8 @@ } ] }, - "\/wpcom\/v2\/domains\/dns\/email\/set-default-records": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/dns/email/set-default-records": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12072,13 +12072,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/dns\/email\/set-default-records" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/dns/email/set-default-records" } ] } }, - "\/wpcom\/v2\/domains\/dns\/import\/bind\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/dns/import/bind/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12096,8 +12096,8 @@ } ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/dnssec/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -12195,8 +12195,8 @@ } ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P[^\\\/]+)\/nameserver": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/dnssec/(?P[^\\/]+)/nameserver": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12209,8 +12209,8 @@ } ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P[^\\\/]+)\/registry": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/dnssec/(?P[^\\/]+)/registry": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12223,8 +12223,8 @@ } ] }, - "\/wpcom\/v2\/domains\/glue-records\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/glue-records/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12237,8 +12237,8 @@ } ] }, - "\/wpcom\/v2\/domains\/glue-records": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/glue-records": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -12266,13 +12266,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/glue-records" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/glue-records" } ] } }, - "\/wpcom\/v2\/domains\/glue-records\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/glue-records/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -12285,8 +12285,8 @@ } ] }, - "\/wpcom\/v2\/domains\/list\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/list/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12301,13 +12301,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/list\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/list/mine" } ] } }, - "\/wpcom\/v2\/domains\/auction\/expired-list-csv": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/auction/expired-list-csv": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12322,13 +12322,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/auction\/expired-list-csv" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/auction/expired-list-csv" } ] } }, - "\/wpcom\/v2\/domains\/auction\/expired-domain-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/auction/expired-domain-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12343,13 +12343,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/auction\/expired-domain-stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/auction/expired-domain-stats" } ] } }, - "\/wpcom\/v2\/domains\/auction\/transfer(?P.*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/auction/transfer(?P.*)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12362,8 +12362,8 @@ } ] }, - "\/wpcom\/v2\/domains\/auction\/renew": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/auction/renew": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12378,13 +12378,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/auction\/renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/auction/renew" } ] } }, - "\/wpcom\/v2\/domains\/point-to-wpcom": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/point-to-wpcom": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12404,13 +12404,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/domains\/point-to-wpcom" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/domains/point-to-wpcom" } ] } }, - "\/wpcom\/v2\/domains\/secure-your-brand\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/secure-your-brand/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12428,8 +12428,8 @@ } ] }, - "\/wpcom\/v2\/domains\/ssl\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/domains/ssl/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -12449,8 +12449,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/editor\/redirect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/editor/redirect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12474,8 +12474,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/emails\/domains": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/emails/domains": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12488,8 +12488,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/emails\/mailboxes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/emails/mailboxes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12502,8 +12502,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/emails\/accounts\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/emails/accounts/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12516,8 +12516,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/emails\/accounts\/(?P[^\\\/]+)\/mailboxes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/emails/accounts/(?P[^\\/]+)/mailboxes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12530,8 +12530,8 @@ } ] }, - "\/wpcom\/v2\/enterpret-webhook\/(?P[^\/]+)\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/enterpret-webhook/(?P[^/]+)/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -12555,8 +12555,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/analyses\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/analyses/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12575,8 +12575,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/analyses\/(?P\\d+)\/latest": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/analyses/(?P\\d+)/latest": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12595,8 +12595,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/assignments\/(?P(akismet|calypso|dayone|dsp|email|jetpack|lohp|mlsales|pipe|pocketcasts|tumblr|wccom|woocommerce|woocommerceandroid|woocommerceios|wpandroid|wpcom|wpios))": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/assignments/(?P(akismet|calypso|dayone|dsp|email|jetpack|lohp|mlsales|pipe|pocketcasts|tumblr|wccom|woocommerce|woocommerceandroid|woocommerceios|wpandroid|wpcom|wpios))": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12608,7 +12608,7 @@ "args": { "anon_id": { "type": "string", - "pattern": "(^$)|^[A-Za-z0-9+\/=:@\\-\\._ ]{1,64}$", + "pattern": "(^$)|^[A-Za-z0-9+/=:@\\-\\._ ]{1,64}$", "required": false }, "experiment_names": { @@ -12620,8 +12620,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/assignments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/assignments": { + "namespace": "wpcom/v2", "methods": [ "PATCH" ], @@ -12633,7 +12633,7 @@ "args": { "anon_id": { "type": "string", - "pattern": "(^$)|^[A-Za-z0-9+\/=:@\\-\\._ ]{1,64}$", + "pattern": "(^$)|^[A-Za-z0-9+/=:@\\-\\._ ]{1,64}$", "required": false }, "username_override": { @@ -12651,13 +12651,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/assignments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/assignments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/events": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/autocomplete/events": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12672,13 +12672,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/autocomplete\/events" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/autocomplete/events" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/events\/(?P[a-z_][a-z0-9_]*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/autocomplete/events/(?P[a-z_][a-z0-9_]*)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12691,8 +12691,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/autocomplete/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12707,13 +12707,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/autocomplete\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/autocomplete/products" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/transaction-types": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/autocomplete/transaction-types": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12728,13 +12728,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/autocomplete\/transaction-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/autocomplete/transaction-types" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/users": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/autocomplete/users": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -12749,13 +12749,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/autocomplete\/users" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/autocomplete/users" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/experiments": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -12960,13 +12960,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/experiments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/experiments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/experiments/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "PUT", @@ -13253,8 +13253,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments\/(?P\\d+)\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/experiments/(?P\\d+)/status": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -13278,8 +13278,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/metrics": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/metrics": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -13418,13 +13418,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/metrics" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/metrics" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/metrics\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/metrics/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "PUT", @@ -13568,8 +13568,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/segments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/segments": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -13604,13 +13604,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/segments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/segments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/segments\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/segments/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -13642,8 +13642,8 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/tags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/tags": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -13678,13 +13678,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/experiments\/0.1.0\/tags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/experiments/0.1.0/tags" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/tags\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/experiments/0.1.0/tags/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "PUT", @@ -13724,8 +13724,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/(?Pgoogle_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/(?Pgoogle_photos|openverse|pexels)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -13761,8 +13761,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/connection\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/connection/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -13782,8 +13782,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/connection\/(?Pgoogle_photos)\/picker_status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/connection/(?Pgoogle_photos)/picker_status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -13796,8 +13796,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/session\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/session/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -13810,8 +13810,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/session\/(?Pgoogle_photos)\/(?P.*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/session/(?Pgoogle_photos)/(?P.*)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -13831,8 +13831,8 @@ } ] }, - "\/wpcom\/v2\/meta\/external-media\/proxy\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/meta/external-media/proxy/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -13850,8 +13850,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/seller_footer": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/seller_footer": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -13868,8 +13868,8 @@ } ] }, - "\/wpcom\/v2\/webhook-airtable-create": { - "namespace": "wpcom\/v2", + "/wpcom/v2/webhook-airtable-create": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -13884,13 +13884,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/webhook-airtable-create" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/webhook-airtable-create" } ] } }, - "\/wpcom\/v2\/webhook-airtable-create\/patch": { - "namespace": "wpcom\/v2", + "/wpcom/v2/webhook-airtable-create/patch": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -13925,13 +13925,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/webhook-airtable-create\/patch" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/webhook-airtable-create/patch" } ] } }, - "\/wpcom\/v2\/webhook-airtable-create\/create-webhook": { - "namespace": "wpcom\/v2", + "/wpcom/v2/webhook-airtable-create/create-webhook": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -13962,13 +13962,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/webhook-airtable-create\/create-webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/webhook-airtable-create/create-webhook" } ] } }, - "\/wpcom\/v2\/fsor-airtable-report\/generate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/fsor-airtable-report/generate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14024,13 +14024,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/fsor-airtable-report\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/fsor-airtable-report/generate" } ] } }, - "\/wpcom\/v2\/me\/get-apps\/send-download-sms": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/get-apps/send-download-sms": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14045,13 +14045,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/get-apps\/send-download-sms" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/get-apps/send-download-sms" } ] } }, - "\/wpcom\/v2\/github\/commit-email-validator": { - "namespace": "wpcom\/v2", + "/wpcom/v2/github/commit-email-validator": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14066,13 +14066,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/github\/commit-email-validator" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/github/commit-email-validator" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-install": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/app-install": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14087,13 +14087,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/app-install" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/app-install" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-authorize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/app-authorize": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14123,13 +14123,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/app-authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/app-authorize" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-callback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/app-callback": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14179,13 +14179,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/app-callback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/app-callback" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-webhook": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/app-webhook": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14200,13 +14200,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/app-webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/app-webhook" } ] } }, - "\/wpcom\/v2\/hosting\/github\/accounts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/accounts": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14226,13 +14226,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/accounts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/accounts" } ] } }, - "\/wpcom\/v2\/hosting\/github\/installations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/installations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14247,13 +14247,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/installations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/installations" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repositories": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/repositories": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14274,13 +14274,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/repositories" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/repositories" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repository\/branches": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/repository/branches": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14308,13 +14308,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/repository\/branches" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/repository/branches" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repository\/pre-connect-checks": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/repository/pre-connect-checks": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14346,13 +14346,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/repository\/pre-connect-checks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/repository/pre-connect-checks" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflow-templates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/workflow-templates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14380,13 +14380,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/workflow-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/workflow-templates" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflows": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/workflows": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -14442,13 +14442,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/workflows" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/workflows" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflows\/checks": { - "namespace": "wpcom\/v2", + "/wpcom/v2/hosting/github/workflows/checks": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14480,13 +14480,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/hosting\/github\/workflows\/checks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/hosting/github/workflows/checks" } ] } }, - "\/wpcom\/v2\/github": { - "namespace": "wpcom\/v2", + "/wpcom/v2/github": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -14501,13 +14501,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/github" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/github" } ] } }, - "\/wpcom\/v3": { - "namespace": "wpcom\/v3", + "/wpcom/v3": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -14518,7 +14518,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v3", + "default": "wpcom/v3", "required": false }, "context": { @@ -14531,13 +14531,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom\/v3" + "href": "https://mobile.blog/wpcom/v3" } ] } }, - "\/wpcom\/v3\/sites\/mobile.blog": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -14548,7 +14548,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v3", + "default": "wpcom/v3", "required": false }, "context": { @@ -14559,8 +14559,8 @@ } ] }, - "\/wpcom\/v3\/global-styles-variation\/theme": { - "namespace": "wpcom\/v3", + "/wpcom/v3/global-styles-variation/theme": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -14575,13 +14575,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobile.blog\/global-styles-variation\/theme" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobile.blog/global-styles-variation/theme" } ] } }, - "\/wpcom\/v3\/global-styles-variation\/font-pairings": { - "namespace": "wpcom\/v3", + "/wpcom/v3/global-styles-variation/font-pairings": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -14592,12 +14592,12 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -14607,13 +14607,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobile.blog\/global-styles-variation\/font-pairings" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobile.blog/global-styles-variation/font-pairings" } ] } }, - "\/wpcom\/v3\/global-styles-variation\/color-palettes": { - "namespace": "wpcom\/v3", + "/wpcom/v3/global-styles-variation/color-palettes": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -14624,12 +14624,12 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -14639,13 +14639,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobile.blog\/global-styles-variation\/color-palettes" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobile.blog/global-styles-variation/color-palettes" } ] } }, - "\/wpcom\/v2\/glossary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/glossary": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -14678,13 +14678,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/glossary" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/glossary" } ] } }, - "\/wpcom\/v2\/glossary\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/glossary/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -14743,8 +14743,8 @@ } ] }, - "\/wpcom\/v2\/gravatar\/developers\/applications": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/developers/applications": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -14792,13 +14792,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/developers\/applications" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/developers/applications" } ] } }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/developers/applications/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE", "GET", @@ -14884,8 +14884,8 @@ } ] }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/developers/applications/count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -14900,13 +14900,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/developers\/applications\/count" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/developers/applications/count" } ] } }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/(?P[\\d]+)\/reset-secret": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/developers/applications/(?P[\\d]+)/reset-secret": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -14932,8 +14932,8 @@ } ] }, - "\/wpcom\/v2\/gravatar\/emails-blocklist": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/emails-blocklist": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -14975,13 +14975,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/emails-blocklist" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/emails-blocklist" } ] } }, - "\/wpcom\/v2\/gravatar\/stats\/recently-visited-profiles": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/stats/recently-visited-profiles": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -15007,13 +15007,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/stats\/recently-visited-profiles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/stats/recently-visited-profiles" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/purchase": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/purchase": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -15037,13 +15037,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/purchase" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/purchase" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/set-auto-renew": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/set-auto-renew": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -15079,13 +15079,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/set-auto-renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/set-auto-renew" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/email-forwards": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/email-forwards": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -15109,13 +15109,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/email-forwards" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/email-forwards" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/add-email-forward": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/add-email-forward": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -15147,13 +15147,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/add-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/add-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/delete-email-forward": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/delete-email-forward": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -15185,13 +15185,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/delete-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/delete-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/update-email-forward": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/update-email-forward": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -15235,13 +15235,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/update-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/update-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/set-email-forward": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar/custom-domains/set-email-forward": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -15281,13 +15281,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar\/custom-domains\/set-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar/custom-domains/set-email-forward" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/posts\/auto-draft": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/posts/auto-draft": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -15300,8 +15300,8 @@ } ] }, - "\/wpcom\/v2\/gutenberg\/core-server-block-settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gutenberg/core-server-block-settings": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -15316,13 +15316,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gutenberg\/core-server-block-settings" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gutenberg/core-server-block-settings" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15333,7 +15333,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/internal\/v1", + "default": "wpcom/v2/happytools/internal/v1", "required": false }, "context": { @@ -15346,13 +15346,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/sites/mobile.blog": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15363,7 +15363,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/internal\/v1", + "default": "wpcom/v2/happytools/internal/v1", "required": false }, "context": { @@ -15374,8 +15374,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/sign": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/sign": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -15434,13 +15434,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/sign" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/sign" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/tokens": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/tokens": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15455,13 +15455,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/tokens" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/tokens" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/tokens\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/tokens/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "DELETE" ], @@ -15480,8 +15480,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/apikeys": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/apikeys": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -15503,13 +15503,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/apikeys" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/apikeys" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/apikeys\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/apikeys/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "DELETE" ], @@ -15528,8 +15528,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/validate": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/validate": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -15550,13 +15550,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/validate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/validate" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/logout": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/logout": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -15571,13 +15571,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/logout" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/logout" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/public-key": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/authentication/public-key": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15592,13 +15592,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/authentication\/public-key" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/authentication/public-key" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/p2\/signup\/create-network": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/p2/signup/create-network": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -15613,13 +15613,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/p2\/signup\/create-network" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/p2/signup/create-network" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/afk-requests": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/afk-requests": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15655,13 +15655,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/afk-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/afk-requests" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/afk-requests\/(?P\\d+)\/forecast": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/afk-requests/(?P\\d+)/forecast": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15680,8 +15680,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/task-blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/task-blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15727,13 +15727,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/task-blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/task-blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15776,13 +15776,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/availability-blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/availability-blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15813,13 +15813,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/availability-blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/availability-blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/calendar": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/calendar": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15834,13 +15834,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/calendar" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/calendar" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/calendar\/(?P[\\S]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/calendar/(?P[\\S]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -15871,8 +15871,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/day-settings": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -15926,13 +15926,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/day-settings" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/day-settings" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/day-settings/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -15991,8 +15991,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings\/multi": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/day-settings/multi": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -16017,13 +16017,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/day-settings\/multi" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/day-settings/multi" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/events": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/events": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -16043,13 +16043,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/events" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/events" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/invitations": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/invitations": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -16093,13 +16093,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/invitations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/invitations" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/invitations\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/invitations/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -16122,8 +16122,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/notifications\/info": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/notifications/info": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16138,13 +16138,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/notifications\/info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/notifications/info" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/organizations": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -16208,13 +16208,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/organizations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/organizations" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -16283,8 +16283,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P[\\d]+)\/archive": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P[\\d]+)/archive": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -16307,8 +16307,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P[\\d]+)\/restore": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P[\\d]+)/restore": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -16331,8 +16331,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -16380,13 +16380,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/planner-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/planner-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates\/auto-schedule": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates/auto-schedule": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -16451,13 +16451,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/planner-templates\/auto-schedule" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/planner-templates/auto-schedule" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates\/(?P[\\da-z-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates/(?P[\\da-z-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -16521,8 +16521,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/projects": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -16555,13 +16555,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/projects" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/projects" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/projects/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -16620,8 +16620,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects-task-types": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/projects-task-types": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -16659,13 +16659,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/projects-task-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/projects-task-types" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects-task-types\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/projects-task-types/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -16729,8 +16729,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/publish": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/publish": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "GET" @@ -16778,13 +16778,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/publish" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/publish" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/hourly-schedule": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/hourly-schedule": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16815,13 +16815,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/hourly-schedule" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/hourly-schedule" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/woo-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/woo-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16852,13 +16852,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/woo-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/woo-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/weekend-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/weekend-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16889,13 +16889,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/weekend-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/weekend-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/task-hours": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/task-hours": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16926,13 +16926,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/task-hours" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/task-hours" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-totals": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-totals": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -16963,13 +16963,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-totals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-daily-afk-totals" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-apac": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-apac": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17000,13 +17000,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-apac" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-apac" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-emea": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-emea": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17037,13 +17037,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-emea" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-emea" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-americas": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-americas": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17074,13 +17074,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-americas" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-americas" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-afk-list": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-afk-list": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17111,13 +17111,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-afk-list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-afk-list" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-time-off-list": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-time-off-list": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17153,13 +17153,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-time-off-list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-time-off-list" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-who-is-working": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-who-is-working": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17190,13 +17190,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-who-is-working" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-who-is-working" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-missing-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-missing-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17227,13 +17227,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/reports\/a8c-missing-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/reports/a8c-missing-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/roles": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/roles": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -17266,13 +17266,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/roles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/roles" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/roles\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/roles/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -17331,8 +17331,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/schedule-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/schedule-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -17375,13 +17375,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/schedule-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/schedule-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/schedule-templates\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/schedule-templates/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -17440,8 +17440,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/signup": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -17483,7 +17483,7 @@ }, "first_day_of_week": { "type": "string", - "description": "Organization start of the week (Sunday\/Monday).", + "description": "Organization start of the week (Sunday/Monday).", "required": true }, "terms_accepted": { @@ -17507,13 +17507,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/signup" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/signup" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/join": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/signup/join": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -17564,13 +17564,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/signup\/join" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/signup/join" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/confirm-invitation": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/signup/confirm-invitation": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17591,13 +17591,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/signup\/confirm-invitation" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/signup/confirm-invitation" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/confirm-auth-account": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/signup/confirm-auth-account": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17612,13 +17612,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/signup\/confirm-auth-account" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/signup/confirm-auth-account" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-forecast": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-forecast": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -17646,13 +17646,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/staffing-forecast" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/staffing-forecast" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -17711,13 +17711,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/staffing-needs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/staffing-needs" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -17776,13 +17776,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/staffing-needs-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/staffing-needs-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs-templates\/(?P[\\da-f-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs-templates/(?P[\\da-f-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -17841,8 +17841,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -17901,13 +17901,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/staffing-buffer" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/staffing-buffer" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -17966,13 +17966,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/staffing-buffer-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates\/(?P[\\da-f-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer-templates/(?P[\\da-f-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -18031,8 +18031,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/teams": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/teams": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -18065,13 +18065,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/teams" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/teams" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/teams\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/teams/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -18130,8 +18130,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/trade-requests": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/trade-requests": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -18215,13 +18215,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/trade-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/trade-requests" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/trade-requests\/(?P[\\S]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/trade-requests/(?P[\\S]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -18249,8 +18249,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/users": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/users": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -18336,13 +18336,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/users" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/users" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/users\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/users/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -18440,8 +18440,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/me": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/me": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST", @@ -18488,13 +18488,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/me" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/me" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/github": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/utilities/github": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -18509,13 +18509,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/utilities\/github" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/utilities/github" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/zendesk-relay": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/utilities/zendesk-relay": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -18535,13 +18535,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/utilities\/zendesk-relay" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/utilities/zendesk-relay" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/js-errors": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/schedule/utilities/js-errors": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -18556,13 +18556,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/schedule\/utilities\/js-errors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/schedule/utilities/js-errors" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscription": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "DELETE" @@ -18584,13 +18584,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscription" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/status": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscription/status": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET" ], @@ -18605,13 +18605,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscription\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscription/status" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/sources": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscription/sources": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "GET", "POST" @@ -18639,13 +18639,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscription\/sources" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscription/sources" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/restore": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscription/restore": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -18660,13 +18660,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscription\/restore" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscription/restore" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/sources\/remove": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscription/sources/remove": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST", "PUT", @@ -18691,13 +18691,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscription\/sources\/remove" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscription/sources/remove" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscriptions\/stripe": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", + "/wpcom/v2/happytools/internal/v1/subscriptions/stripe": { + "namespace": "wpcom/v2/happytools/internal/v1", "methods": [ "POST" ], @@ -18712,13 +18712,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/internal\/v1\/subscriptions\/stripe" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/internal/v1/subscriptions/stripe" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET" ], @@ -18729,7 +18729,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/external\/v1", + "default": "wpcom/v2/happytools/external/v1", "required": false }, "context": { @@ -18742,13 +18742,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/external\/v1" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/external/v1" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1/sites/mobile.blog": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET" ], @@ -18759,7 +18759,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/external\/v1", + "default": "wpcom/v2/happytools/external/v1", "required": false }, "context": { @@ -18770,8 +18770,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-requests": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1/schedule/afk-requests": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET", "POST" @@ -18820,7 +18820,7 @@ }, "notes": { "type": "string", - "description": "notes to\/from user", + "description": "notes to/from user", "required": false }, "is_last_minute": { @@ -18849,13 +18849,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/external\/v1\/schedule\/afk-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/external/v1/schedule/afk-requests" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-requests\/(?P\\d+)": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1/schedule/afk-requests/(?P\\d+)": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET", "POST", @@ -18904,8 +18904,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-types": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1/schedule/afk-types": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET", "POST" @@ -18939,13 +18939,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools\/external\/v1\/schedule\/afk-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools/external/v1/schedule/afk-types" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-types\/(?P[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", + "/wpcom/v2/happytools/external/v1/schedule/afk-types/(?P[\\d]+)": { + "namespace": "wpcom/v2/happytools/external/v1", "methods": [ "GET", "POST", @@ -18999,8 +18999,8 @@ } ] }, - "\/wpcom\/v2\/happytools": { - "namespace": "wpcom\/v2\/happytools", + "/wpcom/v2/happytools": { + "namespace": "wpcom/v2/happytools", "methods": [ "GET" ], @@ -19011,7 +19011,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools", + "default": "wpcom/v2/happytools", "required": false }, "context": { @@ -19024,13 +19024,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/happytools" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/happytools" } ] } }, - "\/wpcom\/v2\/happytools\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/happytools", + "/wpcom/v2/happytools/sites/mobile.blog": { + "namespace": "wpcom/v2/happytools", "methods": [ "GET" ], @@ -19041,7 +19041,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools", + "default": "wpcom/v2/happytools", "required": false }, "context": { @@ -19052,8 +19052,8 @@ } ] }, - "\/wpcom\/v2\/happytools\/scheduler\/calendar\/(?P[\\S]+)": { - "namespace": "wpcom\/v2\/happytools", + "/wpcom/v2/happytools/scheduler/calendar/(?P[\\S]+)": { + "namespace": "wpcom/v2/happytools", "methods": [ "GET" ], @@ -19072,8 +19072,8 @@ } ] }, - "\/wpcom\/v2\/help\/article": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/article": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19093,13 +19093,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/article" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/article" } ] } }, - "\/wpcom\/v2\/help\/article\/(?P\\d+)\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/article/(?P\\d+)/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19112,8 +19112,8 @@ } ] }, - "\/wpcom\/v2\/help\/articles": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/articles": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19140,13 +19140,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/articles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/articles" } ] } }, - "\/wpcom\/v2\/help\/authenticate\/chat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/authenticate/chat": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19170,13 +19170,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/authenticate\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/authenticate/chat" } ] } }, - "\/wpcom\/v2\/help\/courses": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/courses": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19191,13 +19191,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/courses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/courses" } ] } }, - "\/wpcom\/v2\/help\/csat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/csat": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19237,13 +19237,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/csat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/csat" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/all\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/eligibility/all/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19258,13 +19258,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/eligibility\/all\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/eligibility/all/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/chat\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/eligibility/chat/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19279,13 +19279,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/eligibility\/chat\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/eligibility/chat/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/tickets\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/eligibility/tickets/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19300,13 +19300,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/eligibility\/tickets\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/eligibility/tickets/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/email\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/eligibility/email/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19321,13 +19321,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/eligibility\/email\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/eligibility/email/mine" } ] } }, - "\/wpcom\/v2\/help\/forum\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/forum/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19379,13 +19379,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/forum\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/forum/new" } ] } }, - "\/wpcom\/v2\/help\/messaging\/is-available": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/messaging/is-available": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19409,13 +19409,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/messaging\/is-available" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/messaging/is-available" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/migration-ticket/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19449,13 +19449,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/migration-ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/migration-ticket/new" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/site-info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/migration-ticket/site-info": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19486,13 +19486,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/migration-ticket\/site-info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/migration-ticket/site-info" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/stickers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/migration-ticket/stickers": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19519,13 +19519,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/migration-ticket\/stickers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/migration-ticket/stickers" } ] } }, - "\/wpcom\/v2\/help\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19552,13 +19552,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/search" } ] } }, - "\/wpcom\/v2\/help\/search\/wpcom": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/search/wpcom": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19590,13 +19590,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/search\/wpcom" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/search/wpcom" } ] } }, - "\/wpcom\/v2\/help\/search\/forums": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/search/forums": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19623,13 +19623,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/search\/forums" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/search/forums" } ] } }, - "\/wpcom\/v2\/help\/sibyl": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/sibyl": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19656,13 +19656,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/sibyl" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/sibyl" } ] } }, - "\/wpcom\/v2\/help\/support-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/support-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19677,13 +19677,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/support-status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/support-status" } ] } }, - "\/wpcom\/v2\/help\/support-status\/messaging": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/support-status/messaging": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19717,13 +19717,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/support-status\/messaging" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/support-status/messaging" } ] } }, - "\/wpcom\/v2\/help\/ticket\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/ticket/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -19776,13 +19776,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/ticket/new" } ] } }, - "\/wpcom\/v2\/help\/zendesk\/update-user-fields": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/zendesk/update-user-fields": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -19806,13 +19806,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/zendesk\/update-user-fields" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/zendesk/update-user-fields" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/home\/layout": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/home/layout": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19836,8 +19836,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/home\/layout\/skip": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/home/layout/skip": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -19870,8 +19870,8 @@ } ] }, - "\/wpcom\/v2\/imports\/url-analyzer\/colors": { - "namespace": "wpcom\/v2", + "/wpcom/v2/imports/url-analyzer/colors": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19898,13 +19898,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/imports\/url-analyzer\/colors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/imports/url-analyzer/colors" } ] } }, - "\/wpcom\/v2\/imports\/url-analyzer\/images": { - "namespace": "wpcom\/v2", + "/wpcom/v2/imports/url-analyzer/images": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19931,13 +19931,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/imports\/url-analyzer\/images" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/imports/url-analyzer/images" } ] } }, - "\/wpcom\/v2\/imports\/url-analyzer\/multiple": { - "namespace": "wpcom\/v2", + "/wpcom/v2/imports/url-analyzer/multiple": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -19964,13 +19964,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/imports\/url-analyzer\/multiple" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/imports/url-analyzer/multiple" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-importer\/paid-newsletter": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-importer/paid-newsletter": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -20016,8 +20016,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-importer\/paid-newsletter\/reset": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-importer/paid-newsletter/reset": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20040,8 +20040,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-importer\/paid-newsletter\/map-stripe-plan-to-product": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-importer/paid-newsletter/map-stripe-plan-to-product": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20071,8 +20071,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-importer\/paid-newsletter\/subscriber-import": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-importer/paid-newsletter/subscriber-import": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20094,8 +20094,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/individual-subscriber-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/individual-subscriber-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20115,8 +20115,8 @@ } ] }, - "\/wpcom\/v2\/introductory-offers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/introductory-offers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20150,13 +20150,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/introductory-offers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/introductory-offers" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/links\/generate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/links/generate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20178,8 +20178,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/links\/disable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/links/disable": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20197,8 +20197,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20240,8 +20240,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/resend": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/resend": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20259,8 +20259,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/is-invited": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/is-invited": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20278,8 +20278,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/are-users-invited": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/are-users-invited": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20301,8 +20301,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/invites\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/invites/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20323,8 +20323,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-about": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-about": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20339,13 +20339,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-about" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-about" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-active-connected-plugins": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-active-connected-plugins": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -20367,8 +20367,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-ai-image": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-ai-image": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -20553,13 +20553,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai-image" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-ai-image" } ] } }, - "\/wpcom\/v2\/jetpack-ai-query": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-ai-query": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -20726,13 +20726,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai-query" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-ai-query" } ] } }, - "\/wpcom\/v2\/jetpack-ai-transcription": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-ai-transcription": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -20767,13 +20767,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai-transcription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-ai-transcription" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/service-payload": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-boost-proxy/service-payload": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20795,13 +20795,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost-proxy\/service-payload" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-boost-proxy/service-payload" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/health-check": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-boost-proxy/health-check": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20821,13 +20821,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost-proxy\/health-check" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-boost-proxy/health-check" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/health-check-auth": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-boost-proxy/health-check-auth": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -20847,13 +20847,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost-proxy\/health-check-auth" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-boost-proxy/health-check-auth" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/(?P(?:v\\d+\/)?)metrics": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-boost-proxy/(?P(?:v\\d+/)?)metrics": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20915,8 +20915,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/cloud-css": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/cloud-css": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20929,8 +20929,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/cloud-css\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/cloud-css/update": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20943,8 +20943,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/(?P[a-z-]+)\/reports": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/(?P[a-z-]+)/reports": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20957,8 +20957,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/(?P[a-z-]+)\/reports\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/(?P[a-z-]+)/reports/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20980,8 +20980,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/(?P[a-z-]+)\/reports\/(?P\\d+)\/done": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/(?P[a-z-]+)/reports/(?P\\d+)/done": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -20994,8 +20994,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/(?P[a-z-]+)\/reports\/(?P(?:\\d+|latest))": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/(?P[a-z-]+)/reports/(?P(?:\\d+|latest))": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21008,8 +21008,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/(?P[a-z-]+)\/reports\/(?P(?:\\d+|latest))\/issues": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/(?P[a-z-]+)/reports/(?P(?:\\d+|latest))/issues": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21022,8 +21022,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/features": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/features": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21036,8 +21036,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/lcp": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/lcp": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21050,8 +21050,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/lcp\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/lcp/update": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21064,8 +21064,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/speed-scores": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/speed-scores": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21091,8 +21091,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/speed-scores\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/speed-scores/update": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21109,8 +21109,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/speed-scores\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/speed-scores/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21128,8 +21128,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-boost\/speed-scores-history": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-boost/speed-scores-history": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21155,8 +21155,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-clone-settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-clone-settings": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21174,8 +21174,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-connect\/is-user-connected": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-connect/is-user-connected": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21188,8 +21188,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-connection-health": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-connection-health": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21202,8 +21202,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-golden-token\/get": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-golden-token/get": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21216,8 +21216,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-golden-token\/activate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-golden-token/activate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21230,8 +21230,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-marketing\/sale-coupon": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-marketing/sale-coupon": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21246,13 +21246,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-marketing\/sale-coupon" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-marketing/sale-coupon" } ] } }, - "\/wpcom\/v2\/jetpack-marketing\/jetpack-menu": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-marketing/jetpack-menu": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21267,13 +21267,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-marketing\/jetpack-menu" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-marketing/jetpack-menu" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-monitor-incidents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-monitor-incidents": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21320,8 +21320,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-monitor-settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-monitor-settings": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -21433,8 +21433,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-monitor-settings\/verify-contact-method": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-monitor-settings/verify-contact-method": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21460,8 +21460,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-monitor-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-monitor-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21474,8 +21474,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-monitor-uptime": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-monitor-uptime": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21500,8 +21500,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-openai-query\/jwt": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-openai-query/jwt": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21514,8 +21514,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-package-versions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-package-versions": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21530,15 +21530,15 @@ ], "args": { "package_versions": { - "description": "An associative array of Jetpack packages and their corresponding versions as key\/value pairs. You may use either the package names, eg automattic\/jetpack-backup or their simplified version (slug) eg backup.", + "description": "An associative array of Jetpack packages and their corresponding versions as key/value pairs. You may use either the package names, eg automattic/jetpack-backup or their simplified version (slug) eg backup.", "required": true } } } ] }, - "\/wpcom\/v2\/jetpack-partners": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -21570,13 +21570,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21589,8 +21589,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/stripe\/customer": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/stripe/customer": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21603,8 +21603,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/capabilities": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/capabilities": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21619,13 +21619,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/capabilities" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/capabilities" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/activations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/activations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21651,13 +21651,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/activations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/activations" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -21681,8 +21681,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21699,8 +21699,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/disable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/disable": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21717,8 +21717,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/enable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/enable": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21735,8 +21735,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/activations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/activations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21772,8 +21772,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/activation\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/activation/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -21786,8 +21786,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/stripe\/upcoming-invoice": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/stripe/upcoming-invoice": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21800,8 +21800,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/stripe\/subscription": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/stripe/subscription": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21814,8 +21814,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P\\d+)\/key\/(?P\\d+)\/stripe\/invoices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/(?P\\d+)/key/(?P\\d+)/stripe/invoices": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21828,8 +21828,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/search\/plan": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/stripe/search/plan": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21844,13 +21844,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/stripe\/search\/plan" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/stripe/search/plan" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/user": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/user": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -21865,13 +21865,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/user" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/user" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/subscription": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/stripe/subscription": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -21907,13 +21907,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/stripe\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/stripe/subscription" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/subscription\/replace": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/stripe/subscription/replace": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -21937,13 +21937,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/stripe\/subscription\/replace" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/stripe/subscription/replace" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/subscription": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-partners/subscription": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -21963,13 +21963,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-partners\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-partners/subscription" } ] } }, - "\/wpcom\/v2\/plans": { - "namespace": "wpcom\/v2", + "/wpcom/v2/plans": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -21991,13 +21991,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/plans" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/plans" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-product-data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-product-data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22010,8 +22010,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-protect-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-protect-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22024,8 +22024,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-protect-global-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-protect-global-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22040,13 +22040,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-protect-global-stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-protect-global-stats" } ] } }, - "\/wpcom\/v2\/jetpack-protect-weak-password\/(?P[a-f0-9]{5})": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-protect-weak-password/(?P[a-f0-9]{5})": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22059,8 +22059,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-protect-send-verification-code": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-protect-send-verification-code": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22073,8 +22073,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-recommendations\/product-suggestions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-recommendations/product-suggestions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22087,8 +22087,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-recommendations\/upsell": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-recommendations/upsell": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22101,8 +22101,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-recommendations\/site-registered-date": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-recommendations/site-registered-date": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22115,8 +22115,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-recommendations\/evaluation": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-recommendations/evaluation": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22129,8 +22129,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-refresh-blog-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-refresh-blog-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22143,8 +22143,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-remote-connect-user": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-remote-connect-user": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22178,8 +22178,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-report-error": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-report-error": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22198,8 +22198,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/ai\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-search/ai/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22244,8 +22244,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/ai\/rank": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-search/ai/rank": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22271,8 +22271,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-search/stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22285,8 +22285,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/plan": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-search/plan": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22299,8 +22299,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/queue-post-count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-search/queue-post-count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22313,8 +22313,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-search\/pricing": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-search/pricing": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22350,13 +22350,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-search\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-search/pricing" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/search-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/search-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22385,8 +22385,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/discount": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/discount": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22399,8 +22399,8 @@ } ] }, - "\/wpcom\/v2\/sites": { - "namespace": "wpcom\/v2\/sites", + "/wpcom/v2/sites": { + "namespace": "wpcom/v2/sites", "methods": [ "GET" ], @@ -22411,7 +22411,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/sites", + "default": "wpcom/v2/sites", "required": false }, "context": { @@ -22424,13 +22424,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/sites" } ] } }, - "\/wpcom\/v2\/sites\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/sites", + "/wpcom/v2/sites/sites/mobile.blog": { + "namespace": "wpcom/v2/sites", "methods": [ "GET" ], @@ -22441,7 +22441,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/sites", + "default": "wpcom/v2/sites", "required": false }, "context": { @@ -22452,8 +22452,8 @@ } ] }, - "\/wpcom\/v2\/sites\/(?P\\d+)\/jetpack-social-connections\/new": { - "namespace": "wpcom\/v2\/sites", + "/wpcom/v2/sites/(?P\\d+)/jetpack-social-connections/new": { + "namespace": "wpcom/v2/sites", "methods": [ "POST" ], @@ -22466,8 +22466,8 @@ } ] }, - "\/wpcom\/v2\/sites\/(?P\\d+)\/jetpack-social-connections\/(?P\\d+)": { - "namespace": "wpcom\/v2\/sites", + "/wpcom/v2/sites/(?P\\d+)/jetpack-social-connections/(?P\\d+)": { + "namespace": "wpcom/v2/sites", "methods": [ "DELETE", "POST" @@ -22487,8 +22487,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-social": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-social": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22501,8 +22501,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-social\/count-scheduled-shares": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-social/count-scheduled-shares": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22515,8 +22515,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-social\/generate-image-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-social/generate-image-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22543,8 +22543,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-stats-dashboard\/modules": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-stats-dashboard/modules": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -22568,8 +22568,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-stats-dashboard\/module-settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-stats-dashboard/module-settings": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -22593,8 +22593,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-stats-dashboard\/notices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-stats-dashboard/notices": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -22654,8 +22654,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-stats\/usage": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-stats/usage": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22668,8 +22668,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-stats\/user-feedback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-stats/user-feedback": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22698,8 +22698,8 @@ } ] }, - "\/wpcom\/v2\/jetpack\/stripe\/configuration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack/stripe/configuration": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22720,13 +22720,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack\/stripe\/configuration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack/stripe/configuration" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-sync-actions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-sync-actions": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -22813,8 +22813,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-token-health": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-token-health": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -22838,8 +22838,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-token-health\/user": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-token-health/user": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22852,8 +22852,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-token-health\/blog": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-token-health/blog": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22866,8 +22866,8 @@ } ] }, - "\/wpcom\/v2\/jetpack-user-attributes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-user-attributes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22894,13 +22894,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-user-attributes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-user-attributes" } ] } }, - "\/wpcom\/v2\/jetpack-user-tracking": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jetpack-user-tracking": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -22931,13 +22931,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jetpack-user-tracking" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jetpack-user-tracking" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/waf-rules": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/waf-rules": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22950,8 +22950,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jitm\/(?P[\\w.:-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jitm/(?P[\\w.:-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -22981,8 +22981,8 @@ } ] }, - "\/wpcom\/v2\/jurassic-ninja\/extend": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/extend": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23006,13 +23006,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/extend" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/extend" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/create-new-site-from-zip": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/create-new-site-from-zip": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23037,13 +23037,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/create-new-site-from-zip" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/create-new-site-from-zip" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/update-site-from-zip": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/update-site-from-zip": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -23072,13 +23072,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/update-site-from-zip" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/update-site-from-zip" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/usage": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/usage": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23093,13 +23093,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/usage" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/usage" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/list": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/list": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23114,13 +23114,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/list" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23140,13 +23140,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/status" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/jurassic-ninja/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23166,13 +23166,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/jurassic-ninja\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/jurassic-ninja/delete" } ] } }, - "\/wpcom\/v2\/lasagna\/jwt\/sign": { - "namespace": "wpcom\/v2", + "/wpcom/v2/lasagna/jwt/sign": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23196,13 +23196,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/lasagna\/jwt\/sign" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/lasagna/jwt/sign" } ] } }, - "\/wpcom\/v2\/legal": { - "namespace": "wpcom\/v2", + "/wpcom/v2/legal": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -23234,13 +23234,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/legal" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/legal" } ] } }, - "\/wpcom\/v2\/liked-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/liked-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23265,13 +23265,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/liked-posts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/liked-posts" } ] } }, - "\/wpcom\/v2\/linearmattic\/webhook": { - "namespace": "wpcom\/v2", + "/wpcom/v2/linearmattic/webhook": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -23290,13 +23290,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/linearmattic\/webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/linearmattic/webhook" } ] } }, - "\/wpcom\/v2\/marketing\/survey": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketing/survey": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23323,13 +23323,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketing\/survey" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketing/survey" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/mapbox": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/mapbox": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23342,8 +23342,8 @@ } ] }, - "\/wpcom\/v2\/mapkit": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mapkit": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23358,13 +23358,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mapkit" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mapkit" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/billing-intent/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23377,8 +23377,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/billing-intent": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23435,13 +23435,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/vendor\/billing-intent" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/vendor/billing-intent" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent-siteless": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/billing-intent-siteless": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23488,13 +23488,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/vendor\/billing-intent-siteless" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/vendor/billing-intent-siteless" } ] } }, - "\/wpcom\/v2\/marketplace\/jetpack-scan": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/jetpack-scan": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23520,13 +23520,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/jetpack-scan" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/jetpack-scan" } ] } }, - "\/wpcom\/v2\/marketplace\/(?Pplugins|themes)\/updates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/(?Pplugins|themes)/updates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23539,8 +23539,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/products\/reinstall": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/marketplace/products/reinstall": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23553,8 +23553,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23569,13 +23569,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/products" } ] } }, - "\/wpcom\/v2\/marketplace\/products\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/products/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23588,8 +23588,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/products\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/products/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -23624,8 +23624,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/reviews\/(?P[^\\\/]+)\/(?P[^\\\/]+)\/stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/marketplace/reviews/(?P[^\\/]+)/(?P[^\\/]+)/stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23649,8 +23649,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/reviews\/(?P[^\\\/]+)\/(?P[^\\\/]+)\/validate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/marketplace/reviews/(?P[^\\/]+)/(?P[^\\/]+)/validate": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23674,8 +23674,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P[\\d]+)\/addon": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/subscriptions/(?P[\\d]+)/addon": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23710,8 +23710,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/subscriptions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23747,13 +23747,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/vendor\/subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/vendor/subscriptions" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/subscriptions/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23772,8 +23772,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/mobile.blog\/(?P[^\\\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/subscriptions/mobile.blog/(?P[^\\/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23800,8 +23800,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P[\\d]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/subscriptions/(?P[\\d]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23820,8 +23820,8 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/webhooks": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/webhooks": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -23884,13 +23884,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/vendor\/webhooks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/vendor/webhooks" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/schema": { - "namespace": "wpcom\/v2", + "/wpcom/v2/marketplace/vendor/schema": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23905,13 +23905,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/marketplace\/vendor\/schema" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/marketplace/vendor/schema" } ] } }, - "\/wpcom\/v2\/me\/blocks\/sites": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/blocks/sites": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23937,13 +23937,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/blocks\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/blocks/sites" } ] } }, - "\/wpcom\/v2\/me\/connections": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/connections": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -23969,13 +23969,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/connections" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/connections" } ] } }, - "\/wpcom\/v2\/me\/connections\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/connections/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -24027,8 +24027,8 @@ } ] }, - "\/wpcom\/v2\/me\/following\/recommendations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/following/recommendations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24049,13 +24049,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/following\/recommendations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/following/recommendations" } ] } }, - "\/wpcom\/v2\/me\/following": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/following": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24076,13 +24076,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/following" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/following" } ] } }, - "\/wpcom\/v2\/me\/gutenberg": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/gutenberg": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -24117,13 +24117,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/gutenberg" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/gutenberg" } ] } }, - "\/wpcom\/v2\/me\/locale": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/locale": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -24155,13 +24155,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/locale" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/locale" } ] } }, - "\/wpcom\/v2\/me\/preferences": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/preferences": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -24199,13 +24199,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/preferences" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/preferences" } ] } }, - "\/wpcom\/v2\/me\/profile": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/profile": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24220,13 +24220,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/profile" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/profile" } ] } }, - "\/wpcom\/v2\/me\/sites\/stats\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/sites/stats/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24276,13 +24276,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/sites\/stats\/summary" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/sites/stats/summary" } ] } }, - "\/wpcom\/v2\/me\/ssh-keys": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/ssh-keys": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -24309,13 +24309,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/me\/ssh-keys" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/me/ssh-keys" } ] } }, - "\/wpcom\/v2\/me\/ssh-keys\/(?P[\\w.:-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/me/ssh-keys/(?P[\\w.:-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -24349,8 +24349,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/private\/media\/(?P[^\/]+)\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/private/media/(?P[^/]+)/download": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24363,8 +24363,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/subscribers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/subscribers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24394,8 +24394,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/earnings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/earnings": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24413,8 +24413,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/coupons": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/coupons": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -24499,8 +24499,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/coupons\/apply": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/coupons/apply": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24529,8 +24529,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/coupon\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/coupon/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "PUT", "DELETE" @@ -24620,8 +24620,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/gifts\/(?P[\\d]+)\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/gifts/(?P[\\d]+)/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24634,8 +24634,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/gift\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/gift/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -24648,8 +24648,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/subscriber-importer\/get_subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/subscriber-importer/get_subscriptions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24662,8 +24662,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/subscriber-importer\/import": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/subscriber-importer/import": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24697,8 +24697,8 @@ } ] }, - "\/wpcom\/v2\/migration-provider-notifications\/(?Pblogvault)\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/migration-provider-notifications/(?Pblogvault)/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24711,8 +24711,8 @@ } ] }, - "\/wpcom\/v2\/migration-provider-redirect\/(?Pblogvault)\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/migration-provider-redirect/(?Pblogvault)/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24725,8 +24725,8 @@ } ] }, - "\/wpcom\/v2\/mobile\/feature-announcements": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mobile/feature-announcements": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24752,13 +24752,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mobile\/feature-announcements" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mobile/feature-announcements" } ] } }, - "\/wpcom\/v2\/mobile\/feature-flags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mobile/feature-flags": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24798,13 +24798,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mobile\/feature-flags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mobile/feature-flags" } ] } }, - "\/wpcom\/v2\/mobile\/migration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mobile/migration": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24819,13 +24819,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mobile\/migration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mobile/migration" } ] } }, - "\/wpcom\/v2\/mobile\/remote-config": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mobile/remote-config": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24840,13 +24840,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mobile\/remote-config" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mobile/remote-config" } ] } }, - "\/wpcom\/v2\/mobile\/share-app-link": { - "namespace": "wpcom\/v2", + "/wpcom/v2/mobile/share-app-link": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24870,13 +24870,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mobile\/share-app-link" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mobile/share-app-link" } ] } }, - "\/wpcom\/v2\/iap\/notification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/iap/notification": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -24891,13 +24891,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/iap\/notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/iap/notification" } ] } }, - "\/wpcom\/v2\/iap\/transactions\/(?[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/iap/transactions/(?[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24912,13 +24912,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/iap\/transactions\/(?[\\d]+)" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/iap/transactions/(?[\\d]+)" } ] } }, - "\/wpcom\/v2\/iap\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/iap/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -24939,13 +24939,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/iap\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/iap/products" } ] } }, - "\/wpcom\/v2\/iap\/orders": { - "namespace": "wpcom\/v2", + "/wpcom/v2/iap/orders": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -25014,13 +25014,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/iap\/orders" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/iap/orders" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/newsletter-categories": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newsletter-categories": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25033,8 +25033,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newsletter-categories\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newsletter-categories/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -25062,8 +25062,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newsletter-categories\/count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newsletter-categories/count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25081,8 +25081,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newsletter-categories\/subscriptions\/(?P[0-9]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newsletter-categories/subscriptions/(?P[0-9]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25099,8 +25099,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newsletter-categories\/subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newsletter-categories/subscriptions": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -25150,8 +25150,8 @@ } ] }, - "\/wpcom\/v2\/send\/spain-newsletter\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/send/spain-newsletter/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25187,13 +25187,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/send\/spain-newsletter\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/send/spain-newsletter/new" } ] } }, - "\/wpcom\/v2\/newspack-gpt\/chat-completion": { - "namespace": "wpcom\/v2", + "/wpcom/v2/newspack-gpt/chat-completion": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25217,13 +25217,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/newspack-gpt\/chat-completion" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/newspack-gpt/chat-completion" } ] } }, - "\/wpcom\/v2\/newspack-manager\/log": { - "namespace": "wpcom\/v2", + "/wpcom/v2/newspack-manager/log": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25274,13 +25274,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/newspack-manager\/log" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/newspack-manager/log" } ] } }, - "\/wpcom\/v2\/notifications": { - "namespace": "wpcom\/v2", + "/wpcom/v2/notifications": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25305,13 +25305,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/notifications" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/notifications" } ] } }, - "\/wpcom\/v2\/oauth2\/client-data\/(?P[\\w-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/oauth2/client-data/(?P[\\w-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25329,8 +25329,8 @@ } ] }, - "\/wpcom\/v2\/odie\/chat\/(?P[a-zA-Z0-9-_]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/odie/chat/(?P[a-zA-Z0-9-_]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -25393,8 +25393,8 @@ } ] }, - "\/wpcom\/v2\/odie\/conversations\/(?P[a-zA-Z0-9-_]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/odie/conversations/(?P[a-zA-Z0-9-_]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25423,8 +25423,8 @@ } ] }, - "\/wpcom\/v2\/odie\/chat\/(?P[a-zA-Z0-9-_]+)\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/odie/chat/(?P[a-zA-Z0-9-_]+)/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -25493,8 +25493,8 @@ } ] }, - "\/wpcom\/v2\/odie\/assistant\/performance-profiler": { - "namespace": "wpcom\/v2", + "/wpcom/v2/odie/assistant/performance-profiler": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25530,13 +25530,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/odie\/assistant\/performance-profiler" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/odie/assistant/performance-profiler" } ] } }, - "\/wpcom\/v2\/odie\/chat\/(?P[a-zA-Z0-9-_]+)\/(?P\\d+)\/(?P\\d+)\/feedback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/odie/chat/(?P[a-zA-Z0-9-_]+)/(?P\\d+)/(?P\\d+)/feedback": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25570,8 +25570,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/odie-search\/search\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/odie-search/search/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25595,8 +25595,8 @@ } ] }, - "\/wpcom\/v2\/oembed-proxy": { - "namespace": "wpcom\/v2", + "/wpcom/v2/oembed-proxy": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25611,13 +25611,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/oembed-proxy" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/oembed-proxy" } ] } }, - "\/wpcom\/v2\/oembed-proxy\/instagram": { - "namespace": "wpcom\/v2", + "/wpcom/v2/oembed-proxy/instagram": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25632,13 +25632,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/oembed-proxy\/instagram" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/oembed-proxy/instagram" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/onboarding-customization": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/onboarding-customization": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -25668,8 +25668,8 @@ } ] }, - "\/wpcom\/v2\/onboarding\/domains\/categories": { - "namespace": "wpcom\/v2", + "/wpcom/v2/onboarding/domains/categories": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25684,13 +25684,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/onboarding\/domains\/categories" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/onboarding/domains/categories" } ] } }, - "\/wpcom\/v2\/pagespeed": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pagespeed": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25716,13 +25716,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pagespeed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pagespeed" } ] } }, - "\/wpcom\/v2\/pending-blog-subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pending-blog-subscriptions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25737,13 +25737,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pending-blog-subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pending-blog-subscriptions" } ] } }, - "\/wpcom\/v2\/pending-blog-subscriptions\/(?P[\\w-]+)\/confirm": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pending-blog-subscriptions/(?P[\\w-]+)/confirm": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -25760,8 +25760,8 @@ } ] }, - "\/wpcom\/v2\/pending-blog-subscriptions\/(?P[\\w-]+)\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pending-blog-subscriptions/(?P[\\w-]+)/delete": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -25778,8 +25778,8 @@ } ] }, - "\/wpcom\/v2\/photodna": { - "namespace": "wpcom\/v2", + "/wpcom/v2/photodna": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25800,13 +25800,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/photodna" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/photodna" } ] } }, - "\/wpcom\/v2\/pigeon\/subscribe": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pigeon/subscribe": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -25863,13 +25863,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pigeon\/subscribe" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pigeon/subscribe" } ] } }, - "\/wpcom\/v2\/pigeon\/confirm": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pigeon/confirm": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25926,13 +25926,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pigeon\/confirm" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pigeon/confirm" } ] } }, - "\/wpcom\/v2\/plans\/details": { - "namespace": "wpcom\/v2", + "/wpcom/v2/plans/details": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25952,13 +25952,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/plans\/details" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/plans/details" } ] } }, - "\/wpcom\/v2\/plans\/mobile": { - "namespace": "wpcom\/v2", + "/wpcom/v2/plans/mobile": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25978,13 +25978,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/plans\/mobile" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/plans/mobile" } ] } }, - "\/wpcom\/v2\/plugins\/featured": { - "namespace": "wpcom\/v2", + "/wpcom/v2/plugins/featured": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -25999,13 +25999,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/plugins\/featured" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/plugins/featured" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/plugins\/recommended": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/plugins/recommended": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26025,8 +26025,8 @@ } ] }, - "\/wpcom\/v2\/post-comment-subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/post-comment-subscriptions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26041,13 +26041,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/post-comment-subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/post-comment-subscriptions" } ] } }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P[\\w-]+)\/confirm": { - "namespace": "wpcom\/v2", + "/wpcom/v2/post-comment-subscriptions/(?P[\\w-]+)/confirm": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -26064,8 +26064,8 @@ } ] }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P[\\w-]+)\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/post-comment-subscriptions/(?P[\\w-]+)/update": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -26088,8 +26088,8 @@ } ] }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P[\\w-]+)\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/post-comment-subscriptions/(?P[\\w-]+)/delete": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -26106,8 +26106,8 @@ } ] }, - "\/wpcom\/v2\/presales\/chat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/presales/chat": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26128,13 +26128,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/presales\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/presales/chat" } ] } }, - "\/wpcom\/v2\/send\/pressable-hubspot-form\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/send/pressable-hubspot-form/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26166,13 +26166,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/send\/pressable-hubspot-form\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/send/pressable-hubspot-form/new" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/currencies": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pricing-dashboard/currencies": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26187,13 +26187,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pricing-dashboard\/currencies" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pricing-dashboard/currencies" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/prices": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pricing-dashboard/prices": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -26253,13 +26253,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pricing-dashboard\/prices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pricing-dashboard/prices" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/staging-prod-diff": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pricing-dashboard/staging-prod-diff": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26274,13 +26274,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pricing-dashboard\/staging-prod-diff" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pricing-dashboard/staging-prod-diff" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/prod-sync": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pricing-dashboard/prod-sync": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26295,13 +26295,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pricing-dashboard\/prod-sync" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pricing-dashboard/prod-sync" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/jetpack-products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/pricing-dashboard/jetpack-products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26316,13 +26316,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/pricing-dashboard\/jetpack-products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/pricing-dashboard/jetpack-products" } ] } }, - "\/wpcom\/v2\/privacy-policy": { - "namespace": "wpcom\/v2", + "/wpcom/v2/privacy-policy": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26337,13 +26337,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/privacy-policy" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/privacy-policy" } ] } }, - "\/wpcom\/v2\/privacy-policy\/(?P[a-zA-Z\\-\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/privacy-policy/(?P[a-zA-Z\\-\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26356,8 +26356,8 @@ } ] }, - "\/wpcom\/v2\/private-podcasts\/auth": { - "namespace": "wpcom\/v2", + "/wpcom/v2/private-podcasts/auth": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26372,13 +26372,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/private-podcasts\/auth" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/private-podcasts/auth" } ] } }, - "\/wpcom\/v2\/private-podcasts\/token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/private-podcasts/token": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26399,13 +26399,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/private-podcasts\/token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/private-podcasts/token" } ] } }, - "\/wpcom\/v2\/private-podcasts\/feed": { - "namespace": "wpcom\/v2", + "/wpcom/v2/private-podcasts/feed": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26426,13 +26426,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/private-podcasts\/feed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/private-podcasts/feed" } ] } }, - "\/wpcom\/v2\/private-podcasts\/file": { - "namespace": "wpcom\/v2", + "/wpcom/v2/private-podcasts/file": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26458,13 +26458,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/private-podcasts\/file" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/private-podcasts/file" } ] } }, - "\/wpcom\/v2\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26488,13 +26488,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/products" } ] } }, - "\/wpcom\/v2\/auth\/qr-code\/validate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/auth/qr-code/validate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26520,13 +26520,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/auth\/qr-code\/validate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/auth/qr-code/validate" } ] } }, - "\/wpcom\/v2\/auth\/qr-code\/authenticate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/auth/qr-code/authenticate": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26552,13 +26552,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/auth\/qr-code\/authenticate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/auth/qr-code/authenticate" } ] } }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/posts\/(?P\\d+)\/follow": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/posts/(?P\\d+)/follow": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26571,8 +26571,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/posts\/(?P\\d+)\/mute": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/posts/(?P\\d+)/mute": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26585,8 +26585,8 @@ } ] }, - "\/wpcom\/v2\/read\/interests": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/interests": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26601,13 +26601,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/read\/interests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/read/interests" } ] } }, - "\/wpcom\/v2\/read\/lists\/(?P\\d+)\/export": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/lists/(?P\\d+)/export": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26620,8 +26620,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/notification-subscriptions\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/notification-subscriptions/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26634,8 +26634,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/notification-subscriptions\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/notification-subscriptions/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26648,8 +26648,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/subscription-details": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/subscription-details": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26662,8 +26662,8 @@ } ] }, - "\/wpcom\/v2\/read\/subscriptions\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/subscriptions/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26676,8 +26676,8 @@ } ] }, - "\/wpcom\/v2\/read\/tags\/(?P[^\\\/]+)\/cards": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/tags/(?P[^\\/]+)/cards": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26751,8 +26751,8 @@ } ] }, - "\/wpcom\/v2\/read\/tags\/cards": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/tags/cards": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26823,13 +26823,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/read\/tags\/cards" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/read/tags/cards" } ] } }, - "\/wpcom\/v2\/read\/tags\/(?P[^\\\/]+)\/posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/tags/(?P[^\\/]+)/posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26889,8 +26889,8 @@ } ] }, - "\/wpcom\/v2\/read\/tags\/posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/tags/posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -26952,13 +26952,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/read\/tags\/posts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/read/tags/posts" } ] } }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/posts\/(?P\\d+)\/tags\/add": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/posts/(?P\\d+)/tags/add": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26977,8 +26977,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/posts\/(?P\\d+)\/remember": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/posts/(?P\\d+)/remember": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -26991,8 +26991,8 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P\\d+)\/posts\/(?P\\d+)\/forget": { - "namespace": "wpcom\/v2", + "/wpcom/v2/read/sites/(?P\\d+)/posts/(?P\\d+)/forget": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27005,8 +27005,8 @@ } ] }, - "\/wpcom\/v2\/seen-posts\/seen\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27045,13 +27045,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27090,13 +27090,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/delete" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/all\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/all/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27131,13 +27131,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/all\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/all/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/blog\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/blog/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27176,13 +27176,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/blog\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/blog/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/blog\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/blog/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27221,13 +27221,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/blog\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/blog/delete" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/pixel.gif": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/seen/pixel.gif": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27242,13 +27242,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/seen\/pixel.gif" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/seen/pixel.gif" } ] } }, - "\/wpcom\/v2\/seen-posts\/unseen\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/seen-posts/unseen/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27263,13 +27263,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/seen-posts\/unseen\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/seen-posts/unseen/status" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/answer": { - "namespace": "wpcom\/v2", + "/wpcom/v2/segmentation-survey/answer": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -27308,13 +27308,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/segmentation-survey\/answer" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/segmentation-survey/answer" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/answers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/segmentation-survey/answers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27334,13 +27334,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/segmentation-survey\/answers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/segmentation-survey/answers" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/(?P[\\w.:-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/segmentation-survey/(?P[\\w.:-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27358,8 +27358,8 @@ } ] }, - "\/wpcom\/v2\/segmentation-survey\/answers\/link": { - "namespace": "wpcom\/v2", + "/wpcom/v2/segmentation-survey/answers/link": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -27387,13 +27387,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/segmentation-survey\/answers\/link" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/segmentation-survey/answers/link" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/send-email-continue-site-build": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/send-email-continue-site-build": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27406,8 +27406,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/simple-payments\/paypal\/payment": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/simple-payments/paypal/payment": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27420,8 +27420,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/simple-payments\/paypal\/(?P[A-Z\\-\\d]+)\/execute": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/simple-payments/paypal/(?P[A-Z\\-\\d]+)/execute": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27434,8 +27434,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-assembler": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-assembler": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -27541,8 +27541,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/atomic\/transfer-with-software": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/atomic/transfer-with-software": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27583,8 +27583,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27634,8 +27634,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration\/application-passwords": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration/application-passwords": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27664,8 +27664,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration\/wpcom-survey": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration/wpcom-survey": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27692,8 +27692,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration\/application-passwords\/setup": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration/application-passwords/setup": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27712,8 +27712,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration\/cancel-migration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration/cancel-migration": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27726,8 +27726,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/automated-migration\/find-ticket": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/automated-migration/find-ticket": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27740,8 +27740,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/coming-soon": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/coming-soon": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27760,8 +27760,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/copy-from-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/copy-from-site": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27779,8 +27779,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles-variation\/current": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles-variation/current": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27793,8 +27793,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles-variation\/site-accent-color": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles-variation/site-accent-color": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -27825,8 +27825,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles-variation\/theme": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles-variation/theme": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27839,8 +27839,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles-variation\/font-pairings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles-variation/font-pairings": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27851,12 +27851,12 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -27864,8 +27864,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles-variation\/color-palettes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles-variation/color-palettes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27876,12 +27876,12 @@ ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -27889,8 +27889,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/launch": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/launch": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27903,8 +27903,8 @@ } ] }, - "\/wpcom\/v2\/migrations\/from-source\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/migrations/from-source/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27922,8 +27922,8 @@ } ] }, - "\/wpcom\/v2\/migrations\/from-source\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/migrations/from-source/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27945,8 +27945,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/migrate-from\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/migrate-from/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27964,8 +27964,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/reset-migration": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/reset-migration": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -27978,8 +27978,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/migration-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/migration-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -27992,8 +27992,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/migration-enabled\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/migration-enabled/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28011,8 +28011,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/migrate-provision\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/migrate-provision/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28030,8 +28030,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/migration-flow": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/migration-flow": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -28051,8 +28051,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-migration-status-sticker": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-migration-status-sticker": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -28096,8 +28096,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-owner-transfer": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-owner-transfer": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28119,8 +28119,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-owner-transfer\/eligibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-owner-transfer/eligibility": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28138,8 +28138,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-owner-transfer\/confirm": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-owner-transfer/confirm": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28157,8 +28157,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/preview-links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/preview-links": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -28178,8 +28178,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/preview-links\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/preview-links/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -28198,8 +28198,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/reset-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/reset-site": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28212,8 +28212,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/reset-site\/content-summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/reset-site/content-summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28226,8 +28226,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/reset-site\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/reset-site/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28240,8 +28240,8 @@ } ] }, - "\/wpcom\/v2\/restore-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/restore-site": { + "namespace": "wpcom/v2", "methods": [ "PUT" ], @@ -28261,13 +28261,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/restore-site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/restore-site" } ] } }, - "\/wpcom\/v2\/segments": { - "namespace": "wpcom\/v2", + "/wpcom/v2/segments": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28282,13 +28282,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/segments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/segments" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -28320,8 +28320,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -28344,8 +28344,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/validate-quota": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/validate-quota": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28358,8 +28358,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/production-site-details": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/production-site-details": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28372,8 +28372,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/push-to-staging\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/push-to-staging/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28412,8 +28412,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/pull-from-staging\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/pull-from-staging/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28463,8 +28463,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/staging-site\/sync-state": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/staging-site/sync-state": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28477,8 +28477,8 @@ } ] }, - "\/wpcom\/v2\/site-suggestions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/site-suggestions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28502,13 +28502,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/site-suggestions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/site-suggestions" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -28608,8 +28608,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity\/rewindable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity/rewindable": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28695,8 +28695,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity\/count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity/count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28782,8 +28782,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity\/count\/group": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity/count/group": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28869,8 +28869,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity\/(?P[\\d.]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity/(?P[\\d.]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28883,8 +28883,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/activity\/(?P[\\d.]+)\/share": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/activity/(?P[\\d.]+)/share": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -28903,8 +28903,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/shares-count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/shares-count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -28917,8 +28917,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/alerts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/alerts": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -28955,8 +28955,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/alerts\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/alerts/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -28996,8 +28996,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/alerts\/fix": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/alerts/fix": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -29037,8 +29037,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/backup\/retention\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/backup/retention/update": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29057,8 +29057,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29071,8 +29071,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/commercial-classification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/commercial-classification": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29089,8 +29089,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/dashboard\/cards": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/dashboard/cards": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29103,8 +29103,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/dashboard\/cards-data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/dashboard/cards-data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29147,8 +29147,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-contributors": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-contributors": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29161,8 +29161,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-contributors\/add": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-contributors/add": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29180,8 +29180,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-contributors\/remove": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-contributors/remove": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29199,8 +29199,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-services": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-services": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29218,8 +29218,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-goals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-goals": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -29248,8 +29248,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/google-drive\/connection": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/google-drive/connection": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29262,8 +29262,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/google-drive\/sheets": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/google-drive/sheets": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29289,8 +29289,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/gutenberg": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/gutenberg": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -29323,8 +29323,8 @@ } ] }, - "\/wpcom\/v3\/sites\/mobile.blog\/gutenberg": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog/gutenberg": { + "namespace": "wpcom/v3", "methods": [ "GET", "POST", @@ -29357,8 +29357,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-has-never-published-post": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-has-never-published-post": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29378,8 +29378,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hosting-provider": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hosting-provider": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29392,8 +29392,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -29430,8 +29430,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram\/(?P\\d+)\/check-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram/(?P\\d+)/check-token": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29444,8 +29444,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram\/(?P\\d+)\/check-legacy": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram/(?P\\d+)/check-legacy": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29464,8 +29464,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-intent": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-intent": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29494,8 +29494,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-layouts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-layouts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29532,8 +29532,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/mailpoet\/add-upgrade": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/mailpoet/add-upgrade": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29546,8 +29546,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/nudge\/click": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/nudge/click": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29564,8 +29564,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-type": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-type": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29587,8 +29587,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/site-vertical": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/site-vertical": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29610,8 +29610,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/user-type": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/user-type": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -29633,8 +29633,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/post-counts\/(?P[\\w-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/post-counts/(?P[\\w-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29654,8 +29654,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/posts\/(?P\\d+)\/map-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/posts/(?P\\d+)/map-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29677,8 +29677,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/posts\/map-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/posts/map-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29700,8 +29700,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/published-actions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/published-actions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29714,8 +29714,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/posts\/(?P\\d+)\/publicize\/published-actions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/posts/(?P\\d+)/publicize/published-actions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29728,8 +29728,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/abspath": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/abspath": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29742,8 +29742,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/(?P\\d+)\/file\/(?P\\S+)\/url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/(?P\\d+)/file/(?P\\S+)/url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29768,8 +29768,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/(?P\\d+)\/file\/(?P\\S+)\/stream": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/(?P\\d+)/file/(?P\\S+)/stream": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29798,8 +29798,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/(?P\\d+)\/extension\/(?P\\S+)\/url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/(?P\\d+)/extension/(?P\\S+)/url": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29828,8 +29828,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/(?P\\d+)\/extension\/(?P\\S+)\/stream": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/(?P\\d+)/extension/(?P\\S+)/stream": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -29862,8 +29862,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/filtered\/prepare": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/filtered/prepare": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29889,8 +29889,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/filtered\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/filtered/status": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29912,8 +29912,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/ls": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/ls": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29939,8 +29939,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backup\/path-info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backup/path-info": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -29966,8 +29966,8 @@ } ] }, - "\/wpcom\/v3\/sites\/mobile.blog\/rewind\/backups": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog/rewind/backups": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -29989,8 +29989,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backups": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backups": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30003,8 +30003,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/backups\/enqueue": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/backups/enqueue": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30017,8 +30017,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/billing\/receipts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/billing/receipts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30031,8 +30031,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/capabilities": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/capabilities": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30045,8 +30045,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/credentials": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/credentials": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30059,8 +30059,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/credentials\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/credentials/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30077,8 +30077,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/credentials\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/credentials/update": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30138,8 +30138,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/credentials\/test": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/credentials/test": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30156,8 +30156,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/downloads": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/downloads": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -30195,8 +30195,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/downloads\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/downloads/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -30230,8 +30230,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/downloads\/(?P\\d+)\/data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/downloads/(?P\\d+)/data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30251,8 +30251,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/options": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/options": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -30272,8 +30272,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/policies": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/policies": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30286,8 +30286,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/preflight": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/preflight": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -30307,8 +30307,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/restores": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/restores": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30321,8 +30321,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/restores\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/restores/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -30345,8 +30345,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/scheduled": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/scheduled": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -30371,8 +30371,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/screenshots": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/screenshots": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30389,8 +30389,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/size": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/size": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30403,8 +30403,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/staging": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/staging": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30417,8 +30417,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/staging\/update": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/staging/update": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30436,8 +30436,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/staging\/list": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/staging/list": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30450,8 +30450,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30464,8 +30464,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/basic": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/basic": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30478,8 +30478,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/rewind\/send-security-notification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/rewind/send-security-notification": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30492,8 +30492,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scan": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scan": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30506,8 +30506,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scan\/counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scan/counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30520,8 +30520,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scan\/history": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scan/history": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30546,8 +30546,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scan\/enqueue": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scan/enqueue": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30560,8 +30560,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scan\/threat\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scan/threat/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30574,8 +30574,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scheduled-updates\/notifications": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scheduled-updates/notifications": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -30610,8 +30610,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/scheduled-updates\/verify-path-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/scheduled-updates/verify-path-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30630,8 +30630,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/theme-setup": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/theme-setup": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30644,8 +30644,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/theme-support": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/theme-support": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30658,8 +30658,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/transfer": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/transfer": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -30683,8 +30683,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/typekit-fonts\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/typekit-fonts/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE", @@ -30728,8 +30728,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/typekit-fonts\/(?P[^\\\/]+)\/previewkit": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/typekit-fonts/(?P[^\\/]+)/previewkit": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30742,8 +30742,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/typekit-fonts\/(?P\\w+)\/family": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/typekit-fonts/(?P\\w+)/family": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30756,8 +30756,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/typekit-fonts\/(?P\\w+)\/publish": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/typekit-fonts/(?P\\w+)/publish": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -30774,8 +30774,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/typekit-fonts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/typekit-fonts": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -30801,8 +30801,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/vouchers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/vouchers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30815,8 +30815,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/vouchers\/(?P[\\w-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/vouchers/(?P[\\w-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30829,8 +30829,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/vouchers\/(?P[\\w-]+)\/assign": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/vouchers/(?P[\\w-]+)/assign": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -30847,8 +30847,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?gla\/connect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?gla/connect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30861,8 +30861,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?coupons": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?coupons": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -30992,8 +30992,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?coupons\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?coupons/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31006,8 +31006,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/partners\/(?P[\\w]+)\/notifications": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/partners/(?P[\\w]+)/notifications": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -31030,8 +31030,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/partners\/(?P[\\w]+)\/remote-site-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/partners/(?P[\\w]+)/remote-site-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31050,8 +31050,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/partners\/(?P[\\w]+)\/revoke-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/partners/(?P[\\w]+)/revoke-token": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -31070,8 +31070,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/categories": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/categories": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31213,8 +31213,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/categories\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/categories/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31227,8 +31227,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/shipping_classes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/shipping_classes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31365,8 +31365,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/shipping_classes\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/shipping_classes/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31379,8 +31379,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31553,7 +31553,7 @@ "required": false }, "attribute": { - "description": "Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.", + "description": "Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.", "type": "string", "required": false }, @@ -31607,8 +31607,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31621,8 +31621,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/connection\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/reddit/connection/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31635,8 +31635,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/connection\/connect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/reddit/connection/connect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31654,8 +31654,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/connection\/disconnect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/reddit/connection/disconnect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31668,8 +31668,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/(?Pads|conversions)\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/reddit/(?Pads|conversions)/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -31690,8 +31690,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/products-(?P\\w+).csv": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/reddit/products-(?P\\w+).csv": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31704,8 +31704,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?settings\/general": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?settings/general": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31718,8 +31718,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?settings\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?settings/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31732,8 +31732,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?settings\/google-for-woocommerce": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?settings/google-for-woocommerce": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31746,8 +31746,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?shipping\/zones\/(?P[\\d]+)\/methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?shipping/zones/(?P[\\d]+)/methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31760,8 +31760,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?shipping\/zones\/(?P[\\d]+)\/methods\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?shipping/zones/(?P[\\d]+)/methods/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31774,8 +31774,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?shipping\/zones\/(?P[\\d]+)\/locations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?shipping/zones/(?P[\\d]+)/locations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31788,8 +31788,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?shipping\/zones": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?shipping/zones": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31802,8 +31802,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?shipping\/zones\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?shipping/zones/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31816,8 +31816,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/connection\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/snapchat/connection/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31830,8 +31830,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/connection\/connect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/snapchat/connection/connect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31849,8 +31849,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/connection\/disconnect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/snapchat/connection/disconnect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31863,8 +31863,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/(?Pads|conversions)\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/snapchat/(?Pads|conversions)/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -31881,8 +31881,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/products-(?P\\w+).csv": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/snapchat/products-(?P\\w+).csv": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -31895,8 +31895,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?gla\/sync": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?gla/sync": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -31920,8 +31920,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/(?P[\\d]+)\/variations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/(?P[\\d]+)/variations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32094,7 +32094,7 @@ "required": false }, "attribute": { - "description": "Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.", + "description": "Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.", "type": "string", "required": false }, @@ -32175,8 +32175,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wc\/(?:(?P[0-9a-z]+)\/)?products\/(?P[\\d]+)\/variations\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wc/(?:(?P[0-9a-z]+)/)?products/(?P[\\d]+)/variations/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32189,8 +32189,8 @@ } ] }, - "\/wpcom\/v2\/calypso-slack-channel-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/calypso-slack-channel-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32205,13 +32205,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/calypso-slack-channel-status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/calypso-slack-channel-status" } ] } }, - "\/wpcom\/v2\/starter-designs": { - "namespace": "wpcom\/v2", + "/wpcom/v2/starter-designs": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32241,13 +32241,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/starter-designs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/starter-designs" } ] } }, - "\/wpcom\/v2\/starter-designs\/(?P[a-z0-9_\\-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/starter-designs/(?P[a-z0-9_\\-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32260,8 +32260,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/sync\/backup": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/studio-app/sync/backup": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -32316,8 +32316,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/sync\/import": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/studio-app/sync/import": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -32358,8 +32358,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/sync\/get-latest-rewind-id": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/studio-app/sync/get-latest-rewind-id": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32372,8 +32372,8 @@ } ] }, - "\/wpcom\/v2\/studio-app\/updates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/updates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32401,13 +32401,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/updates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/updates" } ] } }, - "\/wpcom\/v2\/studio-app\/updates\/RELEASES": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/updates/RELEASES": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32435,13 +32435,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/updates\/RELEASES" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/updates/RELEASES" } ] } }, - "\/wpcom\/v2\/studio-app\/feature-flags": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/feature-flags": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32456,13 +32456,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/feature-flags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/feature-flags" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/chat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/ai-assistant/chat": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -32505,13 +32505,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/ai-assistant\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/ai-assistant/chat" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/quota": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/ai-assistant/quota": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32526,13 +32526,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/ai-assistant\/quota" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/ai-assistant/quota" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/welcome": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/ai-assistant/welcome": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32547,13 +32547,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/ai-assistant\/welcome" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/ai-assistant/welcome" } ] } }, - "\/wpcom\/v2\/studio-app\/token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/token": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -32568,13 +32568,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/token" } ] } }, - "\/wpcom\/v2\/studio-app\/blueprints": { - "namespace": "wpcom\/v2", + "/wpcom/v2/studio-app/blueprints": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32589,13 +32589,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/studio-app\/blueprints" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/studio-app/blueprints" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/count": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/count": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32608,8 +32608,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32646,8 +32646,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32660,8 +32660,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/import": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/import": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -32704,8 +32704,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/import\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/import/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32718,8 +32718,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/import\/reset_state": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/import/reset_state": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -32732,8 +32732,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32846,8 +32846,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers_by_user_type": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers_by_user_type": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32909,8 +32909,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/individual": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/subscribers/individual": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -32939,8 +32939,8 @@ } ] }, - "\/wpcom\/v2\/subscribers\/emails\/resend\/subscription-confirmation": { - "namespace": "wpcom\/v2", + "/wpcom/v2/subscribers/emails/resend/subscription-confirmation": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -32972,13 +32972,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/emails\/resend\/subscription-confirmation" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/subscribers/emails/resend/subscription-confirmation" } ] } }, - "\/wpcom\/v2\/subscribers\/emails\/resend\/subscription-management": { - "namespace": "wpcom\/v2", + "/wpcom/v2/subscribers/emails/resend/subscription-management": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33005,13 +33005,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/subscribers\/emails\/resend\/subscription-management" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/subscribers/emails/resend/subscription-management" } ] } }, - "\/wpcom\/v2\/support-interactions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/support-interactions": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -33090,13 +33090,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/support-interactions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/support-interactions" } ] } }, - "\/wpcom\/v2\/support-interactions\/(?P[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/support-interactions/(?P[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33109,8 +33109,8 @@ } ] }, - "\/wpcom\/v2\/support-interactions\/(?P[a-zA-Z0-9-]+)\/events": { - "namespace": "wpcom\/v2", + "/wpcom/v2/support-interactions/(?P[a-zA-Z0-9-]+)/events": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33147,8 +33147,8 @@ } ] }, - "\/wpcom\/v2\/support-interactions\/(?P[a-zA-Z0-9-]+)\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/support-interactions/(?P[a-zA-Z0-9-]+)/status": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -33176,8 +33176,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/supportforums\/ticket": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/supportforums/ticket": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33195,8 +33195,8 @@ } ] }, - "\/wpcom\/v2\/tags\/recommended": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tags/recommended": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33217,13 +33217,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tags\/recommended" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tags/recommended" } ] } }, - "\/wpcom\/v2\/test": { - "namespace": "wpcom\/v2", + "/wpcom/v2/test": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33238,13 +33238,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/test" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/test" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/themes\/retained-benefits": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/themes/retained-benefits": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33257,8 +33257,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/themes\/activation-history": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/themes/activation-history": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33271,8 +33271,8 @@ } ] }, - "\/wpcom\/v2\/themes\/readymade-templates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/themes/readymade-templates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33287,13 +33287,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/themes\/readymade-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/themes/readymade-templates" } ] } }, - "\/wpcom\/v2\/themes\/readymade-templates\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/themes/readymade-templates/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33311,8 +33311,8 @@ } ] }, - "\/wpcom\/v2\/themes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/themes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33336,13 +33336,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/themes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/themes" } ] } }, - "\/wpcom\/v2\/themes\/(?P[^\\\/]+)\/premium-details": { - "namespace": "wpcom\/v2", + "/wpcom/v2/themes/(?P[^\\/]+)/premium-details": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33355,8 +33355,8 @@ } ] }, - "\/wpcom\/v2\/timezones": { - "namespace": "wpcom\/v2", + "/wpcom/v2/timezones": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33371,13 +33371,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/timezones" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/timezones" } ] } }, - "\/wpcom\/v2\/emails\/titan\/(?P[^\\\/]+)\/order-provisioning-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P[^\\/]+)/order-provisioning-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33390,8 +33390,8 @@ } ] }, - "\/wpcom\/v2\/emails\/titan\/(?P\\d+)\/control-panel-auto-login-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P\\d+)/control-panel-auto-login-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33404,8 +33404,8 @@ } ] }, - "\/wpcom\/v2\/emails\/titan\/(?P\\d+)\/control-panel-iframe-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P\\d+)/control-panel-iframe-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33418,8 +33418,8 @@ } ] }, - "\/wpcom\/v2\/emails\/titan\/(?P[^\\\/]+)\/check-mailbox-availability\/(?P[^\\\/\\+]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P[^\\/]+)/check-mailbox-availability/(?P[^\\/\\+]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33432,8 +33432,8 @@ } ] }, - "\/wpcom\/v2\/emails\/titan\/(?P[^\\\/]+)\/mailbox\/(?P[^\\\/\\+]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P[^\\/]+)/mailbox/(?P[^\\/\\+]+)": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -33446,8 +33446,8 @@ } ] }, - "\/wpcom\/v2\/emails\/titan\/(?P[^\\\/]+)\/mailbox\/create": { - "namespace": "wpcom\/v2", + "/wpcom/v2/emails/titan/(?P[^\\/]+)/mailbox/create": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33458,7 +33458,7 @@ ], "args": { "name": { - "description": "The name of the mailbox owner\/user", + "description": "The name of the mailbox owner/user", "type": "string", "required": true }, @@ -33478,7 +33478,7 @@ "required": true }, "is_admin": { - "description": "Whether this user should have administrative permissions\/privileges for the domain", + "description": "Whether this user should have administrative permissions/privileges for the domain", "type": "boolean", "default": false, "required": false @@ -33487,8 +33487,8 @@ } ] }, - "\/wpcom\/v2\/titan\/redirect-info\/(?Pstaging|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/titan/redirect-info/(?Pstaging|live)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33501,8 +33501,8 @@ } ] }, - "\/wpcom\/v2\/verticals": { - "namespace": "wpcom\/v2", + "/wpcom/v2/verticals": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33547,13 +33547,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/verticals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/verticals" } ] } }, - "\/wpcom\/v2\/verticals\/(?P[%&\\s\\w]+)\/templates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/verticals/(?P[%&\\s\\w]+)/templates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33572,8 +33572,8 @@ } ] }, - "\/wpcom\/v2\/verticals\/(?P[%&\\s\\w]+)\/templates\/(?P[\\w-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/verticals/(?P[%&\\s\\w]+)/templates/(?P[\\w-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33597,8 +33597,8 @@ } ] }, - "\/wpcom\/v2\/verticals\/(?P[%&\\s\\w]+)\/images": { - "namespace": "wpcom\/v2", + "/wpcom/v2/verticals/(?P[%&\\s\\w]+)/images": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33627,8 +33627,8 @@ } ] }, - "\/wpcom\/v2\/tortuga\/(?P.+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tortuga/(?P.+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33641,8 +33641,8 @@ } ] }, - "\/wpcom\/v2\/traffic-guide-download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/traffic-guide-download": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33657,13 +33657,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/traffic-guide-download" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/traffic-guide-download" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -33737,8 +33737,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/login_links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/login_links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33769,8 +33769,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/capital_links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/capital_links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33807,8 +33807,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/tos_agreements": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/tos_agreements": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33836,8 +33836,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33857,8 +33857,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/capabilities": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/capabilities": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33886,8 +33886,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/platform_checkout": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/platform_checkout": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -33925,8 +33925,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/embedded\/session": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/accounts/embedded/session": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -33946,8 +33946,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/accounts\/fraud_services": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/accounts/fraud_services": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -33969,13 +33969,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/accounts\/fraud_services" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/accounts/fraud_services" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/emails\/unsubscribe": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/emails/unsubscribe": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34001,8 +34001,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -34098,8 +34098,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/preview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34131,8 +34131,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_skus": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_skus": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34155,8 +34155,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34176,8 +34176,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34205,8 +34205,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/mark_ready_to_ship": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/mark_ready_to_ship": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34234,8 +34234,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/ship": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/ship": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34263,8 +34263,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/deliver": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/deliver": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34292,8 +34292,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/mark_undeliverable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/mark_undeliverable": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34321,8 +34321,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/apple_pay\/domains": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/apple_pay/domains": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34353,8 +34353,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/charges\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/charges/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -34400,8 +34400,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/customers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/customers": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -34470,8 +34470,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/customers\/platform": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/customers/platform": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34520,8 +34520,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/customers\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/customers/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -34590,8 +34590,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/customers\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/customers/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34620,8 +34620,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/overview-all": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/overview-all": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34641,8 +34641,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/overview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/overview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34697,8 +34697,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -34790,8 +34790,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34846,8 +34846,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -34912,8 +34912,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34937,8 +34937,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/deposits\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/deposits/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -34958,8 +34958,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35044,8 +35044,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35105,8 +35105,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/status_counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/status_counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35126,8 +35126,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -35197,8 +35197,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35222,8 +35222,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -35277,8 +35277,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/disputes\/(?P\\w+)\/close": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/disputes/(?P\\w+)/close": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -35306,8 +35306,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/documents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/documents": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35377,8 +35377,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/documents\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/documents/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35428,8 +35428,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/documents\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/documents/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35449,8 +35449,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_method_domains": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/payment_method_domains": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -35484,8 +35484,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/files\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/files/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35505,8 +35505,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/files\/(?P[\\w\\d_-]+)\/contents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/files/(?P[\\w\\d_-]+)/contents": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35526,8 +35526,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/files": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/files": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -35567,8 +35567,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/status\/(?Pallow|block|review)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/status/(?Pallow|block|review)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35596,8 +35596,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35626,8 +35626,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35651,8 +35651,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/order_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/order_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35676,8 +35676,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/payment_intent_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/payment_intent_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35701,8 +35701,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_outcomes\/transaction_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_outcomes/transaction_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35726,8 +35726,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_ruleset": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_ruleset": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -35765,8 +35765,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/fraud_ruleset\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/fraud_ruleset/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -35790,8 +35790,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/intentions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/intentions": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -35920,8 +35920,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/intentions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/intentions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -36010,8 +36010,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/intentions\/(?P[\\w\\d_-]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/intentions/(?P[\\w\\d_-]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36042,8 +36042,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/intentions\/(?P[\\w\\d_-]+)\/capture": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/intentions/(?P[\\w\\d_-]+)/capture": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36081,8 +36081,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/invoices\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/invoices/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -36120,8 +36120,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/invoices\/(?P[\\w\\d_-]+)\/pay": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/invoices/(?P[\\w\\d_-]+)/pay": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36145,8 +36145,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/currency\/rates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/currency/rates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36174,8 +36174,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/init": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/init": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36242,8 +36242,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/oauth\/init": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/oauth/init": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36310,8 +36310,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/embedded": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/embedded": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36367,8 +36367,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/onboarding\/fields_data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/onboarding/fields_data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36395,13 +36395,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/fields_data" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/onboarding/fields_data" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/business_types": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/business_types": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36421,8 +36421,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/onboarding\/mccs\/tree": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/onboarding/mccs/tree": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36449,13 +36449,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/mccs\/tree" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/onboarding/mccs/tree" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/required_verification_information": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/required_verification_information": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36491,8 +36491,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/router\/po_eligible": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/router/po_eligible": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36556,8 +36556,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/onboarding\/redirect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/onboarding/redirect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36584,13 +36584,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/redirect" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/onboarding/redirect" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/onboarding\/embedded\/finalize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/onboarding/embedded/finalize": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36625,8 +36625,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/payment_methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36661,8 +36661,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/payment_methods\/recommended": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/payment_methods/recommended": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -36689,13 +36689,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_methods\/recommended" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/payment_methods/recommended" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_methods\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/payment_methods/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -36746,8 +36746,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_methods\/(?P[\\w\\d_-]+)\/detach": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/payment_methods/(?P[\\w\\d_-]+)/detach": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36775,8 +36775,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/products\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/products/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -36838,8 +36838,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/products": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36883,8 +36883,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/products\/prices\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/products/prices/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -36916,8 +36916,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/refunds": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/refunds": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -36977,8 +36977,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/setup_intents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/setup_intents": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37042,8 +37042,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/setup_intents\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/setup_intents/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37063,8 +37063,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/locations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/locations": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -37121,8 +37121,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/locations\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/locations/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET", @@ -37184,8 +37184,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/subscriptions": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37237,8 +37237,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/subscriptions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/subscriptions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE", @@ -37300,8 +37300,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/subscriptions\/items\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/subscriptions/items/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37337,8 +37337,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/subscriptions\/minimum_amount\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/subscriptions/minimum_amount/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37358,8 +37358,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/connection_tokens": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/connection_tokens": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37387,8 +37387,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/timeline\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/timeline/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37412,8 +37412,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/tracking\/order": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/tracking/order": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37441,8 +37441,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/tracking\/link-session": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/tracking/link-session": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37470,8 +37470,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/tracking\/forter-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/tracking/forter-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -37503,8 +37503,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/tracking\/info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/tracking/info": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37524,8 +37524,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37695,8 +37695,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37846,8 +37846,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -37871,8 +37871,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38032,8 +38032,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38057,8 +38057,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/transactions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/transactions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -38108,8 +38108,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/reporting\/payment_activity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/reporting/payment_activity": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38146,8 +38146,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/authorizations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/authorizations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38222,8 +38222,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/authorizations\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/authorizations/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38278,8 +38278,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/authorizations\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/authorizations/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38334,8 +38334,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/payment_process_config\/factors": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/payment_process_config/factors": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38355,8 +38355,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/webhook\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/webhook/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38376,8 +38376,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/webhook\/platform\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/webhook/platform/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38397,8 +38397,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/webhook\/failed_events": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/webhook/failed_events": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38418,8 +38418,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/zendesk": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/zendesk": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38449,13 +38449,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/zendesk" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/zendesk" } ] } }, - "\/wpcom\/v2\/wcpay\/zendesk\/woopay": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/zendesk/woopay": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38481,13 +38481,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/zendesk\/woopay" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/zendesk/woopay" } ] } }, - "\/wpcom\/v2\/wcpay\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38509,13 +38509,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/status" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/readers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/readers": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -38590,8 +38590,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/terminal\/readers\/charges-summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/terminal/readers/charges-summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38617,8 +38617,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/reader-charges\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/reader-charges/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38641,8 +38641,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/capital\/active_loan_summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/capital/active_loan_summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38662,8 +38662,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/capital\/loans": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/capital/loans": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38683,8 +38683,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/vat\/(?P[\\w\\.\\%]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/vat/(?P[\\w\\.\\%]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38704,8 +38704,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/vat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/vat": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38737,8 +38737,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38770,8 +38770,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/incentives": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/incentives": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38826,13 +38826,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/incentives" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/incentives" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/address-autocomplete-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/address-autocomplete-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38852,8 +38852,8 @@ } ] }, - "\/wpcom\/v2\/wcpay\/woopay\/compatibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wcpay/woopay/compatibility": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -38881,13 +38881,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/woopay\/compatibility" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wcpay/woopay/compatibility" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wcpay\/compatibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wcpay/compatibility": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -38911,8 +38911,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -38986,8 +38986,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/login_links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/login_links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39018,8 +39018,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/capital_links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/capital_links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39056,8 +39056,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/tos_agreements": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/tos_agreements": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39085,8 +39085,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/delete": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/delete": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39106,8 +39106,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/capabilities": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/capabilities": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39135,8 +39135,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/platform_checkout": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/platform_checkout": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -39174,8 +39174,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/embedded\/session": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/embedded/session": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39195,8 +39195,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/accounts\/fraud_services": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/accounts/fraud_services": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39218,13 +39218,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/fraud_services" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/fraud_services" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/accounts\/has_onboarding_started": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/accounts/has_onboarding_started": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39244,8 +39244,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/emails\/unsubscribe": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/emails/unsubscribe": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39271,8 +39271,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -39368,8 +39368,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/preview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39401,8 +39401,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_skus": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_skus": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39425,8 +39425,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39446,8 +39446,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39475,8 +39475,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/mark_ready_to_ship": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/mark_ready_to_ship": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39504,8 +39504,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/ship": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/ship": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39533,8 +39533,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/deliver": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/deliver": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39562,8 +39562,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/hardware_orders\/(?P[\\w\\d_-]+)\/mark_undeliverable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/hardware_orders/(?P[\\w\\d_-]+)/mark_undeliverable": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39591,8 +39591,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/apple_pay\/domains": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/apple_pay/domains": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39623,8 +39623,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/charges\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/charges/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -39670,8 +39670,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/customers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/customers": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -39740,8 +39740,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/customers\/platform": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/customers/platform": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -39790,8 +39790,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/customers\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/customers/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE" @@ -39860,8 +39860,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/customers\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/customers/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39890,8 +39890,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/overview-all": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/overview-all": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39911,8 +39911,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/overview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/overview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -39967,8 +39967,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -40060,8 +40060,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40116,8 +40116,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -40182,8 +40182,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40207,8 +40207,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/deposits\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/deposits/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40228,8 +40228,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40314,8 +40314,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40375,8 +40375,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/status_counts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/status_counts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40396,8 +40396,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -40467,8 +40467,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40492,8 +40492,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -40547,8 +40547,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/disputes\/(?P\\w+)\/close": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/disputes/(?P\\w+)/close": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -40576,8 +40576,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/documents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/documents": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40647,8 +40647,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/documents\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/documents/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40698,8 +40698,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/documents\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/documents/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40719,8 +40719,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_method_domains": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/payment_method_domains": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -40754,8 +40754,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/files\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/files/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40775,8 +40775,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/files\/(?P[\\w\\d_-]+)\/contents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/files/(?P[\\w\\d_-]+)/contents": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40796,8 +40796,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/files": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/files": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -40837,8 +40837,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/status\/(?Pallow|block|review)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/status/(?Pallow|block|review)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40866,8 +40866,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40896,8 +40896,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40921,8 +40921,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/order_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/order_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40946,8 +40946,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/payment_intent_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/payment_intent_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40971,8 +40971,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_outcomes\/transaction_id\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_outcomes/transaction_id/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -40996,8 +40996,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_ruleset": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_ruleset": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -41035,8 +41035,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/fraud_ruleset\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/fraud_ruleset/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41060,8 +41060,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/intentions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/intentions": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -41190,8 +41190,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/intentions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/intentions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -41280,8 +41280,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/intentions\/(?P[\\w\\d_-]+)\/cancel": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/intentions/(?P[\\w\\d_-]+)/cancel": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41312,8 +41312,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/intentions\/(?P[\\w\\d_-]+)\/capture": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/intentions/(?P[\\w\\d_-]+)/capture": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41351,8 +41351,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/invoices\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/invoices/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -41390,8 +41390,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/invoices\/(?P[\\w\\d_-]+)\/pay": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/invoices/(?P[\\w\\d_-]+)/pay": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41415,8 +41415,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/currency\/rates": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/currency/rates": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41444,8 +41444,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/init": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/init": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41512,8 +41512,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/oauth\/init": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/oauth/init": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41580,8 +41580,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/embedded": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/embedded": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41637,8 +41637,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/onboarding\/fields_data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/onboarding/fields_data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41665,13 +41665,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/fields_data" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/fields_data" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/business_types": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/business_types": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41691,8 +41691,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/onboarding\/mccs\/tree": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/onboarding/mccs/tree": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41719,13 +41719,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/mccs\/tree" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/mccs/tree" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/required_verification_information": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/required_verification_information": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41761,8 +41761,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/router\/po_eligible": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/router/po_eligible": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41826,8 +41826,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/onboarding\/redirect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/onboarding/redirect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41854,13 +41854,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/redirect" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/redirect" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/onboarding\/embedded\/finalize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/onboarding/embedded/finalize": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -41895,8 +41895,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/payment_methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41931,8 +41931,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/payment_methods\/recommended": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/payment_methods/recommended": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -41959,13 +41959,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_methods\/recommended" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/payment_methods/recommended" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_methods\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/payment_methods/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -42016,8 +42016,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_methods\/(?P[\\w\\d_-]+)\/detach": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/payment_methods/(?P[\\w\\d_-]+)/detach": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42045,8 +42045,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/products\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/products/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -42108,8 +42108,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/products": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42153,8 +42153,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/products\/prices\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/products/prices/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42186,8 +42186,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/refunds": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/refunds": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -42247,8 +42247,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/setup_intents": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/setup_intents": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42312,8 +42312,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/setup_intents\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/setup_intents/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -42333,8 +42333,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/locations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/locations": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -42391,8 +42391,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/locations\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/locations/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET", @@ -42454,8 +42454,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/subscriptions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/subscriptions": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42507,8 +42507,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/subscriptions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/subscriptions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "DELETE", @@ -42570,8 +42570,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/subscriptions\/items\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/subscriptions/items/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42607,8 +42607,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/subscriptions\/minimum_amount\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/subscriptions/minimum_amount/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -42628,8 +42628,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/connection_tokens": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/connection_tokens": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42657,8 +42657,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/timeline\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/timeline/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -42682,8 +42682,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/tracking\/order": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/tracking/order": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42711,8 +42711,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/tracking\/link-session": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/tracking/link-session": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42740,8 +42740,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/tracking\/forter-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/tracking/forter-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -42773,8 +42773,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/tracking\/info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/tracking/info": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -42794,8 +42794,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -42965,8 +42965,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43116,8 +43116,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43141,8 +43141,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions\/download": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions/download": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -43302,8 +43302,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions\/download\/(?P[^\/]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions/download/(?P[^/]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43327,8 +43327,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/transactions\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/transactions/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -43378,8 +43378,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/reporting\/payment_activity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/reporting/payment_activity": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43416,8 +43416,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/authorizations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/authorizations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43492,8 +43492,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/authorizations\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/authorizations/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43548,8 +43548,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/authorizations\/(?P[\\w\\d_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/authorizations/(?P[\\w\\d_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43604,8 +43604,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/payment_process_config\/factors": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/payment_process_config/factors": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43625,8 +43625,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/webhook\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/webhook/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -43646,8 +43646,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/webhook\/platform\/(?Pdev|live)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/webhook/platform/(?Pdev|live)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -43667,8 +43667,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/webhook\/failed_events": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/webhook/failed_events": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -43688,8 +43688,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/zendesk": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/zendesk": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43719,13 +43719,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/zendesk" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/zendesk" } ] } }, - "\/wpcom\/v2\/tumblrpay\/zendesk\/woopay": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/zendesk/woopay": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43751,13 +43751,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/zendesk\/woopay" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/zendesk/woopay" } ] } }, - "\/wpcom\/v2\/tumblrpay\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43779,13 +43779,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/status" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/readers": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/readers": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -43860,8 +43860,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/terminal\/readers\/charges-summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/terminal/readers/charges-summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43887,8 +43887,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/reader-charges\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/reader-charges/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43911,8 +43911,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/capital\/active_loan_summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/capital/active_loan_summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43932,8 +43932,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/capital\/loans": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/capital/loans": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43953,8 +43953,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/vat\/(?P[\\w\\.\\%]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/vat/(?P[\\w\\.\\%]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -43974,8 +43974,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/vat": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/vat": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44007,8 +44007,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/links": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/links": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44040,8 +44040,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/incentives": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/incentives": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44096,13 +44096,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/incentives" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/incentives" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/address-autocomplete-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/address-autocomplete-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44122,8 +44122,8 @@ } ] }, - "\/wpcom\/v2\/tumblrpay\/woopay\/compatibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblrpay/woopay/compatibility": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44151,13 +44151,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/woopay\/compatibility" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/tumblrpay/woopay/compatibility" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/compatibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/compatibility": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44181,8 +44181,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/tumblrpay\/send_money": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/tumblrpay/send_money": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44216,8 +44216,8 @@ } ] }, - "\/wpcom\/v2\/trelloCallback": { - "namespace": "wpcom\/v2", + "/wpcom/v2/trelloCallback": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -44239,13 +44239,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/trelloCallback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/trelloCallback" } ] } }, - "\/wpcom\/v2\/tumblr-smtp\/email-blocked\/(?P[0-9a-z\\@\\_'.-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/tumblr-smtp/email-blocked/(?P[0-9a-z\\@\\_'.-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44263,8 +44263,8 @@ } ] }, - "\/wpcom\/v2\/twilio-notification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/twilio-notification": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44279,13 +44279,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/twilio-notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/twilio-notification" } ] } }, - "\/wpcom\/v2\/twitter": { - "namespace": "wpcom\/v2", + "/wpcom/v2/twitter": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44327,13 +44327,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/twitter" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/twitter" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/unauth-file-upload": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/unauth-file-upload": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44351,8 +44351,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/unauth-file-upload\/remove": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/unauth-file-upload/remove": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44375,8 +44375,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/unauth-file-upload\/token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/unauth-file-upload/token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44400,8 +44400,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/unauth-file-upload\/(?P[0-9]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/unauth-file-upload/(?P[0-9]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44414,8 +44414,8 @@ } ] }, - "\/wpcom\/v2\/gravatar-upload": { - "namespace": "wpcom\/v2", + "/wpcom/v2/gravatar-upload": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44435,13 +44435,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/gravatar-upload" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/gravatar-upload" } ] } }, - "\/wpcom\/v2\/users\/username\/suggestions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/users/username/suggestions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44462,13 +44462,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/users\/username\/suggestions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/users/username/suggestions" } ] } }, - "\/wpcom\/v2\/verticals\/prompt": { - "namespace": "wpcom\/v2", + "/wpcom/v2/verticals/prompt": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44489,13 +44489,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/verticals\/prompt" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/verticals/prompt" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/media\/videopress-playback-jwt\/(?P[a-zA-Z0-9]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/media/videopress-playback-jwt/(?P[a-zA-Z0-9]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -44512,8 +44512,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/media\/videopress-privacy-details\/(?P[a-zA-Z0-9]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/media/videopress-privacy-details/(?P[a-zA-Z0-9]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -44530,8 +44530,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/media\/videopress-upload-jwt": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/media/videopress-upload-jwt": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -44548,8 +44548,8 @@ } ] }, - "\/wpcom\/v2\/videos": { - "namespace": "wpcom\/v2", + "/wpcom/v2/videos": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -44594,13 +44594,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/videos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/videos" } ] } }, - "\/wpcom\/v2\/vip\/cs-services\/perf\/upstream_response_time": { - "namespace": "wpcom\/v2", + "/wpcom/v2/vip/cs-services/perf/upstream_response_time": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44626,13 +44626,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/vip\/cs-services\/perf\/upstream_response_time" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/vip/cs-services/perf/upstream_response_time" } ] } }, - "\/wpcom\/v2\/vip\/cs-services\/perf\/edge_cache_stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/vip/cs-services/perf/edge_cache_stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44658,13 +44658,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/vip\/cs-services\/perf\/edge_cache_stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/vip/cs-services/perf/edge_cache_stats" } ] } }, - "\/wpcom\/v2\/wccom\/happiness\/ssr-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wccom/happiness/ssr-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44686,13 +44686,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wccom\/happiness\/ssr-url" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wccom/happiness/ssr-url" } ] } }, - "\/wpcom\/v2\/wccom\/happiness\/user-chat-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wccom/happiness/user-chat-token": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44707,13 +44707,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wccom\/happiness\/user-chat-token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wccom/happiness/user-chat-token" } ] } }, - "\/wpcom\/v2\/whats-new\/list": { - "namespace": "wpcom\/v2", + "/wpcom/v2/whats-new/list": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44744,13 +44744,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/whats-new\/list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/whats-new/list" } ] } }, - "\/wpcom\/v2\/whats-new\/seen-announcement-ids": { - "namespace": "wpcom\/v2", + "/wpcom/v2/whats-new/seen-announcement-ids": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -44777,13 +44777,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/whats-new\/seen-announcement-ids" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/whats-new/seen-announcement-ids" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/search": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woo/address-autocomplete/search": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44838,13 +44838,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woo\/address-autocomplete\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woo/address-autocomplete/search" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/select": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woo/address-autocomplete/select": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44877,13 +44877,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woo\/address-autocomplete\/select" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woo/address-autocomplete/select" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/map": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woo/address-autocomplete/map": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -44907,13 +44907,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woo\/address-autocomplete\/map" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woo/address-autocomplete/map" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/store-api\/checkout": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/woocommerce/store-api/checkout": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -44924,7 +44924,7 @@ ], "args": { "payment_method_id": { - "description": "Card id or other payment method id to pass on to Stripe \/ Woo. This corresponds to Stripe ID with the sources API https:\/\/stripe.com\/docs\/api\/sources.", + "description": "Card id or other payment method id to pass on to Stripe / Woo. This corresponds to Stripe ID with the sources API https://stripe.com/docs/api/sources.", "type": "string", "required": true }, @@ -45002,8 +45002,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/payment-methods": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/woocommerce/payment-methods": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45016,8 +45016,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/order-attribution\/(?Pchannel|source|campaign|device|channel-source)\/summary": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/order-attribution/(?Pchannel|source|campaign|device|channel-source)/summary": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45156,8 +45156,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/order-attribution\/(?Pchannel|source|campaign|device|channel-source)\/items": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/order-attribution/(?Pchannel|source|campaign|device|channel-source)/items": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45326,8 +45326,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/order-attribution\/(?Pchannel|source|campaign|device|channel-source)\/compare": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/order-attribution/(?Pchannel|source|campaign|device|channel-source)/compare": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45456,8 +45456,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/orders\/by-date": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/orders/by-date": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45470,13 +45470,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { @@ -45569,8 +45569,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/orders-by-product-type\/by-date": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/orders-by-product-type/by-date": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45583,13 +45583,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { @@ -45685,8 +45685,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/customers\/new-returning": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/customers/new-returning": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45699,13 +45699,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "filters": { @@ -45761,8 +45761,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/coupons": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/coupons": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45775,13 +45775,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "orderby": { @@ -45809,8 +45809,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/products": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/products": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -45823,13 +45823,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "orderby": { @@ -45962,8 +45962,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/options\/channels": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/options/channels": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46021,8 +46021,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/options\/sources": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/options/sources": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46080,8 +46080,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/sessions\/by-date": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/sessions/by-date": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46094,13 +46094,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { @@ -46120,8 +46120,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/reports\/sessions\/by-conversion-rate": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/reports/sessions/by-conversion-rate": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46134,13 +46134,13 @@ "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { @@ -46160,8 +46160,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/options\/campaigns": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/options/campaigns": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46219,8 +46219,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/analytics\/options\/channels-sources": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/analytics/options/channels-sources": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46278,8 +46278,8 @@ } ] }, - "\/wpcom\/v2\/woocommerce\/countries\/regions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woocommerce/countries/regions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46294,13 +46294,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/countries\/regions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woocommerce/countries/regions" } ] } }, - "\/wpcom\/v2\/woocommerce\/payments\/paypal\/ppcp\/proxy\/test": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woocommerce/payments/paypal/ppcp/proxy/test": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46315,13 +46315,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/payments\/paypal\/ppcp\/proxy\/test" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woocommerce/payments/paypal/ppcp/proxy/test" } ] } }, - "\/wpcom\/v2\/woocommerce\/payments\/paypal\/ppcp\/proxy\/create-order": { - "namespace": "wpcom\/v2", + "/wpcom/v2/woocommerce/payments/paypal/ppcp/proxy/create-order": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46336,13 +46336,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/payments\/paypal\/ppcp\/proxy\/create-order" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/woocommerce/payments/paypal/ppcp/proxy/create-order" } ] } }, - "\/wpcom\/v2\/wc\/reddit\/authorize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wc/reddit/authorize": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46368,13 +46368,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wc\/reddit\/authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wc/reddit/authorize" } ] } }, - "\/wpcom\/v2\/wc\/snapchat\/authorize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wc/snapchat/authorize": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46400,13 +46400,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wc\/snapchat\/authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wc/snapchat/authorize" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/woocommerce\/active-theme": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/woocommerce/active-theme": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46419,8 +46419,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/adflow\/conf": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/adflow/conf": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46445,8 +46445,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/cmp\/vendors\/(?P[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/cmp/vendors/(?P[a-zA-Z-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46465,8 +46465,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/cmp\/v(?P[0-9]+)\/vendors\/(?P[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/cmp/v(?P[0-9]+)/vendors/(?P[a-zA-Z-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46494,8 +46494,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/cmp\/configuration\/(?P[a-zA-Z_-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/cmp/configuration/(?P[a-zA-Z_-]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46519,8 +46519,8 @@ } ] }, - "\/wpcom\/v2\/wordads\/send-email": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wordads/send-email": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46552,13 +46552,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wordads\/send-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wordads/send-email" } ] } }, - "\/wpcom\/v2\/wordads\/send-guides-email": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wordads/send-guides-email": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46598,13 +46598,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wordads\/send-guides-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wordads/send-guides-email" } ] } }, - "\/wpcom\/v2\/wordads\/send-notification": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wordads/send-notification": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46654,13 +46654,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wordads\/send-notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wordads/send-notification" } ] } }, - "\/wpcom\/v2\/wordads\/redirect": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wordads/redirect": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46712,13 +46712,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wordads\/redirect" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wordads/redirect" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/wordads\/site-info": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/wordads/site-info": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46731,8 +46731,8 @@ } ] }, - "\/wpcom\/v2\/wordcamp-coupons": { - "namespace": "wpcom\/v2", + "/wpcom/v2/wordcamp-coupons": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46758,13 +46758,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/wordcamp-coupons" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/wordcamp-coupons" } ] } }, - "\/wpcom\/v2\/work-with-us": { - "namespace": "wpcom\/v2", + "/wpcom/v2/work-with-us": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46779,13 +46779,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/work-with-us" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/work-with-us" } ] } }, - "\/wpcom\/v2\/work-with-us\/names": { - "namespace": "wpcom\/v2", + "/wpcom/v2/work-with-us/names": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46800,13 +46800,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/work-with-us\/names" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/work-with-us/names" } ] } }, - "\/wpcom\/v2\/help\/wpe-migration-ticket\/new": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/wpe-migration-ticket/new": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46835,13 +46835,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/wpe-migration-ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/wpe-migration-ticket/new" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/xposts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/xposts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46860,8 +46860,8 @@ } ] }, - "\/wpcom\/v2\/help\/zendesk\/ai": { - "namespace": "wpcom\/v2", + "/wpcom/v2/help/zendesk/ai": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -46889,13 +46889,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/help\/zendesk\/ai" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/help/zendesk/ai" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/woothemes\/ai-reply": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/woothemes/ai-reply": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46910,13 +46910,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/woothemes\/ai-reply" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/woothemes/ai-reply" } ] } }, - "\/wpcom\/v2\/zendesk-notification-staging\/ticket": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification-staging/ticket": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46931,13 +46931,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification-staging\/ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification-staging/ticket" } ] } }, - "\/wpcom\/v2\/zendesk\/triage\/(?P[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk/triage/(?P[a-zA-Z-]+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46950,8 +46950,8 @@ } ] }, - "\/wpcom\/v2\/zendesk-notification\/tumblr\/tos": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/tumblr/tos": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46966,13 +46966,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/tumblr\/tos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/tumblr/tos" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-created": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/a8c/user-created": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -46987,13 +46987,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/a8c\/user-created" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/a8c/user-created" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-deleted": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/a8c/user-deleted": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47008,13 +47008,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/a8c\/user-deleted" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/a8c/user-deleted" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-external-id-changed": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/a8c/user-external-id-changed": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47029,13 +47029,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/a8c\/user-external-id-changed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/a8c/user-external-id-changed" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/woothemes\/ticket": { - "namespace": "wpcom\/v2", + "/wpcom/v2/zendesk-notification/woothemes/ticket": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47050,13 +47050,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/zendesk-notification\/woothemes\/ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/zendesk-notification/woothemes/ticket" } ] } }, - "\/wpcom\/v3\/sites\/mobile.blog\/blogging-prompts": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog/blogging-prompts": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -47151,8 +47151,8 @@ } ] }, - "\/wpcom\/v3\/sites\/mobile.blog\/blogging-prompts\/(?P[\\d]+)": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog/blogging-prompts/(?P[\\d]+)": { + "namespace": "wpcom/v3", "methods": [ "GET" ], @@ -47171,8 +47171,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/business-hours\/localized-week": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/business-hours/localized-week": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47185,8 +47185,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/admin-color": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/admin-color": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47199,8 +47199,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/admin-menu": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/admin-menu": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47213,8 +47213,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai\/ai-assistant-feature": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-ai/ai-assistant-feature": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47227,8 +47227,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai\/completions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-ai/completions": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47255,8 +47255,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/jetpack-ai\/images\/generations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/jetpack-ai/images/generations": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47278,8 +47278,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/app-media": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/app-media": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47310,8 +47310,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/editor-assets": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/editor-assets": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47324,8 +47324,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/blog-stats": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/blog-stats": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47347,8 +47347,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/list\/(?Pgoogle_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/list/(?Pgoogle_photos|openverse|pexels)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47386,8 +47386,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/copy\/(?Pgoogle_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/copy/(?Pgoogle_photos|openverse|pexels)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47464,8 +47464,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/connection\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/connection/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -47485,8 +47485,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/connection\/(?Pgoogle_photos)\/picker_status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/connection/(?Pgoogle_photos)/picker_status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47499,8 +47499,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/session\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/session/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47513,8 +47513,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/session\/(?Pgoogle_photos)\/(?P.*)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/session/(?Pgoogle_photos)/(?P.*)": { + "namespace": "wpcom/v2", "methods": [ "GET", "DELETE" @@ -47534,8 +47534,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/external-media\/proxy\/(?Pgoogle_photos)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/external-media/proxy/(?Pgoogle_photos)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47553,8 +47553,8 @@ } ] }, - "\/wpcom\/v2\/following\/mine": { - "namespace": "wpcom\/v2", + "/wpcom/v2/following/mine": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47574,13 +47574,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/following\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/following/mine" } ] } }, - "\/wpcom\/v2\/following\/recommendations": { - "namespace": "wpcom\/v2", + "/wpcom/v2/following/recommendations": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47601,13 +47601,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/following\/recommendations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/following/recommendations" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/goodreads\/user-id": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/goodreads/user-id": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47627,8 +47627,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/checkGoogleDocVisibility": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/checkGoogleDocVisibility": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47641,8 +47641,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram-gallery\/connect-url": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram-gallery/connect-url": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47655,8 +47655,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram-gallery\/connections": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram-gallery/connections": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47669,8 +47669,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/instagram-gallery\/gallery": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/instagram-gallery/gallery": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47696,8 +47696,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/mailchimp": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/mailchimp": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47710,8 +47710,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/mailchimp\/groups": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/mailchimp/groups": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47724,8 +47724,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/mailchimp\/settings": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/mailchimp/settings": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47738,8 +47738,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/podcast-player": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/podcast-player": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47768,8 +47768,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/podcast-player\/track-quantity": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/podcast-player/track-quantity": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47782,8 +47782,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/profile": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/profile": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47796,8 +47796,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/related-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/related-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47810,8 +47810,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/related-posts\/enable": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/related-posts/enable": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -47824,8 +47824,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/related-posts\/(?P[\\d]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/related-posts/(?P[\\d]+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47844,8 +47844,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/resolve-redirect\/?(?P.+)?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/resolve-redirect/?(?P.+)?": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47864,8 +47864,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/template-loader\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/template-loader/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47884,8 +47884,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/post-types": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/post-types": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47898,8 +47898,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/top-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/top-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -47921,8 +47921,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/transients\/(?P\\w{1,172})": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/transients/(?P\\w{1,172})": { + "namespace": "wpcom/v2", "methods": [ "DELETE" ], @@ -47941,8 +47941,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/videopress\/meta": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/videopress/meta": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -48000,8 +48000,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/videopress\/(?P\\w+)\/poster": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/videopress/(?P\\w+)/poster": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -48041,8 +48041,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/videopress\/(?P\\w+)\/check-ownership\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/videopress/(?P\\w+)/check-ownership/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48055,8 +48055,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/videopress\/upload-jwt": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/videopress/upload-jwt": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -48073,8 +48073,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/videopress\/playback-jwt\/(?P\\w+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/videopress/playback-jwt/(?P\\w+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -48091,8 +48091,8 @@ } ] }, - "\/wpcom\/v3\/sites\/mobile.blog\/jitm": { - "namespace": "wpcom\/v3", + "/wpcom/v3/sites/mobile.blog/jitm": { + "namespace": "wpcom/v3", "methods": [ "GET", "POST" @@ -48139,8 +48139,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/email-preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/email-preview": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48169,8 +48169,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/gutenberg\/available-extensions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/gutenberg/available-extensions": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48183,8 +48183,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/hello": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/hello": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48197,8 +48197,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/status\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/status/?": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48224,8 +48224,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/product\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/product/?": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -48267,8 +48267,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/products\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/products/?": { + "namespace": "wpcom/v2", "methods": [ "POST", "GET" @@ -48301,8 +48301,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/memberships\/product\/(?P[0-9]+)\/?": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/memberships/product/(?P[0-9]+)/?": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -48360,8 +48360,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/connection-test-results": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/connection-test-results": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48374,8 +48374,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/send-email-preview": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/send-email-preview": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -48394,8 +48394,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/service-api-keys\/(?P[a-z\\-_]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/service-api-keys/(?P[a-z\\-_]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -48431,8 +48431,8 @@ } ] }, - "\/wpcom-origin\/jetpack\/v4": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "GET" ], @@ -48443,7 +48443,7 @@ ], "args": { "namespace": { - "default": "wpcom-origin\/jetpack\/v4", + "default": "wpcom-origin/jetpack/v4", "required": false }, "context": { @@ -48456,13 +48456,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/sites\/mobile.blog": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4/sites/mobile.blog": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "GET" ], @@ -48473,7 +48473,7 @@ ], "args": { "namespace": { - "default": "wpcom-origin\/jetpack\/v4", + "default": "wpcom-origin/jetpack/v4", "required": false }, "context": { @@ -48484,8 +48484,8 @@ } ] }, - "\/wpcom-origin\/jetpack\/v4\/search\/plan": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4/search/plan": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "GET" ], @@ -48500,13 +48500,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/plan" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/plan" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/settings": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4/search/settings": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "POST", "PUT", @@ -48532,13 +48532,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/settings" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/settings" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/stats": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4/search/stats": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "GET" ], @@ -48553,13 +48553,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/stats" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/stats" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/pricing": { - "namespace": "wpcom-origin\/jetpack\/v4", + "/wpcom-origin/jetpack/v4/search/pricing": { + "namespace": "wpcom-origin/jetpack/v4", "methods": [ "GET" ], @@ -48574,13 +48574,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/pricing" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/pricing" } ] } }, - "\/wp-block-editor\/v1": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -48591,7 +48591,7 @@ ], "args": { "namespace": { - "default": "wp-block-editor\/v1", + "default": "wp-block-editor/v1", "required": false }, "context": { @@ -48604,13 +48604,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wp-block-editor\/v1" + "href": "https://mobile.blog/wp-block-editor/v1" } ] } }, - "\/wp-block-editor\/v1\/sites\/mobile.blog": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/sites/mobile.blog": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -48621,7 +48621,7 @@ ], "args": { "namespace": { - "default": "wp-block-editor\/v1", + "default": "wp-block-editor/v1", "required": false }, "context": { @@ -48632,8 +48632,8 @@ } ] }, - "\/wp-block-editor\/v1\/sites\/mobile.blog\/export": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/sites/mobile.blog/export": { + "namespace": "wp-block-editor/v1", "methods": [ "GET", "GET" @@ -48653,8 +48653,8 @@ } ] }, - "\/wp-block-editor\/v1\/sites\/mobile.blog\/settings": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/sites/mobile.blog/settings": { + "namespace": "wp-block-editor/v1", "methods": [ "GET", "GET" @@ -48674,8 +48674,8 @@ } ] }, - "\/jetpack\/v4\/sites\/mobile.blog\/feature\/custom-content-types": { - "namespace": "jetpack\/v4", + "/jetpack/v4/sites/mobile.blog/feature/custom-content-types": { + "namespace": "jetpack/v4", "methods": [ "GET" ], @@ -48688,8 +48688,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/global-styles\/status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/global-styles/status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -48702,8 +48702,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/launchpad\/navigator": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/launchpad/navigator": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -48768,8 +48768,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/launchpad": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/launchpad": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -49151,8 +49151,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/atomic-migration-status\/migrate-guru-key": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/atomic-migration-status/migrate-guru-key": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -49165,8 +49165,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/atomic-migration-status\/wpcom-migration-key": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/atomic-migration-status/wpcom-migration-key": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -49179,8 +49179,8 @@ } ] }, - "\/newspack-blocks\/v1": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49191,7 +49191,7 @@ ], "args": { "namespace": { - "default": "newspack-blocks\/v1", + "default": "newspack-blocks/v1", "required": false }, "context": { @@ -49204,13 +49204,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/158030780\/" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/158030780/" } ] } }, - "\/newspack-blocks\/v1\/sites\/mobile.blog": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1/sites/mobile.blog": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49221,7 +49221,7 @@ ], "args": { "namespace": { - "default": "newspack-blocks\/v1", + "default": "newspack-blocks/v1", "required": false }, "context": { @@ -49232,8 +49232,8 @@ } ] }, - "\/newspack-blocks\/v1\/sites\/mobile.blog\/video-playlist": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1/sites/mobile.blog/video-playlist": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49246,8 +49246,8 @@ } ] }, - "\/newspack-blocks\/v1\/sites\/mobile.blog\/articles": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1/sites/mobile.blog/articles": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49569,8 +49569,8 @@ } ] }, - "\/newspack-blocks\/v1\/sites\/mobile.blog\/newspack-blocks-posts": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1/sites/mobile.blog/newspack-blocks-posts": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49908,8 +49908,8 @@ } ] }, - "\/newspack-blocks\/v1\/sites\/mobile.blog\/newspack-blocks-specific-posts": { - "namespace": "newspack-blocks\/v1", + "/newspack-blocks/v1/sites/mobile.blog/newspack-blocks-specific-posts": { + "namespace": "newspack-blocks/v1", "methods": [ "GET" ], @@ -49937,8 +49937,8 @@ } ] }, - "\/akismet\/v1": { - "namespace": "akismet\/v1", + "/akismet/v1": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -49949,7 +49949,7 @@ ], "args": { "namespace": { - "default": "akismet\/v1", + "default": "akismet/v1", "required": false }, "context": { @@ -49962,13 +49962,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/akismet\/v1" + "href": "https://mobile.blog/akismet/v1" } ] } }, - "\/akismet\/v1\/sites\/mobile.blog": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -49979,7 +49979,7 @@ ], "args": { "namespace": { - "default": "akismet\/v1", + "default": "akismet/v1", "required": false }, "context": { @@ -49990,8 +49990,8 @@ } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/key": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/key": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -50015,7 +50015,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": true } } @@ -50028,8 +50028,8 @@ } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/settings": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/settings": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -50064,8 +50064,8 @@ } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/stats": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/stats": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -50085,8 +50085,8 @@ } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/stats\/(?P[\\w+])": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/stats/(?P[\\w+])": { + "namespace": "akismet/v1", "methods": [ "GET" ], @@ -50105,8 +50105,8 @@ } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/alert": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/alert": { + "namespace": "akismet/v1", "methods": [ "GET", "POST", @@ -50122,7 +50122,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } @@ -50136,7 +50136,7 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } @@ -50148,15 +50148,15 @@ "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/get\/", + "description": "A 12-character Akismet API key. Available at akismet.com/get/", "required": false } } } ] }, - "\/akismet\/v1\/sites\/mobile.blog\/webhook": { - "namespace": "akismet\/v1", + "/akismet/v1/sites/mobile.blog/webhook": { + "namespace": "akismet/v1", "methods": [ "POST" ], @@ -50169,8 +50169,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50181,7 +50181,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze-app", + "default": "jetpack/v4/blaze-app", "required": false }, "context": { @@ -50194,13 +50194,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/jetpack\/v4\/blaze-app" + "href": "https://mobile.blog/jetpack/v4/blaze-app" } ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50211,7 +50211,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze-app", + "default": "jetpack/v4/blaze-app", "required": false }, "context": { @@ -50222,8 +50222,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50236,8 +50236,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50250,8 +50250,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/checkout": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/wpcom/checkout": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50268,8 +50268,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/credits(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/credits(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50282,8 +50282,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/media(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/media(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50296,8 +50296,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/media": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/media": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST" ], @@ -50310,8 +50310,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/media(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/wpcom/media(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50324,8 +50324,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/experiments(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/experiments(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50338,8 +50338,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/campaigns(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/campaigns(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50352,8 +50352,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/campaigns(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/campaigns(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50370,8 +50370,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/sites\/5836086\/campaigns(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/sites/5836086/campaigns(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50384,8 +50384,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/stats(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/stats(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50398,8 +50398,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/stats(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/stats(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50416,8 +50416,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/search(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/search(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50430,8 +50430,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/user(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/user(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50444,8 +50444,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/templates(?P[a-zA-Z0-9-_\\\/:]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/templates(?P[a-zA-Z0-9-_\\/:]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50458,8 +50458,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/subscriptions(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/subscriptions(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50472,8 +50472,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/subscriptions(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/subscriptions(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50490,8 +50490,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/payments(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/payments(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50504,8 +50504,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/(?Pv[0-9]+\\.?[0-9]*)\/payments(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/(?Pv[0-9]+\\.?[0-9]*)/payments(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50522,8 +50522,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/smart(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/smart(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50536,8 +50536,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/smart(?P[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/smart(?P[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50554,8 +50554,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/locations(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/locations(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50568,8 +50568,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/woo(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/woo(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50582,8 +50582,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/image(?P[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/image(?P[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "GET" ], @@ -50596,8 +50596,8 @@ } ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobile.blog\/sites\/5836086\/wordads\/dsp\/api\/v1\/logs": { - "namespace": "jetpack\/v4\/blaze-app", + "/jetpack/v4/blaze-app/sites/mobile.blog/sites/5836086/wordads/dsp/api/v1/logs": { + "namespace": "jetpack/v4/blaze-app", "methods": [ "POST", "PUT", @@ -50614,8 +50614,8 @@ } ] }, - "\/jetpack\/v4\/blaze": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -50626,7 +50626,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze", + "default": "jetpack/v4/blaze", "required": false }, "context": { @@ -50639,13 +50639,13 @@ "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/jetpack\/v4\/blaze" + "href": "https://mobile.blog/jetpack/v4/blaze" } ] } }, - "\/jetpack\/v4\/blaze\/sites\/mobile.blog": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze/sites/mobile.blog": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -50656,7 +50656,7 @@ ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze", + "default": "jetpack/v4/blaze", "required": false }, "context": { @@ -50667,8 +50667,8 @@ } ] }, - "\/jetpack\/v4\/blaze\/sites\/mobile.blog\/eligibility": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze/sites/mobile.blog/eligibility": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -50681,8 +50681,8 @@ } ] }, - "\/jetpack\/v4\/blaze\/sites\/mobile.blog\/dashboard": { - "namespace": "jetpack\/v4\/blaze", + "/jetpack/v4/blaze/sites/mobile.blog/dashboard": { + "namespace": "jetpack/v4/blaze", "methods": [ "GET" ], @@ -50695,8 +50695,8 @@ } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/internal": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "/wpcom/v2/mailpoet-bridge/v2/internal": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/internal", "methods": [ "GET" ], @@ -50707,7 +50707,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "default": "wpcom/v2/mailpoet-bridge/v2/internal", "required": false }, "context": { @@ -50720,13 +50720,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/internal" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/internal" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/internal\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "/wpcom/v2/mailpoet-bridge/v2/internal/sites/mobile.blog": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/internal", "methods": [ "GET" ], @@ -50737,7 +50737,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "default": "wpcom/v2/mailpoet-bridge/v2/internal", "required": false }, "context": { @@ -50748,8 +50748,8 @@ } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "GET" ], @@ -50760,7 +50760,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2", + "default": "wpcom/v2/mailpoet-bridge/v2", "required": false }, "context": { @@ -50773,13 +50773,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sites\/mobile.blog": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/sites/mobile.blog": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "GET" ], @@ -50790,7 +50790,7 @@ ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2", + "default": "wpcom/v2/mailpoet-bridge/v2", "required": false }, "context": { @@ -50801,8 +50801,8 @@ } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/me": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/me": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "POST" ], @@ -50823,13 +50823,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/me" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/me" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/premium": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/premium": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "POST" ], @@ -50850,13 +50850,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/premium" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/premium" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sender_domain": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/sender_domain": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "GET", "POST" @@ -50884,13 +50884,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/sender_domain" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/sender_domain" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sender_domain_verify\/(?P[^\/]+)": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/sender_domain_verify/(?P[^/]+)": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "POST" ], @@ -50909,8 +50909,8 @@ } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/authorized_email_address": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/authorized_email_address": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "GET", "POST" @@ -50938,13 +50938,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/authorized_email_address" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/authorized_email_address" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/stats": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/stats": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "PUT" ], @@ -50966,13 +50966,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/stats" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/bounces\/search": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", + "/wpcom/v2/mailpoet-bridge/v2/bounces/search": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", "methods": [ "POST" ], @@ -50994,13 +50994,13 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobile.blog\/mailpoet-bridge\/v2\/bounces\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobile.blog/mailpoet-bridge/v2/bounces/search" } ] } }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/connections": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/connections": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -51042,8 +51042,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/connections\/(?P[0-9]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/connections/(?P[0-9]+)": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -51084,8 +51084,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/scheduled-actions": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/scheduled-actions": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -51127,15 +51127,15 @@ }, "timestamp": { "type": "integer", - "description": "GMT\/UTC Unix timestamp in seconds for the action.", + "description": "GMT/UTC Unix timestamp in seconds for the action.", "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/scheduled-actions\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/scheduled-actions/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -51168,7 +51168,7 @@ }, "timestamp": { "type": "integer", - "description": "GMT\/UTC Unix timestamp in seconds for the action.", + "description": "GMT/UTC Unix timestamp in seconds for the action.", "required": false } } @@ -51181,8 +51181,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/services": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/services": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51195,8 +51195,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/share-post\/(?P\\d+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/share-post/(?P\\d+)": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -51226,8 +51226,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/posts\/(?P\\d+)\/publicize": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/posts/(?P\\d+)/publicize": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -51257,8 +51257,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/share-status": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/share-status": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51277,8 +51277,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/share-status\/sync": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/share-status/sync": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -51347,8 +51347,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/shares-data": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/shares-data": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51361,8 +51361,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/social-image-generator\/generate-token": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/social-image-generator/generate-token": { + "namespace": "wpcom/v2", "methods": [ "POST" ], @@ -51409,8 +51409,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/publicize\/social-image-generator\/font-options": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/publicize/social-image-generator/font-options": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51423,8 +51423,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/update-schedules\/capabilities": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/update-schedules/capabilities": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51437,8 +51437,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/update-schedules\/(?P[\\w]+)\/logs": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/update-schedules/(?P[\\w]+)/logs": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -51489,8 +51489,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/update-schedules\/(?P[\\w]+)\/active": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/update-schedules/(?P[\\w]+)/active": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -51513,8 +51513,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jetpack-global-styles": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jetpack-global-styles": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -51534,8 +51534,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor\/nux": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor/nux": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -51559,8 +51559,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor\/should-show-first-post-published-modal": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor/should-show-first-post-published-modal": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51573,8 +51573,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor\/has-seen-seller-celebration-modal": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor/has-seen-seller-celebration-modal": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -51603,8 +51603,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor\/has-seen-video-celebration-modal": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor/has-seen-video-celebration-modal": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -51633,8 +51633,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/block-editor\/recommended-tags-modal-dismissed": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/block-editor/recommended-tags-modal-dismissed": { + "namespace": "wpcom/v2", "methods": [ "POST", "PUT", @@ -51651,8 +51651,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/articles": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/articles": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -51974,8 +51974,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newspack-blocks-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newspack-blocks-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -52313,8 +52313,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/newspack-blocks-specific-posts": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/newspack-blocks-specific-posts": { + "namespace": "wpcom/v2", "methods": [ "GET" ], @@ -52342,8 +52342,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/update-schedules": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/update-schedules": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST" @@ -52368,14 +52368,14 @@ "arg_options": { "validate_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "validate_plugin_param" ], "sanitize_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "sanitize_plugin_param" @@ -52415,8 +52415,8 @@ } ] }, - "\/wpcom\/v2\/sites\/mobile.blog\/update-schedules\/(?P[\\w]+)": { - "namespace": "wpcom\/v2", + "/wpcom/v2/sites/mobile.blog/update-schedules/(?P[\\w]+)": { + "namespace": "wpcom/v2", "methods": [ "GET", "POST", @@ -52457,14 +52457,14 @@ "arg_options": { "validate_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "validate_plugin_param" ], "sanitize_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "sanitize_plugin_param" @@ -52510,8 +52510,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -53112,13 +53112,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML tag.", + "description": "Custom post description to be used in HTML tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -53329,7 +53329,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -53421,8 +53421,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -53674,13 +53674,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -53890,7 +53890,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -54003,8 +54003,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -54101,8 +54101,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -54161,8 +54161,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -54393,13 +54393,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -54609,7 +54609,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -54701,8 +54701,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/posts\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/posts/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -54737,8 +54737,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -55157,13 +55157,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -55236,8 +55236,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -55482,13 +55482,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -55582,8 +55582,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -55680,8 +55680,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -55740,8 +55740,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -55960,13 +55960,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -56039,8 +56039,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pages\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pages/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -56075,8 +56075,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/media": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/media": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -56391,13 +56391,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -56521,8 +56521,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/media\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/media/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -56661,13 +56661,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -56809,8 +56809,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/media\/(?P<id>[\\d]+)\/post-process": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/media/(?P<id>[\\d]+)/post-process": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -56836,8 +56836,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/media\/(?P<id>[\\d]+)\/edit": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/media/(?P<id>[\\d]+)/edit": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -56975,8 +56975,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-items": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-items": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -57386,13 +57386,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -57444,8 +57444,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-items\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-items/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -57622,13 +57622,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -57701,8 +57701,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-items\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-items/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -57863,13 +57863,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -57921,8 +57921,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-items\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-items/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -57957,8 +57957,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -58360,13 +58360,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -58447,8 +58447,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -58638,13 +58638,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -58746,8 +58746,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -58844,8 +58844,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -58904,8 +58904,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -59074,13 +59074,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -59161,8 +59161,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/blocks\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/blocks/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -59197,8 +59197,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -59295,8 +59295,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -59355,8 +59355,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -59494,8 +59494,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -59530,8 +59530,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -59678,8 +59678,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/lookup": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/lookup": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -59708,8 +59708,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/templates\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -59870,8 +59870,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -59968,8 +59968,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -60028,8 +60028,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -60172,8 +60172,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60208,8 +60208,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -60361,8 +60361,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/lookup": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/lookup": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60391,8 +60391,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/template-parts\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -60558,8 +60558,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/global-styles\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/global-styles/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60608,8 +60608,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/global-styles\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/global-styles/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60644,8 +60644,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/global-styles\/themes\/(?P<stylesheet>[\\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)\/variations": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/global-styles/themes/(?P<stylesheet>[\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)/variations": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60667,8 +60667,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/global-styles\/themes\/(?P<stylesheet>[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/global-styles/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -60690,8 +60690,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/global-styles\/(?P<id>[\\\/\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/global-styles/(?P<id>[\\/\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -60771,8 +60771,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -61077,8 +61077,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -61273,8 +61273,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -61371,8 +61371,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -61431,8 +61431,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -61590,8 +61590,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/navigation\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/navigation/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -61626,8 +61626,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-families": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-families": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -61747,8 +61747,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-families\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-families/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -61827,8 +61827,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-families\/(?P<font_family_id>[\\d]+)\/font-faces": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-families/(?P<font_family_id>[\\d]+)/font-faces": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -61950,8 +61950,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-families\/(?P<font_family_id>[\\d]+)\/font-faces\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-families/(?P<font_family_id>[\\d]+)/font-faces/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE" @@ -62010,8 +62010,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -62643,8 +62643,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -63020,8 +63020,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/filters": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/filters": { + "namespace": "wp/v2", "methods": [ "GET", "GET" @@ -63041,8 +63041,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/integrations": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/integrations": { + "namespace": "wp/v2", "methods": [ "GET", "GET" @@ -63074,8 +63074,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/integrations\/(?P<slug>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/integrations/(?P<slug>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "DELETE", @@ -63129,8 +63129,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/bulk_actions": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/bulk_actions": { + "namespace": "wp/v2", "methods": [ "POST", "POST" @@ -63182,8 +63182,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/trash": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/trash": { + "namespace": "wp/v2", "methods": [ "DELETE", "DELETE" @@ -63223,8 +63223,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/config": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/config": { + "namespace": "wp/v2", "methods": [ "GET", "GET" @@ -63244,8 +63244,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -63547,8 +63547,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/feedback\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/feedback/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "GET" @@ -63612,8 +63612,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_order": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_order": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -63883,13 +63883,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -64206,13 +64206,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -64269,8 +64269,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_order\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_order/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -64417,13 +64417,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -64632,13 +64632,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -64716,8 +64716,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_product": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_product": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -65046,13 +65046,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -65464,13 +65464,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -65563,8 +65563,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_product\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_product/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -65747,13 +65747,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -66034,13 +66034,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -66154,8 +66154,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_product\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_product/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -66319,13 +66319,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -66572,13 +66572,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -66671,8 +66671,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_product\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_product/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "GET" @@ -66736,8 +66736,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/types": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66762,8 +66762,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/types\/(?P<type>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/types/(?P<type>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66793,8 +66793,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/statuses": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/statuses": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66819,8 +66819,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/statuses\/(?P<status>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/statuses/(?P<status>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66850,8 +66850,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/taxonomies": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/taxonomies": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66881,8 +66881,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/taxonomies\/(?P<taxonomy>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/taxonomies/(?P<taxonomy>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -66912,8 +66912,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/categories": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/categories": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -67067,8 +67067,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/categories\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/categories/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -67169,8 +67169,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/tags": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/tags": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -67319,8 +67319,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/tags\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/tags/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -67416,8 +67416,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menus": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menus": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -67579,8 +67579,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menus\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menus/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -67689,8 +67689,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/wp_pattern_category": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/wp_pattern_category": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -67839,8 +67839,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/wp_pattern_category\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/wp_pattern_category/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -67936,8 +67936,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/users": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/users": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -68317,8 +68317,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/users\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/users/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -68595,8 +68595,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/users\/me": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/users/me": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -68849,8 +68849,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/comments": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/comments": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -69122,8 +69122,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/comments\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/comments/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -69289,8 +69289,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/search": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/search": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69379,8 +69379,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-renderer\/(?P<name>[a-z0-9-]+\/[a-z0-9-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-renderer/(?P<name>[a-z0-9-]+/[a-z0-9-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -69456,8 +69456,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-types": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69487,8 +69487,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-types\/(?P<namespace>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-types/(?P<namespace>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69518,8 +69518,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-types\/(?P<namespace>[a-zA-Z0-9_-]+)\/(?P<name>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-types/(?P<namespace>[a-zA-Z0-9_-]+)/(?P<name>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69554,8 +69554,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/settings": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/settings": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -69802,8 +69802,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/themes": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/themes": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69829,8 +69829,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/themes\/(?P<stylesheet>[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -69849,8 +69849,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/plugins": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/plugins": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -69918,8 +69918,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/plugins\/(?P<plugin>[^.\\\/]+(?:\\\/[^.\\\/]+)?)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/plugins/(?P<plugin>[^.\\/]+(?:\\/[^.\\/]+)?)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -69946,7 +69946,7 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } @@ -69971,7 +69971,7 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false }, "status": { @@ -70004,15 +70004,15 @@ }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } } ] }, - "\/wp\/v2\/sites\/mobile.blog\/sidebars": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/sidebars": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70037,8 +70037,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/sidebars\/(?P<id>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/sidebars/(?P<id>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -70091,8 +70091,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widget-types": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widget-types": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70117,8 +70117,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widget-types/(?P<id>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70148,8 +70148,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)\/encode": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widget-types/(?P<id>[a-zA-Z0-9_-]+)/encode": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -70178,8 +70178,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)\/render": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widget-types/(?P<id>[a-zA-Z0-9_-]+)/render": { + "namespace": "wp/v2", "methods": [ "POST" ], @@ -70203,8 +70203,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widgets": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widgets": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -70297,8 +70297,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/widgets\/(?P<id>[\\w\\-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/widgets/(?P<id>[\\w\\-]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -70405,8 +70405,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-directory\/search": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-directory/search": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70450,8 +70450,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/pattern-directory\/patterns": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/pattern-directory/patterns": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70548,8 +70548,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-patterns\/patterns": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-patterns/patterns": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70562,8 +70562,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/block-patterns\/categories": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/block-patterns/categories": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70576,8 +70576,8 @@ } ] }, - "\/wp-block-editor\/v1\/sites\/mobile.blog\/url-details": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/sites/mobile.blog/url-details": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -70597,8 +70597,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-locations": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-locations": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70623,8 +70623,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/menu-locations\/(?P<location>[\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/menu-locations/(?P<location>[\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70654,8 +70654,8 @@ } ] }, - "\/wp-block-editor\/v1\/sites\/mobile.blog\/navigation-fallback": { - "namespace": "wp-block-editor\/v1", + "/wp-block-editor/v1/sites/mobile.blog/navigation-fallback": { + "namespace": "wp-block-editor/v1", "methods": [ "GET" ], @@ -70668,8 +70668,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-collections": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-collections": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70709,8 +70709,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/font-collections\/(?P<slug>[\\\/\\w-]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/font-collections/(?P<slug>[\\/\\w-]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70735,8 +70735,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_order\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_order/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", "methods": [ "GET", "POST" @@ -70857,13 +70857,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -70920,8 +70920,8 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/jp_pay_order\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobile.blog/jp_pay_order/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET" ], @@ -70956,7 +70956,7 @@ } ] }, - "\/wp\/v2\/sites\/mobile.blog\/batch\/v1": { + "/wp/v2/sites/mobile.blog/batch/v1": { "namespace": "", "methods": [ "POST" @@ -71025,31 +71025,31 @@ }, "site_logo": 311, "site_icon": 93, - "site_icon_url": "https:\/\/mobiledotblog.wordpress.com\/wp-content\/uploads\/2019\/03\/mobile-logo.png", + "site_icon_url": "https://mobiledotblog.wordpress.com/wp-content/uploads/2019/03/mobile-logo.png", "_links": { "help": [ { - "href": "https:\/\/developer.wordpress.org\/rest-api\/" + "href": "https://developer.wordpress.org/rest-api/" } ], "wp:featuredmedia": [ { "embeddable": true, "type": "site_logo", - "href": "https:\/\/public-api.wordpress.com\/wp\/v2\/sites\/mobile.blog\/media\/311" + "href": "https://public-api.wordpress.com/wp/v2/sites/mobile.blog/media/311" }, { "embeddable": true, "type": "site_icon", - "href": "https:\/\/public-api.wordpress.com\/wp\/v2\/sites\/mobile.blog\/media\/93" + "href": "https://public-api.wordpress.com/wp/v2/sites/mobile.blog/media/93" } ], "curies": [ { "name": "wp", - "href": "https:\/\/api.w.org\/{rel}", + "href": "https://api.w.org/{rel}", "templated": true } ] } -} \ No newline at end of file +} diff --git a/test-data/api-details/test-case-05.json b/test-data/api-details/test-case-05.json index 9049b31bf..5b7554cf8 100644 --- a/test-data/api-details/test-case-05.json +++ b/test-data/api-details/test-case-05.json @@ -40,18 +40,28 @@ "routes": { "/tribe/tickets/v1/tickets": { "namespace": "tribe/tickets/v1", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "ISSUE": "This plugin has a irregular `args` structure. https://github.com/the-events-calendar/event-tickets", "args": [ - { "required": false }, + { + "required": false + }, { "description": { "type": "string", "in": "body", - "validate_callback": [{}, "is_string_or_empty"], + "validate_callback": [ + {}, + "is_string_or_empty" + ], "sanitize_callback": "sanitize_text_field", "default": "" }, @@ -73,6 +83,10 @@ "site_icon": 0, "site_icon_url": "", "_links": { - "help": [{ "href": "https://developer.wordpress.org/rest-api/" }] + "help": [ + { + "href": "https://developer.wordpress.org/rest-api/" + } + ] } } diff --git a/test-data/api-details/test-case-06.json b/test-data/api-details/test-case-06.json index aed377157..6fffa0552 100644 --- a/test-data/api-details/test-case-06.json +++ b/test-data/api-details/test-case-06.json @@ -1,67 +1,83 @@ { "name": "Mobile.blog", "description": "Mobile development at Automattic", - "url": "http:\/\/mobiledotblog.wordpress.com", - "home": "https:\/\/mobile.blog", + "url": "http://mobiledotblog.wordpress.com", + "home": "https://mobile.blog", "gmt_offset": 0, "timezone_string": "", "page_for_posts": 0, "page_on_front": 0, "show_on_front": "posts", "namespaces": [ - "oembed\/1.0", - "jetpack\/v4", - "wp\/v2", - "crowdsignal-forms\/v1", - "wpcom\/v2", - "wpcom\/v3", - "wpcom\/v2\/happytools\/internal\/v1", - "wpcom\/v2\/happytools\/external\/v1", - "wpcom\/v2\/happytools", - "wpcom\/v2\/sites", - "wpcom-origin\/jetpack\/v4", - "wp-block-editor\/v1", - "jetpack\/v4\/explat", - "newspack-blocks\/v1", - "akismet\/v1", - "jetpack\/v4\/blaze-app", - "jetpack\/v4\/blaze", - "wpcom\/v2\/mailpoet-bridge\/v2\/internal", - "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", - "wpcom\/v2\/mailpoet-bridge\/v2", - "wp-abilities\/v1" + "oembed/1.0", + "jetpack/v4", + "wp/v2", + "crowdsignal-forms/v1", + "wpcom/v2", + "wpcom/v3", + "wpcom/v2/happytools/internal/v1", + "wpcom/v2/happytools/external/v1", + "wpcom/v2/happytools", + "wpcom/v2/sites", + "wpcom-origin/jetpack/v4", + "wp-block-editor/v1", + "jetpack/v4/explat", + "newspack-blocks/v1", + "akismet/v1", + "jetpack/v4/blaze-app", + "jetpack/v4/blaze", + "wpcom/v2/mailpoet-bridge/v2/internal", + "wpcom/v2/mailpoet-bridge/v2/monitor", + "wpcom/v2/mailpoet-bridge/v2", + "wp-abilities/v1" ], "authentication": { "oauth2": { "endpoints": { - "authorize": "https:\/\/public-api.wordpress.com\/oauth2\/authorize", - "token": "https:\/\/public-api.wordpress.com\/oauth2\/token" + "authorize": "https://public-api.wordpress.com/oauth2/authorize", + "token": "https://public-api.wordpress.com/oauth2/token" }, - "authorize": "https:\/\/public-api.wordpress.com\/oauth2\/authorize", - "token": "https:\/\/public-api.wordpress.com\/oauth2\/token" + "authorize": "https://public-api.wordpress.com/oauth2/authorize", + "token": "https://public-api.wordpress.com/oauth2/token" } }, "routes": { - "\/sites\/mobiledotblog.wordpress.com": { + "/sites/mobiledotblog.wordpress.com": { "namespace": "", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "context": { "default": "view", "required": false } } + "methods": [ + "GET" + ], + "args": { + "context": { + "default": "view", + "required": false + } + } } ] }, - "\/batch\/v1": { + "/batch/v1": { "namespace": "", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "validation": { "type": "string", - "enum": ["require-all-validate", "normal"], + "enum": [ + "require-all-validate", + "normal" + ], "default": "normal", "required": false }, @@ -73,10 +89,18 @@ "properties": { "method": { "type": "string", - "enum": ["POST", "PUT", "PATCH", "DELETE"], + "enum": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "default": "POST" }, - "path": { "type": "string", "required": true }, + "path": { + "type": "string", + "required": true + }, "body": { "type": "object", "properties": [], @@ -86,8 +110,13 @@ "type": "object", "properties": [], "additionalProperties": { - "type": ["string", "array"], - "items": { "type": "string" } + "type": [ + "string", + "array" + ], + "items": { + "type": "string" + } } } } @@ -97,41 +126,77 @@ } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/batch\/v1" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/batch/v1" + } + ] + } }, - "\/oembed\/1.0": { - "namespace": "oembed\/1.0", - "methods": ["GET"], + "/oembed/1.0": { + "namespace": "oembed/1.0", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "oembed\/1.0", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "oembed/1.0", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/oembed\/1.0" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/oembed/1.0" + } + ] + } }, - "\/oembed\/1.0\/sites\/mobiledotblog.wordpress.com": { - "namespace": "oembed\/1.0", - "methods": ["GET"], + "/oembed/1.0/sites/mobiledotblog.wordpress.com": { + "namespace": "oembed/1.0", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "oembed\/1.0", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "oembed/1.0", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/oembed\/1.0\/sites\/mobiledotblog.wordpress.com\/proxy": { - "namespace": "oembed\/1.0", - "methods": ["GET"], + "/oembed/1.0/sites/mobiledotblog.wordpress.com/proxy": { + "namespace": "oembed/1.0", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL of the resource for which to fetch oEmbed data.", @@ -143,7 +208,10 @@ "description": "The oEmbed format to use.", "type": "string", "default": "json", - "enum": ["json", "xml"], + "enum": [ + "json", + "xml" + ], "required": false }, "maxwidth": { @@ -167,39 +235,70 @@ } ] }, - "\/jetpack\/v4": { - "namespace": "jetpack\/v4", - "methods": ["GET"], + "/jetpack/v4": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "jetpack\/v4", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "jetpack/v4", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/jetpack\/v4" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/jetpack/v4" + } + ] + } }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com": { - "namespace": "jetpack\/v4", - "methods": ["GET"], + "/jetpack/v4/sites/mobiledotblog.wordpress.com": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "jetpack\/v4", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "jetpack/v4", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/backup-helper-script": { - "namespace": "jetpack\/v4", - "methods": ["POST", "DELETE"], + "/jetpack/v4/sites/mobiledotblog.wordpress.com/backup-helper-script": { + "namespace": "jetpack/v4", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "helper": { "description": "base64 encoded Backup Helper Script body.", @@ -209,7 +308,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "path": { "description": "Path to Backup Helper Script", @@ -220,12 +321,16 @@ } ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/database-object\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], + "/jetpack/v4/sites/mobiledotblog.wordpress.com/database-object/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "object_type": { "description": "Type of object to fetch from the database", @@ -240,12 +345,16 @@ } ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/options\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], + "/jetpack/v4/sites/mobiledotblog.wordpress.com/options/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "One or more option names to include in the backup", @@ -255,286 +364,510 @@ } ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/comments\/(?P<id>\\d+)\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/comments/(?P<id>\\d+)/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<id>\\d+)\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/posts/(?P<id>\\d+)/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/terms\/(?P<id>\\d+)\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/terms/(?P<id>\\d+)/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/users\/(?P<id>\\d+)\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/users/(?P<id>\\d+)/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/site\/backup\/undo-event": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/site/backup/undo-event": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/orders\/(?P<id>\\d+)\/backup": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/orders/(?P<id>\\d+)/backup": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/site\/backup\/preflight": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/site/backup/preflight": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wp\/v2": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wp\/v2", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wp/v2", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/wp\/v2" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/wp/v2" + } + ] + } }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wp\/v2", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wp/v2", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/akismet\/v1\/webhook": { - "namespace": "wp\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wp/v2/sites/mobiledotblog.wordpress.com/akismet/v1/webhook": { + "namespace": "wp/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/crowdsignal-forms\/v1": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], + "/crowdsignal-forms/v1": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "crowdsignal-forms\/v1", + "default": "crowdsignal-forms/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/crowdsignal-forms\/v1" }] + "self": [ + { + "href": "https://mobile.blog/crowdsignal-forms/v1" + } + ] } }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "crowdsignal-forms\/v1", + "default": "crowdsignal-forms/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/account\/info": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/account\/connected": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/nps": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/nps\/(?P<survey_id>\\d+)": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/account/info": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "survey_id": { "required": false } } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/nps\/(?P<survey_id>\\d+)\/response": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/account/connected": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "survey_id": { "required": false } } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET", "POST"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/nps": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls\/(?P<poll_id>[a-zA-Z0-9\\-\\_]+)": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/nps/(?P<survey_id>\\d+)": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": { "poll_id": { "required": false } } } + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "survey_id": { + "required": false + } + } + } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls\/(?P<poll_id>[a-zA-Z0-9\\-\\_]+)\/results": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/post-polls\/(?P<post_id>\\d+)\/(?P<poll_uuid>[a-zA-Z0-9\\-\\_]+)": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls\/(?P<poll_id>\\d+)": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/nps/(?P<survey_id>\\d+)/response": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "poll_id": { "required": false } } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "survey_id": { + "required": false + } + } } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls\/(?P<poll_id>\\d+)\/archive": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] - }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/polls\/(?P<poll_id>\\d+)\/unarchive": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET", + "POST" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/feedback": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls/(?P<poll_id>[a-zA-Z0-9\\-\\_]+)": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "poll_id": { + "required": false + } + } + } + ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<survey_id>\\d+)": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls/(?P<poll_id>[a-zA-Z0-9\\-\\_]+)/results": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "survey_id": { "required": false } } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/crowdsignal-forms\/v1\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<survey_id>\\d+)\/response": { - "namespace": "crowdsignal-forms\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/post-polls/(?P<post_id>\\d+)/(?P<poll_uuid>[a-zA-Z0-9\\-\\_]+)": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "survey_id": { "required": false } } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/wpcom\/v2": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls/(?P<poll_id>\\d+)": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "namespace": { "default": "wpcom\/v2", "required": false }, - "context": { "default": "view", "required": false } + "poll_id": { + "required": false + } } } + ] + }, + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls/(?P<poll_id>\\d+)/archive": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/wpcom\/v2" }] } + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/polls/(?P<poll_id>\\d+)/unarchive": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], - "args": { - "namespace": { "default": "wpcom\/v2", "required": false }, - "context": { "default": "view", "required": false } - } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] } ] }, - "\/wpcom\/v2\/jetpack-start-webhooks\/stripe": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-start-webhooks\/stripe" - } - ] - } + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/feedback": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/telegram-bot\/webhook(?:\/(?P<bot>[a-z]+))?": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/feedback/(?P<survey_id>\\d+)": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "bot": { - "type": "string", - "description": "Which bot has triggered this webhook call", + "survey_id": { "required": false } } } ] }, - "\/wpcom\/v2\/jetpack-licensing\/license": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "DELETE"], + "/crowdsignal-forms/v1/sites/mobiledotblog.wordpress.com/feedback/(?P<survey_id>\\d+)/response": { + "namespace": "crowdsignal-forms/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": { "license_key": { "required": true } } }, { - "methods": ["POST"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "product": { "required": true }, - "quantity": { "type": "integer", "default": 1, "required": false } + "survey_id": { + "required": false + } } - }, + } + ] + }, + "/wpcom/v2": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "GET" + ], "args": { - "license_key": { "required": true }, - "cancellation_email": { - "type": ["boolean", "integer"], + "namespace": { + "default": "wpcom/v2", + "required": false + }, + "context": { + "default": "view", "required": false } } @@ -543,335 +876,717 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/license" + "href": "https://mobile.blog/wpcom/v2" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P<license_key>[a-zA-Z0-9_-]+)\/download": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P<license_key>[a-zA-Z0-9_-]+)\/children": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [ - { "methods": ["GET"], "args": { "license_key": { "required": true } } } - ] - }, - "\/wpcom\/v2\/jetpack-licensing\/license\/(?P<license_key>[a-zA-Z0-9_-]+)\/site": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "GET" + ], "args": { - "site": { "type": ["integer", "string"], "required": true }, - "license_key": { "type": "string", "required": true } + "namespace": { + "default": "wpcom/v2", + "required": false + }, + "context": { + "default": "view", + "required": false + } } - }, - { "methods": ["DELETE"], "args": [] } + } ] }, - "\/wpcom\/v2\/jetpack-licensing\/jetpack-crm\/license": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-start-webhooks/stripe": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": { "license_key": { "required": true } } } + { + "methods": [ + "POST" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/jetpack-crm\/license" - } - ] - } - }, - "\/wpcom\/v2\/jetpack-licensing\/product-families": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/product-families" - } - ] - } - }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/product-families": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/partner\/product-families" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-start-webhooks/stripe" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/public\/manage-pricing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/public\/manage-pricing" + "/wpcom/v2/telegram-bot/webhook(?:/(?P<bot>[a-z]+))?": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "bot": { + "type": "string", + "description": "Which bot has triggered this webhook call", + "required": false + } } - ] - } + } + ] }, - "\/wpcom\/v2\/jetpack-licensing\/partner": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT"], + "/wpcom/v2/jetpack-licensing/license": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": { + "license_key": { + "required": true + } + } + }, + { + "methods": [ + "POST" + ], "args": { - "tos": { "type": "string", "required": true }, - "name": { "type": "string", "required": true }, - "contact_person": { "type": "string", "required": false }, - "company_website": { "type": "string", "required": false }, - "company_type": { "type": "string", "required": false }, - "country": { "type": "string", "required": false }, - "state": { "type": "string", "required": false }, - "line1": { "type": "string", "required": false }, - "line2": { "type": "string", "required": false }, - "postal_code": { "type": "string", "required": false }, - "city": { "type": "string", "required": false }, - "managed_sites": { "type": "string", "required": false }, - "partner_program_opt_in": { "type": "boolean", "required": false }, - "referrer": { "required": false } + "product": { + "required": true + }, + "quantity": { + "type": "integer", + "default": 1, + "required": false + } } }, { - "methods": ["PUT"], + "methods": [ + "DELETE" + ], "args": { - "tos": { "type": "string", "required": false }, - "name": { "type": "string", "required": false }, - "contact_person": { "type": "string", "required": false }, - "company_website": { "type": "string", "required": false }, - "company_type": { "type": "string", "required": false }, - "country": { "type": "string", "required": false }, - "state": { "type": "string", "required": false }, - "line1": { "type": "string", "required": false }, - "line2": { "type": "string", "required": false }, - "postal_code": { "type": "string", "required": false }, - "city": { "type": "string", "required": false }, - "managed_sites": { "type": "string", "required": false }, - "partner_program_opt_in": { "type": "boolean", "required": false }, - "referrer": { "required": false } + "license_key": { + "required": true + }, + "cancellation_email": { + "type": [ + "boolean", + "integer" + ], + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/partner" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/license" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/dev-licenses": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/dev-licenses" + "/wpcom/v2/jetpack-licensing/license/(?P<license_key>[a-zA-Z0-9_-]+)/download": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/wpcom/v2/jetpack-licensing/license/(?P<license_key>[a-zA-Z0-9_-]+)/children": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "license_key": { + "required": true + } } - ] - } + } + ] }, - "\/wpcom\/v2\/jetpack-licensing\/licenses": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/jetpack-licensing/license/(?P<license_key>[a-zA-Z0-9_-]+)/site": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "page": { "required": false }, - "per_page": { "required": false }, - "search": { "type": "string", "required": false }, - "parent_id": { "type": "integer", "required": false }, - "filter": { "required": false }, - "sort_field": { "required": false }, - "sort_direction": { "required": false } + "site": { + "type": [ + "integer", + "string" + ], + "required": true + }, + "license_key": { + "type": "string", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "DELETE" + ], + "args": [] + } + ] + }, + "/wpcom/v2/jetpack-licensing/jetpack-crm/license": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], "args": { - "product": { "required": true }, - "quantity": { - "type": "integer", - "minimum": 1, - "maximum": 100, + "license_key": { "required": true - }, - "bundle": { "type": "boolean", "required": true } + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/jetpack-crm/license" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/licenses\/counts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-licensing/product-families": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/licenses\/counts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/product-families" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/licenses\/billing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-licensing/partner/product-families": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/licenses\/billing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/partner/product-families" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/site-connection": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-licensing/public/manage-pricing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], - "args": { - "url": { "required": true }, - "local_user": { "required": true } - } + "methods": [ + "GET" + ], + "args": [] } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/site-connection" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/public/manage-pricing" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/invoices": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-licensing/partner": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "starting_after": { - "default": "", + "tos": { + "type": "string", + "required": true + }, + "name": { + "type": "string", + "required": true + }, + "contact_person": { "type": "string", - "description": "A cursor for use in pagination. It is an object ID that defines your place in the list.", "required": false }, - "ending_before": { - "default": "", + "company_website": { "type": "string", - "description": "A cursor for use in pagination. It is an object ID that defines your place in the list.", "required": false }, - "status": { - "default": "", + "company_type": { "type": "string", - "description": "Set this if you want results to be filtered by their status.", "required": false - } - } - } - ], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/partner\/invoices" - } - ] - } - }, - "\/wpcom\/v2\/jetpack-licensing\/partner\/invoice\/(?P<invoice_id>[a-zA-Z0-9_-]+)\/payment": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [ - { - "methods": ["POST"], - "args": { "invoice_id": { "type": "string", "required": true } } - } - ] - }, - "\/wpcom\/v2\/jetpack-licensing\/stripe\/payment-method": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], - "endpoints": [ - { - "methods": ["POST"], - "args": { - "payment_method_id": { + }, + "country": { "type": "string", - "description": "The Stripe payment method ID that should be attached to the customer.", - "required": true + "required": false }, - "use_as_primary_payment_method": { - "type": "boolean", - "description": "Set this payment method as default for the customer.", - "default": false, + "state": { + "type": "string", "required": false }, - "stripe_setup_intent_id": { + "line1": { "type": "string", - "description": "The Stripe Setup Intent id for the payment method.", - "default": "", + "required": false + }, + "line2": { + "type": "string", + "required": false + }, + "postal_code": { + "type": "string", + "required": false + }, + "city": { + "type": "string", + "required": false + }, + "managed_sites": { + "type": "string", + "required": false + }, + "partner_program_opt_in": { + "type": "boolean", + "required": false + }, + "referrer": { "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "PUT" + ], "args": { - "payment_method_id": { + "tos": { "type": "string", - "description": "The Stripe payment method ID that should be detached.", - "required": true + "required": false }, - "primary_payment_method_id": { + "name": { "type": "string", - "description": "The Stripe payment method ID that should be set as a primary.", "required": false - } - } - } + }, + "contact_person": { + "type": "string", + "required": false + }, + "company_website": { + "type": "string", + "required": false + }, + "company_type": { + "type": "string", + "required": false + }, + "country": { + "type": "string", + "required": false + }, + "state": { + "type": "string", + "required": false + }, + "line1": { + "type": "string", + "required": false + }, + "line2": { + "type": "string", + "required": false + }, + "postal_code": { + "type": "string", + "required": false + }, + "city": { + "type": "string", + "required": false + }, + "managed_sites": { + "type": "string", + "required": false + }, + "partner_program_opt_in": { + "type": "boolean", + "required": false + }, + "referrer": { + "required": false + } + } + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/partner" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/dev-licenses": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/dev-licenses" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/licenses": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "page": { + "required": false + }, + "per_page": { + "required": false + }, + "search": { + "type": "string", + "required": false + }, + "parent_id": { + "type": "integer", + "required": false + }, + "filter": { + "required": false + }, + "sort_field": { + "required": false + }, + "sort_direction": { + "required": false + } + } + }, + { + "methods": [ + "POST" + ], + "args": { + "product": { + "required": true + }, + "quantity": { + "type": "integer", + "minimum": 1, + "maximum": 100, + "required": true + }, + "bundle": { + "type": "boolean", + "required": true + } + } + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/licenses" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/licenses/counts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/licenses/counts" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/licenses/billing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/licenses/billing" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/site-connection": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "url": { + "required": true + }, + "local_user": { + "required": true + } + } + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/site-connection" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/partner/invoices": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "starting_after": { + "default": "", + "type": "string", + "description": "A cursor for use in pagination. It is an object ID that defines your place in the list.", + "required": false + }, + "ending_before": { + "default": "", + "type": "string", + "description": "A cursor for use in pagination. It is an object ID that defines your place in the list.", + "required": false + }, + "status": { + "default": "", + "type": "string", + "description": "Set this if you want results to be filtered by their status.", + "required": false + } + } + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/partner/invoices" + } + ] + } + }, + "/wpcom/v2/jetpack-licensing/partner/invoice/(?P<invoice_id>[a-zA-Z0-9_-]+)/payment": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "invoice_id": { + "type": "string", + "required": true + } + } + } + ] + }, + "/wpcom/v2/jetpack-licensing/stripe/payment-method": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "payment_method_id": { + "type": "string", + "description": "The Stripe payment method ID that should be attached to the customer.", + "required": true + }, + "use_as_primary_payment_method": { + "type": "boolean", + "description": "Set this payment method as default for the customer.", + "default": false, + "required": false + }, + "stripe_setup_intent_id": { + "type": "string", + "description": "The Stripe Setup Intent id for the payment method.", + "default": "", + "required": false + } + } + }, + { + "methods": [ + "DELETE" + ], + "args": { + "payment_method_id": { + "type": "string", + "description": "The Stripe payment method ID that should be detached.", + "required": true + }, + "primary_payment_method_id": { + "type": "string", + "description": "The Stripe payment method ID that should be set as a primary.", + "required": false + } + } + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/stripe\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/stripe/payment-method" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/stripe\/payment-methods": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-licensing/stripe/payment-methods": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "starting_after": { "type": "string", @@ -889,65 +1604,117 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/stripe\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/stripe/payment-methods" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/licenses": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-licensing/user/licenses": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/user\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/user/licenses" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/licenses\/counts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-licensing/user/licenses/counts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-licensing\/user\/licenses\/counts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-licensing/user/licenses/counts" } ] } }, - "\/wpcom\/v2\/jetpack-licensing\/user\/order\/(?P<order_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-licensing/user/order/(?P<order_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": { "order_id": { "required": false } } } + { + "methods": [ + "GET" + ], + "args": { + "order_id": { + "required": false + } + } + } ] }, - "\/wpcom\/v2\/jetpack-licensing\/user\/receipt\/(?P<receipt_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-licensing/user/receipt/(?P<receipt_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": { "receipt_id": { "required": false } } } + { + "methods": [ + "GET" + ], + "args": { + "receipt_id": { + "required": false + } + } + } ] }, - "\/wpcom\/v2\/jetpack-licensing\/user\/subscription\/(?P<subscription_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-licensing/user/subscription/(?P<subscription_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "subscription_id": { "required": false } } + "methods": [ + "GET" + ], + "args": { + "subscription_id": { + "required": false + } + } } ] }, - "\/wpcom\/v2\/jetpack-licensing\/vendasta\/provision-or-deprovision\/(?P<product_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-licensing/vendasta/provision-or-deprovision/(?P<product_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "product_id": { "type": "string", @@ -958,48 +1725,88 @@ } ] }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/coupon": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "DELETE"], + "/wpcom/v2/jetpack-partner/coupon/v1/coupon": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "coupon_code": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "coupon_code": { + "type": "string", + "required": true + } + } }, { - "methods": ["POST"], - "args": { "preset": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "preset": { + "type": "string", + "required": true + } + } }, { - "methods": ["DELETE"], - "args": { "coupon_code": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "coupon_code": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partner\/coupon\/v1\/coupon" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partner/coupon/v1/coupon" } ] } }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/coupons": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/jetpack-partner/coupon/v1/coupons": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "preset": { "type": "string", "required": true }, - "quantity": { "type": "integer", "required": true } + "preset": { + "type": "string", + "required": true + }, + "quantity": { + "type": "integer", + "required": true + } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "coupon_codes": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } @@ -1008,263 +1815,442 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partner\/coupon\/v1\/coupons" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partner/coupon/v1/coupons" } ] } }, - "\/wpcom\/v2\/jetpack-partner\/coupon\/v1\/presets": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-partner/coupon/v1/presets": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partner\/coupon\/v1\/presets" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partner/coupon/v1/presets" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partner\/coupon\/v1\/site\/coupon": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partner/coupon/v1/site/coupon": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "coupon_code": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "coupon_code": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/jetpack-agency\/sites": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-agency/sites": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "backup_failed": { "required": false }, - "backup_warning": { "required": false }, - "threats_found": { "required": false }, - "site_down": { "required": false }, - "site_disconnected": { "required": false }, - "plugin_updates": { "required": false }, - "not_multisite": { "required": false }, - "all_issues": { "required": false }, - "sort_field": { "required": false }, - "sort_direction": { "required": false }, - "added_within_days": { "type": ["integer"], "required": false } + "backup_failed": { + "required": false + }, + "backup_warning": { + "required": false + }, + "threats_found": { + "required": false + }, + "site_down": { + "required": false + }, + "site_disconnected": { + "required": false + }, + "plugin_updates": { + "required": false + }, + "not_multisite": { + "required": false + }, + "all_issues": { + "required": false + }, + "sort_field": { + "required": false + }, + "sort_direction": { + "required": false + }, + "added_within_days": { + "type": [ + "integer" + ], + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/sites" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/favorite": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], + "/wpcom/v2/jetpack-agency/sites/favorite": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "site_id": { "type": ["integer", "string"], "required": true } + "site_id": { + "type": [ + "integer", + "string" + ], + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "site_id": { "type": ["integer", "string"], "required": true } + "site_id": { + "type": [ + "integer", + "string" + ], + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/sites\/favorite" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/sites/favorite" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/boost-scores": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-agency/sites/boost-scores": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "site_ids": { "type": "array", "required": true } } + "methods": [ + "POST" + ], + "args": { + "site_ids": { + "type": "array", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/sites\/boost-scores" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/sites/boost-scores" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/sites\/plugins\/install": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-agency/sites/plugins/install": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "site_id": { "type": ["integer", "string"], "required": true }, - "plugin_slug": { "type": "string", "required": true } + "site_id": { + "type": [ + "integer", + "string" + ], + "required": true + }, + "plugin_slug": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/sites\/plugins\/install" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/sites/plugins/install" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/jetpack-agency/contacts": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "type": { "type": "string", - "enum": ["sms", "email"], + "enum": [ + "sms", + "email" + ], + "required": true + }, + "value": { + "type": "string", + "required": true + }, + "site_ids": { + "type": "array", "required": true }, - "value": { "type": "string", "required": true }, - "site_ids": { "type": "array", "required": true }, - "number": { "type": "string", "required": false }, - "country_code": { "type": "string", "required": false }, - "country_numeric_code": { "type": "string", "required": false } + "number": { + "type": "string", + "required": false + }, + "country_code": { + "type": "string", + "required": false + }, + "country_numeric_code": { + "type": "string", + "required": false + } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/contacts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/contacts" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts\/verify": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-agency/contacts/verify": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "type": { "type": "string", - "enum": ["sms", "email"], + "enum": [ + "sms", + "email" + ], + "required": true + }, + "value": { + "type": "string", "required": true }, - "value": { "type": "string", "required": true }, - "verification_code": { "type": "integer", "required": true } + "verification_code": { + "type": "integer", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/contacts\/verify" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/contacts/verify" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/contacts\/resend-verification": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-agency/contacts/resend-verification": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "type": { "type": "string", - "enum": ["sms", "email"], + "enum": [ + "sms", + "email" + ], "required": true }, - "value": { "type": "string", "required": true } + "value": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/contacts\/resend-verification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/contacts/resend-verification" } ] } }, - "\/wpcom\/v2\/jetpack-agency\/provisioning-sites": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-agency/provisioning-sites": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-agency\/provisioning-sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-agency/provisioning-sites" } ] } }, - "\/wpcom\/v2\/jetpack-manage\/site": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-manage/site": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "url": { "type": "string", "format": "uri", "required": true } + "url": { + "type": "string", + "format": "uri", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-manage\/site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-manage/site" } ] } }, - "\/wpcom\/v2\/jetpack-manage\/user-feedback": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-manage/user-feedback": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "source_url": { "type": "string", "required": true }, - "rating": { "type": "integer", "required": true }, - "feedback": { "type": "string", "required": true } + "source_url": { + "type": "string", + "required": true + }, + "rating": { + "type": "integer", + "required": true + }, + "feedback": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-manage\/user-feedback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-manage/user-feedback" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/profile": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/profile": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "profile_company_name": { "type": "string", "required": false }, + "agency_id": { + "type": "integer", + "required": true + }, + "profile_company_name": { + "type": "string", + "required": false + }, "profile_company_email": { "type": "string", "format": "email", @@ -1284,7 +2270,10 @@ "format": "uri", "required": false }, - "profile_company_country": { "type": "string", "required": false }, + "profile_company_country": { + "type": "string", + "required": false + }, "profile_company_landing_page_url": { "type": "string", "format": "uri", @@ -1302,58 +2291,124 @@ "type": "string", "required": false }, - "profile_listing_services": { "type": "array", "required": false }, - "profile_listing_products": { "type": "array", "required": false }, + "profile_listing_services": { + "type": "array", + "required": false + }, + "profile_listing_products": { + "type": "array", + "required": false + }, "profile_listing_languages_spoken": { "type": "array", "required": false }, - "profile_budget_budget_lower_range": { "required": false }, - "profile_budget_budget_upper_range": { "required": false } + "profile_budget_budget_lower_range": { + "required": false + }, + "profile_budget_budget_upper_range": { + "required": false + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/profile\/application": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/profile/application": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "services": { "type": "array", "required": false }, - "products": { "type": "array", "required": false }, - "directories": { "type": "array", "required": false }, - "feedback_url": { "type": "string", "required": false }, - "is_published": { "type": "boolean", "required": false } + "agency_id": { + "type": "integer", + "required": true + }, + "services": { + "type": "array", + "required": false + }, + "products": { + "type": "array", + "required": false + }, + "directories": { + "type": "array", + "required": false + }, + "feedback_url": { + "type": "string", + "required": false + }, + "is_published": { + "type": "boolean", + "required": false + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/profile\/logo": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/profile/logo": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "agency_id": { "type": "integer", "required": true } } - } + "methods": [ + "POST" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } + } ] }, - "\/wpcom\/v2\/agency": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "agency_name": { "type": "string", "required": true }, - "agency_url": { "type": "string", "required": true }, - "initial_source": { "type": "string", "required": false }, + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "agency_name": { + "type": "string", + "required": true + }, + "agency_url": { + "type": "string", + "required": true + }, + "initial_source": { + "type": "string", + "required": false + }, "address_line1": { "default": "", "type": "string", @@ -1364,7 +2419,10 @@ "type": "string", "required": false }, - "address_city": { "type": "string", "required": true }, + "address_city": { + "type": "string", + "required": true + }, "address_state": { "default": "", "type": "string", @@ -1375,198 +2433,383 @@ "type": "string", "required": false }, - "address_country": { "type": "string", "required": true }, - "agency_size": { "type": "string", "required": false }, - "number_sites": { "type": "string", "required": false }, + "address_country": { + "type": "string", + "required": true + }, + "agency_size": { + "type": "string", + "required": false + }, + "number_sites": { + "type": "string", + "required": false + }, "services_offered": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "products_offered": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "products_to_offer": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, + "required": false + }, + "expansion_planned": { + "type": "string", + "required": false + }, + "referral_url": { + "type": "string", + "required": false + }, + "referral_status": { + "type": "string", "required": false }, - "expansion_planned": { "type": "string", "required": false }, - "referral_url": { "type": "string", "required": false }, - "referral_status": { "type": "string", "required": false }, - "hubspotutk": { "type": "string", "required": false } + "hubspotutk": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency" } ] } }, - "\/wpcom\/v2\/agency\/blog\/(?P<blog_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/blog/(?P<blog_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "blog_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "blog_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "agency_name": { "type": "string", "required": false }, - "agency_url": { "type": "string", "required": false }, - "address_line1": { "type": "string", "required": false }, - "address_line2": { "type": "string", "required": false }, - "address_city": { "type": "string", "required": false }, - "address_state": { "type": "string", "required": false }, - "address_postal_code": { "type": "string", "required": false }, - "address_country": { "type": "string", "required": false } + "agency_id": { + "type": "integer", + "required": true + }, + "agency_name": { + "type": "string", + "required": false + }, + "agency_url": { + "type": "string", + "required": false + }, + "address_line1": { + "type": "string", + "required": false + }, + "address_line2": { + "type": "string", + "required": false + }, + "address_city": { + "type": "string", + "required": false + }, + "address_state": { + "type": "string", + "required": false + }, + "address_postal_code": { + "type": "string", + "required": false + }, + "address_country": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/transfer-ownership": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/transfer-ownership": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "new_owner_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "new_owner_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/validate\/(?P<field>[a-zA-Z0-9_-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/validate/(?P<field>[a-zA-Z0-9_-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "field": { "type": "string", "required": true }, - "value": { "type": "string", "required": true } + "field": { + "type": "string", + "required": true + }, + "value": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/exists\/name": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/exists/name": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "value": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "value": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/exists\/name" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/exists/name" } ] } }, - "\/wpcom\/v2\/agency\/exists\/url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/exists/url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "value": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "value": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/exists\/url" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/exists/url" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/schedule-call-link": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/schedule-call-link": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/clients": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/clients": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "email": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "email": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/clients\/(?P<client_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "PUT", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/clients/(?P<client_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "PUT", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "client_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "client_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "client_id": { "type": "integer", "required": true }, - "email": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "client_id": { + "type": "integer", + "required": true + }, + "email": { + "type": "string", + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "client_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "client_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/help\/zendesk\/create-ticket": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/help/zendesk/create-ticket": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "product": { "type": "string", "required": true }, - "message": { "type": "string", "required": true }, + "name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "product": { + "type": "string", + "required": true + }, + "message": { + "type": "string", + "required": true + }, "tags": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } @@ -1575,271 +2818,517 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/help\/zendesk\/create-ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/help/zendesk/create-ticket" } ] } }, - "\/wpcom\/v2\/agency\/help\/pressable\/support": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/help/pressable/support": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "site": { "type": "string", "required": false }, - "contact_type": { "type": "string", "required": true }, - "pressable_id": { "type": "string", "required": false }, - "message": { "type": "string", "required": true } + "name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "site": { + "type": "string", + "required": false + }, + "contact_type": { + "type": "string", + "required": true + }, + "pressable_id": { + "type": "string", + "required": false + }, + "message": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/help\/pressable\/support" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/help/pressable/support" } ] } }, - "\/wpcom\/v2\/agency\/embeds\/tipalti": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/embeds/tipalti": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/embeds\/tipalti" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/embeds/tipalti" } ] } }, - "\/wpcom\/v2\/agency\/hire-an-expert": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/hire-an-expert": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "full_name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "company_name": { "type": "string", "required": false }, - "url": { "type": "string", "required": false }, - "business_description": { "type": "string", "required": false }, - "project_goal": { "type": "string", "required": false }, - "project_description": { "type": "string", "required": false }, - "timeline": { "type": "string", "required": false }, - "budget": { "type": "string", "required": false }, - "business_unit": { "type": "string", "required": false } + "full_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "company_name": { + "type": "string", + "required": false + }, + "url": { + "type": "string", + "required": false + }, + "business_description": { + "type": "string", + "required": false + }, + "project_goal": { + "type": "string", + "required": false + }, + "project_description": { + "type": "string", + "required": false + }, + "timeline": { + "type": "string", + "required": false + }, + "budget": { + "type": "string", + "required": false + }, + "business_unit": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/hire-an-expert" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/hire-an-expert" } ] } }, - "\/wpcom\/v2\/agency\/(?P<customer_uid>\\d+(-[a-zA-Z]+-\\d+)?)\/pressable\/mrr": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<customer_uid>\\d+(-[a-zA-Z]+-\\d+)?)/pressable/mrr": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "customer_uid": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "customer_uid": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<customer_uid>\\d+(-[a-zA-Z]+-\\d+)?)\/pressable\/event": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<customer_uid>\\d+(-[a-zA-Z]+-\\d+)?)/pressable/event": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "customer_uid": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "customer_uid": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/pressable\/new-account": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/pressable/new-account": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "email": { "type": "string", "required": true }, - "chargify_id": { "type": "integer", "required": true }, - "pressable_id": { "type": "integer", "required": false } + "email": { + "type": "string", + "required": true + }, + "chargify_id": { + "type": "integer", + "required": true + }, + "pressable_id": { + "type": "integer", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/pressable\/new-account" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/pressable/new-account" } ] } }, - "\/wpcom\/v2\/agency\/hubspot\/webhook": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/agency/hubspot/webhook": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/hubspot\/webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/hubspot/webhook" } ] } }, - "\/wpcom\/v2\/agency\/license": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/agency/license": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ - { "methods": ["DELETE"], "args": { "args": { "required": false } } } + { + "methods": [ + "DELETE" + ], + "args": { + "args": { + "required": false + } + } + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/license" } ] } }, - "\/wpcom\/v2\/agency\/license\/dev-site": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/license/dev-site": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": { "args": { "required": false } } } + { + "methods": [ + "GET" + ], + "args": { + "args": { + "required": false + } + } + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/license\/dev-site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/license/dev-site" } ] } }, - "\/wpcom\/v2\/agency\/partner-directory": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/partner-directory": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "partner_directory": { "type": "string", "required": false } + "partner_directory": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/partner-directory" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/partner-directory" } ] } }, - "\/wpcom\/v2\/agency\/partner-directory\/(?P<agency_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/partner-directory/(?P<agency_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/partner-directory\/form-submission": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/partner-directory/form-submission": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "string", "required": true }, - "agency_email": { "type": "string", "required": true }, - "full_name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "business_name": { "type": "string", "required": true }, - "project_description": { "type": "string", "required": false }, - "project_type": { "type": "string", "required": true }, - "url": { "type": "string", "required": false }, - "budget": { "type": "string", "required": true } + "agency_id": { + "type": "string", + "required": true + }, + "agency_email": { + "type": "string", + "required": true + }, + "full_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "business_name": { + "type": "string", + "required": true + }, + "project_description": { + "type": "string", + "required": false + }, + "project_type": { + "type": "string", + "required": true + }, + "url": { + "type": "string", + "required": false + }, + "budget": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/partner-directory\/form-submission" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/partner-directory/form-submission" } ] } }, - "\/wpcom\/v2\/agency\/pressable\/premium-plan-referral": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/pressable/premium-plan-referral": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "company_name": { "type": "string", "required": true }, - "address": { "type": "string", "required": true }, - "country_code": { "type": "string", "required": true }, - "state": { "type": "string", "required": false }, - "city": { "type": "string", "required": true }, - "zip": { "type": "string", "required": true }, - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "title": { "type": "string", "required": true }, - "phone": { "type": "string", "required": false }, - "email": { "type": "string", "required": true }, - "website": { "type": "string", "required": true }, - "opportunity_description": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "company_name": { + "type": "string", + "required": true + }, + "address": { + "type": "string", + "required": true + }, + "country_code": { + "type": "string", + "required": true + }, + "state": { + "type": "string", + "required": false + }, + "city": { + "type": "string", + "required": true + }, + "zip": { + "type": "string", + "required": true + }, + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "title": { + "type": "string", + "required": true + }, + "phone": { + "type": "string", + "required": false + }, + "email": { + "type": "string", + "required": true + }, + "website": { + "type": "string", + "required": true + }, + "opportunity_description": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/pressable\/premium-plan-referral" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/pressable/premium-plan-referral" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/referrals": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/referrals": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "client_email": { "type": "string", "required": true }, - "client_message": { "type": "string", "required": false }, + "agency_id": { + "type": "integer", + "required": true + }, + "client_email": { + "type": "string", + "required": true + }, + "client_message": { + "type": "string", + "required": false + }, "flow_type": { "type": "string", - "enum": ["send", "copy"], + "enum": [ + "send", + "copy" + ], "required": false }, "product_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true }, "licenses": { @@ -1847,8 +3336,12 @@ "items": { "type": "object", "properties": { - "product_id": { "type": "integer" }, - "license_id": { "type": "integer" } + "product_id": { + "type": "integer" + }, + "license_id": { + "type": "integer" + } } }, "required": false @@ -1857,78 +3350,157 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/referrals\/invoices": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/referrals/invoices": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/referrals\/(?P<referral_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/referrals/(?P<referral_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/referrals\/(?P<referral_id>\\d+)\/archive": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/referrals/(?P<referral_id>\\d+)/archive": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/referrals\/(?P<referral_id>\\d+)\/resend": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/referrals/(?P<referral_id>\\d+)/resend": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/reports": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/reports": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "managed_site_id": { "type": "integer", "required": true }, + "agency_id": { + "type": "integer", + "required": true + }, + "managed_site_id": { + "type": "integer", + "required": true + }, "timeframe": { "type": "string", - "enum": ["7_days", "30_days", "24_hours", "custom"], + "enum": [ + "7_days", + "30_days", + "24_hours", + "custom" + ], "required": true }, "start_date": { @@ -1943,12 +3515,18 @@ }, "client_emails": { "type": "array", - "items": { "type": "string", "format": "email" }, + "items": { + "type": "string", + "format": "email" + }, "required": false }, "teammate_emails": { "type": "array", - "items": { "type": "string", "format": "email" }, + "items": { + "type": "string", + "format": "email" + }, "required": false }, "send_copy_to_team": { @@ -1961,15 +3539,33 @@ "default": false, "required": false }, - "custom_intro_text": { "type": "string", "required": false }, + "custom_intro_text": { + "type": "string", + "required": false + }, "stats_items": { "type": "object", "properties": { - "total_traffic": { "type": "boolean", "default": true }, - "top_pages": { "type": "boolean", "default": true }, - "top_referrers": { "type": "boolean", "default": true }, - "top_locations": { "type": "boolean", "default": true }, - "device_breakdown": { "type": "boolean", "default": true }, + "total_traffic": { + "type": "boolean", + "default": true + }, + "top_pages": { + "type": "boolean", + "default": true + }, + "top_referrers": { + "type": "boolean", + "default": true + }, + "top_locations": { + "type": "boolean", + "default": true + }, + "device_breakdown": { + "type": "boolean", + "default": true + }, "total_traffic_all_time": { "type": "boolean", "default": true @@ -1989,35 +3585,64 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/reports\/(?P<report_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/reports/(?P<report_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "report_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "report_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "report_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "report_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/reports\/(?P<report_id>\\d+)\/send": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/reports/(?P<report_id>\\d+)/send": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "report_id": { "type": "integer", "required": true }, + "agency_id": { + "type": "integer", + "required": true + }, + "report_id": { + "type": "integer", + "required": true + }, "preview": { "type": "boolean", "default": false, @@ -2027,31 +3652,62 @@ } ] }, - "\/wpcom\/v2\/agency\/resources": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/agency/resources": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/resources" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/resources" } ] } }, - "\/wpcom\/v2\/agency\/signup": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/signup": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "agency_name": { "type": "string", "required": true }, - "agency_url": { "type": "string", "required": true }, - "initial_source": { "type": "string", "required": false }, + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "agency_name": { + "type": "string", + "required": true + }, + "agency_url": { + "type": "string", + "required": true + }, + "initial_source": { + "type": "string", + "required": false + }, "address_line1": { "default": "", "type": "string", @@ -2077,30 +3733,63 @@ "type": "string", "required": false }, - "address_country": { "type": "string", "required": true }, - "agency_size": { "type": "string", "required": false }, - "number_sites": { "type": "string", "required": false }, + "address_country": { + "type": "string", + "required": true + }, + "agency_size": { + "type": "string", + "required": false + }, + "number_sites": { + "type": "string", + "required": false + }, "services_offered": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "products_offered": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "products_to_offer": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, + "required": false + }, + "expansion_planned": { + "type": "string", + "required": false + }, + "referral_url": { + "type": "string", + "required": false + }, + "referral_status": { + "type": "string", + "required": false + }, + "top_partnering_goal": { + "type": "string", + "required": false + }, + "top_yearly_goal": { + "type": "string", + "required": false + }, + "work_with_clients": { + "type": "string", "required": false }, - "expansion_planned": { "type": "string", "required": false }, - "referral_url": { "type": "string", "required": false }, - "referral_status": { "type": "string", "required": false }, - "top_partnering_goal": { "type": "string", "required": false }, - "top_yearly_goal": { "type": "string", "required": false }, - "work_with_clients": { "type": "string", "required": false }, "work_with_clients_other": { "default": "", "type": "string", @@ -2117,122 +3806,221 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/signup" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/signup" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<jetpack_site_id>\\d+)\/monitor": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<jetpack_site_id>\\d+)/monitor": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "jetpack_site_id": { "type": "integer", "required": true }, - "monitor_active": { "type": "boolean", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "jetpack_site_id": { + "type": "integer", + "required": true + }, + "monitor_active": { + "type": "boolean", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)\/notes": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)/notes": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true }, - "content": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + }, + "content": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)\/notes\/(?P<note_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["PUT", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)/notes/(?P<note_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "PUT", + "DELETE" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true }, - "note_id": { "type": "integer", "required": true }, - "content": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + }, + "note_id": { + "type": "integer", + "required": true + }, + "content": { + "type": "string", + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true }, - "note_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + }, + "note_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)\/tags": { - "namespace": "wpcom\/v2", - "methods": ["GET", "PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)/tags": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "PUT" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true }, + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + }, "tags": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/tags": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/tags": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, + "agency_id": { + "type": "integer", + "required": true + }, "site_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true }, "tags": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/pending": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/pending": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "agency_id": { "type": "integer", @@ -2243,12 +4031,16 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/provision-dev-site": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/provision-dev-site": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "agency_id": { "description": "The agency ID.", @@ -2279,12 +4071,17 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "agency_id": { "type": "integer", @@ -2298,26 +4095,35 @@ "properties": { "tags": { "type": "array", - "description": "Filter sites by tags. Use `tags_relation` to control matching logic (AND\/OR).", - "items": { "type": "string" }, + "description": "Filter sites by tags. Use `tags_relation` to control matching logic (AND/OR).", + "items": { + "type": "string" + }, "default": [] }, "tags_relation": { "type": "string", "description": "Logic for tag filtering: `AND` requires all tags, `OR` requires at least one.", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "AND" }, "state": { "type": "array", "description": "Filter sites by state", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [] }, "plugins": { "type": "array", "description": "Filter sites by installed plugins", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [] } }, @@ -2326,43 +4132,83 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "blog_id": { "type": "integer", "required": false }, - "url": { "type": "string", "required": false }, - "title": { "type": "string", "required": false } + "agency_id": { + "type": "integer", + "required": true + }, + "blog_id": { + "type": "integer", + "required": false + }, + "url": { + "type": "string", + "required": false + }, + "title": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["PUT", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "PUT", + "DELETE" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true }, - "title": { "type": "string", "required": false } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + }, + "title": { + "type": "string", + "required": false + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "site_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "site_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)\/provision": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)/provision": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "agency_id": { "description": "The agency ID.", @@ -2398,12 +4244,16 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/validate-site-address": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/validate-site-address": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "agency_id": { "description": "The agency ID.", @@ -2419,12 +4269,16 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/sites\/(?P<site_id>\\d+)\/delete-dev-site": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/sites/(?P<site_id>\\d+)/delete-dev-site": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "agency_id": { "description": "The agency ID.", @@ -2440,175 +4294,352 @@ } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/tipalti": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/tipalti": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/user-feedback": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/user-feedback": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "source_url": { "type": "string", "required": true }, - "rating": { "type": "integer", "required": true }, - "feedback": { "type": "string", "required": true } + "source_url": { + "type": "string", + "required": true + }, + "rating": { + "type": "integer", + "required": true + }, + "feedback": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/user-feedback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/user-feedback" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/user-invites": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/user-invites": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "login": { "type": "string", "required": true }, - "message": { "type": "string", "required": false } + "agency_id": { + "type": "integer", + "required": true + }, + "login": { + "type": "string", + "required": true + }, + "message": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/user-invites\/(?P<invite_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/user-invites/(?P<invite_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "invite_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "invite_id": { + "type": "integer", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "invite_id": { "type": "integer", "required": true }, - "secret": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "invite_id": { + "type": "integer", + "required": true + }, + "secret": { + "type": "string", + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "invite_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "invite_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/user-invites\/(?P<invite_id>\\d+)\/resend": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/user-invites/(?P<invite_id>\\d+)/resend": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "invite_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "invite_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/users": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/users": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/users\/(?P<user_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/users/(?P<user_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "user_id": { "type": "integer", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "user_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency\/vip\/partner-opportunity": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/agency/vip/partner-opportunity": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "company_name": { "type": "string", "required": true }, - "address": { "type": "string", "required": true }, - "country_code": { "type": "string", "required": true }, - "state": { "type": "string", "required": false }, - "city": { "type": "string", "required": true }, - "zip": { "type": "string", "required": true }, - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "title": { "type": "string", "required": true }, - "phone": { "type": "string", "required": false }, - "email": { "type": "string", "required": true }, - "website": { "type": "string", "required": true }, - "opportunity_description": { "type": "string", "required": true }, - "lead_type": { "type": "string", "required": true }, - "is_rfp": { "type": "boolean", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "company_name": { + "type": "string", + "required": true + }, + "address": { + "type": "string", + "required": true + }, + "country_code": { + "type": "string", + "required": true + }, + "state": { + "type": "string", + "required": false + }, + "city": { + "type": "string", + "required": true + }, + "zip": { + "type": "string", + "required": true + }, + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "title": { + "type": "string", + "required": true + }, + "phone": { + "type": "string", + "required": false + }, + "email": { + "type": "string", + "required": true + }, + "website": { + "type": "string", + "required": true + }, + "opportunity_description": { + "type": "string", + "required": true + }, + "lead_type": { + "type": "string", + "required": true + }, + "is_rfp": { + "type": "boolean", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency\/vip\/partner-opportunity" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency/vip/partner-opportunity" } ] } }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/woocommerce\/woopayments": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/woocommerce/woopayments": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "agency_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "agency_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/agency\/(?P<agency_id>\\d+)\/woocommerce\/woopayments\/(?P<blog_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency/(?P<agency_id>\\d+)/woocommerce/woopayments/(?P<blog_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "blog_id": { "type": "integer", "required": true }, + "agency_id": { + "type": "integer", + "required": true + }, + "blog_id": { + "type": "integer", + "required": true + }, "format": { "type": "string", - "enum": ["json", "csv"], + "enum": [ + "json", + "csv" + ], "default": "json", "required": false } @@ -2616,72 +4647,131 @@ } ] }, - "\/wpcom\/v2\/agency-client\/license": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/agency-client/license": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ - { "methods": ["DELETE"], "args": { "args": { "required": false } } } + { + "methods": [ + "DELETE" + ], + "args": { + "args": { + "required": false + } + } + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/license" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/license" } ] } }, - "\/wpcom\/v2\/agency-client\/public\/pricing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/agency-client/public/pricing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/public\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/public/pricing" } ] } }, - "\/wpcom\/v2\/agency-client\/referrals": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/agency-client/referrals": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/referrals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/referrals" } ] } }, - "\/wpcom\/v2\/agency-client\/agency\/(?P<agency_id>\\d+)\/referrals\/(?P<referral_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/agency-client/agency/(?P<agency_id>\\d+)/referrals/(?P<referral_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true }, - "secret": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + }, + "secret": { + "type": "string", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "agency_id": { "type": "integer", "required": true }, - "referral_id": { "type": "integer", "required": true }, - "secret": { "type": "string", "required": true } + "agency_id": { + "type": "integer", + "required": true + }, + "referral_id": { + "type": "integer", + "required": true + }, + "secret": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/agency-client\/stripe\/payment-method": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], - "endpoints": [ + "/wpcom/v2/agency-client/stripe/payment-method": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], + "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "payment_method_id": { "type": "string", @@ -2703,7 +4793,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "payment_method_id": { "type": "string", @@ -2721,17 +4813,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/stripe\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/stripe/payment-method" } ] } }, - "\/wpcom\/v2\/agency-client\/stripe\/payment-methods": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency-client/stripe/payment-methods": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "starting_after": { "type": "string", @@ -2749,17 +4845,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/stripe\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/stripe/payment-methods" } ] } }, - "\/wpcom\/v2\/agency-client\/stripe\/invoices": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/agency-client/stripe/invoices": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "default": "", @@ -2789,41 +4889,64 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/agency-client\/stripe\/invoices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/agency-client/stripe/invoices" } ] } }, - "\/wpcom\/v2\/host-partners": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners" } ] } }, - "\/wpcom\/v2\/host-partners\/payment-methods": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/payment-methods": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/payment-methods" } ] } }, - "\/wpcom\/v2\/host-partners\/payment-method": { - "namespace": "wpcom\/v2", - "methods": ["DELETE", "POST"], + "/wpcom/v2/host-partners/payment-method": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE", + "POST" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "payment_method_id": { "type": "string", @@ -2833,7 +4956,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "payment_method_id": { "type": "string", @@ -2858,41 +4983,63 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/payment-method" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/payment-method" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/stripe\/configuration": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/wpcloud/stripe/configuration": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/stripe\/configuration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/stripe/configuration" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/stripe\/setup-intent": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/wpcloud/stripe/setup-intent": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/stripe\/setup-intent" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/stripe/setup-intent" } ] } }, - "\/wpcom\/v2\/host-partners\/jetpack\/licenses": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/jetpack/licenses": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "page": { "type": "integer", @@ -2909,13 +5056,21 @@ }, "order_by": { "type": "string", - "enum": ["issued_at", "attached_at", "revoked_at", "product_id"], + "enum": [ + "issued_at", + "attached_at", + "revoked_at", + "product_id" + ], "default": "issued_at", "required": false }, "order": { "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "default": "desc", "required": false }, @@ -2932,10 +5087,15 @@ "revoked_last_month" ] }, - "partner_key_id": { "type": "integer", "required": false }, + "partner_key_id": { + "type": "integer", + "required": false + }, "product_id": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } }, @@ -2947,27 +5107,40 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/jetpack\/licenses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/jetpack/licenses" } ] } }, - "\/wpcom\/v2\/host-partners\/jetpack\/(?P<license_key>[^\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/host-partners/jetpack/(?P<license_key>[^/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], - "args": { "license_key": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "license_key": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/host-partners/wpcloud": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "first_name": { "type": "string", @@ -3090,27 +5263,40 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/(?P<wpcom_user_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/host-partners/wpcloud/(?P<wpcom_user_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], - "args": { "wpcom_user_id": { "type": "integer", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "wpcom_user_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/pricing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/wpcloud/pricing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "site": { "type": "object", @@ -3129,54 +5315,84 @@ }, "php_memory_limit": { "type": "integer", - "enum": [512, 1024, 1536, 2048], + "enum": [ + 512, + 1024, + 1536, + 2048 + ], "description": "Memory available to PHP workers." } }, "required": true }, - "count": { "type": "integer", "required": true } + "count": { + "type": "integer", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/pricing" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/pricing\/simple": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/wpcloud/pricing/simple": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/pricing\/simple" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/pricing/simple" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/news": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/wpcloud/news": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/news" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/news" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/inventory": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/wpcloud/inventory": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "page": { "type": "integer", @@ -3193,13 +5409,19 @@ }, "order_by": { "type": "string", - "enum": ["atomic_site_id", "domain_name"], + "enum": [ + "atomic_site_id", + "domain_name" + ], "default": "atomic_site_id", "required": false }, "order": { "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "default": "asc", "required": false }, @@ -3214,21 +5436,28 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/inventory" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/inventory" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/usage": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/wpcloud/usage": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "granularity": { "type": "string", - "enum": ["day", "month"], + "enum": [ + "day", + "month" + ], "default": "month", "required": false } @@ -3238,183 +5467,322 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/usage" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/usage" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/host-partners/wpcloud/billing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/billing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/billing" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/wpcloud/billing/invoices": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "page": { "default": "1", "type": "string", "required": false } + "page": { + "default": "1", + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/billing\/invoices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/billing/invoices" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices\/(?P<invoice_id>\\d+)\/usage-report": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/host-partners/wpcloud/billing/invoices/(?P<invoice_id>\\d+)/usage-report": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "invoice_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "invoice_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/billing\/invoices\/(?P<invoice_id>[a-zA-Z0-9_-]+)\/payment": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/host-partners/wpcloud/billing/invoices/(?P<invoice_id>[a-zA-Z0-9_-]+)/payment": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "invoice_id": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "invoice_id": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/host-partners\/wpcloud\/api-access": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/host-partners/wpcloud/api-access": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "email": { "type": "string", "format": "email", "required": true }, - "ip_addresses": { "type": "string", "required": true } + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "format": "email", + "required": true + }, + "ip_addresses": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/api-access" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/api-access" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/onboarding": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/host-partners/wpcloud/onboarding": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], - "args": { "key": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": { + "key": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/onboarding" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/onboarding" } ] } }, - "\/wpcom\/v2\/host-partners\/wpcloud\/support": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/host-partners/wpcloud/support": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "body": { "type": "string", "required": true }, - "subject": { "type": "string", "required": true }, - "user_name": { "type": "string", "required": true }, - "user_email": { "type": "string", "required": true }, - "partner_name": { "type": "string", "required": true }, - "attachment": { "type": "file", "required": false } + "body": { + "type": "string", + "required": true + }, + "subject": { + "type": "string", + "required": true + }, + "user_name": { + "type": "string", + "required": true + }, + "user_email": { + "type": "string", + "required": true + }, + "partner_name": { + "type": "string", + "required": true + }, + "attachment": { + "type": "file", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/host-partners\/wpcloud\/support" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/host-partners/wpcloud/support" } ] } }, - "\/wpcom\/v2\/a8cpayments-backbone\/available-payment-methods": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/a8cpayments-backbone/available-payment-methods": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "storefront": { "type": "string", "required": true }, - "environment": { "type": "string", "required": true }, - "storefront_user_id": { "type": "integer", "required": true }, - "request_id": { "type": "string", "required": true } + "storefront": { + "type": "string", + "required": true + }, + "environment": { + "type": "string", + "required": true + }, + "storefront_user_id": { + "type": "integer", + "required": true + }, + "request_id": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/a8cpayments-backbone\/available-payment-methods" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/a8cpayments-backbone/available-payment-methods" } ] } }, - "\/wpcom\/v2\/a8cpayments-backbone\/prepurchase": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/a8cpayments-backbone/prepurchase": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "storefront": { "type": "string", "required": true }, - "environment": { "type": "string", "required": true }, - "storefront_user_id": { "type": "integer", "required": true }, - "payment_method": { "type": "string", "required": true }, - "payment_processor": { "type": "string", "required": true }, - "request_id": { "type": "string", "required": true } + "storefront": { + "type": "string", + "required": true + }, + "environment": { + "type": "string", + "required": true + }, + "storefront_user_id": { + "type": "integer", + "required": true + }, + "payment_method": { + "type": "string", + "required": true + }, + "payment_processor": { + "type": "string", + "required": true + }, + "request_id": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/a8cpayments-backbone\/prepurchase" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/a8cpayments-backbone/prepurchase" } ] } }, - "\/wp\/v2\/abilities\/(?P<name>[a-zA-Z0-9\\-\\\/]+?)\/run": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+?)/run": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "args": { "name": { "description": "Unique identifier for the ability.", "type": "string", - "pattern": "^[a-zA-Z0-9\\-\\\/]+$", + "pattern": "^[a-zA-Z0-9\\-\\/]+$", "required": false }, "input": { @@ -3435,17 +5803,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp-abilities\/v1\/categories": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp-abilities/v1/categories": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -3468,12 +5844,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp-abilities\/v1\/categories\/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp-abilities/v1/categories/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "Unique identifier for the ability category.", @@ -3485,17 +5865,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp-abilities\/v1\/abilities": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp-abilities/v1/abilities": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -3523,34 +5911,50 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp-abilities\/v1\/abilities\/(?P<name>[a-zA-Z0-9\\-\\\/]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp-abilities/v1/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "Unique identifier for the ability.", "type": "string", - "pattern": "^[a-zA-Z0-9\\-\\\/]+$", + "pattern": "^[a-zA-Z0-9\\-\\/]+$", "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp-abilities\/v1\/abilities\/(?P<name>[a-zA-Z0-9\\-\\\/]+?)\/run": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp-abilities/v1/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+?)/run": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "args": { "name": { "description": "Unique identifier for the ability.", "type": "string", - "pattern": "^[a-zA-Z0-9\\-\\\/]+$", + "pattern": "^[a-zA-Z0-9\\-\\/]+$", "required": false }, "input": { @@ -3571,13 +5975,27 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activitypub\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activitypub/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "enabled": { "description": "Enable or disable ActivityPub", @@ -3588,27 +6006,58 @@ } ] }, - "\/wpcom\/v2\/ai\/agent\/(?P<agent_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/ai/agent/(?P<agent_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/(?P<site_id>[\\d]+)\/ai\/agent\/(?P<agent_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/(?P<site_id>[\\d]+)/ai/agent/(?P<agent_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai\/blogging\/prompts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai/blogging/prompts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ai-image": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ai-image": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "token": { "type": "string", @@ -3624,7 +6073,10 @@ "type": "string", "description": "The model to use for the image generation.", "default": "stable-diffusion", - "enum": ["stable-diffusion", "flux"], + "enum": [ + "stable-diffusion", + "flux" + ], "required": false }, "style": { @@ -3653,13 +6105,23 @@ }, "width": { "type": "number", - "enum": [512, 768, 1024, 1360], + "enum": [ + 512, + 768, + 1024, + 1360 + ], "description": "Width of the image.", "required": false }, "height": { "type": "number", - "enum": [512, 768, 1024, 1360], + "enum": [ + 512, + 768, + 1024, + 1360 + ], "description": "Height of the image.", "required": false } @@ -3667,12 +6129,16 @@ } ] }, - "\/wpcom\/v2\/pattern-assembler\/ai\/v5\/generate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/pattern-assembler/ai/v5/generate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "description": { "description": "Description of the site to generate pages for.", @@ -3689,41 +6155,63 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/v5\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/v5/generate" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/styles": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pattern-assembler/ai/custom-gpt/styles": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/custom-gpt\/styles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/custom-gpt/styles" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/patterns": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pattern-assembler/ai/custom-gpt/patterns": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/custom-gpt\/patterns" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/custom-gpt/patterns" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/generate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/pattern-assembler/ai/custom-gpt/generate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "header_pattern": { "type": "number", @@ -3794,29 +6282,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/custom-gpt\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/custom-gpt/generate" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/custom-gpt\/get_schema": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pattern-assembler/ai/custom-gpt/get_schema": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/custom-gpt\/get_schema" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/custom-gpt/get_schema" } ] } }, - "\/wpcom\/v2\/pattern-assembler\/ai\/latest\/generate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/pattern-assembler/ai/latest/generate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "description": { "description": "Description of the site to generate pages for.", @@ -3833,17 +6334,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-assembler\/ai\/latest\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pattern-assembler/ai/latest/generate" } ] } }, - "\/wpcom\/v2\/playground\/ai\/blueprint": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/playground/ai/blueprint": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "prompt": { "description": "Description of the site.", @@ -3859,17 +6364,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/playground\/ai\/blueprint" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/playground/ai/blueprint" } ] } }, - "\/wpcom\/v2\/playground\/declarative\/ai\/blueprint": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/playground/declarative/ai/blueprint": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "prompt": { "description": "Description of the site.", @@ -3885,17 +6394,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/playground\/declarative\/ai\/blueprint" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/playground/declarative/ai/blueprint" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/p2\/summary\/summarize": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/p2/summary/summarize": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "post_id": { "description": "Post ID to summarize", @@ -3905,14 +6418,21 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/p2\/summary\/rank": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/p2/summary/rank": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "post_id": { "description": "Post ID to rank", "required": true }, + "post_id": { + "description": "Post ID to rank", + "required": true + }, "rank": { "description": "How do you rank this response", "required": false @@ -3921,12 +6441,16 @@ } ] }, - "\/wpcom\/v2\/text-completion": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/text-completion": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "prompt": { "type": "string", @@ -3960,7 +6484,10 @@ }, "response_format": { "type": "string", - "enum": ["json_object", "text"], + "enum": [ + "json_object", + "text" + ], "description": "The format of the response.", "required": false }, @@ -3980,17 +6507,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/text-completion" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/text-completion" } ] } }, - "\/wpcom\/v2\/text-completion\/stream": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/text-completion/stream": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "prompt": { "type": "string", @@ -4024,7 +6555,10 @@ }, "response_format": { "type": "string", - "enum": ["json_object", "text"], + "enum": [ + "json_object", + "text" + ], "description": "The format of the response.", "required": false }, @@ -4044,37 +6578,53 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/text-completion\/stream" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/text-completion/stream" } ] } }, - "\/wpcom\/v2\/analyze-url\/colors": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/analyze-url/colors": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "url": { "type": "string", "required": true }, - "num": { "type": "integer", "default": 5, "required": false } + "url": { + "type": "string", + "required": true + }, + "num": { + "type": "integer", + "default": 5, + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analyze-url\/colors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/analyze-url/colors" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/ssh-keys": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/ssh-keys": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4084,7 +6634,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4100,12 +6652,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/ssh-keys\/(?P<user_name>[\\w]+)\/(?P<name>[\\w.:-]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/ssh-keys/(?P<user_name>[\\w]+)/(?P<name>[\\w.:-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4126,41 +6682,61 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/atomic-migration-status": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/atomic-migration-status": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "status": { "description": "Set the status of the migration, only allowed value for the time being is \"started\"", "type": "string", - "enum": ["started"], + "enum": [ + "started" + ], "required": true }, "migration_type": { "description": "Specify which type of migration is involved", "type": "string", - "enum": ["migrate-guru"], + "enum": [ + "migrate-guru" + ], "required": true } } } ] }, - "\/wpcom\/v2\/big-sky\/replace-content": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/big-sky/replace-content": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "siteDescription": { "type": "string", "required": true }, - "content": { "type": "object", "required": true }, + "siteDescription": { + "type": "string", + "required": true + }, + "content": { + "type": "object", + "required": true + }, "sections": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } @@ -4169,47 +6745,79 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/big-sky\/replace-content" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/big-sky/replace-content" } ] } }, - "\/wpcom\/v2\/big-sky\/site-spec\/(?P<spec_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/big-sky/site-spec/(?P<spec_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/blaze\/assign-user-to-experiment": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/blaze/assign-user-to-experiment": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "wpcom_user_id": { "type": "string", "required": true }, - "experiment_name": { "type": "string", "required": true } + "wpcom_user_id": { + "type": "string", + "required": true + }, + "experiment_name": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blaze\/assign-user-to-experiment" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/blaze/assign-user-to-experiment" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blaze\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blaze/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blaze\/posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blaze/posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "title": { "type": "string", @@ -4244,7 +6852,10 @@ }, "order": { "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "description": "Order by ascendent or descendent. Valid values are: asc, desc", "required": false }, @@ -4257,12 +6868,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blaze\/posts\/(?P<post_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blaze/posts/(?P<post_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start_date": { "type": "integer", @@ -4278,12 +6893,16 @@ } ] }, - "\/wpcom\/v2\/block-previews\/pattern": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/block-previews/pattern": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "demo_site": { "description": "A domain or blog ID of the site you want to preview.", @@ -4291,8 +6910,8 @@ "required": false }, "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", - "default": "pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", + "default": "pub/zoologist", "type": "string", "required": false }, @@ -4348,17 +6967,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-previews\/pattern" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/block-previews/pattern" } ] } }, - "\/wpcom\/v2\/block-previews\/site": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/block-previews/site": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "demo_site": { "description": "A domain or blog ID of the site you want to preview.", @@ -4366,8 +6989,8 @@ "required": false }, "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", - "default": "pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", + "default": "pub/zoologist", "type": "string", "required": false }, @@ -4451,17 +7074,22 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-previews\/site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/block-previews/site" } ] } }, - "\/wpcom\/v2\/block-recipes": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/block-recipes": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "source_site_id": { "description": "Source site id of the recipes", @@ -4471,7 +7099,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_site_id": { "description": "Source site id of the recipes", @@ -4484,17 +7114,27 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-recipes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/block-recipes" } ] } }, - "\/wpcom\/v2\/block-recipes\/(?P<recipe_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET", "DELETE"], + "/wpcom/v2/block-recipes/(?P<recipe_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "source_site_id": { "description": "Source site id of the recipes", @@ -4504,7 +7144,9 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "source_site_id": { "description": "Source site id of the recipes", @@ -4514,7 +7156,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "source_site_id": { "description": "Source site id of the recipes", @@ -4525,15 +7169,19 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-renderer\/patterns\/render": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-renderer/patterns/render": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -4557,15 +7205,19 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-renderer\/content\/render": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-renderer/content/render": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -4588,15 +7240,19 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-renderer\/settings": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-renderer/settings": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, @@ -4609,13 +7265,23 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blogging-prompts\/settings": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blogging-prompts/settings": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "prompts_card_opted_in": { "type": "boolean", @@ -4672,12 +7338,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blogging-prompts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blogging-prompts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "number": { "type": "integer", @@ -4694,12 +7364,16 @@ } ] }, - "\/wpcom\/v2\/breakingbot\/resolveuser": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/breakingbot/resolveuser": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slack_member_id": { "type": "string", @@ -4714,20 +7388,30 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/breakingbot\/resolveuser" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/breakingbot/resolveuser" } ] } }, - "\/wpcom\/v2\/breakingbot\/report\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/breakingbot/report/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "post_title": { "type": "string", "required": true }, - "post_content": { "type": "string", "required": true }, + "post_title": { + "type": "string", + "required": true + }, + "post_content": { + "type": "string", + "required": true + }, "tags": { "type": "array", "items": { @@ -4736,24 +7420,32 @@ }, "required": true }, - "wpcom_username": { "type": "string", "required": false } + "wpcom_username": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/breakingbot\/report\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/breakingbot/report/new" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/code-deployments": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/code-deployments": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4768,7 +7460,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4809,13 +7503,28 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/code-deployments\/(?P<deployment_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/code-deployments/(?P<deployment_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4855,7 +7564,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4876,12 +7587,17 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/code-deployments\/(?P<deployment_id>[\\d]+)\/runs": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/code-deployments/(?P<deployment_id>[\\d]+)/runs": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4896,7 +7612,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4912,12 +7630,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/code-deployments\/(?P<deployment_id>[\\d]+)\/runs\/(?P<deployment_run_id>[\\d]+)\/logs": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/code-deployments/(?P<deployment_id>[\\d]+)/runs/(?P<deployment_run_id>[\\d]+)/logs": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -4938,119 +7660,218 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/code-deployments\/(?P<deployment_id>[\\d]+)\/runs\/(?P<deployment_run_id>[\\d]+)\/logs\/(?P<command_identifier>[0-9a-fA-F]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/code-deployments/(?P<deployment_id>[\\d]+)/runs/(?P<deployment_run_id>[\\d]+)/logs/(?P<command_identifier>[0-9a-fA-F]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/colors\/patterns": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/colors/patterns": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "color": { "type": "string", "required": false }, - "limit": { "type": "integer", "required": false }, - "offset": { "type": "integer", "required": false } + "color": { + "type": "string", + "required": false + }, + "limit": { + "type": "integer", + "required": false + }, + "offset": { + "type": "integer", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/colors\/patterns" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/colors/patterns" } ] } }, - "\/wpcom\/v2\/colors\/palettes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/colors/palettes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "color": { "type": "string", "required": false }, - "limit": { "type": "integer", "required": false }, - "offset": { "type": "integer", "required": false }, - "colors": { "type": "string", "required": false } + "color": { + "type": "string", + "required": false + }, + "limit": { + "type": "integer", + "required": false + }, + "offset": { + "type": "integer", + "required": false + }, + "colors": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/colors\/palettes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/colors/palettes" } ] } }, - "\/wpcom\/v2\/colors\/patterns\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/colors/patterns/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/colors\/palettes\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/colors/palettes/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/common-block-layouts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/common-block-layouts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "supported_blocks": { "required": false }, - "exclude": { "required": false }, - "preview_width": { "required": false }, - "preview_height": { "required": false }, - "scale": { "default": 1, "required": false }, - "is_beta": { "default": false, "required": false }, - "type": { "required": false } + "supported_blocks": { + "required": false + }, + "exclude": { + "required": false + }, + "preview_width": { + "required": false + }, + "preview_height": { + "required": false + }, + "scale": { + "default": 1, + "required": false + }, + "is_beta": { + "default": false, + "required": false + }, + "type": { + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/common-block-layouts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/common-block-layouts" } ] } }, - "\/wpcom\/v2\/common-starter-site-designs": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/common-starter-site-designs": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "preview_width": { "required": false }, - "preview_height": { "required": false }, - "scale": { "default": 1, "required": false }, - "is_beta": { "default": false, "required": false }, - "group": { "required": false }, - "type": { "required": false } + "preview_width": { + "required": false + }, + "preview_height": { + "required": false + }, + "scale": { + "default": 1, + "required": false + }, + "is_beta": { + "default": false, + "required": false + }, + "group": { + "required": false + }, + "type": { + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/common-starter-site-designs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/common-starter-site-designs" } ] } }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "schedule_id": { "type": "integer", @@ -5065,7 +7886,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "schedule_id": { "type": "integer", @@ -5101,12 +7924,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/all": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/all": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "schedule_id": { "type": "integer", @@ -5137,12 +7964,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/(?P<appointment_id>[\\d]+)\/detail": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/(?P<appointment_id>[\\d]+)/detail": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "schedule_id": { "type": "integer", @@ -5158,12 +7989,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/(?P<appointment_id>[\\d]+)\/cancel": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/(?P<appointment_id>[\\d]+)/cancel": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "schedule_id": { "type": "integer", @@ -5184,12 +8019,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/(?P<appointment_id>[\\d]+)\/reassign": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/(?P<appointment_id>[\\d]+)/reassign": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "schedule_id": { "type": "integer", @@ -5208,19 +8047,23 @@ }, "availability_type": { "type": "string", - "description": "Indicates availability category of picked staff as one one with buffer\/without buffer\/not scheduled", + "description": "Indicates availability category of picked staff as one one with buffer/without buffer/not scheduled", "required": false } } } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/(?P<appointment_id>[\\d]+)\/update-conference-link": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/(?P<appointment_id>[\\d]+)/update-conference-link": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "schedule_id": { "type": "integer", @@ -5241,12 +8084,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<schedule_id>[\\d]+)\/appointments\/(?P<appointment_id>[\\d]+)\/reschedule": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/concierge/schedules/(?P<schedule_id>[\\d]+)/appointments/(?P<appointment_id>[\\d]+)/reschedule": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "schedule_id": { "type": "integer", @@ -5272,12 +8119,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<id>[\\d]+)\/available_times": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/concierge/schedules/(?P<id>[\\d]+)/available_times": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "type": "integer", @@ -5293,24 +8144,37 @@ } ] }, - "\/wpcom\/v2\/concierge\/schedules": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/concierge/schedules": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/concierge\/schedules" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/concierge/schedules" } ] } }, - "\/wpcom\/v2\/concierge\/schedules\/(?P<id>[\\d]+)\/available_staff": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/concierge/schedules/(?P<id>[\\d]+)/available_staff": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "type": "integer", @@ -5331,12 +8195,16 @@ } ] }, - "\/wpcom\/v2\/concierge\/initial": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/concierge/initial": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "begin_timestamp": { "type": "integer", @@ -5359,73 +8227,109 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/concierge\/initial" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/concierge/initial" } ] } }, - "\/wpcom\/v2\/country-codes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/country-codes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/country-codes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/country-codes" } ] } }, - "\/wpcom\/v2\/courses": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/courses": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": { "course_slug": { "required": false } } } + { + "methods": [ + "GET" + ], + "args": { + "course_slug": { + "required": false + } + } + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/courses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/courses" } ] } }, - "\/wpcom\/v2\/courses\/videos": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/courses/videos": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "course_slug": { "required": true }, - "video_slug": { "required": true } + "course_slug": { + "required": true + }, + "video_slug": { + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/courses\/videos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/courses/videos" } ] } }, - "\/wpcom\/v2\/dashboard\/site-filters": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/dashboard/site-filters": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "fields": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true }, "site_types": { "default": [], "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } @@ -5434,24 +8338,31 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/dashboard\/site-filters" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/dashboard/site-filters" } ] } }, - "\/wpcom\/v2\/dashboard\/site-list": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/dashboard/site-list": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "fields": { "default": "badge,blog_id,capabilities,connected_administrators,deleted,enabled_modules,has_backup,hosting_provider,hosting_provider_guess,icon,is_a8c,is_atomic,is_garden,is_jetpack,is_p2,is_vip,last_publish,name,owner_id,php_version,plan,private,public,slug,status,total_wpcom_subscribers,url,views,visitors,wordpress_version,wpcom_status", "type": "string", "required": false }, - "s": { "type": "string", "required": false }, + "s": { + "type": "string", + "required": false + }, "sort_by": { "default": "url", "type": "string", @@ -5469,11 +8380,22 @@ "sort_direction": { "default": "asc", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], + "required": false + }, + "page": { + "default": 1, + "type": "integer", + "required": false + }, + "per_page": { + "default": 10, + "type": "integer", "required": false }, - "page": { "default": 1, "type": "integer", "required": false }, - "per_page": { "default": 10, "type": "integer", "required": false }, "filters": { "default": [], "type": "object", @@ -5482,13 +8404,17 @@ "plan": { "type": "array", "description": "Filter sites by plan", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [] }, "site_types": { "type": "array", "description": "Filter sites by site types", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [] }, "is_a8c": { @@ -5505,17 +8431,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/dashboard\/site-list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/dashboard/site-list" } ] } }, - "\/wpcom\/v2\/deepl\/translate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/deepl/translate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "text": { "description": "The text to be translated", @@ -5531,17 +8461,23 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/deepl\/translate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/deepl/translate" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/do-it-for-me\/website-content": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/do-it-for-me/website-content": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "pages": { "type": "array", @@ -5550,7 +8486,12 @@ "items": { "type": "object", "description": "List of pages", - "required": ["id", "title", "content", "media"], + "required": [ + "id", + "title", + "content", + "media" + ], "properties": { "id": { "type": "string", @@ -5570,7 +8511,10 @@ "items": { "type": "object", "description": "List of media uploaded and urls", - "required": ["caption", "url"], + "required": [ + "caption", + "url" + ], "properties": { "caption": { "type": "string", @@ -5622,7 +8566,9 @@ } }, { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { "pages": { "type": "array", @@ -5631,7 +8577,12 @@ "items": { "type": "object", "description": "List of pages", - "required": ["id", "title", "content", "media"], + "required": [ + "id", + "title", + "content", + "media" + ], "properties": { "id": { "type": "string", @@ -5651,7 +8602,10 @@ "items": { "type": "object", "description": "List of media uploaded and urls", - "required": ["caption", "url"], + "required": [ + "caption", + "url" + ], "properties": { "caption": { "type": "string", @@ -5702,770 +8656,1448 @@ } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/domains-tools\/advanced-move-domain\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<new_user_id>[1-9][0-9]*)(?:\/(?P<new_blog_id>[1-9][0-9]*)){0,1}": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/advanced-move-domain/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<new_user_id>[1-9][0-9]*)(?:/(?P<new_blog_id>[1-9][0-9]*)){0,1}": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "new_user_id": { "type": "integer", "required": true }, - "new_blog_id": { "type": "integer", "required": false } + "domain": { + "type": "string", + "required": true + }, + "new_user_id": { + "type": "integer", + "required": true + }, + "new_blog_id": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/domains-tools\/atomic-info\/(?P<domain>[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/atomic-info/(?P<domain>[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/cancel\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/cancel/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/cancel-wwd-pending-contact-update\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/cancel-wwd-pending-contact-update/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/change-primary-domain\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<new_domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/change-primary-domain/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<new_domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "new_domain": { "type": "string", "required": true } + "domain": { + "type": "string", + "required": true + }, + "new_domain": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/contact-information\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/contact-information/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/create-dns-zone\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/create-dns-zone/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/delete-mapping-record\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/delete-mapping-record/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/disable-privacy\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/disable-privacy/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/disconnect-domain-from-site\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/disconnect-domain-from-site/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/dns-revisions\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/dns-revisions/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/dns\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/dns/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-dispute-flags\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-dispute-flags/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/email-forwards\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/email-forwards/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/enable-privacy\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/enable-privacy/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/create\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/create/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/customer\/update\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/customer/update/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/dns\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains-tools/gsuite/dns/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains-tools\/gsuite\/dns\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains-tools/gsuite/dns/delete" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/create-conflicting\/(?P<email>[0-9a-z\\@\\_'.-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/user/create-conflicting/(?P<email>[0-9a-z\\@\\_'.-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "email": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "email": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/create\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/user/create/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/reset-password": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains-tools/gsuite/user/reset-password": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains-tools\/gsuite\/user\/reset-password" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains-tools/gsuite/user/reset-password" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/user\/reset-recovery-email": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains-tools/gsuite/user/reset-recovery-email": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains-tools\/gsuite\/user\/reset-recovery-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains-tools/gsuite/user/reset-recovery-email" } ] } }, - "\/wpcom\/v2\/domains-tools\/gsuite\/users\/activate\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/gsuite/users/activate/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/hosting-provider\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/hosting-provider/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/info-fix-restored-domain\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/info-fix-restored-domain/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/info\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/info/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/initiate-transfer-out\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/initiate-transfer-out/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/loads-wpcom\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/loads-wpcom/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/logs\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/logs/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/mapping\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/mapping/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/medic\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/medic/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/move-domain-to-blog\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<blog_id>[1-9][0-9]*)\/(?P<set_as_primary>true|false)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/move-domain-to-blog/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<blog_id>[1-9][0-9]*)/(?P<set_as_primary>true|false)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "blog_id": { "type": "integer", "required": true }, - "set_as_primary": { "type": "boolean", "required": true } + "domain": { + "type": "string", + "required": true + }, + "blog_id": { + "type": "integer", + "required": true + }, + "set_as_primary": { + "type": "boolean", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/redeem-domain\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/redeem-domain/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/remove-async-renewal\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/remove-async-renewal/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/resend-verification-email\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/resend-verification-email/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/reset-default-atomic-root-a-records\/(?P<domain>[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/reset-default-atomic-root-a-records/(?P<domain>[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/reset-nameservers\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/reset-nameservers/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/reset-wwd-password\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/reset-wwd-password/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/restore-domain\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/restore-domain/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/redirects\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/redirects/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/send-authorization-code\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/send-authorization-code/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/set-domain-dispute-flag\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<flag_type>[a-z][a-zx\\_]+)\/(?P<new_flag_value>[0,1])": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/set-domain-dispute-flag/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<flag_type>[a-z][a-zx\\_]+)/(?P<new_flag_value>[0,1])": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "flag_type": { "type": "string", "required": true }, - "new_flag_value": { "type": "integer", "required": true } + "domain": { + "type": "string", + "required": true + }, + "flag_type": { + "type": "string", + "required": true + }, + "new_flag_value": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/set-domain-status\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<domain_status>[a-z0-9][a-z0-9\\-]+)\/(?P<new_status_value>[0,1])": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/set-domain-status/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<domain_status>[a-z0-9][a-z0-9\\-]+)/(?P<new_status_value>[0,1])": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "domain_status": { "type": "string", "required": true }, - "new_status_value": { "type": "boolean", "required": true } + "domain": { + "type": "string", + "required": true + }, + "domain_status": { + "type": "string", + "required": true + }, + "new_status_value": { + "type": "boolean", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/set-primary-domain\/(?P<blog_id>\\d+)\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/set-primary-domain/(?P<blog_id>\\d+)/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "blog_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true } + "blog_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-info\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/ssl-info/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-new-order\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/ssl-new-order/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/ssl-retry\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/ssl-retry/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/subscriptions\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/subscriptions/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/sync-wwd-contact-information\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/sync-wwd-contact-information/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/transfer-lock-flags\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/transfer-lock-flags/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/unverify-contact\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/unverify-contact/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/update-authorization-code\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/update-authorization-code/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } - } - ] - }, - "\/wpcom\/v2\/domains-tools\/user-privileges\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [ + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } + } + ] + }, + "/wpcom/v2/domains-tools/user-privileges/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": false } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/verify-contact\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/verify-contact/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/whois\/(?P<domain>[a-z0-9][a-z0-9.-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/whois/(?P<domain>[a-z0-9][a-z0-9.-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/wpcomdns\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/wpcomdns/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/billing-transactions\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/billing-transactions/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/contact-information\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/contact-information/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/events\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/events/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/domain-dispute-flags\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/domain-dispute-flags/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/info\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/info/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/log-details\/(?P<parent_id>[a-z0-9\\.\\-\\:\\_]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/log-details/(?P<parent_id>[a-z0-9\\.\\-\\:\\_]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "parent_id": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "parent_id": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/logs\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/logs/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/resend-verification-email\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/domain-services-api/resend-verification-email/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/set-domain-dispute-flag\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<flag_type>[a-z][a-zx\\_]+)\/(?P<new_flag_value>[0,1])": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/domain-services-api/set-domain-dispute-flag/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<flag_type>[a-z][a-zx\\_]+)/(?P<new_flag_value>[0,1])": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "flag_type": { "type": "string", "required": true }, - "new_flag_value": { "type": "integer", "required": true } + "domain": { + "type": "string", + "required": true + }, + "flag_type": { + "type": "string", + "required": true + }, + "new_flag_value": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/set-domain-status\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)\/(?P<domain_status>[a-z0-9][a-z0-9\\-]+)\/(?P<new_status_value>[0,1])": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/domain-services-api/set-domain-status/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)/(?P<domain_status>[a-z0-9][a-z0-9\\-]+)/(?P<new_status_value>[0,1])": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "domain_status": { "type": "string", "required": true }, - "new_status_value": { "type": "boolean", "required": true } + "domain": { + "type": "string", + "required": true + }, + "domain_status": { + "type": "string", + "required": true + }, + "new_status_value": { + "type": "boolean", + "required": true + } } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/user-privileges\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains-tools/domain-services-api/user-privileges/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": false } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/domains-tools\/domain-services-api\/initiate-transfer-out\/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains-tools/domain-services-api/initiate-transfer-out/(?P<domain>[a-z0-9][a-z0-9\\.\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains\/bulk-actions\/update-contact-info": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains/bulk-actions/update-contact-info": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/bulk-actions\/update-contact-info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/bulk-actions/update-contact-info" } ] } }, - "\/wpcom\/v2\/domains\/bulk-actions\/set-auto-renew": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains/bulk-actions/set-auto-renew": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/bulk-actions\/set-auto-renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/bulk-actions/set-auto-renew" } ] } }, - "\/wpcom\/v2\/domains\/bulk-actions": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/domains/bulk-actions": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/bulk-actions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/bulk-actions" } ] } }, - "\/wpcom\/v2\/domains\/bulk-availability-check\/(?P<domain_names>.*)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains/bulk-availability-check/(?P<domain_names>.*)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "domain_names": { "type": "string", @@ -6476,17 +10108,30 @@ } ] }, - "\/wpcom\/v2\/domains\/diagnostics\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/domains/diagnostics/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/dns\/email\/set-default-records": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains/dns/email/set-default-records": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "domain": { "description": "The domain which default email DNS records will be restored", @@ -6498,28 +10143,48 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/dns\/email\/set-default-records" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/dns/email/set-default-records" } ] } }, - "\/wpcom\/v2\/domains\/dns\/import\/bind\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains/dns/import/bind/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "DELETE"], + "/wpcom/v2/domains/dnssec/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "DELETE" + ], "endpoints": [ - { "methods": ["POST"], "args": [] }, { - "methods": ["PUT"], + "methods": [ + "POST" + ], + "args": [] + }, + { + "methods": [ + "PUT" + ], "args": { "data": { "type": "object", @@ -6534,11 +10199,26 @@ "required": false, "type": "object", "properties": { - "rdata": { "required": true, "type": "string" }, - "flags": { "required": true, "type": "integer" }, - "protocol": { "required": true, "type": "integer" }, - "algorithm": { "required": true, "type": "integer" }, - "public_key": { "required": true, "type": "string" } + "rdata": { + "required": true, + "type": "string" + }, + "flags": { + "required": true, + "type": "integer" + }, + "protocol": { + "required": true, + "type": "integer" + }, + "algorithm": { + "required": true, + "type": "integer" + }, + "public_key": { + "required": true, + "type": "string" + } } }, "ds_data": { @@ -6547,8 +10227,14 @@ "items": { "type": "object", "properties": { - "rdata": { "required": true, "type": "string" }, - "key_tag": { "required": true, "type": "integer" }, + "rdata": { + "required": true, + "type": "string" + }, + "key_tag": { + "required": true, + "type": "integer" + }, "algorithm": { "required": true, "type": "integer" @@ -6557,7 +10243,10 @@ "required": true, "type": "integer" }, - "digest": { "required": true, "type": "string" } + "digest": { + "required": true, + "type": "string" + } } } } @@ -6569,148 +10258,292 @@ } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P<domain>[^\\\/]+)\/nameserver": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/domains/dnssec/(?P<domain>[^\\/]+)/nameserver": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/dnssec\/(?P<domain>[^\\\/]+)\/registry": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/domains/dnssec/(?P<domain>[^\\/]+)/registry": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/glue-records\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/domains/glue-records/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/glue-records": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/domains/glue-records": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "name_server": { "type": "string", "required": true }, - "ip_addresses": { "type": "array", "required": true } + "name_server": { + "type": "string", + "required": true + }, + "ip_addresses": { + "type": "array", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/glue-records" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/glue-records" } ] } }, - "\/wpcom\/v2\/domains\/glue-records\/(?P<name_server>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], - "endpoints": [{ "methods": ["DELETE"], "args": [] }] + "/wpcom/v2/domains/glue-records/(?P<name_server>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/list\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/domains/list/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/list\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/list/mine" } ] } }, - "\/wpcom\/v2\/domains\/auction\/expired-list-csv": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/domains/auction/expired-list-csv": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/auction\/expired-list-csv" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/auction/expired-list-csv" } ] } }, - "\/wpcom\/v2\/domains\/auction\/expired-domain-stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/domains/auction/expired-domain-stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/auction\/expired-domain-stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/auction/expired-domain-stats" } ] } }, - "\/wpcom\/v2\/domains\/auction\/transfer(?P<query_string>.*)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/domains/auction/transfer(?P<query_string>.*)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/auction\/renew": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/domains/auction/renew": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/auction\/renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/auction/renew" } ] } }, - "\/wpcom\/v2\/domains\/point-to-wpcom": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/domains/point-to-wpcom": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/domains\/point-to-wpcom" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/domains/point-to-wpcom" } ] } }, - "\/wpcom\/v2\/domains\/propagation-status\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/domains/propagation-status/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/domains\/secure-your-brand\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/domains/secure-your-brand/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "domain": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "domain": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/domains\/ssl\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/domains/ssl/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/editor\/redirect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/editor/redirect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "path": { "type": "string", @@ -6726,32 +10559,72 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/emails\/domains": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/emails/domains": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/emails\/mailboxes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/emails/mailboxes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/emails\/accounts\/(?P<domain>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/emails/accounts/(?P<domain>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/emails\/accounts\/(?P<domain>[^\\\/]+)\/mailboxes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/emails/accounts/(?P<domain>[^\\/]+)/mailboxes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/enterpret-webhook\/(?P<secret>[^\/]+)\/(?P<enterpret_api_key>[^\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/enterpret-webhook/(?P<secret>[^/]+)/(?P<enterpret_api_key>[^/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "secret": { "description": "Secret for authenticating inbound webhook requests.", @@ -6767,12 +10640,16 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/analyses\/(?P<experiment_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/experiments/0.1.0/analyses/(?P<experiment_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "metric_assignment_id": { "type": "integer", @@ -6783,12 +10660,16 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/analyses\/(?P<experiment_id>\\d+)\/latest": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/experiments/0.1.0/analyses/(?P<experiment_id>\\d+)/latest": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "metric_assignment_id": { "type": "integer", @@ -6799,16 +10680,20 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/assignments\/(?P<platform>(akismet|calypso|dayone|dsp|email|jetpack|lohp|mlsales|pipe|pocketcasts|tumblr|wccom|woocommerce|woocommerceandroid|woocommerceios|wpandroid|wpcom|wpios))": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/experiments/0.1.0/assignments/(?P<platform>(akismet|calypso|dayone|dsp|email|jetpack|lohp|mlsales|pipe|pocketcasts|tumblr|wccom|woocommerce|woocommerceandroid|woocommerceios|wpandroid|wpcom|wpios))": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "anon_id": { "type": "string", - "pattern": "(^$)|^[A-Za-z0-9+\/=:@\\-\\._ ]{1,64}$", + "pattern": "(^$)|^[A-Za-z0-9+/=:@\\-\\._ ]{1,64}$", "required": false }, "experiment_names": { @@ -6820,16 +10705,20 @@ } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/assignments": { - "namespace": "wpcom\/v2", - "methods": ["PATCH"], + "/wpcom/v2/experiments/0.1.0/assignments": { + "namespace": "wpcom/v2", + "methods": [ + "PATCH" + ], "endpoints": [ { - "methods": ["PATCH"], + "methods": [ + "PATCH" + ], "args": { "anon_id": { "type": "string", - "pattern": "(^$)|^[A-Za-z0-9+\/=:@\\-\\._ ]{1,64}$", + "pattern": "(^$)|^[A-Za-z0-9+/=:@\\-\\._ ]{1,64}$", "required": false }, "username_override": { @@ -6837,93 +10726,160 @@ "pattern": "^(-|\\w)*$", "required": false }, - "variations": { "type": "object", "required": true } + "variations": { + "type": "object", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/assignments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/assignments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/events": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/experiments/0.1.0/autocomplete/events": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/autocomplete\/events" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/autocomplete/events" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/events\/(?P<name>[a-z_][a-z0-9_]*)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/experiments/0.1.0/autocomplete/events/(?P<name>[a-z_][a-z0-9_]*)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/experiments/0.1.0/autocomplete/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/autocomplete\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/autocomplete/products" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/transaction-types": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/experiments/0.1.0/autocomplete/transaction-types": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/autocomplete\/transaction-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/autocomplete/transaction-types" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/autocomplete\/users": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/experiments/0.1.0/autocomplete/users": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/autocomplete\/users" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/autocomplete/users" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/experiments/0.1.0/experiments": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "include_analyses": { "type": "string", "required": false } + "include_analyses": { + "type": "string", + "required": false + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "name": { "type": "string", "required": true }, + "name": { + "type": "string", + "required": true + }, "start_datetime": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "default": null, "format": "date-time", "required": false }, "end_datetime": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "default": null, "format": "date-time", "required": false @@ -6952,20 +10908,41 @@ ], "required": true }, - "owner_login": { "type": "string", "required": true }, - "description": { "type": "string", "required": true }, - "existing_users_allowed": { "type": "boolean", "required": true }, - "p2_url": { "type": "string", "format": "uri", "required": false }, - "eligibility": { "type": "object", "required": false }, + "owner_login": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + }, + "existing_users_allowed": { + "type": "boolean", + "required": true + }, + "p2_url": { + "type": "string", + "format": "uri", + "required": false + }, + "eligibility": { + "type": "object", + "required": false + }, "exposure_events": { "type": "array", "items": { "type": "object", "properties": { - "event": { "type": "string", "required": true }, + "event": { + "type": "string", + "required": true + }, "props": { "type": "object", - "properties": { "type": "string" } + "properties": { + "type": "string" + } } } }, @@ -6976,8 +10953,14 @@ "items": { "type": "object", "properties": { - "name": { "type": "string", "required": true }, - "is_default": { "type": "boolean", "required": true }, + "name": { + "type": "string", + "required": true + }, + "is_default": { + "type": "boolean", + "required": true + }, "allocated_percentage": { "type": "integer", "minimum": 1, @@ -6992,8 +10975,14 @@ "items": { "type": "object", "properties": { - "metric_id": { "type": "integer", "required": true }, - "is_primary": { "type": "boolean", "required": true }, + "metric_id": { + "type": "integer", + "required": true + }, + "is_primary": { + "type": "boolean", + "required": true + }, "min_difference": { "type": "number", "minimum": 0, @@ -7002,12 +10991,22 @@ "attribution_window_seconds": { "type": "integer", "enum": [ - 3600, 21600, 43200, 86400, 259200, 604800, 1209600, - 1814400, 2419200 + 3600, + 21600, + 43200, + 86400, + 259200, + 604800, + 1209600, + 1814400, + 2419200 ], "required": true }, - "change_expected": { "type": "boolean", "required": true } + "change_expected": { + "type": "boolean", + "required": true + } } }, "required": true @@ -7017,16 +11016,27 @@ "items": { "type": "object", "properties": { - "description": { "type": "string", "required": false }, - "segment_id": { "type": "integer", "required": true }, - "is_excluded": { "type": "boolean", "required": true } + "description": { + "type": "string", + "required": false + }, + "segment_id": { + "type": "integer", + "required": true + }, + "is_excluded": { + "type": "boolean", + "required": true + } } }, "required": true }, "exclusion_group_tag_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } @@ -7035,33 +11045,53 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/experiments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/experiments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments\/(?P<experiment_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "PUT", "PATCH"], + "/wpcom/v2/experiments/0.1.0/experiments/(?P<experiment_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "include_participants": { "type": "string", "required": false } + "include_participants": { + "type": "string", + "required": false + } } }, { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { - "name": { "type": "string", "required": true }, + "name": { + "type": "string", + "required": true + }, "start_datetime": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "default": null, "format": "date-time", "required": false }, "end_datetime": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "default": null, "format": "date-time", "required": false @@ -7090,20 +11120,41 @@ ], "required": true }, - "owner_login": { "type": "string", "required": true }, - "description": { "type": "string", "required": true }, - "existing_users_allowed": { "type": "boolean", "required": true }, - "p2_url": { "type": "string", "format": "uri", "required": false }, - "eligibility": { "type": "object", "required": false }, + "owner_login": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + }, + "existing_users_allowed": { + "type": "boolean", + "required": true + }, + "p2_url": { + "type": "string", + "format": "uri", + "required": false + }, + "eligibility": { + "type": "object", + "required": false + }, "exposure_events": { "type": "array", "items": { "type": "object", "properties": { - "event": { "type": "string", "required": true }, + "event": { + "type": "string", + "required": true + }, "props": { "type": "object", - "properties": { "type": "string" } + "properties": { + "type": "string" + } } } }, @@ -7114,8 +11165,14 @@ "items": { "type": "object", "properties": { - "name": { "type": "string", "required": true }, - "is_default": { "type": "boolean", "required": true }, + "name": { + "type": "string", + "required": true + }, + "is_default": { + "type": "boolean", + "required": true + }, "allocated_percentage": { "type": "integer", "minimum": 1, @@ -7130,8 +11187,14 @@ "items": { "type": "object", "properties": { - "metric_id": { "type": "integer", "required": true }, - "is_primary": { "type": "boolean", "required": true }, + "metric_id": { + "type": "integer", + "required": true + }, + "is_primary": { + "type": "boolean", + "required": true + }, "min_difference": { "type": "number", "minimum": 0, @@ -7140,12 +11203,22 @@ "attribution_window_seconds": { "type": "integer", "enum": [ - 3600, 21600, 43200, 86400, 259200, 604800, 1209600, - 1814400, 2419200 + 3600, + 21600, + 43200, + 86400, + 259200, + 604800, + 1209600, + 1814400, + 2419200 ], "required": true }, - "change_expected": { "type": "boolean", "required": true } + "change_expected": { + "type": "boolean", + "required": true + } } }, "required": true @@ -7155,111 +11228,194 @@ "items": { "type": "object", "properties": { - "description": { "type": "string", "required": false }, - "segment_id": { "type": "integer", "required": true }, - "is_excluded": { "type": "boolean", "required": true } + "description": { + "type": "string", + "required": false + }, + "segment_id": { + "type": "integer", + "required": true + }, + "is_excluded": { + "type": "boolean", + "required": true + } } }, "required": true }, "exclusion_group_tag_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } }, { - "methods": ["PATCH"], + "methods": [ + "PATCH" + ], "args": { "end_datetime": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "default": null, "format": "date-time", "required": false }, - "owner_login": { "type": "string", "required": false }, - "description": { "type": "string", "required": false }, - "p2_url": { "type": "string", "format": "uri", "required": false }, - "metric_assignments": { - "type": "array", - "items": { - "type": "object", - "properties": { - "metric_id": { "type": "integer", "required": true }, - "is_primary": { "type": "boolean", "required": true }, - "min_difference": { - "type": "number", + "owner_login": { + "type": "string", + "required": false + }, + "description": { + "type": "string", + "required": false + }, + "p2_url": { + "type": "string", + "format": "uri", + "required": false + }, + "metric_assignments": { + "type": "array", + "items": { + "type": "object", + "properties": { + "metric_id": { + "type": "integer", + "required": true + }, + "is_primary": { + "type": "boolean", + "required": true + }, + "min_difference": { + "type": "number", "minimum": 0, "required": true }, "attribution_window_seconds": { "type": "integer", "enum": [ - 3600, 21600, 43200, 86400, 259200, 604800, 1209600, - 1814400, 2419200 + 3600, + 21600, + 43200, + 86400, + 259200, + 604800, + 1209600, + 1814400, + 2419200 ], "required": true }, - "change_expected": { "type": "boolean", "required": true } + "change_expected": { + "type": "boolean", + "required": true + } } }, "required": false }, - "end_reason": { "type": "string", "required": false }, + "end_reason": { + "type": "string", + "required": false + }, "conclusion_url": { "type": "string", "format": "uri", "required": false }, - "deployed_variation_id": { "type": "integer", "required": false } + "deployed_variation_id": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/experiments\/(?P<experiment_id>\\d+)\/status": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/experiments/0.1.0/experiments/(?P<experiment_id>\\d+)/status": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { "status": { "type": "string", - "enum": ["staging", "running", "completed", "disabled"], + "enum": [ + "staging", + "running", + "completed", + "disabled" + ], "required": true } } } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/metrics": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/experiments/0.1.0/metrics": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "name": { "type": "string", "required": true }, - "description": { "type": "string", "required": true }, - "higher_is_better": { "type": "boolean", "required": true }, + "name": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + }, + "higher_is_better": { + "type": "boolean", + "required": true + }, "pipe_params": { "type": "object", "properties": { "model": { "type": "string", - "enum": ["churn_untimed"], + "enum": [ + "churn_untimed" + ], "required": true }, "value_field": { "type": "string", - "enum": ["prediction"], + "enum": [ + "prediction" + ], "required": true }, "blog_to_user_aggregation_method": { "type": "string", - "enum": ["max", "min"], + "enum": [ + "max", + "min" + ], "required": true }, "extra_analysis_window_days": { @@ -7282,7 +11438,9 @@ }, "props": { "type": "object", - "properties": { "type": "string" } + "properties": { + "type": "string" + } } } }, @@ -7299,7 +11457,9 @@ "product_slugs": { "type": "array", "required": true, - "items": { "type": "string" } + "items": { + "type": "string" + } }, "transaction_types": { "type": "array", @@ -7329,7 +11489,10 @@ "items": { "type": "object", "properties": { - "tag_id": { "type": "integer", "required": true } + "tag_id": { + "type": "integer", + "required": true + } } }, "required": false @@ -7340,38 +11503,65 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/metrics" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/metrics" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/metrics\/(?P<metric_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "PUT", "DELETE"], + "/wpcom/v2/experiments/0.1.0/metrics/(?P<metric_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "PUT", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["PUT"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "PUT" + ], "args": { - "name": { "type": "string", "required": true }, - "description": { "type": "string", "required": true }, - "higher_is_better": { "type": "boolean", "required": true }, + "name": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + }, + "higher_is_better": { + "type": "boolean", + "required": true + }, "pipe_params": { "type": "object", "properties": { "model": { "type": "string", - "enum": ["churn_untimed"], + "enum": [ + "churn_untimed" + ], "required": true }, "value_field": { "type": "string", - "enum": ["prediction"], + "enum": [ + "prediction" + ], "required": true }, "blog_to_user_aggregation_method": { "type": "string", - "enum": ["max", "min"], + "enum": [ + "max", + "min" + ], "required": true }, "extra_analysis_window_days": { @@ -7394,7 +11584,9 @@ }, "props": { "type": "object", - "properties": { "type": "string" } + "properties": { + "type": "string" + } } } }, @@ -7411,7 +11603,9 @@ "product_slugs": { "type": "array", "required": true, - "items": { "type": "string" } + "items": { + "type": "string" + } }, "transaction_types": { "type": "array", @@ -7441,28 +11635,52 @@ "items": { "type": "object", "properties": { - "tag_id": { "type": "integer", "required": true } + "tag_id": { + "type": "integer", + "required": true + } } }, "required": false } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/segments": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/experiments/0.1.0/segments": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "name": { "type": "string", "required": true }, + "name": { + "type": "string", + "required": true + }, "type": { "type": "string", - "enum": ["country", "locale"], + "enum": [ + "country", + "locale" + ], "required": true } } @@ -7471,146 +11689,305 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/segments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/segments" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/segments\/(?P<segment_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/experiments/0.1.0/segments/(?P<segment_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "segment_id": { "type": "integer", "minimum": 0, "required": true } + "segment_id": { + "type": "integer", + "minimum": 0, + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "segment_id": { "type": "integer", "minimum": 0, "required": true } + "segment_id": { + "type": "integer", + "minimum": 0, + "required": true + } } } ] }, - "\/wpcom\/v2\/experiments\/0.1.0\/tags": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/experiments/0.1.0/tags": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "namespace": { "type": "string", "required": true }, - "name": { "type": "string", "required": true }, - "description": { "type": "string", "required": true } + "namespace": { + "type": "string", + "required": true + }, + "name": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/experiments\/0.1.0\/tags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/experiments/0.1.0/tags" } ] } }, - "\/wpcom\/v2\/experiments\/0.1.0\/tags\/(?P<tag_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "PUT", "DELETE"], + "/wpcom/v2/experiments/0.1.0/tags/(?P<tag_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "PUT", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["PUT"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "PUT" + ], "args": { - "namespace": { "type": "string", "required": true }, - "name": { "type": "string", "required": true }, - "description": { "type": "string", "required": true } + "namespace": { + "type": "string", + "required": true + }, + "name": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/meta\/external-media\/(?P<service>google_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/meta/external-media/(?P<service>google_photos|openverse|pexels)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "path": { "type": "string", "default": "", "required": false }, - "search": { "type": "string", "required": false }, - "number": { "type": "number", "required": false }, + "path": { + "type": "string", + "default": "", + "required": false + }, + "search": { + "type": "string", + "required": false + }, + "number": { + "type": "number", + "required": false + }, "page_handle": { "type": "string", "default": "", "required": false }, - "session_id": { "type": "string", "required": false } + "session_id": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/meta\/external-media\/connection\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/meta/external-media/connection/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/meta\/external-media\/connection\/(?P<service>google_photos)\/picker_status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/meta/external-media/connection/(?P<service>google_photos)/picker_status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/meta\/external-media\/session\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/meta/external-media/session/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/meta\/external-media\/session\/(?P<service>google_photos)\/(?P<session_id>.*)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/meta/external-media/session/(?P<service>google_photos)/(?P<session_id>.*)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/meta\/external-media\/proxy\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/meta/external-media/proxy/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "url": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "url": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seller_footer": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/seller_footer": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/webhook-airtable-create": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/webhook-airtable-create": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/webhook-airtable-create" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/webhook-airtable-create" } ] } }, - "\/wpcom\/v2\/webhook-airtable-create\/patch": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/webhook-airtable-create/patch": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "table_id": { "type": "string", @@ -7633,17 +12010,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/webhook-airtable-create\/patch" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/webhook-airtable-create/patch" } ] } }, - "\/wpcom\/v2\/webhook-airtable-create\/create-webhook": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/webhook-airtable-create/create-webhook": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "table_id": { "type": "string", @@ -7666,17 +12047,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/webhook-airtable-create\/create-webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/webhook-airtable-create/create-webhook" } ] } }, - "\/wpcom\/v2\/fsor-airtable-report\/generate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/fsor-airtable-report/generate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "view_id": { "type": "string", @@ -7702,7 +12087,10 @@ "cluster_method": { "type": "string", "description": "The clustering method to use. Available options: kmedoids, dbscan.", - "enum": ["kmedoids", "dbscan"], + "enum": [ + "kmedoids", + "dbscan" + ], "required": false }, "num_clusters": { @@ -7721,55 +12109,89 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/fsor-airtable-report\/generate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/fsor-airtable-report/generate" } ] } }, - "\/wpcom\/v2\/me\/get-apps\/send-download-sms": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/me/get-apps/send-download-sms": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/get-apps\/send-download-sms" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/get-apps/send-download-sms" } ] } }, - "\/wpcom\/v2\/github\/commit-email-validator": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/github/commit-email-validator": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/github\/commit-email-validator" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/github/commit-email-validator" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-install": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/hosting/github/app-install": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/app-install" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/app-install" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-authorize": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/app-authorize": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "redirect_uri": { "type": "string", "required": false }, + "redirect_uri": { + "type": "string", + "required": false + }, "ux_mode": { "type": "string", "default": "popup", @@ -7786,87 +12208,145 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/app-authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/app-authorize" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-callback": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/app-callback": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "code": { "type": "string", "required": false }, + "code": { + "type": "string", + "required": false + }, "setup_action": { "type": "string", - "enum": ["authorize", "request", "install", "update"], + "enum": [ + "authorize", + "request", + "install", + "update" + ], + "required": false + }, + "installation_id": { + "type": "integer", + "required": false + }, + "error": { + "type": "string", + "required": false + }, + "error_description": { + "type": "string", + "required": false + }, + "error_uri": { + "type": "string", "required": false }, - "installation_id": { "type": "integer", "required": false }, - "error": { "type": "string", "required": false }, - "error_description": { "type": "string", "required": false }, - "error_uri": { "type": "string", "required": false }, - "state": { "type": "string", "required": false } + "state": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/app-callback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/app-callback" } ] } }, - "\/wpcom\/v2\/hosting\/github\/app-webhook": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/hosting/github/app-webhook": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/app-webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/app-webhook" } ] } }, - "\/wpcom\/v2\/hosting\/github\/accounts": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/hosting/github/accounts": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "access_token": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "access_token": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/accounts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/accounts" } ] } }, - "\/wpcom\/v2\/hosting\/github\/installations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/hosting/github/installations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/installations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/installations" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repositories": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/repositories": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "installation_id": { "type": "number", @@ -7879,99 +12359,166 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/repositories" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/repositories" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repository\/branches": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/repository/branches": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "installation_id": { "type": "integer", "required": true }, - "repository_owner": { "type": "string", "required": true }, - "repository_name": { "type": "string", "required": true } + "installation_id": { + "type": "integer", + "required": true + }, + "repository_owner": { + "type": "string", + "required": true + }, + "repository_name": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/repository\/branches" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/repository/branches" } ] } }, - "\/wpcom\/v2\/hosting\/github\/repository\/pre-connect-checks": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/repository/pre-connect-checks": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "installation_id": { "type": "integer", "required": true }, - "repository_owner": { "type": "string", "required": true }, - "repository_name": { "type": "string", "required": true }, - "repository_branch": { "type": "string", "required": true } + "installation_id": { + "type": "integer", + "required": true + }, + "repository_owner": { + "type": "string", + "required": true + }, + "repository_name": { + "type": "string", + "required": true + }, + "repository_branch": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/repository\/pre-connect-checks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/repository/pre-connect-checks" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflow-templates": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/workflow-templates": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "template": { "type": "string", - "enum": ["simple", "with_composer"], + "enum": [ + "simple", + "with_composer" + ], "required": true }, - "branch_name": { "type": "string", "required": true } + "branch_name": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/workflow-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/workflow-templates" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflows": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/hosting/github/workflows": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "repository_name": { "type": "string", "required": true }, - "repository_owner": { "type": "string", "required": true }, - "branch_name": { "type": "string", "required": true } + "repository_name": { + "type": "string", + "required": true + }, + "repository_owner": { + "type": "string", + "required": true + }, + "branch_name": { + "type": "string", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "repository_owner": { "type": "string", "required": true }, - "repository_name": { "type": "string", "required": true }, - "branch_name": { "type": "string", "required": true }, + "repository_owner": { + "type": "string", + "required": true + }, + "repository_name": { + "type": "string", + "required": true + }, + "branch_name": { + "type": "string", + "required": true + }, "workflow_template": { "type": "string", - "enum": ["simple", "with_composer"], + "enum": [ + "simple", + "with_composer" + ], "required": true } } @@ -7980,98 +12527,162 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/workflows" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/workflows" } ] } }, - "\/wpcom\/v2\/hosting\/github\/workflows\/checks": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/hosting/github/workflows/checks": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "repository_name": { "type": "string", "required": true }, - "repository_owner": { "type": "string", "required": true }, - "branch_name": { "type": "string", "required": true }, - "workflow_filename": { "type": "string", "required": true } + "repository_name": { + "type": "string", + "required": true + }, + "repository_owner": { + "type": "string", + "required": true + }, + "branch_name": { + "type": "string", + "required": true + }, + "workflow_filename": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting\/github\/workflows\/checks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting/github/workflows/checks" } ] } }, - "\/wpcom\/v2\/github": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/github": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/github" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/github" } ] } }, - "\/wpcom\/v3": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wpcom\/v3", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wpcom/v3", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/wpcom\/v3" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/wpcom/v3" + } + ] + } }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wpcom\/v3", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wpcom/v3", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v3\/global-styles-variation\/theme": { - "namespace": "wpcom\/v3", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v3/global-styles-variation/theme": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/theme" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobiledotblog.wordpress.com/global-styles-variation/theme" } ] } }, - "\/wpcom\/v3\/global-styles-variation\/font-pairings": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3/global-styles-variation/font-pairings": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -8081,25 +12692,29 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/font-pairings" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobiledotblog.wordpress.com/global-styles-variation/font-pairings" } ] } }, - "\/wpcom\/v3\/global-styles-variation\/color-palettes": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3/global-styles-variation/color-palettes": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -8109,18 +12724,28 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/color-palettes" + "href": "https://public-api.wordpress.com/wpcom/v3/sites/mobiledotblog.wordpress.com/global-styles-variation/color-palettes" } ] } }, - "\/wpcom\/v2\/glossary": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/glossary": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -8138,17 +12763,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/glossary" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/glossary" } ] } }, - "\/wpcom\/v2\/glossary\/(?P<item_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/glossary/(?P<item_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "item_id": { "type": "integer", @@ -8158,7 +12791,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "item_id": { "type": "integer", @@ -8178,7 +12815,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "item_id": { "type": "integer", @@ -8189,112 +12828,224 @@ } ] }, - "\/wpcom\/v2\/gravatar\/developers\/applications": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], - "endpoints": [ - { - "methods": ["POST"], - "args": { - "user_id": { "type": "integer", "required": true }, - "title": { "type": "string", "required": true }, - "description": { "type": "string", "required": true }, - "organization_name": { "type": "string", "required": true }, - "organization_website": { "type": "string", "required": true } - } - }, - { - "methods": ["GET"], - "args": { "user_id": { "type": "integer", "required": true } } - } + "/wpcom/v2/gravatar/developers/applications": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" ], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/developers\/applications" - } - ] - } - }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/(?P<app_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE", "GET", "POST", "PUT", "PATCH"], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "POST" + ], "args": { - "app_id": { "type": "integer", "required": true }, - "user_id": { "type": "integer", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "title": { + "type": "string", + "required": true + }, + "description": { + "type": "string", + "required": true + }, + "organization_name": { + "type": "string", + "required": true + }, + "organization_website": { + "type": "string", + "required": true + } } }, { - "methods": ["GET"], - "args": { "app_id": { "type": "integer", "required": true } } - }, - { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], "args": { - "app_id": { "type": "integer", "required": true }, - "title": { "type": "string", "required": false }, - "description": { "type": "string", "required": false }, - "organization_name": { "type": "string", "required": false }, - "organization_website": { "type": "string", "required": false }, - "redirect_urls": { "type": "array", "required": false }, - "javascript_origins": { "type": "array", "required": false }, - "type": { "type": "string", "required": false }, - "user_id": { "type": "integer", "required": false }, - "icon": { "type": "image", "required": false } + "user_id": { + "type": "integer", + "required": true + } } } - ] - }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/developers\/applications\/count" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/developers/applications" } ] } }, - "\/wpcom\/v2\/gravatar\/developers\/applications\/(?P<app_id>[\\d]+)\/reset-secret": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [ - { - "methods": ["POST", "PUT", "PATCH"], - "args": { - "app_id": { "type": "integer", "required": true }, - "user_id": { "type": "integer", "required": true } - } - } - ] - }, - "\/wpcom\/v2\/gravatar\/emails-blocklist": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/gravatar/developers/applications/(?P<app_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE", + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "DELETE" + ], "args": { - "emails": { - "type": "array", - "description": "List of emails", - "items": { - "type": "string", - "sanitize_callback": "sanitize_email" - }, + "app_id": { + "type": "integer", + "required": true + }, + "user_id": { + "type": "integer", "required": true } } }, { - "methods": ["DELETE"], + "methods": [ + "GET" + ], "args": { - "emails": { + "app_id": { + "type": "integer", + "required": true + } + } + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "app_id": { + "type": "integer", + "required": true + }, + "title": { + "type": "string", + "required": false + }, + "description": { + "type": "string", + "required": false + }, + "organization_name": { + "type": "string", + "required": false + }, + "organization_website": { + "type": "string", + "required": false + }, + "redirect_urls": { + "type": "array", + "required": false + }, + "javascript_origins": { + "type": "array", + "required": false + }, + "type": { + "type": "string", + "required": false + }, + "user_id": { + "type": "integer", + "required": false + }, + "icon": { + "type": "image", + "required": false + } + } + } + ] + }, + "/wpcom/v2/gravatar/developers/applications/count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/developers/applications/count" + } + ] + } + }, + "/wpcom/v2/gravatar/developers/applications/(?P<app_id>[\\d]+)/reset-secret": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "app_id": { + "type": "integer", + "required": true + }, + "user_id": { + "type": "integer", + "required": true + } + } + } + ] + }, + "/wpcom/v2/gravatar/emails-blocklist": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "emails": { + "type": "array", + "description": "List of emails", + "items": { + "type": "string", + "sanitize_callback": "sanitize_email" + }, + "required": true + } + } + }, + { + "methods": [ + "DELETE" + ], + "args": { + "emails": { "type": "array", "description": "List of emails", "items": { @@ -8309,19 +13060,27 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/emails-blocklist" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/emails-blocklist" } ] } }, - "\/wpcom\/v2\/gravatar\/stats\/recently-visited-profiles": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/gravatar/stats/recently-visited-profiles": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "limit": { "type": "integer", "default": 1000, "required": false }, + "limit": { + "type": "integer", + "default": 1000, + "required": false + }, "minutes_back": { "type": "integer", "default": 60, @@ -8333,226 +13092,383 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/stats\/recently-visited-profiles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/stats/recently-visited-profiles" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/purchase": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/gravatar/custom-domains/purchase": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "domain": { "type": "string", "required": true }, - "user_id": { "type": "integer", "required": true } + "domain": { + "type": "string", + "required": true + }, + "user_id": { + "type": "integer", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/purchase" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/purchase" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/set-auto-renew": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/gravatar/custom-domains/set-auto-renew": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "domain": { "type": "string", "required": true }, - "type": { "type": "string", "required": true }, - "user_id": { "type": "integer", "required": true }, - "subscription_id": { "type": "integer", "required": true } + "domain": { + "type": "string", + "required": true + }, + "type": { + "type": "string", + "required": true + }, + "user_id": { + "type": "integer", + "required": true + }, + "subscription_id": { + "type": "integer", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/set-auto-renew" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/set-auto-renew" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/email-forwards": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/gravatar/custom-domains/email-forwards": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "user_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/email-forwards" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/email-forwards" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/add-email-forward": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/gravatar/custom-domains/add-email-forward": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "user_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true }, - "mailbox": { "type": "string", "required": true }, - "destination": { "type": "string", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + }, + "mailbox": { + "type": "string", + "required": true + }, + "destination": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/add-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/add-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/delete-email-forward": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/gravatar/custom-domains/delete-email-forward": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "user_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true }, - "mailbox": { "type": "string", "required": true }, - "destination": { "type": "string", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + }, + "mailbox": { + "type": "string", + "required": true + }, + "destination": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/delete-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/delete-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/update-email-forward": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/gravatar/custom-domains/update-email-forward": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "user_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true }, - "mailbox": { "type": "string", "required": true }, - "destination": { "type": "string", "required": true }, - "new_destination": { "type": "string", "required": true }, - "is_active": { "type": "boolean", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + }, + "mailbox": { + "type": "string", + "required": true + }, + "destination": { + "type": "string", + "required": true + }, + "new_destination": { + "type": "string", + "required": true + }, + "is_active": { + "type": "boolean", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/update-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/update-email-forward" } ] } }, - "\/wpcom\/v2\/gravatar\/custom-domains\/set-email-forward": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/gravatar/custom-domains/set-email-forward": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "user_id": { "type": "integer", "required": true }, - "domain": { "type": "string", "required": true }, - "mailbox": { "type": "string", "required": true }, - "destination": { "type": "string", "required": true }, - "type": { "type": "string", "required": true } + "user_id": { + "type": "integer", + "required": true + }, + "domain": { + "type": "string", + "required": true + }, + "mailbox": { + "type": "string", + "required": true + }, + "destination": { + "type": "string", + "required": true + }, + "type": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar\/custom-domains\/set-email-forward" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar/custom-domains/set-email-forward" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/auto-draft": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/posts/auto-draft": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/gutenberg\/core-server-block-settings": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/gutenberg/core-server-block-settings": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gutenberg\/core-server-block-settings" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gutenberg/core-server-block-settings" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/internal\/v1", + "default": "wpcom/v2/happytools/internal/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/internal\/v1", + "default": "wpcom/v2/happytools/internal/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/sign": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/authentication/sign": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "provider": { "description": "authorization provider", @@ -8562,7 +13478,10 @@ "scope": { "description": "authorization token", "type": "string", - "enum": ["authenticate", "invitation"], + "enum": [ + "authenticate", + "invitation" + ], "required": true }, "token": { @@ -8574,9 +13493,18 @@ "type": "object", "description": "user meta", "properties": { - "browser": { "description": "user browser", "type": "string" }, - "country": { "description": "user country", "type": "string" }, - "ip": { "description": "user ip", "type": "string" } + "browser": { + "description": "user browser", + "type": "string" + }, + "country": { + "description": "user country", + "type": "string" + }, + "ip": { + "description": "user ip", + "type": "string" + } }, "required": false }, @@ -8591,29 +13519,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/sign" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/sign" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/tokens": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/authentication/tokens": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/tokens" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/tokens" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/tokens\/(?P<item_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["DELETE"], + "/wpcom/v2/happytools/internal/v1/authentication/tokens/(?P<item_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "item_id": { "type": "integer", @@ -8624,27 +13565,44 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/apikeys": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/authentication/apikeys": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/apikeys" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/apikeys" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/apikeys\/(?P<item_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["DELETE"], + "/wpcom/v2/happytools/internal/v1/authentication/apikeys/(?P<item_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "item_id": { "type": "integer", @@ -8655,12 +13613,16 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/validate": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/authentication/validate": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "token": { "description": "jwt", @@ -8673,76 +13635,126 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/validate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/validate" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/logout": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/authentication/logout": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/logout" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/logout" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/authentication\/public-key": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/authentication/public-key": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/authentication\/public-key" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/authentication/public-key" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/p2\/signup\/create-network": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/p2/signup/create-network": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/p2\/signup\/create-network" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/p2/signup/create-network" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/afk-requests": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/afk-requests": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "approval_status": { "default": -1, "required": false }, - "start_at": { "type": "number", "required": false }, - "end_at": { "type": "number", "required": false }, - "user_id": { "type": "number", "required": false }, - "is_last_minute": { "type": "boolean", "required": false } + "approval_status": { + "default": -1, + "required": false + }, + "start_at": { + "type": "number", + "required": false + }, + "end_at": { + "type": "number", + "required": false + }, + "user_id": { + "type": "number", + "required": false + }, + "is_last_minute": { + "type": "boolean", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/afk-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/afk-requests" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/afk-requests\/(?P<afk_request_id>\\d+)\/forecast": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/afk-requests/(?P<afk_request_id>\\d+)/forecast": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "afk_request_id": { "type": "number", @@ -8753,12 +13765,16 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/task-blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/task-blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start_at": { "description": "start timestamp UTC", @@ -8796,17 +13812,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/task-blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/task-blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start_at": { "description": "start timestamp UTC", @@ -8841,17 +13861,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/availability-blocks": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/availability-blocks": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start_at": { "description": "start timestamp UTC", @@ -8874,29 +13898,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/availability-blocks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/availability-blocks" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/calendar": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/schedule/calendar": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/calendar" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/calendar" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/calendar\/(?P<hash>[\\S]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/calendar/(?P<hash>[\\S]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hash": { "type": "string", @@ -8919,12 +13956,17 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/day-settings": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "user_id": { "type": "number", @@ -8944,7 +13986,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "user_id": { "type": "number", @@ -8967,17 +14011,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/day-settings" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/day-settings" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings\/(?P<hs_day_settings_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/day-settings/(?P<hs_day_settings_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_day_settings_id": { "type": "integer", @@ -8987,7 +14039,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "user_id": { "type": "number", @@ -9007,7 +14063,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_day_settings_id": { "type": "integer", @@ -9018,12 +14076,20 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/day-settings\/multi": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/day-settings/multi": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "day_settings": { "type": "array", @@ -9036,17 +14102,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/day-settings\/multi" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/day-settings/multi" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/events": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/schedule/events": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "events": { "description": "Array of one or more events.", @@ -9058,17 +14128,22 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/events" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/events" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/invitations": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/invitations": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "type": { "type": "integer", @@ -9083,7 +14158,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "type": { "type": "integer", @@ -9101,17 +14178,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/invitations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/invitations" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/invitations\/(?P<hs_invitation_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/invitations/(?P<hs_invitation_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "expires_on": { "type": "number", @@ -9122,24 +14207,38 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/notifications\/info": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/schedule/notifications/info": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/notifications\/info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/notifications/info" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/organizations": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "organization name", @@ -9164,7 +14263,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "name": { "description": "organization name", @@ -9192,17 +14293,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/organizations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/organizations" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "organization unique identifier", @@ -9212,7 +14321,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "organization unique identifier", @@ -9242,7 +14355,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "organization unique identifier", @@ -9253,12 +14368,20 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P<id>[\\d]+)\/archive": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P<id>[\\d]+)/archive": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "organization unique identifier", @@ -9269,12 +14392,20 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/organizations\/(?P<id>[\\d]+)\/restore": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/organizations/(?P<id>[\\d]+)/restore": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "organization unique identifier", @@ -9285,13 +14416,23 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -9324,17 +14465,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/planner-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/planner-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates\/auto-schedule": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates/auto-schedule": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "date": { "type": "string", @@ -9387,17 +14536,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/planner-templates\/auto-schedule" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/planner-templates/auto-schedule" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/planner-templates\/(?P<uuid>[\\da-z-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/planner-templates/(?P<uuid>[\\da-z-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "uuid": { "type": "string", @@ -9407,7 +14564,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "uuid": { "type": "string", @@ -9432,7 +14593,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "uuid": { "type": "string", @@ -9443,13 +14606,23 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/projects": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -9467,17 +14640,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/projects" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/projects" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects\/(?P<hs_project_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/projects/(?P<hs_project_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_project_id": { "type": "integer", @@ -9487,7 +14668,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -9507,7 +14692,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_project_id": { "type": "integer", @@ -9518,13 +14705,23 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects-task-types": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/projects-task-types": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -9547,17 +14744,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/projects-task-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/projects-task-types" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/projects-task-types\/(?P<hs_project_task_type_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/projects-task-types/(?P<hs_project_task_type_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_project_task_type_id": { "type": "integer", @@ -9567,7 +14772,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -9592,7 +14801,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_project_task_type_id": { "type": "integer", @@ -9603,41 +14814,70 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/publish": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "GET"], + "/wpcom/v2/happytools/internal/v1/schedule/publish": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "client_user_id": { "type": "number", "required": true }, - "dates": { "type": "array", "required": true }, - "project_id": { "type": "number", "required": true } + "client_user_id": { + "type": "number", + "required": true + }, + "dates": { + "type": "array", + "required": true + }, + "project_id": { + "type": "number", + "required": true + } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "project_id": { "type": "number", "required": true }, - "start_date": { "type": "string", "required": false }, - "end_date": { "type": "string", "required": false } + "project_id": { + "type": "number", + "required": true + }, + "start_date": { + "type": "string", + "required": false + }, + "end_date": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/publish" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/publish" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/hourly-schedule": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/hourly-schedule": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9660,17 +14900,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/hourly-schedule" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/hourly-schedule" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/woo-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/woo-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9693,17 +14937,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/woo-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/woo-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/weekend-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/weekend-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9726,17 +14974,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/weekend-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/weekend-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/task-hours": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/task-hours": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9759,17 +15011,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/task-hours" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/task-hours" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-totals": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-totals": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9792,17 +15048,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-totals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-daily-afk-totals" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-apac": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-apac": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9825,17 +15085,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-apac" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-apac" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-emea": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-emea": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9858,17 +15122,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-emea" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-emea" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-americas": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-americas": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9891,17 +15159,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-daily-afk-he-list-americas" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-daily-afk-he-list-americas" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-afk-list": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-afk-list": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9924,17 +15196,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-afk-list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-afk-list" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-time-off-list": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-time-off-list": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "description": "project id of the report", @@ -9962,17 +15238,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-time-off-list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-time-off-list" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-who-is-working": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-who-is-working": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "team_id": { "description": "project id of the report", @@ -9995,17 +15275,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-who-is-working" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-who-is-working" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/reports\/a8c-missing-availability": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/reports/a8c-missing-availability": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "team_id": { "description": "project id of the report", @@ -10028,18 +15312,28 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/reports\/a8c-missing-availability" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/reports/a8c-missing-availability" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/roles": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/roles": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -10057,17 +15351,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/roles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/roles" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/roles\/(?P<role_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/roles/(?P<role_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "role_id": { "type": "integer", @@ -10077,7 +15379,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "role_id": { "type": "integer", @@ -10097,7 +15403,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "role_id": { "type": "integer", @@ -10108,13 +15416,23 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/schedule-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/schedule-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -10142,17 +15460,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/schedule-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/schedule-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/schedule-templates\/(?P<hs_schedule_template_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/schedule-templates/(?P<hs_schedule_template_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_schedule_template_id": { "type": "integer", @@ -10162,7 +15488,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -10182,7 +15512,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_schedule_template_id": { "type": "integer", @@ -10193,12 +15525,16 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/schedule/signup": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "first_name": { "type": "string", @@ -10232,7 +15568,7 @@ }, "first_day_of_week": { "type": "string", - "description": "Organization start of the week (Sunday\/Monday).", + "description": "Organization start of the week (Sunday/Monday).", "required": true }, "terms_accepted": { @@ -10256,17 +15592,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/signup" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/signup" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/join": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/schedule/signup/join": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "invitation_token": { "type": "string", @@ -10309,17 +15649,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/signup\/join" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/signup/join" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/confirm-invitation": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/signup/confirm-invitation": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "invitation_token": { "type": "string", @@ -10332,81 +15676,142 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/signup\/confirm-invitation" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/signup/confirm-invitation" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/signup\/confirm-auth-account": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/schedule/signup/confirm-auth-account": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/signup\/confirm-auth-account" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/signup/confirm-auth-account" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-forecast": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-forecast": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "start_time": { "type": "number", "required": true }, - "end_time": { "type": "number", "required": true }, - "project_id": { "type": "number", "required": true } + "start_time": { + "type": "number", + "required": true + }, + "end_time": { + "type": "number", + "required": true + }, + "project_id": { + "type": "number", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/staffing-forecast" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/staffing-forecast" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "start_at": { "type": "number", "required": true }, - "end_at": { "type": "number", "required": true }, - "project_id": { "type": "number", "required": true } + "start_at": { + "type": "number", + "required": true + }, + "end_at": { + "type": "number", + "required": true + }, + "project_id": { + "type": "number", + "required": true + } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "blocks": { "required": true }, - "start_at": { "type": "number", "required": true }, - "end_at": { "type": "number", "required": true }, - "project_id": { "type": "number", "required": true }, - "task_type_id": { "type": "number", "required": true } + "blocks": { + "required": true + }, + "start_at": { + "type": "number", + "required": true + }, + "end_at": { + "type": "number", + "required": true + }, + "project_id": { + "type": "number", + "required": true + }, + "task_type_id": { + "type": "number", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/staffing-needs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/staffing-needs" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "type": "integer", @@ -10416,7 +15821,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -10454,17 +15861,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/staffing-needs-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/staffing-needs-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-needs-templates\/(?P<uuid>[\\da-f-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-needs-templates/(?P<uuid>[\\da-f-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "uuid": { "type": "string", @@ -10474,7 +15889,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -10494,7 +15913,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "uuid": { "type": "string", @@ -10505,43 +15926,82 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "start_at": { "type": "number", "required": true }, - "end_at": { "type": "number", "required": true }, - "project_id": { "type": "number", "required": true } + "start_at": { + "type": "number", + "required": true + }, + "end_at": { + "type": "number", + "required": true + }, + "project_id": { + "type": "number", + "required": true + } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "blocks": { "required": true }, - "start_at": { "type": "number", "required": true }, - "end_at": { "type": "number", "required": true }, - "project_id": { "type": "number", "required": true }, - "task_type_id": { "type": "number", "required": true } + "blocks": { + "required": true + }, + "start_at": { + "type": "number", + "required": true + }, + "end_at": { + "type": "number", + "required": true + }, + "project_id": { + "type": "number", + "required": true + }, + "task_type_id": { + "type": "number", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/staffing-buffer" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/staffing-buffer" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer-templates": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "project_id": { "type": "integer", @@ -10551,7 +16011,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -10589,17 +16051,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/staffing-buffer-templates" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/staffing-buffer-templates\/(?P<uuid>[\\da-f-]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/staffing-buffer-templates/(?P<uuid>[\\da-f-]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "uuid": { "type": "string", @@ -10609,7 +16079,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -10629,7 +16103,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "uuid": { "type": "string", @@ -10640,13 +16116,23 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/teams": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/teams": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "name": { "type": "string", @@ -10664,17 +16150,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/teams" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/teams" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/teams\/(?P<hs_team_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/teams/(?P<hs_team_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_team_id": { "type": "integer", @@ -10684,7 +16178,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "name": { "type": "string", @@ -10704,7 +16202,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_team_id": { "type": "integer", @@ -10715,12 +16215,17 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/trade-requests": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/schedule/trade-requests": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "user_id": { "type": "number", @@ -10755,7 +16260,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "user_id": { "type": "number", @@ -10793,17 +16300,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/trade-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/trade-requests" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/trade-requests\/(?P<uuid>[\\S]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/trade-requests/(?P<uuid>[\\S]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "responder_user_id": { "type": "number", @@ -10819,13 +16334,26 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/users": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/users": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "users": { "type": "array", @@ -10870,30 +16398,48 @@ }, "required": true }, - "get_users_details": { "type": "boolean", "required": false } + "get_users_details": { + "type": "boolean", + "required": false + } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "projects_task_type_id": { "type": "integer", "required": false } + "projects_task_type_id": { + "type": "integer", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/users" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/users" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/users\/(?P<hs_user_id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/internal/v1/schedule/users/(?P<hs_user_id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hs_user_id": { "type": "integer", @@ -10903,7 +16449,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "hs_user_id": { "type": "integer", @@ -10945,7 +16495,10 @@ "description": "Whether to invite the user to authenticate on the system.", "required": false }, - "projects_task_types_ids": { "type": "array", "required": false }, + "projects_task_types_ids": { + "type": "array", + "required": false + }, "is_archived": { "type": "integer", "description": "1 to archive, 0 otherwise.", @@ -10959,7 +16512,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "hs_user_id": { "type": "integer", @@ -10970,13 +16525,27 @@ } ] }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/me": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/schedule/me": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "email": { "type": "string", @@ -11004,29 +16573,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/me" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/me" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/github": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/schedule/utilities/github": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/utilities\/github" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/utilities/github" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/zendesk-relay": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], + "/wpcom/v2/happytools/internal/v1/schedule/utilities/zendesk-relay": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "message": { "description": "Help request message body", @@ -11038,57 +16620,98 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/utilities\/zendesk-relay" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/utilities/zendesk-relay" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/schedule\/utilities\/js-errors": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/schedule/utilities/js-errors": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/schedule\/utilities\/js-errors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/schedule/utilities/js-errors" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "DELETE"], + "/wpcom/v2/happytools/internal/v1/subscription": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscription" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/status": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/subscription/status": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscription\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscription/status" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/sources": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/internal/v1/subscription/sources": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "payment_source": { "type": "string", @@ -11101,29 +16724,46 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscription\/sources" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscription/sources" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/restore": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/subscription/restore": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscription\/restore" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscription/restore" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscription\/sources\/remove": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/happytools/internal/v1/subscription/sources/remove": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "payment_source": { "type": "string", @@ -11136,79 +16776,127 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscription\/sources\/remove" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscription/sources/remove" } ] } }, - "\/wpcom\/v2\/happytools\/internal\/v1\/subscriptions\/stripe": { - "namespace": "wpcom\/v2\/happytools\/internal\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/happytools/internal/v1/subscriptions/stripe": { + "namespace": "wpcom/v2/happytools/internal/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/internal\/v1\/subscriptions\/stripe" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/internal/v1/subscriptions/stripe" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/external/v1": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/external\/v1", + "default": "wpcom/v2/happytools/external/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/external\/v1" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/external/v1" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET"], + "/wpcom/v2/happytools/external/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools\/external\/v1", + "default": "wpcom/v2/happytools/external/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-requests": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/external/v1/schedule/afk-requests": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "approval_status": { "default": -1, "required": false }, - "start_at": { "type": "number", "required": false }, - "responded_at": { "type": "number", "required": false }, - "end_at": { "type": "number", "required": false }, - "user_id": { "type": "number", "required": false }, - "is_last_minute": { "type": "boolean", "required": false } + "approval_status": { + "default": -1, + "required": false + }, + "start_at": { + "type": "number", + "required": false + }, + "responded_at": { + "type": "number", + "required": false + }, + "end_at": { + "type": "number", + "required": false + }, + "user_id": { + "type": "number", + "required": false + }, + "is_last_minute": { + "type": "boolean", + "required": false + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "type_id": { "type": "number", @@ -11217,7 +16905,7 @@ }, "notes": { "type": "string", - "description": "notes to\/from user", + "description": "notes to/from user", "required": false }, "is_last_minute": { @@ -11246,17 +16934,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/external\/v1\/schedule\/afk-requests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/external/v1/schedule/afk-requests" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-requests\/(?P<afk_request_id>\\d+)": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/external/v1/schedule/afk-requests/(?P<afk_request_id>\\d+)": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "afk_request_id": { "type": "number", @@ -11266,7 +16962,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "afk_request_id": { "type": "number", @@ -11276,7 +16976,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "afk_request_id": { "type": "number", @@ -11287,12 +16989,17 @@ } ] }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-types": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET", "POST"], + "/wpcom/v2/happytools/external/v1/schedule/afk-types": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "afk type name", @@ -11302,7 +17009,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "name": { "description": "afk type name", @@ -11315,17 +17024,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools\/external\/v1\/schedule\/afk-types" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools/external/v1/schedule/afk-types" } ] } }, - "\/wpcom\/v2\/happytools\/external\/v1\/schedule\/afk-types\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2\/happytools\/external\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/happytools/external/v1/schedule/afk-types/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2/happytools/external/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "afk type unique identifier", @@ -11335,7 +17052,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "afk type unique identifier", @@ -11350,7 +17071,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "afk type unique identifier", @@ -11361,51 +17084,69 @@ } ] }, - "\/wpcom\/v2\/happytools": { - "namespace": "wpcom\/v2\/happytools", - "methods": ["GET"], + "/wpcom/v2/happytools": { + "namespace": "wpcom/v2/happytools", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools", + "default": "wpcom/v2/happytools", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/happytools" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/happytools" } ] } }, - "\/wpcom\/v2\/happytools\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/happytools", - "methods": ["GET"], + "/wpcom/v2/happytools/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/happytools", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/happytools", + "default": "wpcom/v2/happytools", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/happytools\/scheduler\/calendar\/(?P<hash>[\\S]+)": { - "namespace": "wpcom\/v2\/happytools", - "methods": ["GET"], + "/wpcom/v2/happytools/scheduler/calendar/(?P<hash>[\\S]+)": { + "namespace": "wpcom/v2/happytools", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "hash": { "type": "string", @@ -11416,39 +17157,66 @@ } ] }, - "\/wpcom\/v2\/help\/article": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/article": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "post_url": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "post_url": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/article" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/article" } ] } }, - "\/wpcom\/v2\/help\/article\/(?P<blog_id>\\d+)\/(?P<post_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/help/article/(?P<blog_id>\\d+)/(?P<post_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/help\/articles": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/articles": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "blog_id": { "type": "number", "required": true }, + "blog_id": { + "type": "number", + "required": true + }, "post_ids": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } @@ -11457,135 +17225,229 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/articles" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/articles" } ] } }, - "\/wpcom\/v2\/help\/authenticate\/chat": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/authenticate/chat": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "type": { "type": "string", "required": true }, - "test_mode": { "type": "boolean", "required": false } + "type": { + "type": "string", + "required": true + }, + "test_mode": { + "type": "boolean", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/authenticate\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/authenticate/chat" } ] } }, - "\/wpcom\/v2\/help\/courses": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/courses": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/courses" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/courses" } ] } }, - "\/wpcom\/v2\/help\/csat": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/csat": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "ticket_id": { "type": "int", "required": true }, + "ticket_id": { + "type": "int", + "required": true + }, "score": { - "enum": ["good", "bad"], + "enum": [ + "good", + "bad" + ], "type": "string", "required": true }, - "comment": { "type": "string", "required": false }, - "reason_id": { "type": "string", "required": false }, - "test_mode": { "type": "boolean", "required": false } + "comment": { + "type": "string", + "required": false + }, + "reason_id": { + "type": "string", + "required": false + }, + "test_mode": { + "type": "boolean", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/csat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/csat" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/all\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/eligibility/all/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/eligibility\/all\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/eligibility/all/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/chat\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/eligibility/chat/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/eligibility\/chat\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/eligibility/chat/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/tickets\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/eligibility/tickets/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/eligibility\/tickets\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/eligibility/tickets/mine" } ] } }, - "\/wpcom\/v2\/help\/eligibility\/email\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/eligibility/email/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/eligibility\/email\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/eligibility/email/mine" } ] } }, - "\/wpcom\/v2\/help\/forum\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/forum/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "subject": { "type": "string", "required": true }, - "message": { "type": "string", "required": true }, - "blog_url": { "type": "string", "required": false }, + "subject": { + "type": "string", + "required": true + }, + "message": { + "type": "string", + "required": true + }, + "blog_url": { + "type": "string", + "required": false + }, "blog_id": { "type": "integer", "default": null, "required": false }, - "tags": { "type": "array", "default": [], "required": false }, - "locale": { "type": "string", "required": false }, + "tags": { + "type": "array", + "default": [], + "required": false + }, + "locale": { + "type": "string", + "required": false + }, "hide_blog_info": { "type": "boolean", "default": false, @@ -11602,41 +17464,65 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/forum\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/forum/new" } ] } }, - "\/wpcom\/v2\/help\/messaging\/is-available": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/messaging/is-available": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "group": { "type": "string", "required": true }, - "environment": { "type": "string", "required": true } + "group": { + "type": "string", + "required": true + }, + "environment": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/messaging\/is-available" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/messaging/is-available" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/migration-ticket/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "locale": { "type": "string", "default": "en", "required": false }, - "blog_url": { "type": "string", "required": true }, - "from_url": { "type": "string", "required": true }, + "locale": { + "type": "string", + "default": "en", + "required": false + }, + "blog_url": { + "type": "string", + "required": true + }, + "from_url": { + "type": "string", + "required": true + }, "context": { "type": "string", "description": "Additional context to add to the ticket.", @@ -11648,17 +17534,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/migration-ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/migration-ticket/new" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/site-info": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/migration-ticket/site-info": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_username": { "type": "string", @@ -11681,41 +17571,54 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/migration-ticket\/site-info" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/migration-ticket/site-info" } ] } }, - "\/wpcom\/v2\/help\/migration-ticket\/stickers": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/migration-ticket/stickers": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "stickers": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, - "blog_id": { "type": "integer", "required": true } + "blog_id": { + "type": "integer", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/migration-ticket\/stickers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/migration-ticket/stickers" } ] } }, - "\/wpcom\/v2\/help\/search": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/search": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "type": "string", @@ -11744,17 +17647,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/search" } ] } }, - "\/wpcom\/v2\/help\/search\/wpcom": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/search/wpcom": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "type": "string", @@ -11778,17 +17685,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/search\/wpcom" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/search/wpcom" } ] } }, - "\/wpcom\/v2\/help\/search\/forums": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/search/forums": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "type": "string", @@ -11807,17 +17718,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/search\/forums" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/search/forums" } ] } }, - "\/wpcom\/v2\/help\/sibyl": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/sibyl": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "type": "string", @@ -11836,29 +17751,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/sibyl" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/sibyl" } ] } }, - "\/wpcom\/v2\/help\/support-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/help/support-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/support-status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/support-status" } ] } }, - "\/wpcom\/v2\/help\/support-status\/messaging": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/support-status/messaging": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "group": { "type": "string", @@ -11872,7 +17800,10 @@ }, "environment": { "type": "string", - "enum": ["production", "development"], + "enum": [ + "production", + "development" + ], "required": true } } @@ -11881,27 +17812,44 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/support-status\/messaging" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/support-status/messaging" } ] } }, - "\/wpcom\/v2\/help\/ticket\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/ticket/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "subject": { "type": "string", "required": true }, - "message": { "type": "string", "required": true }, - "locale": { "type": "string", "default": "en", "required": false }, + "subject": { + "type": "string", + "required": true + }, + "message": { + "type": "string", + "required": true + }, + "locale": { + "type": "string", + "default": "en", + "required": false + }, "is_chat_overflow": { "type": "boolean", "default": false, "required": false }, - "source": { "type": "string", "required": false }, + "source": { + "type": "string", + "required": false + }, "blog_url": { "type": "string", "default": null, @@ -11923,63 +17871,110 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/ticket/new" } ] } }, - "\/wpcom\/v2\/help\/zendesk\/update-user-fields": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/help/zendesk/update-user-fields": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "fields": { "type": "object", "required": true } } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "fields": { + "type": "object", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/zendesk\/update-user-fields" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/zendesk/update-user-fields" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/home\/layout": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/home/layout": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "dev": { "required": false }, - "view": { "required": false }, - "shuffle": { "default": "true", "required": false } + "dev": { + "required": false + }, + "view": { + "required": false + }, + "shuffle": { + "default": "true", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/home\/layout\/skip": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/home/layout/skip": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "dev": { "required": false }, - "reminder": { "type": "string", "required": false }, - "view": { "type": "string", "required": false }, - "card": { "type": "string", "required": false } + "dev": { + "required": false + }, + "reminder": { + "type": "string", + "required": false + }, + "view": { + "type": "string", + "required": false + }, + "card": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/imports\/url-analyzer\/colors": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/imports/url-analyzer/colors": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "type": "string", @@ -11998,17 +17993,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/imports\/url-analyzer\/colors" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/imports/url-analyzer/colors" } ] } }, - "\/wpcom\/v2\/imports\/url-analyzer\/images": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/imports/url-analyzer/images": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "type": "string", @@ -12027,17 +18026,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/imports\/url-analyzer\/images" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/imports/url-analyzer/images" } ] } }, - "\/wpcom\/v2\/imports\/url-analyzer\/multiple": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/imports/url-analyzer/multiple": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "type": "string", @@ -12056,22 +18059,39 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/imports\/url-analyzer\/multiple" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/imports/url-analyzer/multiple" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-importer\/paid-newsletter": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-importer/paid-newsletter": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "engine": { "type": "string", "required": true }, - "current_step": { "type": "string", "required": false }, - "skip": { "type": "string", "required": false }, - "import_url": { "type": "string", "required": false }, + "engine": { + "type": "string", + "required": true + }, + "current_step": { + "type": "string", + "required": false + }, + "skip": { + "type": "string", + "required": false + }, + "import_url": { + "type": "string", + "required": false + }, "newsletter_location": { "type": "string", "default": "import-paid-subscribers", @@ -12080,10 +18100,18 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "engine": { "type": "string", "required": true }, - "current_step": { "type": "string", "required": false }, + "engine": { + "type": "string", + "required": true + }, + "current_step": { + "type": "string", + "required": false + }, "newsletter_location": { "type": "string", "default": "import-paid-subscribers", @@ -12093,14 +18121,21 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-importer\/paid-newsletter\/reset": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-importer/paid-newsletter/reset": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "engine": { "type": "string", "required": true }, + "engine": { + "type": "string", + "required": true + }, "import_url": { "type": "string", "description": "The URL being imported (must be a valid Substack newsletter URL)", @@ -12115,17 +18150,33 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-importer\/paid-newsletter\/map-stripe-plan-to-product": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-importer/paid-newsletter/map-stripe-plan-to-product": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "engine": { "type": "string", "required": true }, - "current_step": { "type": "string", "required": false }, - "stripe_plan_id": { "type": "string", "required": true }, - "product_id": { "type": "int", "required": true }, + "engine": { + "type": "string", + "required": true + }, + "current_step": { + "type": "string", + "required": false + }, + "stripe_plan_id": { + "type": "string", + "required": true + }, + "product_id": { + "type": "int", + "required": true + }, "newsletter_location": { "type": "string", "default": "import-paid-subscribers", @@ -12135,15 +18186,25 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-importer\/paid-newsletter\/subscriber-import": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-importer/paid-newsletter/subscriber-import": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "engine": { "type": "string", "required": true }, - "current_step": { "type": "string", "required": false }, + "engine": { + "type": "string", + "required": true + }, + "current_step": { + "type": "string", + "required": false + }, "newsletter_location": { "type": "string", "default": "import-paid-subscribers", @@ -12153,25 +18214,37 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/individual-subscriber-stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/individual-subscriber-stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "subscription_id": { "required": false }, - "user_id": { "required": false } + "subscription_id": { + "required": false + }, + "user_id": { + "required": false + } } } ] }, - "\/wpcom\/v2\/introductory-offers": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/introductory-offers": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "site": { "description": "Site ID", @@ -12185,7 +18258,10 @@ }, "product_slugs": { "description": "Product Slugs", - "type": ["array", "string"], + "type": [ + "array", + "string" + ], "required": false } } @@ -12194,40 +18270,63 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/introductory-offers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/introductory-offers" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/links\/generate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/links/generate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "role": { "type": "string", "required": false }, - "expiry": { "type": "integer", "required": false } + "role": { + "type": "string", + "required": false + }, + "expiry": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/links\/disable": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/links/disable": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "role": { "type": "string", "required": false } } + "methods": [ + "POST" + ], + "args": { + "role": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "invitees": { "type": "array", @@ -12249,7 +18348,10 @@ "required": false, "sanitize_callback": "sanitize_text_field" }, - "is_external": { "type": "boolean", "required": false } + "is_external": { + "type": "boolean", + "required": false + } } }, "required": true @@ -12258,83 +18360,138 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/resend": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/resend": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "invite_slug": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "invite_slug": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/is-invited": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/is-invited": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "email_or_username": { "type": "string", "required": true } + "email_or_username": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/are-users-invited": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/are-users-invited": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "users": { "type": "array", - "items": { "type": "string", "required": true }, + "items": { + "type": "string", + "required": true + }, "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/invites\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/invites/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "invite_ids": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ip-to-geo\/(?P<ip_address>[a-zA-Z0-9\\.\\:]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ip-to-geo/(?P<ip_address>[a-zA-Z0-9\\.\\:]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-about": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-about": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-about" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-about" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-active-connected-plugins": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-active-connected-plugins": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "active_connected_plugins": { "description": "An associative array of Jetpack active connected plugins.", @@ -12344,12 +18501,19 @@ } ] }, - "\/wpcom\/v2\/jetpack-ai-image": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-ai-image": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "background": { "type": "string", @@ -12435,7 +18599,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "background": { "type": "string", @@ -12519,17 +18687,24 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai-image" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai-image" } ] } }, - "\/wpcom\/v2\/jetpack-ai-query": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-ai-query": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "question": { "type": "string", @@ -12611,7 +18786,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "question": { "type": "string", @@ -12691,17 +18870,25 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai-query" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai-query" } ] } }, - "\/wpcom\/v2\/jetpack-ai-transcription": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-ai-transcription": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "feature": { "type": "string", @@ -12724,181 +18911,377 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai-transcription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai-transcription" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/service-payload": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-boost-proxy/service-payload": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "blog": { "required": true }, - "service": { "required": true } + "blog": { + "required": true + }, + "service": { + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost-proxy\/service-payload" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost-proxy/service-payload" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/health-check": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-boost-proxy/health-check": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "_boost_api_url": { "type": "string", "required": false } } + "methods": [ + "GET" + ], + "args": { + "_boost_api_url": { + "type": "string", + "required": false + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost-proxy\/health-check" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost-proxy/health-check" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/health-check-auth": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-boost-proxy/health-check-auth": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "_boost_api_url": { "type": "string", "required": false } } + "methods": [ + "GET" + ], + "args": { + "_boost_api_url": { + "type": "string", + "required": false + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost-proxy\/health-check-auth" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost-proxy/health-check-auth" } ] } }, - "\/wpcom\/v2\/jetpack-boost-proxy\/(?P<version>(?:v\\d+\/)?)metrics": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jetpack-boost-proxy/(?P<version>(?:v\\d+/)?)metrics": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "_boost_api_url": { "type": "string", "required": false }, - "async": { "type": "boolean", "required": false }, - "successCallback": { "type": "object", "required": false }, - "errorCallback": { "type": "object", "required": false }, - "url": { "type": "string", "required": true }, - "type": { "type": "string", "required": false }, - "strategy": { "type": "string", "required": false }, - "metrics": { "type": "object", "required": false }, - "viewport": { "type": "object", "required": true }, - "requestHeaders": { "type": "object", "required": false }, - "verify": { "type": "string", "required": false }, - "tags": { "type": "array", "required": false } + "_boost_api_url": { + "type": "string", + "required": false + }, + "async": { + "type": "boolean", + "required": false + }, + "successCallback": { + "type": "object", + "required": false + }, + "errorCallback": { + "type": "object", + "required": false + }, + "url": { + "type": "string", + "required": true + }, + "type": { + "type": "string", + "required": false + }, + "strategy": { + "type": "string", + "required": false + }, + "metrics": { + "type": "object", + "required": false + }, + "viewport": { + "type": "object", + "required": true + }, + "requestHeaders": { + "type": "object", + "required": false + }, + "verify": { + "type": "string", + "required": false + }, + "tags": { + "type": "array", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/cloud-css": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/cloud-css": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/cloud-css\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/cloud-css/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/(?P<report_type>[a-z-]+)\/reports": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/(?P<report_type>[a-z-]+)/reports": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/(?P<report_type>[a-z-]+)\/reports\/(?P<id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/(?P<report_type>[a-z-]+)/reports/(?P<id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "success": { "type": "boolean", "required": false }, - "data": { "type": "object", "required": true } + "success": { + "type": "boolean", + "required": false + }, + "data": { + "type": "object", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/(?P<report_type>[a-z-]+)\/reports\/(?P<id>\\d+)\/done": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/(?P<report_type>[a-z-]+)/reports/(?P<id>\\d+)/done": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/(?P<report_type>[a-z-]+)\/reports\/(?P<id>(?:\\d+|latest))": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/(?P<report_type>[a-z-]+)/reports/(?P<id>(?:\\d+|latest))": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/(?P<report_type>[a-z-]+)\/reports\/(?P<id>(?:\\d+|latest))\/issues": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/(?P<report_type>[a-z-]+)/reports/(?P<id>(?:\\d+|latest))/issues": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/features": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/features": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/lcp": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/lcp": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/lcp\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/lcp/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/speed-scores": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/speed-scores": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "url": { "type": "string", "required": true }, - "request_id": { "type": "string", "required": true }, - "client": { "type": "string", "required": false } + "url": { + "type": "string", + "required": true + }, + "request_id": { + "type": "string", + "required": true + }, + "client": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/speed-scores\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/speed-scores/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/speed-scores\/(?P<request_id>\\w+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/speed-scores/(?P<request_id>\\w+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "request_id": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "request_id": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-boost\/speed-scores-history": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-boost/speed-scores-history": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start": { "description": "Timestamp of the start of the time range to retrieve the performance history for.", @@ -12916,12 +19299,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-clone-settings": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-clone-settings": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "destination_blog_id": { "description": "The WPCOM blog ID of the destination site to clone Jetpack settings to.", @@ -12931,61 +19318,124 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-connect\/is-user-connected": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-connect/is-user-connected": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-connection-health": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-connection-health": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-golden-token\/get": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-golden-token/get": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-golden-token\/activate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-golden-token/activate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-marketing\/sale-coupon": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-marketing/sale-coupon": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-marketing\/sale-coupon" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-marketing/sale-coupon" } ] } }, - "\/wpcom\/v2\/jetpack-marketing\/jetpack-menu": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-marketing/jetpack-menu": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-marketing\/jetpack-menu" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-marketing/jetpack-menu" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-monitor-incidents": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-monitor-incidents": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "period": { "type": "string", "description": "The period within the Monitor incidents occurred.", - "enum": ["day", "week", "month", "year"], + "enum": [ + "day", + "week", + "month", + "year" + ], "required": false }, "status": { @@ -12999,7 +19449,11 @@ "description": "The Monitor incidents' URL. Handy when Jetpack Monitor is configured to monitor additional URLs on top of the homepage", "required": false }, - "page": { "type": "integer", "minimum": 1, "required": false }, + "page": { + "type": "integer", + "minimum": 1, + "required": false + }, "per_page": { "type": "integer", "minimum": 1, @@ -13010,17 +19464,36 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-monitor-settings": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-monitor-settings": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "email_notifications": { "type": "boolean", "required": false }, - "sms_notifications": { "type": "boolean", "required": false }, - "wp_note_notifications": { "type": "boolean", "required": false }, + "email_notifications": { + "type": "boolean", + "required": false + }, + "sms_notifications": { + "type": "boolean", + "required": false + }, + "wp_note_notifications": { + "type": "boolean", + "required": false + }, "jetmon_defer_status_down_minutes": { "type": "integer", "minimum": 1, @@ -13034,11 +19507,22 @@ "items": { "type": "object", "properties": { - "monitor_url": { "required": false, "type": "string" }, + "monitor_url": { + "required": false, + "type": "string" + }, "check_interval": { "required": false, "type": "integer", - "enum": [1, 3, 5, 10, 15, 30, 60] + "enum": [ + 1, + 3, + 5, + 10, + 15, + 30, + 60 + ] }, "options": { "required": false, @@ -13060,15 +19544,30 @@ "items": { "emails": "array", "properties": { - "name": { "required": true, "type": "string" }, - "sms_number": { "required": true, "type": "string" }, - "number": { "required": true, "type": "string" }, - "country_code": { "required": true, "type": "string" }, + "name": { + "required": true, + "type": "string" + }, + "sms_number": { + "required": true, + "type": "string" + }, + "number": { + "required": true, + "type": "string" + }, + "country_code": { + "required": true, + "type": "string" + }, "country_numeric_code": { "required": true, "type": "string" }, - "verified": { "required": true, "type": "boolean" } + "verified": { + "required": true, + "type": "boolean" + } }, "sms_numbers": "array" }, @@ -13078,348 +19577,726 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-monitor-settings\/verify-contact-method": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-monitor-settings/verify-contact-method": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "type": { "type": "string", "required": true }, - "value": { "type": "string", "required": true }, - "verification_code": { "type": "int", "required": true } + "type": { + "type": "string", + "required": true + }, + "value": { + "type": "string", + "required": true + }, + "verification_code": { + "type": "int", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-monitor-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-monitor-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-monitor-uptime": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-monitor-uptime": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "period": { "type": "string", "description": "The period we want to fetch the site's uptime for. Defaults to week.", - "enum": ["day", "week", "30 days", "90 days"], + "enum": [ + "day", + "week", + "30 days", + "90 days" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-openai-query\/jwt": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-openai-query/jwt": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-package-versions": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-package-versions": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "package_versions": { - "description": "An associative array of Jetpack packages and their corresponding versions as key\/value pairs. You may use either the package names, eg automattic\/jetpack-backup or their simplified version (slug) eg backup.", + "description": "An associative array of Jetpack packages and their corresponding versions as key/value pairs. You may use either the package names, eg automattic/jetpack-backup or their simplified version (slug) eg backup.", "required": true } } } ] }, - "\/wpcom\/v2\/jetpack-partners": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-partners": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "all": { "default": false, "type": "boolean", "required": false } + "all": { + "default": false, + "type": "boolean", + "required": false + } } }, - { "methods": ["POST", "PUT", "PATCH"], "args": [] } + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/stripe\/customer": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/stripe/customer": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/capabilities": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-partners/capabilities": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/capabilities" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/capabilities" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/activations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-partners/activations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "key_id": { "default": null, "type": "string", "required": false }, - "scale": { "default": "month", "type": "string", "required": false } + "key_id": { + "default": null, + "type": "string", + "required": false + }, + "scale": { + "default": "month", + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/activations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/activations" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST", "PUT", "PATCH"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/disable": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/disable": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/enable": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/enable": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/activations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/activations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "page": { "default": 1, "type": "integer", "required": false }, - "per_page": { "default": 20, "type": "integer", "required": false }, - "plans": { "type": "array", "required": false }, - "activated_after": { "type": "date", "required": false }, - "activated_before": { "type": "date", "required": false } + "page": { + "default": 1, + "type": "integer", + "required": false + }, + "per_page": { + "default": 20, + "type": "integer", + "required": false + }, + "plans": { + "type": "array", + "required": false + }, + "activated_after": { + "type": "date", + "required": false + }, + "activated_before": { + "type": "date", + "required": false + } } } ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/activation\/(?P<activation_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], - "endpoints": [{ "methods": ["DELETE"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/activation/(?P<activation_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/stripe\/upcoming-invoice": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/stripe/upcoming-invoice": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/stripe\/subscription": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/stripe/subscription": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/(?P<partner_id>\\d+)\/key\/(?P<key_id>\\d+)\/stripe\/invoices": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-partners/(?P<partner_id>\\d+)/key/(?P<key_id>\\d+)/stripe/invoices": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/search\/plan": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-partners/stripe/search/plan": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/stripe\/search\/plan" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/stripe/search/plan" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/user": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/jetpack-partners/user": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/user" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/user" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/subscription": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/jetpack-partners/stripe/subscription": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "customer": { "type": "string", "required": true }, - "plans": { "type": "array", "required": true } + "customer": { + "type": "string", + "required": true + }, + "plans": { + "type": "array", + "required": true + } } }, { - "methods": ["GET"], - "args": { "customer": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "customer": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/stripe\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/stripe/subscription" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/stripe\/subscription\/replace": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-partners/stripe/subscription/replace": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "customer": { "type": "string", "required": true } } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "customer": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/stripe\/subscription\/replace" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/stripe/subscription/replace" } ] } }, - "\/wpcom\/v2\/jetpack-partners\/subscription": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/jetpack-partners/subscription": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], - "args": { "subscription_id": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "subscription_id": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-partners\/subscription" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-partners/subscription" } ] } }, - "\/wpcom\/v2\/plans": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/plans": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "country": { "required": false }, - "currency": { "required": false } + "country": { + "required": false + }, + "currency": { + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/plans" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/plans" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-product-data": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-product-data": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-protect-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-protect-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-protect-global-stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jetpack-protect-global-stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-protect-global-stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-protect-global-stats" } ] } }, - "\/wpcom\/v2\/jetpack-protect-weak-password\/(?P<hash_prefix>[a-f0-9]{5})": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/jetpack-protect-weak-password/(?P<hash_prefix>[a-f0-9]{5})": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-protect-send-verification-code": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-protect-send-verification-code": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-recommendations\/product-suggestions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-recommendations/product-suggestions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-recommendations\/upsell": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-recommendations/upsell": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-recommendations\/site-registered-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-recommendations/site-registered-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-recommendations\/evaluation": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-recommendations/evaluation": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-refresh-blog-token": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-refresh-blog-token": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-remote-connect-user": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-remote-connect-user": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "secret": { "description": "Remote registration secret", @@ -13445,12 +20322,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-report-error": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-report-error": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "error_data": { "description": "Encrypted error data", @@ -13461,12 +20342,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/ai\/search": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/ai/search": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "description": "Your question to the site", @@ -13503,12 +20388,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/ai\/rank": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/ai/rank": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "cache_key": { "description": "Cache key of your response", @@ -13526,27 +20415,58 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/plan": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/plan": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/queue-post-count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/queue-post-count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-search\/pricing": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-search/pricing": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "record_count": { "type": "integer", @@ -13574,17 +20494,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-search\/pricing" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-search/pricing" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/search-stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/search-stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "start_date": { "description": "start date to compute the stat", @@ -13605,107 +20529,229 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/discount": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/discount": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites": { - "namespace": "wpcom\/v2\/sites", - "methods": ["GET"], + "/wpcom/v2/sites": { + "namespace": "wpcom/v2/sites", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wpcom\/v2\/sites", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wpcom/v2/sites", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/sites" } ] } }, - "\/wpcom\/v2\/sites\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/sites", - "methods": ["GET"], + "/wpcom/v2/sites/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/sites", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wpcom\/v2\/sites", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wpcom/v2/sites", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/(?P<blog_id>\\d+)\/jetpack-social-connections\/new": { - "namespace": "wpcom\/v2\/sites", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/(?P<blog_id>\\d+)/jetpack-social-connections/new": { + "namespace": "wpcom/v2/sites", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/(?P<blog_id>\\d+)\/jetpack-social-connections\/(?P<connection_id>\\d+)": { - "namespace": "wpcom\/v2\/sites", - "methods": ["DELETE", "POST"], + "/wpcom/v2/sites/(?P<blog_id>\\d+)/jetpack-social-connections/(?P<connection_id>\\d+)": { + "namespace": "wpcom/v2/sites", + "methods": [ + "DELETE", + "POST" + ], "endpoints": [ - { "methods": ["DELETE"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-social": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-social": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-social\/count-scheduled-shares": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-social/count-scheduled-shares": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-social\/generate-image-token": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-social/generate-image-token": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "text": { "type": "string", "required": true }, + "text": { + "type": "string", + "required": true + }, "image_url": { "type": "string", "format": "uri", "required": false }, - "template": { "type": "string", "required": false } + "template": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-stats-dashboard\/modules": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-stats-dashboard/modules": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ - { "methods": ["POST", "PUT", "PATCH"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-stats-dashboard\/module-settings": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-stats-dashboard/module-settings": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ - { "methods": ["POST", "PUT", "PATCH"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-stats-dashboard\/notices": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-stats-dashboard/notices": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "type": "string", @@ -13729,7 +20775,10 @@ "status": { "type": "string", "description": "Status of the notice", - "enum": ["dismissed", "postponed"], + "enum": [ + "dismissed", + "postponed" + ], "required": true }, "postponed_for": { @@ -13741,20 +20790,38 @@ } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-stats\/usage": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-stats/usage": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-stats\/user-feedback": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-stats/user-feedback": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_url": { "type": "string", @@ -13775,12 +20842,16 @@ } ] }, - "\/wpcom\/v2\/jetpack\/stripe\/configuration": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack/stripe/configuration": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "needs_intent": { "type": "boolean", @@ -13793,28 +20864,44 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack\/stripe\/configuration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack/stripe/configuration" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-sync-actions": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-sync-actions": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "codec": { "type": "string", "description": "The name of the codec that encodes the data.", - "enum": ["simple", "deflate-json", "deflate-json-array"], + "enum": [ + "simple", + "deflate-json", + "deflate-json-array" + ], "required": true }, "queue": { "type": "string", "description": "The name of the Sync queue.", - "enum": ["sync", "immediate-send", "full_sync"], + "enum": [ + "sync", + "immediate-send", + "full_sync" + ], "required": true }, "timestamp": { @@ -13851,25 +20938,35 @@ "sync_flow_type": { "type": "string", "description": "Whether Sync actions are sent on shutdown (default) or in a separate dedicated request (dedicated).", - "enum": ["default", "dedicated"], + "enum": [ + "default", + "dedicated" + ], "required": false }, "storage_type": { "type": "string", "description": "Whether Sync actions are stored in the options table (options) or in a custom table (custom).", - "enum": ["options", "custom"], + "enum": [ + "options", + "custom" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-token-health": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-token-health": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "blog_token": { "description": "Signed blog token, as it would appear in the authorization header of a request", @@ -13885,27 +20982,54 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-token-health\/user": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-token-health/user": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-token-health\/blog": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-token-health/blog": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/jetpack-user-attributes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jetpack-user-attributes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "attributes": { "description": "The list of user attributes to fetch.", "type": "array", - "items": { "type": "string", "enum": ["has_used_jetpack_app"] }, + "items": { + "type": "string", + "enum": [ + "has_used_jetpack_app" + ] + }, "required": true } } @@ -13914,101 +21038,173 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-user-attributes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-user-attributes" } ] } }, - "\/wpcom\/v2\/jetpack-user-tracking": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/jetpack-user-tracking": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], - "args": { "tracks_opt_out": { "type": "boolean", "required": false } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "tracks_opt_out": { + "type": "boolean", + "required": false + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-user-tracking" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-user-tracking" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/waf-rules": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/waf-rules": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jitm\/(?P<message_path>[\\w.:-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jitm/(?P<message_path>[\\w.:-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "external_user_id": { "type": "integer", "required": false }, - "user_roles": { "type": "string", "required": false }, - "query_string": { "type": "string", "required": false }, - "mobile_browser": { "type": "integer", "required": false } + "external_user_id": { + "type": "integer", + "required": false + }, + "user_roles": { + "type": "string", + "required": false + }, + "query_string": { + "type": "string", + "required": false + }, + "mobile_browser": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/jurassic-ninja\/extend": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jurassic-ninja/extend": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domain": { "type": "string", "required": true }, - "api_token": { "type": "string", "required": true } + "domain": { + "type": "string", + "required": true + }, + "api_token": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/extend" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/extend" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/create-new-site-from-zip": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jurassic-ninja/create-new-site-from-zip": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "wordpress_version": { "type": "string", "description": "The WordPress version to be used.", "required": false }, - "connected_site_id": { "type": "integer", "required": false } + "connected_site_id": { + "type": "integer", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/create-new-site-from-zip" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/create-new-site-from-zip" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/update-site-from-zip": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/jurassic-ninja/update-site-from-zip": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "site_id": { "type": "integer", "required": true }, + "site_id": { + "type": "integer", + "required": true + }, "wordpress_version": { "type": "string", "description": "The WordPress version to be used.", @@ -14020,108 +21216,177 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/update-site-from-zip" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/update-site-from-zip" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/usage": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], - "_links": { - "self": [ - { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/usage" - } - ] - } - }, - "\/wpcom\/v2\/jurassic-ninja\/list": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/jurassic-ninja/usage": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/usage" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/jurassic-ninja/list": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "site_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": [] } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/list" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jurassic-ninja/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "site_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "site_id": { + "type": "integer", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/status" } ] } }, - "\/wpcom\/v2\/jurassic-ninja\/delete\/all": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], - "_links": { + "/wpcom/v2/jurassic-ninja/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "site_id": { + "type": "integer", + "required": true + } + } + } + ], + "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jurassic-ninja\/delete\/all" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/delete" } ] } }, - "\/wpcom\/v2\/lasagna\/jwt\/sign": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/jurassic-ninja/delete/all": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], + "args": [] + } + ], + "_links": { + "self": [ + { + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/jurassic-ninja/delete/all" + } + ] + } + }, + "/wpcom/v2/lasagna/jwt/sign": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], "args": { - "jwt_type": { "type": "string", "required": true }, - "payload": { "type": "object", "required": true } + "jwt_type": { + "type": "string", + "required": true + }, + "payload": { + "type": "object", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/lasagna\/jwt\/sign" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/lasagna/jwt/sign" } ] } }, - "\/wpcom\/v2\/legal": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/legal": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "action": { "type": "string", @@ -14134,92 +21399,159 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/legal" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/legal" } ] } }, - "\/wpcom\/v2\/liked-posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/liked-posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "count": { "type": "integer", "minimum": 1, "required": false }, - "after": { "type": "int", "required": false } + "count": { + "type": "integer", + "minimum": 1, + "required": false + }, + "after": { + "type": "int", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/liked-posts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/liked-posts" } ] } }, - "\/wpcom\/v2\/linearmattic\/webhook": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }], + "/wpcom/v2/linearmattic/webhook": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/linearmattic\/webhook" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/linearmattic/webhook" } ] } }, - "\/wpcom\/v2\/marketing\/survey": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketing/survey": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "site_id": { "type": "integer", "required": true }, - "survey_id": { "type": "string", "required": true }, - "survey_responses": { "required": true } + "site_id": { + "type": "integer", + "required": true + }, + "survey_id": { + "type": "string", + "required": true + }, + "survey_responses": { + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketing\/survey" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketing/survey" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mapbox": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/mapbox": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/mapkit": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/mapkit": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mapkit" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mapkit" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent\/(?P<intent_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/marketplace/vendor/billing-intent/(?P<intent_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/vendor/billing-intent": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "product_slug": { "description": "The slug of product to create billing intent for.", @@ -14250,7 +21582,10 @@ "description": "The billing period for the billing intent.", "type": "string", "default": "year", - "enum": ["month", "year"], + "enum": [ + "month", + "year" + ], "required": false }, "return_url": { @@ -14265,17 +21600,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/vendor\/billing-intent" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/vendor/billing-intent" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/billing-intent-siteless": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/vendor/billing-intent-siteless": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "product_slug": { "description": "The slug of product to create billing intent for.", @@ -14296,7 +21635,10 @@ "description": "The billing period for the billing intent.", "type": "string", "default": "year", - "enum": ["month", "year"], + "enum": [ + "month", + "year" + ], "required": false }, "return_url": { @@ -14311,17 +21653,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/vendor\/billing-intent-siteless" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/vendor/billing-intent-siteless" } ] } }, - "\/wpcom\/v2\/marketplace\/jetpack-scan": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/jetpack-scan": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "signature": { "description": "The signature of the request", @@ -14339,45 +21685,95 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/jetpack-scan" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/jetpack-scan" } ] } }, - "\/wpcom\/v2\/marketplace\/(?P<type>plugins|themes)\/updates": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/marketplace/(?P<type>plugins|themes)/updates": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/products\/reinstall": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/products/reinstall": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/marketplace\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/marketplace/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/products" } ] } }, - "\/wpcom\/v2\/marketplace\/products\/(?P<id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/marketplace/products/(?P<id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/marketplace\/products\/(?P<slug>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/marketplace/products/(?P<slug>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "webhook_url": { "description": "The product webhook URL", @@ -14393,12 +21789,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/reviews\/(?P<product_type>[^\\\/]+)\/(?P<product_slug>[^\\\/]+)\/stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/reviews/(?P<product_type>[^\\/]+)/(?P<product_slug>[^\\/]+)/stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "product_type": { "description": "The product type: plugin or theme", @@ -14414,12 +21814,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/reviews\/(?P<product_type>[^\\\/]+)\/(?P<product_slug>[^\\\/]+)\/validate": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/reviews/(?P<product_type>[^\\/]+)/(?P<product_slug>[^\\/]+)/validate": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "product_type": { "description": "The product type: plugin or theme", @@ -14435,12 +21839,16 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P<ownership_id>[\\d]+)\/addon": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/vendor/subscriptions/(?P<ownership_id>[\\d]+)/addon": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "ownership_id": { "type": "integer", @@ -14467,12 +21875,16 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/marketplace/vendor/subscriptions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "page": { "description": "Current page of the collection.", @@ -14500,17 +21912,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/vendor\/subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/vendor/subscriptions" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P<ownership_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/marketplace/vendor/subscriptions/(?P<ownership_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "ownership_id": { "type": "integer", @@ -14521,15 +21937,22 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/mobiledotblog.wordpress.com\/(?P<product_slug>[^\\\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/marketplace/vendor/subscriptions/mobiledotblog.wordpress.com/(?P<product_slug>[^\\/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { - "type": ["string", "integer"], + "type": [ + "string", + "integer" + ], "description": "A domain or blog ID.", "required": false }, @@ -14542,12 +21965,16 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/subscriptions\/(?P<ownership_id>[\\d]+)\/cancel": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/vendor/subscriptions/(?P<ownership_id>[\\d]+)/cancel": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "ownership_id": { "type": "integer", @@ -14558,12 +21985,16 @@ } ] }, - "\/wpcom\/v2\/marketplace\/vendor\/webhooks": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/marketplace/vendor/webhooks": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "webhook_url": { "description": "A webhook url for testing.", @@ -14601,7 +22032,10 @@ "description": "A billing cycle for testing. Default `yearly`.", "type": "string", "default": "yearly", - "enum": ["yearly", "monthly"], + "enum": [ + "yearly", + "monthly" + ], "required": false }, "intent_id": { @@ -14615,49 +22049,74 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/vendor\/webhooks" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/vendor/webhooks" } ] } }, - "\/wpcom\/v2\/marketplace\/vendor\/schema": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/marketplace/vendor/schema": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/marketplace\/vendor\/schema" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/marketplace/vendor/schema" } ] } }, - "\/wpcom\/v2\/me\/blocks\/sites": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/me/blocks/sites": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "page": { "default": 1, "type": "integer", "required": false }, - "per_page": { "default": 100, "type": "integer", "required": false } + "page": { + "default": 1, + "type": "integer", + "required": false + }, + "per_page": { + "default": 100, + "type": "integer", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/blocks\/sites" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/blocks/sites" } ] } }, - "\/wpcom\/v2\/me\/connections": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/me/connections": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "force_external_users_refetch": { "default": false, @@ -14675,17 +22134,22 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/connections" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/connections" } ] } }, - "\/wpcom\/v2\/me\/connections\/(?P<token_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/me/connections/(?P<token_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "force_external_users_refetch": { "default": false, @@ -14697,11 +22161,17 @@ "type": "boolean", "required": false }, - "token_id": { "type": "integer", "minimum": 1, "required": true } + "token_id": { + "type": "integer", + "minimum": 1, + "required": true + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "force_external_users_refetch": { "default": false, @@ -14713,36 +22183,52 @@ "type": "boolean", "required": false }, - "token_id": { "type": "integer", "minimum": 1, "required": true } + "token_id": { + "type": "integer", + "minimum": 1, + "required": true + } } } ] }, - "\/wpcom\/v2\/me\/following\/recommendations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/me/following/recommendations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "number": { "type": "number", "default": 5, "required": false } + "number": { + "type": "number", + "default": 5, + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/following\/recommendations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/following/recommendations" } ] } }, - "\/wpcom\/v2\/me\/following": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/me/following": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "ignore_user_blogs": { "type": "boolean", @@ -14755,39 +22241,73 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/following" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/following" } ] } }, - "\/wpcom\/v2\/me\/gutenberg": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/me/gutenberg": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "editor": { "type": "string", "required": true }, - "platform": { "type": "string", "required": true } + "editor": { + "type": "string", + "required": true + }, + "platform": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/gutenberg" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/gutenberg" } ] } }, - "\/wpcom\/v2\/me\/locale": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/me/locale": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "locale": { "description": "An updated locale.", @@ -14800,17 +22320,24 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/locale" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/locale" } ] } }, - "\/wpcom\/v2\/me\/preferences": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/me/preferences": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "preference_key": { "description": "A calypso preference key to retrieve the value of. If not provided, all preferences will be returned.", @@ -14820,7 +22347,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "calypso_preferences": { "description": "A calypso preferences subset to be merged with the existing preferences.", @@ -14833,29 +22364,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/preferences" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/preferences" } ] } }, - "\/wpcom\/v2\/me\/profile": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/me/profile": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/profile" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/profile" } ] } }, - "\/wpcom\/v2\/me\/sites\/stats\/summary": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/me/sites/stats/summary": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "offset": { "type": "int", @@ -14897,54 +22441,103 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/sites\/stats\/summary" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/sites/stats/summary" } ] } }, - "\/wpcom\/v2\/me\/ssh-keys": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/me/ssh-keys": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], - "args": { "key": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": { + "key": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/me\/ssh-keys" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/me/ssh-keys" } ] } }, - "\/wpcom\/v2\/me\/ssh-keys\/(?P<name>[\\w.:-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/me/ssh-keys/(?P<name>[\\w.:-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "key": { "type": "string", "required": true } } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "key": { + "type": "string", + "required": true + } + } }, { - "methods": ["DELETE"], - "args": { "name": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "name": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/private\/media\/(?P<jwt>[^\/]+)\/download": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/private/media/(?P<jwt>[^/]+)/download": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/subscribers": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/subscribers": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "offset": { "description": "Offset of the list.", @@ -14966,22 +22559,36 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/earnings": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/earnings": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "currency": { "default": false, "required": false } } + "methods": [ + "GET" + ], + "args": { + "currency": { + "default": false, + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/coupons": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/coupons": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "coupon_code": { "description": "Coupon code for the coupon.", @@ -15031,7 +22638,10 @@ "discount_type": { "description": "Type of discount applied.", "type": "string", - "enum": ["amount", "percentage"], + "enum": [ + "amount", + "percentage" + ], "required": true }, "discount_value": { @@ -15046,15 +22656,24 @@ } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/coupons\/apply": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/coupons/apply": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "coupon_codes": { "description": "List of coupon codes.", @@ -15075,12 +22694,17 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/coupon\/(?P<coupon_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["PUT", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/coupon/(?P<coupon_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "PUT", + "DELETE" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { "coupon_code": { "description": "Coupon code for the coupon.", @@ -15130,7 +22754,10 @@ "discount_type": { "description": "Type of discount applied.", "type": "string", - "enum": ["amount", "percentage"], + "enum": [ + "amount", + "percentage" + ], "required": true }, "discount_value": { @@ -15146,32 +22773,70 @@ } }, { - "methods": ["DELETE"], - "args": { "currency": { "default": false, "required": false } } + "methods": [ + "DELETE" + ], + "args": { + "currency": { + "default": false, + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/gifts\/(?P<user_id>[\\d]+)\/(?P<plan_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/gifts/(?P<user_id>[\\d]+)/(?P<plan_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/gift\/(?P<gift_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], - "endpoints": [{ "methods": ["DELETE"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/gift/(?P<gift_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/subscriber-importer\/get_subscriptions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/subscriber-importer/get_subscriptions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/subscriber-importer\/import": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/subscriber-importer/import": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "product_id": { "description": "WPCOM Plan id.", @@ -15197,22 +22862,44 @@ } ] }, - "\/wpcom\/v2\/migration-provider-notifications\/(?P<provider>blogvault)\/(?P<mode>dev|live)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/migration-provider-notifications/(?P<provider>blogvault)/(?P<mode>dev|live)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/migration-provider-redirect\/(?P<provider>blogvault)\/(?P<mode>dev|live)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/migration-provider-redirect/(?P<provider>blogvault)/(?P<mode>dev|live)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/mobile\/feature-announcements": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/mobile/feature-announcements": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "_locale": { "type": "string", @@ -15230,53 +22917,88 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/feature-announcements" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/feature-announcements" } ] } }, - "\/wpcom\/v2\/mobile\/feature-flags": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/mobile/feature-flags": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "device_id": { "type": "string", "required": false }, - "platform": { "type": "string", "required": false }, - "build_number": { "type": "string", "required": false }, - "marketing_version": { "type": "string", "required": false }, - "identifier": { "type": "string", "required": false }, - "os_version": { "type": "string", "required": false } + "device_id": { + "type": "string", + "required": false + }, + "platform": { + "type": "string", + "required": false + }, + "build_number": { + "type": "string", + "required": false + }, + "marketing_version": { + "type": "string", + "required": false + }, + "identifier": { + "type": "string", + "required": false + }, + "os_version": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/feature-flags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/feature-flags" } ] } }, - "\/wpcom\/v2\/mobile\/migration": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/mobile/migration": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/migration" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/migration" } ] } }, - "\/wpcom\/v2\/mobile\/resolve-reader-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/mobile/resolve-reader-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The reader URL to resolve.", @@ -15289,50 +23011,79 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/resolve-reader-url" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/resolve-reader-url" } ] } }, - "\/wpcom\/v2\/mobile\/remote-config": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/mobile/remote-config": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/remote-config" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/remote-config" } ] } }, - "\/wpcom\/v2\/mobile\/share-app-link": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/mobile/share-app-link": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "locale": { "default": "en", "required": false }, - "app": { "type": "string", "required": false } + "locale": { + "default": "en", + "required": false + }, + "app": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile\/share-app-link" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile/share-app-link" } ] } }, - "\/wpcom\/v2\/mobile-support\/conversations": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/mobile-support/conversations": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "subject": { "description": "The subject of the conversation.", @@ -15347,7 +23098,11 @@ "application": { "description": "The application that is creating the conversation.", "type": "string", - "enum": ["woocommerce", "wordpress", "jetpack"], + "enum": [ + "woocommerce", + "wordpress", + "jetpack" + ], "required": true }, "wpcom_site_id": { @@ -15363,7 +23118,9 @@ "encrypted_log_ids": { "description": "An array of encrypted log IDs to attach to the conversation.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } @@ -15372,29 +23129,43 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile-support\/conversations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile-support/conversations" } ] } }, - "\/wpcom\/v2\/mobile-support\/eligibility": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/mobile-support/eligibility": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mobile-support\/eligibility" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mobile-support/eligibility" } ] } }, - "\/wpcom\/v2\/mobile-support\/conversations\/(?P<conversation_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/mobile-support/conversations/(?P<conversation_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "conversation_id": { "description": "The conversation id to get the conversation for.", @@ -15404,7 +23175,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "conversation_id": { "description": "The conversation id for the existing conversation.", @@ -15420,12 +23193,16 @@ } ] }, - "\/wpcom\/v2\/mobile-support\/attachments\/(?P<attachment_id>[^\/]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/mobile-support/attachments/(?P<attachment_id>[^/]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "attachment_id": { "description": "The attachment id to get the attachment for.", @@ -15436,36 +23213,58 @@ } ] }, - "\/wpcom\/v2\/iap\/notification": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/iap/notification": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/iap\/notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/iap/notification" } ] } }, - "\/wpcom\/v2\/iap\/transactions\/(?<transaction_id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/iap/transactions/(?<transaction_id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/iap\/transactions\/(?<transaction_id>[\\d]+)" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/iap/transactions/(?<transaction_id>[\\d]+)" } ] } }, - "\/wpcom\/v2\/iap\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/iap/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "site_id": { "type": "integer", @@ -15478,17 +23277,22 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/iap\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/iap/products" } ] } }, - "\/wpcom\/v2\/iap\/orders": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/iap/orders": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "site_id": { "type": "integer", @@ -15498,7 +23302,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "product_id": { "type": "string", @@ -15546,54 +23352,119 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/iap\/orders" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/iap/orders" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newsletter-categories": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newsletter-categories": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newsletter-categories\/(?P<term_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newsletter-categories/(?P<term_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ - { "methods": ["POST"], "args": { "term_id": { "required": false } } }, - { "methods": ["DELETE"], "args": { "term_id": { "required": false } } } + { + "methods": [ + "POST" + ], + "args": { + "term_id": { + "required": false + } + } + }, + { + "methods": [ + "DELETE" + ], + "args": { + "term_id": { + "required": false + } + } + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newsletter-categories\/count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newsletter-categories/count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "term_ids": { "default": "", "required": false } } + "methods": [ + "GET" + ], + "args": { + "term_ids": { + "default": "", + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newsletter-categories\/subscriptions\/(?P<subscription_id>[0-9]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newsletter-categories/subscriptions/(?P<subscription_id>[0-9]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "subscription_id": { "required": false } } + "methods": [ + "GET" + ], + "args": { + "subscription_id": { + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newsletter-categories\/subscriptions": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newsletter-categories/subscriptions": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "token": { "required": false }, - "tracks": { "required": false }, + "token": { + "required": false + }, + "tracks": { + "required": false + }, "categories": { "type": "array", "items": { @@ -15617,49 +23488,85 @@ } ] }, - "\/wpcom\/v2\/send\/spain-newsletter\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/send/spain-newsletter/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "form_id": { "type": "string", "required": false }, - "profile": { "type": "string", "required": false }, - "_landing_page": { "type": "string", "required": false } + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "form_id": { + "type": "string", + "required": false + }, + "profile": { + "type": "string", + "required": false + }, + "_landing_page": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/send\/spain-newsletter\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/send/spain-newsletter/new" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newspack-gpt\/chat-completion": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newspack-gpt/chat-completion": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "backscroll": { "type": "array", "required": false }, - "functions": { "type": "array", "required": false } + "backscroll": { + "type": "array", + "required": false + }, + "functions": { + "type": "array", + "required": false + } } } ] }, - "\/wpcom\/v2\/newspack-manager\/log": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/newspack-manager/log": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "error_code": { "type": "string", @@ -15702,48 +23609,72 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newspack-manager\/log" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/newspack-manager/log" } ] } }, - "\/wpcom\/v2\/notifications": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/notifications": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "user_id": { "required": true }, - "note_type": { "required": true }, - "args": { "required": false } + "user_id": { + "required": true + }, + "note_type": { + "required": true + }, + "args": { + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/notifications" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/notifications" } ] } }, - "\/wpcom\/v2\/oauth2\/client-data\/(?P<client_id>[\\w-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/oauth2/client-data/(?P<client_id>[\\w-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "client_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "client_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/odie\/chat\/(?P<bot_id>[a-zA-Z0-9-_]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/odie/chat/(?P<bot_id>[a-zA-Z0-9-_]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "bot_id": { "description": "The bot id to get the configuration for.", @@ -15753,7 +23684,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "bot_id": { "description": "The bot id to chat with.", @@ -15773,7 +23706,12 @@ "source": { "description": "The source of the request. Typically omitted.", "type": "string", - "enum": ["big-sky", "profiler", "aifficiency", "gpt"], + "enum": [ + "big-sky", + "profiler", + "aifficiency", + "gpt" + ], "required": false }, "source_user": { @@ -15790,19 +23728,26 @@ "description": "Whether to mark this as a navigation message.", "type": "string", "default": "user", - "enum": ["user", "navigation"], + "enum": [ + "user", + "navigation" + ], "required": false } } } ] }, - "\/wpcom\/v2\/odie\/conversations\/(?P<bot_ids>[a-zA-Z0-9-_\\@\\.,]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/odie/conversations/(?P<bot_ids>[a-zA-Z0-9-_\\@\\.,]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "bot_ids": { "description": "The identifiers of the bots to use to retrieve the list of conversations for the current user. Comma-separated list of bot IDs. If versions are needed, you can use `botSlug@1.0.0,otherBotSlug@2.0.0`.", @@ -15812,7 +23757,10 @@ "truncation_method": { "description": "The method to use for truncating the conversations. Either \"first_message\" or \"last_message\". Defaults to \"last_message\". Note that this parameter affects the response shape. If it is set to `last_message`, the response will include the last message from each chat, while `first_message` will include the first message.", "type": "string", - "enum": ["first_message", "last_message"], + "enum": [ + "first_message", + "last_message" + ], "default": "last_message", "required": false } @@ -15820,12 +23768,16 @@ } ] }, - "\/wpcom\/v2\/odie\/conversations\/(?P<bot_id>[a-zA-Z0-9-_]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/odie/conversations/(?P<bot_id>[a-zA-Z0-9-_]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "bot_id": { "description": "The identifier of the bot to use to retrieve the list of conversations for the current user.", @@ -15835,7 +23787,10 @@ "truncation_method": { "description": "The method to use for truncating the conversations. Either \"first_message\" or \"last_message\". Defaults to \"last_message\". Note that this parameter affects the response shape. If it is set to `last_message`, the response will include the last message from each chat, while `first_message` will include the first message.", "type": "string", - "enum": ["first_message", "last_message"], + "enum": [ + "first_message", + "last_message" + ], "default": "last_message", "required": false } @@ -15843,12 +23798,17 @@ } ] }, - "\/wpcom\/v2\/odie\/chat\/(?P<bot_id>[a-zA-Z0-9-_]+)\/(?P<chat_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/odie/chat/(?P<bot_id>[a-zA-Z0-9-_]+)/(?P<chat_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "bot_id": { "description": "The bot id to get the chat for.", @@ -15880,7 +23840,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "bot_id": { "description": "The bot id to chat with.", @@ -15896,7 +23858,10 @@ "description": "Whether to mark this as a navigation message.", "type": "string", "default": "user", - "enum": ["user", "navigation"], + "enum": [ + "user", + "navigation" + ], "required": false }, "message": { @@ -15913,12 +23878,16 @@ } ] }, - "\/wpcom\/v2\/odie\/assistant\/performance-profiler": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/odie/assistant/performance-profiler": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "is_wpcom": { "description": "Whether the site is hosted on WP.com.", @@ -15946,17 +23915,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/odie\/assistant\/performance-profiler" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/odie/assistant/performance-profiler" } ] } }, - "\/wpcom\/v2\/odie\/chat\/(?P<bot_id>[a-zA-Z0-9-_]+)\/(?P<chat_id>[a-zA-Z0-9-]+)\/(?P<message_id>\\d+)\/feedback": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/odie/chat/(?P<bot_id>[a-zA-Z0-9-_]+)/(?P<chat_id>[a-zA-Z0-9-]+)/(?P<message_id>\\d+)/feedback": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "bot_id": { "description": "The bot id to chat with.", @@ -15982,12 +23955,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/odie-search\/search\/(?P<bot_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/odie-search/search/(?P<bot_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "bot_id": { "description": "The bot id to get the configuration for.", @@ -16003,64 +23980,116 @@ } ] }, - "\/wpcom\/v2\/oembed-proxy": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/oembed-proxy": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/oembed-proxy" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/oembed-proxy" } ] } }, - "\/wpcom\/v2\/oembed-proxy\/instagram": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/oembed-proxy/instagram": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/oembed-proxy\/instagram" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/oembed-proxy/instagram" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/onboarding-customization": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/onboarding-customization": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "settings": { "type": "string", "required": false }, - "pattern": { "type": "string", "required": false }, - "enable_features_for_goals": { "type": "string", "required": false } + "settings": { + "type": "string", + "required": false + }, + "pattern": { + "type": "string", + "required": false + }, + "enable_features_for_goals": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/onboarding\/domains\/categories": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/onboarding/domains/categories": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/onboarding\/domains\/categories" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/onboarding/domains/categories" } ] } }, - "\/wpcom\/v2\/pagespeed": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/pagespeed": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "url": { "default": false, "type": "text", "required": true }, + "url": { + "default": false, + "type": "text", + "required": true + }, "strategy": { "default": "mobile", "type": "text", @@ -16072,39 +24101,78 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pagespeed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pagespeed" } ] } }, - "\/wpcom\/v2\/pending-blog-subscriptions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pending-blog-subscriptions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pending-blog-subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pending-blog-subscriptions" } ] } }, - "\/wpcom\/v2\/pending-blog-subscriptions\/(?P<key>[\\w-]+)\/confirm": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/pending-blog-subscriptions/(?P<key>[\\w-]+)/confirm": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/pending-blog-subscriptions\/(?P<subscription_id>[\\w-]+)\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/pending-blog-subscriptions/(?P<subscription_id>[\\w-]+)/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/photodna": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/photodna": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "report": { "type": "string", @@ -16117,127 +24185,220 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/photodna" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/photodna" } ] } }, - "\/wpcom\/v2\/pigeon\/subscribe": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/pigeon/subscribe": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "nonce": { "type": "string", "required": true }, + "nonce": { + "type": "string", + "required": true + }, "email_address": { "type": "string", "format": "email", "required": true }, - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": false }, - "mailing_list_category": { "type": "string", "required": true }, - "from_path": { "type": "string", "required": true }, - "from_href": { "type": "string", "required": true }, - "redirect_to": { "type": "string", "required": false }, - "question": { "type": "string", "required": false }, - "question_response": { "type": "string", "required": false } + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": false + }, + "mailing_list_category": { + "type": "string", + "required": true + }, + "from_path": { + "type": "string", + "required": true + }, + "from_href": { + "type": "string", + "required": true + }, + "redirect_to": { + "type": "string", + "required": false + }, + "question": { + "type": "string", + "required": false + }, + "question_response": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pigeon\/subscribe" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pigeon/subscribe" } ] } }, - "\/wpcom\/v2\/pigeon\/confirm": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/pigeon/confirm": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "nonce": { "type": "string", "required": true }, + "nonce": { + "type": "string", + "required": true + }, "email_address": { "type": "string", "format": "email", "required": true }, - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": false }, - "mailing_list_category": { "type": "string", "required": true }, - "from_path": { "type": "string", "required": true }, - "from_href": { "type": "string", "required": true }, - "redirect_to": { "type": "string", "required": false }, - "question": { "type": "string", "required": false }, - "question_response": { "type": "string", "required": false } + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": false + }, + "mailing_list_category": { + "type": "string", + "required": true + }, + "from_path": { + "type": "string", + "required": true + }, + "from_href": { + "type": "string", + "required": true + }, + "redirect_to": { + "type": "string", + "required": false + }, + "question": { + "type": "string", + "required": false + }, + "question_response": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pigeon\/confirm" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pigeon/confirm" } ] } }, - "\/wpcom\/v2\/plans\/details": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/plans/details": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "locale": { "default": "en", "required": false } } + "methods": [ + "GET" + ], + "args": { + "locale": { + "default": "en", + "required": false + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/plans\/details" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/plans/details" } ] } }, - "\/wpcom\/v2\/plans\/mobile": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/plans/mobile": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "locale": { "default": "en", "required": false } } + "methods": [ + "GET" + ], + "args": { + "locale": { + "default": "en", + "required": false + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/plans\/mobile" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/plans/mobile" } ] } }, - "\/wpcom\/v2\/plugins\/featured": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/plugins/featured": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/plugins\/featured" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/plugins/featured" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/plugins\/recommended": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/plugins/recommended": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "limit": { "type": "integer", @@ -16249,29 +24410,59 @@ } ] }, - "\/wpcom\/v2\/post-comment-subscriptions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/post-comment-subscriptions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/post-comment-subscriptions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/post-comment-subscriptions" } ] } }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P<subscription_id>[\\w-]+)\/confirm": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/post-comment-subscriptions/(?P<subscription_id>[\\w-]+)/confirm": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P<subscription_id>[\\w-]+)\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/post-comment-subscriptions/(?P<subscription_id>[\\w-]+)/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "send_comments": { "description": "Whether to send comments for this subscription", @@ -16282,17 +24473,34 @@ } ] }, - "\/wpcom\/v2\/post-comment-subscriptions\/(?P<subscription_id>[\\w-]+)\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/post-comment-subscriptions/(?P<subscription_id>[\\w-]+)/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/presales\/chat": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/presales/chat": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "group": { "type": "string", @@ -16305,155 +24513,265 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/presales\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/presales/chat" } ] } }, - "\/wpcom\/v2\/send\/pressable-hubspot-form\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/send/pressable-hubspot-form/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "first_name": { "type": "string", "required": true }, - "last_name": { "type": "string", "required": true }, - "email": { "type": "string", "required": true }, - "host_name": { "type": "string", "required": true } + "first_name": { + "type": "string", + "required": true + }, + "last_name": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + }, + "host_name": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/send\/pressable-hubspot-form\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/send/pressable-hubspot-form/new" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/currencies": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pricing-dashboard/currencies": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pricing-dashboard\/currencies" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pricing-dashboard/currencies" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/prices": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/pricing-dashboard/prices": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "products": { "description": "The product IDs to fetch prices for. Can be a comma-separated string or an array of integers.", "oneOf": [ - { "type": "array", "items": { "type": "integer" } }, - { "type": "string" } + { + "type": "array", + "items": { + "type": "integer" + } + }, + { + "type": "string" + } ], "required": true }, "env": { "type": "string", - "enum": ["staging", "production"], + "enum": [ + "staging", + "production" + ], "required": true } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "p2_url": { "type": "string", "format": "uri", "required": true }, - "data": { "type": "object", "required": true }, - "dry_run": { "type": "boolean", "required": false } + "p2_url": { + "type": "string", + "format": "uri", + "required": true + }, + "data": { + "type": "object", + "required": true + }, + "dry_run": { + "type": "boolean", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pricing-dashboard\/prices" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pricing-dashboard/prices" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/staging-prod-diff": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pricing-dashboard/staging-prod-diff": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pricing-dashboard\/staging-prod-diff" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pricing-dashboard/staging-prod-diff" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/prod-sync": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/pricing-dashboard/prod-sync": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pricing-dashboard\/prod-sync" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pricing-dashboard/prod-sync" } ] } }, - "\/wpcom\/v2\/pricing-dashboard\/jetpack-products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/pricing-dashboard/jetpack-products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/pricing-dashboard\/jetpack-products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/pricing-dashboard/jetpack-products" } ] } }, - "\/wpcom\/v2\/privacy-policy": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/privacy-policy": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/privacy-policy" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/privacy-policy" } ] } }, - "\/wpcom\/v2\/privacy-policy\/(?P<entity>[a-zA-Z\\-\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/privacy-policy/(?P<entity>[a-zA-Z\\-\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/private-podcasts\/auth": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/private-podcasts/auth": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/private-podcasts\/auth" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/private-podcasts/auth" } ] } }, - "\/wpcom\/v2\/private-podcasts\/token": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/private-podcasts/token": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "code": { "type": "string", @@ -16466,17 +24784,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/private-podcasts\/token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/private-podcasts/token" } ] } }, - "\/wpcom\/v2\/private-podcasts\/feed": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/private-podcasts/feed": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "token": { "type": "string", @@ -16489,17 +24811,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/private-podcasts\/feed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/private-podcasts/feed" } ] } }, - "\/wpcom\/v2\/private-podcasts\/file": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/private-podcasts/file": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "token": { "type": "string", @@ -16517,124 +24843,234 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/private-podcasts\/file" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/private-podcasts/file" } ] } }, - "\/wpcom\/v2\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "locale": { "default": "en", "required": false }, - "type": { "default": "", "required": false } + "locale": { + "default": "en", + "required": false + }, + "type": { + "default": "", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/products" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/products" } ] } }, - "\/wpcom\/v2\/auth\/qr-code\/validate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/auth/qr-code/validate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "token": { "default": "", "type": "string", "required": false }, - "data": { "default": "", "type": "string", "required": false } + "token": { + "default": "", + "type": "string", + "required": false + }, + "data": { + "default": "", + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/auth\/qr-code\/validate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/auth/qr-code/validate" } ] } }, - "\/wpcom\/v2\/auth\/qr-code\/authenticate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/auth/qr-code/authenticate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "token": { "default": "", "type": "string", "required": false }, - "data": { "default": "", "type": "string", "required": false } + "token": { + "default": "", + "type": "string", + "required": false + }, + "data": { + "default": "", + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/auth\/qr-code\/authenticate" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/auth/qr-code/authenticate" } ] } }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/posts\/(?P<post_id>\\d+)\/follow": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/posts/(?P<post_id>\\d+)/follow": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/posts\/(?P<post_id>\\d+)\/mute": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/posts/(?P<post_id>\\d+)/mute": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/interests": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/read/interests": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/read\/interests" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/read/interests" } ] } }, - "\/wpcom\/v2\/read\/lists\/(?P<list_id>\\d+)\/export": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/read/lists/(?P<list_id>\\d+)/export": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/notification-subscriptions\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/notification-subscriptions/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/notification-subscriptions\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/notification-subscriptions/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/subscription-details": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/subscription-details": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/subscriptions\/(?P<subscription_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/read/subscriptions/(?P<subscription_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/tags\/(?P<tag>[^\\\/]+)\/cards": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/read/tags/(?P<tag>[^\\/]+)/cards": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "before": { "description": "Limit response to posts published before a given ISO8601 compliant date.", @@ -16700,12 +25136,16 @@ } ] }, - "\/wpcom\/v2\/read\/tags\/cards": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/read/tags/cards": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "before": { "description": "Limit response to posts published before a given ISO8601 compliant date.", @@ -16768,17 +25208,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/read\/tags\/cards" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/read/tags/cards" } ] } }, - "\/wpcom\/v2\/read\/tags\/(?P<tag>[^\\\/]+)\/posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/read/tags/(?P<tag>[^\\/]+)/posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "before": { "description": "Limit response to posts published before a given ISO8601 compliant date.", @@ -16830,12 +25274,16 @@ } ] }, - "\/wpcom\/v2\/read\/tags\/posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/read/tags/posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "before": { "description": "Limit response to posts published before a given ISO8601 compliant date.", @@ -16889,17 +25337,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/read\/tags\/posts" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/read/tags/posts" } ] } }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/posts\/(?P<post_id>\\d+)\/tags\/add": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/posts/(?P<post_id>\\d+)/tags/add": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "tags": { "description": "Tags to save.", @@ -16910,25 +25362,53 @@ } ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/posts\/(?P<post_id>\\d+)\/remember": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/posts/(?P<post_id>\\d+)/remember": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/read\/sites\/(?P<blog_id>\\d+)\/posts\/(?P<post_id>\\d+)\/forget": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/read/sites/(?P<blog_id>\\d+)/posts/(?P<post_id>\\d+)/forget": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/seen-posts\/seen\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/seen-posts/seen/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "feed_id": { "type": "integer", "required": true }, - "feed_item_ids": { "type": "array", "required": true }, + "feed_id": { + "type": "integer", + "required": true + }, + "feed_item_ids": { + "type": "array", + "required": true + }, "source": { "type": "string", "enum": [ @@ -16950,20 +25430,30 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/seen-posts/seen/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "feed_id": { "type": "integer", "required": true }, - "feed_item_ids": { "type": "array", "required": true }, + "feed_id": { + "type": "integer", + "required": true + }, + "feed_item_ids": { + "type": "array", + "required": true + }, "source": { "type": "string", "enum": [ @@ -16985,19 +25475,26 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/delete" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/all\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/seen-posts/seen/all/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "feed_ids": { "type": "array", "required": true }, + "feed_ids": { + "type": "array", + "required": true + }, "source": { "type": "string", "enum": [ @@ -17019,20 +25516,30 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/all\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/all/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/blog\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/seen-posts/seen/blog/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "blog_id": { "type": "integer", "required": true }, - "post_ids": { "type": "array", "required": true }, + "blog_id": { + "type": "integer", + "required": true + }, + "post_ids": { + "type": "array", + "required": true + }, "source": { "type": "string", "enum": [ @@ -17054,20 +25561,30 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/blog\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/blog/new" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/blog\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/seen-posts/seen/blog/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "blog_id": { "type": "integer", "required": true }, - "post_ids": { "type": "array", "required": true }, + "blog_id": { + "type": "integer", + "required": true + }, + "post_ids": { + "type": "array", + "required": true + }, "source": { "type": "string", "enum": [ @@ -17089,48 +25606,85 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/blog\/delete" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/blog/delete" } ] } }, - "\/wpcom\/v2\/seen-posts\/seen\/pixel.gif": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/seen-posts/seen/pixel.gif": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/seen\/pixel.gif" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/seen/pixel.gif" } ] } }, - "\/wpcom\/v2\/seen-posts\/unseen\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/seen-posts/unseen/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/seen-posts\/unseen\/status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/seen-posts/unseen/status" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/answer": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/segmentation-survey/answer": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "blog_id": { "type": "integer", "required": false }, - "survey_key": { "type": "string", "required": true }, - "question_key": { "type": "string", "required": true }, + "blog_id": { + "type": "integer", + "required": false + }, + "survey_key": { + "type": "string", + "required": true + }, + "question_key": { + "type": "string", + "required": true + }, "answers": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true } } @@ -17139,79 +25693,146 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/segmentation-survey\/answer" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/segmentation-survey/answer" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/answers": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/segmentation-survey/answers": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "survey_key": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "survey_key": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/segmentation-survey\/answers" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/segmentation-survey/answers" } ] } }, - "\/wpcom\/v2\/segmentation-survey\/(?P<survey_key>[\\w.:-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/segmentation-survey/(?P<survey_key>[\\w.:-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "survey_key": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "survey_key": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/segmentation-survey\/answers\/link": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/segmentation-survey/answers/link": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "blog_id": { "type": "integer", "required": true }, - "survey_key": { "type": "string", "required": true } + "blog_id": { + "type": "integer", + "required": true + }, + "survey_key": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/segmentation-survey\/answers\/link" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/segmentation-survey/answers/link" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/send-email-continue-site-build": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/send-email-continue-site-build": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/simple-payments\/paypal\/payment": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/simple-payments/paypal/payment": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/simple-payments\/paypal\/(?P<paymentId>[A-Z\\-\\d]+)\/execute": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/simple-payments/paypal/(?P<paymentId>[A-Z\\-\\d]+)/execute": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-assembler": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-assembler": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "templates": { "type": "array", @@ -17272,7 +25893,10 @@ "description": "ID of global styles config.", "type": "string" }, - "styles": { "description": "Global styles.", "type": "object" }, + "styles": { + "description": "Global styles.", + "type": "object" + }, "settings": { "description": "Global settings.", "type": "object" @@ -17302,17 +25926,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/atomic\/transfer-ssh-migration": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/atomic/transfer-ssh-migration": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/atomic\/transfer-with-software": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/atomic/transfer-with-software": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "plugin_slug": { "type": "string", @@ -17345,12 +25982,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "locale": { "type": "string", @@ -17365,7 +26006,10 @@ }, "migration_type": { "type": "string", - "enum": ["credentials", "backup"], + "enum": [ + "credentials", + "backup" + ], "description": "The type of migration to perform. Can be either \"credentials\" or \"backup\".", "required": true }, @@ -17389,12 +26033,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration\/application-passwords": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration/application-passwords": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "from_url": { "type": "string", @@ -17415,16 +26063,22 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration\/wpcom-survey": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration/wpcom-survey": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "intents": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "description": "An array of user intents. Must contain at least one valid intent.", "required": true }, @@ -17437,12 +26091,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration\/application-passwords\/setup": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration/application-passwords/setup": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source": { "type": "string", @@ -17453,22 +26111,44 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration\/cancel-migration": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration/cancel-migration": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/automated-migration\/find-ticket": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/automated-migration/find-ticket": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/coming-soon": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/coming-soon": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "is_coming_soon": { "type": "int", @@ -17479,28 +26159,60 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/copy-from-site": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/copy-from-site": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "source_blog_id": { "type": "integer", "required": true } } + "methods": [ + "POST" + ], + "args": { + "source_blog_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/current": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles-variation/current": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/site-accent-color": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles-variation/site-accent-color": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "color": { "description": "The new accent color to set. Hex value with hash included.", @@ -17512,25 +26224,38 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/theme": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles-variation/theme": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/font-pairings": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles-variation/font-pairings": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -17538,20 +26263,24 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles-variation\/color-palettes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles-variation/color-palettes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false }, "base_variation_stylesheet": { - "description": "Theme stylesheet, e.g.: pub\/zoologist", + "description": "Theme stylesheet, e.g.: pub/zoologist", "type": "string", "required": false } @@ -17559,17 +26288,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/launch": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/launch": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/migrations\/from-source\/(?P<source_blog>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/migrations/from-source/(?P<source_blog>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "source_blog": { "description": "Blog ID or site slug of WordPress.com site we're migrating from", @@ -17579,12 +26321,16 @@ } ] }, - "\/wpcom\/v2\/migrations\/from-source\/(?P<source_blog_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/migrations/from-source/(?P<source_blog_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_blog_id": { "description": "Blog ID of WordPress.com site we're migrating from", @@ -17598,12 +26344,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/migrate-from\/(?P<source_blog_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/migrate-from/(?P<source_blog_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_blog_id": { "description": "Blog ID of WordPress.com site we're migrating from", @@ -17613,22 +26363,44 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/reset-migration": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/reset-migration": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/migration-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/migration-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/migration-enabled\/(?P<source_blog>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/migration-enabled/(?P<source_blog>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "source_blog": { "description": "Blog ID of the site site we're migrating from", @@ -17638,12 +26410,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/migrate-provision\/(?P<source_blog_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/migrate-provision/(?P<source_blog_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "source_blog_id": { "description": "Blog ID of WordPress.com site we're migrating from", @@ -17653,20 +26429,38 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/migration-flow": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/migration-flow": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ - { "methods": ["POST"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "POST" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-migration-status-sticker": { - "namespace": "wpcom\/v2", - "methods": ["POST", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-migration-status-sticker": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "status_sticker": { "type": "string", @@ -17689,60 +26483,113 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "type": { "type": "string", "enum": ["pending"], "required": true } + "type": { + "type": "string", + "enum": [ + "pending" + ], + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-owner-transfer": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-owner-transfer": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "new_site_owner": { "type": "string", "required": true }, - "context": { "type": "string", "required": false } + "new_site_owner": { + "type": "string", + "required": true + }, + "context": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-owner-transfer\/eligibility": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-owner-transfer/eligibility": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "new_site_owner": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "new_site_owner": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-owner-transfer\/confirm": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-owner-transfer/confirm": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "hash": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "hash": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/preview-links": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/preview-links": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/preview-links\/(?P<code>.+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/preview-links/(?P<code>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "code": { "description": "Preview link's code.", @@ -17753,56 +26600,106 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/reset-site": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/reset-site": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/reset-site\/content-summary": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/reset-site/content-summary": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/reset-site\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/reset-site/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/restore-site": { - "namespace": "wpcom\/v2", - "methods": ["PUT"], + "/wpcom/v2/restore-site": { + "namespace": "wpcom/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], - "args": { "site_id": { "type": "integer", "required": true } } + "methods": [ + "PUT" + ], + "args": { + "site_id": { + "type": "integer", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/restore-site" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/restore-site" } ] } }, - "\/wpcom\/v2\/segments": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/segments": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/segments" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/segments" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -17812,7 +26709,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "wpcom_site": { "type": "string | integer", @@ -17823,52 +26722,90 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/(?P<staging_site_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/(?P<staging_site_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "wpcom_site": { "type": "string | integer", "description": "A domain or blog ID.", "required": true }, - "staging_site_id": { "type": "integer", "required": true } + "staging_site_id": { + "type": "integer", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/validate-quota": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/validate-quota": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/production-site-details": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/production-site-details": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/push-to-staging\/(?P<staging_site_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/push-to-staging/(?P<staging_site_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "staging_site_id": { "type": "integer", "required": true }, + "staging_site_id": { + "type": "integer", + "required": true + }, "options": { "type": "object", "properties": { - "types": { "type": "string" }, + "types": { + "type": "string" + }, "include_paths": { "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } }, "exclude_paths": { "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } } }, "required": false @@ -17877,28 +26814,49 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/pull-from-staging\/(?P<staging_site_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/pull-from-staging/(?P<staging_site_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "staging_site_id": { "type": "integer", "required": true }, - "allow_woo_sync": { "type": "boolean", "required": false }, + "staging_site_id": { + "type": "integer", + "required": true + }, + "allow_woo_sync": { + "type": "boolean", + "required": false + }, "options": { - "type": ["array", "object"], + "type": [ + "array", + "object" + ], "maxItems": 6, - "items": { "type": "string" }, + "items": { + "type": "string" + }, "properties": { - "types": { "type": "string" }, + "types": { + "type": "string" + }, "include_paths": { "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } }, "exclude_paths": { "type": "array", - "items": { "type": "string" } + "items": { + "type": "string" + } } }, "required": false @@ -17907,21 +26865,36 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/staging-site\/sync-state": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/staging-site/sync-state": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/site-suggestions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/site-suggestions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "dictionary": { "type": "string", - "enum": ["hosting"], + "enum": [ + "hosting" + ], "default": null, "required": false } @@ -17931,207 +26904,567 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-suggestions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/site-suggestions" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "action_type": { "required": true }, - "args": { "required": false } + "action_type": { + "required": true + }, + "args": { + "required": false + } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "_envelope": { "default": null, "required": false }, - "action": { "default": false, "required": false }, - "after": { "default": null, "required": false }, - "before": { "default": null, "required": false }, - "by": { "default": false, "required": false }, - "date_range": { "default": "6 months ago", "required": false }, - "group": { "default": false, "required": false }, - "locale": { "default": "en", "required": false }, - "name": { "default": false, "required": false }, - "not_group": { "default": false, "required": false }, - "number": { "default": 20, "required": false }, - "on": { "default": null, "required": false }, - "page": { "default": 1, "required": false }, - "search_after": { "default": null, "required": false }, - "sort_order": { "default": "desc", "required": false }, - "aggregate": { "default": false, "required": false }, - "aggregate_show": { "default": 10, "required": false }, - "text_search": { "default": null, "required": false } + "_envelope": { + "default": null, + "required": false + }, + "action": { + "default": false, + "required": false + }, + "after": { + "default": null, + "required": false + }, + "before": { + "default": null, + "required": false + }, + "by": { + "default": false, + "required": false + }, + "date_range": { + "default": "6 months ago", + "required": false + }, + "group": { + "default": false, + "required": false + }, + "locale": { + "default": "en", + "required": false + }, + "name": { + "default": false, + "required": false + }, + "not_group": { + "default": false, + "required": false + }, + "number": { + "default": 20, + "required": false + }, + "on": { + "default": null, + "required": false + }, + "page": { + "default": 1, + "required": false + }, + "search_after": { + "default": null, + "required": false + }, + "sort_order": { + "default": "desc", + "required": false + }, + "aggregate": { + "default": false, + "required": false + }, + "aggregate_show": { + "default": 10, + "required": false + }, + "text_search": { + "default": null, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/rewindable": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/rewindable": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "_envelope": { "default": null, "required": false }, - "action": { "default": false, "required": false }, - "after": { "default": null, "required": false }, - "before": { "default": null, "required": false }, - "by": { "default": false, "required": false }, - "date_range": { "default": "6 months ago", "required": false }, - "group": { "default": false, "required": false }, - "locale": { "default": "en", "required": false }, - "name": { "default": false, "required": false }, - "not_group": { "default": false, "required": false }, - "number": { "default": 20, "required": false }, - "on": { "default": null, "required": false }, - "page": { "default": 1, "required": false }, - "search_after": { "default": null, "required": false }, - "sort_order": { "default": "desc", "required": false }, - "aggregate": { "default": false, "required": false }, - "aggregate_show": { "default": 10, "required": false }, - "text_search": { "default": null, "required": false } + "_envelope": { + "default": null, + "required": false + }, + "action": { + "default": false, + "required": false + }, + "after": { + "default": null, + "required": false + }, + "before": { + "default": null, + "required": false + }, + "by": { + "default": false, + "required": false + }, + "date_range": { + "default": "6 months ago", + "required": false + }, + "group": { + "default": false, + "required": false + }, + "locale": { + "default": "en", + "required": false + }, + "name": { + "default": false, + "required": false + }, + "not_group": { + "default": false, + "required": false + }, + "number": { + "default": 20, + "required": false + }, + "on": { + "default": null, + "required": false + }, + "page": { + "default": 1, + "required": false + }, + "search_after": { + "default": null, + "required": false + }, + "sort_order": { + "default": "desc", + "required": false + }, + "aggregate": { + "default": false, + "required": false + }, + "aggregate_show": { + "default": 10, + "required": false + }, + "text_search": { + "default": null, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "_envelope": { "default": null, "required": false }, - "action": { "default": false, "required": false }, - "after": { "default": null, "required": false }, - "before": { "default": null, "required": false }, - "by": { "default": false, "required": false }, - "date_range": { "default": "6 months ago", "required": false }, - "group": { "default": false, "required": false }, - "locale": { "default": "en", "required": false }, - "name": { "default": false, "required": false }, - "not_group": { "default": false, "required": false }, - "number": { "default": 20, "required": false }, - "on": { "default": null, "required": false }, - "page": { "default": 1, "required": false }, - "search_after": { "default": null, "required": false }, - "sort_order": { "default": "desc", "required": false }, - "aggregate": { "default": false, "required": false }, - "aggregate_show": { "default": 10, "required": false }, - "text_search": { "default": null, "required": false } + "_envelope": { + "default": null, + "required": false + }, + "action": { + "default": false, + "required": false + }, + "after": { + "default": null, + "required": false + }, + "before": { + "default": null, + "required": false + }, + "by": { + "default": false, + "required": false + }, + "date_range": { + "default": "6 months ago", + "required": false + }, + "group": { + "default": false, + "required": false + }, + "locale": { + "default": "en", + "required": false + }, + "name": { + "default": false, + "required": false + }, + "not_group": { + "default": false, + "required": false + }, + "number": { + "default": 20, + "required": false + }, + "on": { + "default": null, + "required": false + }, + "page": { + "default": 1, + "required": false + }, + "search_after": { + "default": null, + "required": false + }, + "sort_order": { + "default": "desc", + "required": false + }, + "aggregate": { + "default": false, + "required": false + }, + "aggregate_show": { + "default": 10, + "required": false + }, + "text_search": { + "default": null, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/count\/group": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/count/group": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "_envelope": { "default": null, "required": false }, - "action": { "default": false, "required": false }, - "after": { "default": null, "required": false }, - "before": { "default": null, "required": false }, - "by": { "default": false, "required": false }, - "date_range": { "default": "6 months ago", "required": false }, - "group": { "default": false, "required": false }, - "locale": { "default": "en", "required": false }, - "name": { "default": false, "required": false }, - "not_group": { "default": false, "required": false }, - "number": { "default": 20, "required": false }, - "on": { "default": null, "required": false }, - "page": { "default": 1, "required": false }, - "search_after": { "default": null, "required": false }, - "sort_order": { "default": "desc", "required": false }, - "aggregate": { "default": false, "required": false }, - "aggregate_show": { "default": 10, "required": false }, - "text_search": { "default": null, "required": false } + "_envelope": { + "default": null, + "required": false + }, + "action": { + "default": false, + "required": false + }, + "after": { + "default": null, + "required": false + }, + "before": { + "default": null, + "required": false + }, + "by": { + "default": false, + "required": false + }, + "date_range": { + "default": "6 months ago", + "required": false + }, + "group": { + "default": false, + "required": false + }, + "locale": { + "default": "en", + "required": false + }, + "name": { + "default": false, + "required": false + }, + "not_group": { + "default": false, + "required": false + }, + "number": { + "default": 20, + "required": false + }, + "on": { + "default": null, + "required": false + }, + "page": { + "default": 1, + "required": false + }, + "search_after": { + "default": null, + "required": false + }, + "sort_order": { + "default": "desc", + "required": false + }, + "aggregate": { + "default": false, + "required": false + }, + "aggregate_show": { + "default": 10, + "required": false + }, + "text_search": { + "default": null, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/rewindable\/count\/group": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/rewindable/count/group": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "_envelope": { "default": null, "required": false }, - "action": { "default": false, "required": false }, - "after": { "default": null, "required": false }, - "before": { "default": null, "required": false }, - "by": { "default": false, "required": false }, - "date_range": { "default": "6 months ago", "required": false }, - "group": { "default": false, "required": false }, - "locale": { "default": "en", "required": false }, - "name": { "default": false, "required": false }, - "not_group": { "default": false, "required": false }, - "number": { "default": 20, "required": false }, - "on": { "default": null, "required": false }, - "page": { "default": 1, "required": false }, - "search_after": { "default": null, "required": false }, - "sort_order": { "default": "desc", "required": false }, - "aggregate": { "default": false, "required": false }, - "aggregate_show": { "default": 10, "required": false }, - "text_search": { "default": null, "required": false } + "_envelope": { + "default": null, + "required": false + }, + "action": { + "default": false, + "required": false + }, + "after": { + "default": null, + "required": false + }, + "before": { + "default": null, + "required": false + }, + "by": { + "default": false, + "required": false + }, + "date_range": { + "default": "6 months ago", + "required": false + }, + "group": { + "default": false, + "required": false + }, + "locale": { + "default": "en", + "required": false + }, + "name": { + "default": false, + "required": false + }, + "not_group": { + "default": false, + "required": false + }, + "number": { + "default": 20, + "required": false + }, + "on": { + "default": null, + "required": false + }, + "page": { + "default": 1, + "required": false + }, + "search_after": { + "default": null, + "required": false + }, + "sort_order": { + "default": "desc", + "required": false + }, + "aggregate": { + "default": false, + "required": false + }, + "aggregate_show": { + "default": 10, + "required": false + }, + "text_search": { + "default": null, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/(?P<rewind_id>[\\d.]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/(?P<rewind_id>[\\d.]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/activity\/(?P<rewind_id>[\\d.]+)\/share": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/activity/(?P<rewind_id>[\\d.]+)/share": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "email": { "type": "string", "format": "email", "required": true } + "email": { + "type": "string", + "format": "email", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/shares-count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/shares-count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/alerts": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/alerts": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "type": { "type": "string", "required": true }, - "slug": { "type": "string", "required": false }, - "version": { "type": "string", "required": false } + "type": { + "type": "string", + "required": true + }, + "slug": { + "type": "string", + "required": false + }, + "version": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/alerts\/(?P<id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/alerts/(?P<id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "ignore": { "type": "boolean", @@ -18143,43 +27476,66 @@ "default": false, "required": false }, - "fix": { "type": "boolean", "default": false, "required": false } + "fix": { + "type": "boolean", + "default": false, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/alerts\/fix": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/alerts/fix": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "threat_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "threat_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/backup\/retention\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/backup/retention/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "retention_days": { "type": "integer", @@ -18190,141 +27546,316 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/commercial-classification": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/commercial-classification": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/dashboard\/cards": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/dashboard/cards": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/dashboard\/cards-data": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/dashboard/cards-data": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "cards": { "type": "string", "description": "Dashboard cards as a comma delimited string", "required": true }, - "device_id": { "type": "string", "required": false }, - "platform": { "type": "string", "required": false }, - "build_number": { "type": "string", "required": false }, - "marketing_version": { "type": "string", "required": false }, - "identifier": { "type": "string", "required": false }, - "os_version": { "type": "string", "required": false } + "device_id": { + "type": "string", + "required": false + }, + "platform": { + "type": "string", + "required": false + }, + "build_number": { + "type": "string", + "required": false + }, + "marketing_version": { + "type": "string", + "required": false + }, + "identifier": { + "type": "string", + "required": false + }, + "os_version": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-contributors": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-contributors": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-contributors\/add": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-contributors/add": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "user_id": { "type": "integer", "required": true } } + "methods": [ + "POST" + ], + "args": { + "user_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-contributors\/remove": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-contributors/remove": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "user_id": { "type": "integer", "required": true } } + "methods": [ + "POST" + ], + "args": { + "user_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-services": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-services": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "type": { "type": "string", "required": false } } + "methods": [ + "GET" + ], + "args": { + "type": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-goals": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-goals": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], - "args": { "site_goals": { "type": "array", "required": true } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "site_goals": { + "type": "array", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/google-drive\/connection": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/google-drive/connection": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/google-drive\/sheets": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/google-drive/sheets": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "rows": { "type": "array", "required": false }, - "title": { "type": "string", "required": false } + "rows": { + "type": "array", + "required": false + }, + "title": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gutenberg": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/gutenberg": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "editor": { "type": "string", "required": true }, - "platform": { "type": "string", "required": true } + "editor": { + "type": "string", + "required": true + }, + "platform": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/gutenberg": { - "namespace": "wpcom\/v3", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com/gutenberg": { + "namespace": "wpcom/v3", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "editor": { "type": "string", "required": true }, - "platform": { "type": "string", "required": true } + "editor": { + "type": "string", + "required": true + }, + "platform": { + "type": "string", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-has-never-published-post": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-has-never-published-post": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "include_pages": { "type": "boolean", @@ -18336,342 +27867,715 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hosting-provider": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hosting-provider": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram\/(?P<token_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram/(?P<token_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "count": { "type": "integer", "minimum": 1, "required": false }, - "token_id": { "type": "integer", "minimum": 1, "required": false } + "count": { + "type": "integer", + "minimum": 1, + "required": false + }, + "token_id": { + "type": "integer", + "minimum": 1, + "required": false + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "token_id": { "type": "integer", "minimum": 1, "required": false } + "token_id": { + "type": "integer", + "minimum": 1, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram\/(?P<token_id>\\d+)\/check-token": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram/(?P<token_id>\\d+)/check-token": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram\/(?P<token_id>\\d+)\/check-legacy": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram/(?P<token_id>\\d+)/check-legacy": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "token_id": { "type": "integer", "minimum": 1, "required": false } + "token_id": { + "type": "integer", + "minimum": 1, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-intent": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-intent": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "site_intent": { "type": "string", "required": true } } + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "site_intent": { + "type": "string", + "required": true + } + } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-layouts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "supported_blocks": { + "required": false + }, + "exclude": { + "required": false + }, + "preview_width": { + "required": false + }, + "preview_height": { + "required": false + }, + "scale": { + "default": 1, + "required": false + }, + "is_beta": { + "default": false, + "required": false + }, + "type": { + "required": false + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet/add-upgrade": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/nudge/click": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": { + "nudge_name": { + "required": true + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-type": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "site_type": { + "type": "string", + "required": true + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/site-vertical": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "site_vertical": { + "type": "string", + "required": true + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/user-type": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "site_user_type": { + "type": "string", + "required": true + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/post-counts/(?P<type>[\\w-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "author": { + "type": "integer", + "default": 0, + "description": "author ID to filter post ", + "required": false + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/posts/(?P<postId>\\d+)/map-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "latitude": { + "type": "float", + "required": true + }, + "longitude": { + "type": "float", + "required": true + } + } + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-layouts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/posts/map-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "supported_blocks": { "required": false }, - "exclude": { "required": false }, - "preview_width": { "required": false }, - "preview_height": { "required": false }, - "scale": { "default": 1, "required": false }, - "is_beta": { "default": false, "required": false }, - "type": { "required": false } + "latitude": { + "type": "float", + "required": true + }, + "longitude": { + "type": "float", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet\/add-upgrade": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/published-actions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/posts/(?P<postId>\\d+)/publicize/published-actions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/nudge\/click": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/abspath": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["POST"], "args": { "nudge_name": { "required": true } } } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-type": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/(?P<backup_id>\\d+)/file/(?P<manifest_path>\\S+)/url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "site_type": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "backup_id": { + "required": true + }, + "manifest_path": { + "type": "string", + "required": true + }, + "disposition": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/site-vertical": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/(?P<backup_id>\\d+)/file/(?P<manifest_path>\\S+)/stream": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "site_vertical": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "backup_id": { + "required": true + }, + "manifest_path": { + "type": "string", + "required": true + }, + "token": { + "type": "string", + "required": true + }, + "disposition": { + "type": "string", + "required": false + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/user-type": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/(?P<backup_id>\\d+)/extension/(?P<extension_type>\\S+)/url": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], - "args": { "site_user_type": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "backup_id": { + "required": true + }, + "extension_type": { + "type": "string", + "required": true + }, + "extension_slug": { + "type": "string", + "required": true + }, + "extension_version": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/post-counts\/(?P<type>[\\w-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/(?P<backup_id>\\d+)/extension/(?P<extension_type>\\S+)/stream": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "author": { - "type": "integer", - "default": 0, - "description": "author ID to filter post ", - "required": false + "backup_id": { + "required": true + }, + "extension_type": { + "type": "string", + "required": true + }, + "extension_slug": { + "type": "string", + "required": true + }, + "extension_version": { + "type": "string", + "required": true + }, + "token": { + "type": "string", + "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<postId>\\d+)\/map-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/filtered/prepare": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "latitude": { "type": "float", "required": true }, - "longitude": { "type": "float", "required": true } + "backup_id": { + "type": "int", + "required": true + }, + "manifest_filter": { + "type": "string", + "required": true + }, + "data_type": { + "type": "int", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/map-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/filtered/status": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "latitude": { "type": "float", "required": true }, - "longitude": { "type": "float", "required": true } + "key": { + "type": "string", + "required": true + }, + "data_type": { + "type": "int", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/published-actions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<postId>\\d+)\/publicize\/published-actions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/abspath": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/(?P<backup_id>\\d+)\/file\/(?P<manifest_path>\\S+)\/url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/ls": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "backup_id": { "required": true }, - "manifest_path": { "type": "string", "required": true }, - "disposition": { "type": "string", "required": false } + "backup_id": { + "type": "int", + "required": true + }, + "path": { + "type": "string", + "required": false + }, + "extension_version": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/(?P<backup_id>\\d+)\/file\/(?P<manifest_path>\\S+)\/stream": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backup/path-info": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "backup_id": { "required": true }, - "manifest_path": { "type": "string", "required": true }, - "token": { "type": "string", "required": true }, - "disposition": { "type": "string", "required": false } + "backup_id": { + "type": "int", + "required": true + }, + "manifest_path": { + "type": "string", + "required": false + }, + "extension_type": { + "type": "string", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/(?P<backup_id>\\d+)\/extension\/(?P<extension_type>\\S+)\/url": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com/rewind/backups": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "GET" + ], "args": { - "backup_id": { "required": true }, - "extension_type": { "type": "string", "required": true }, - "extension_slug": { "type": "string", "required": true }, - "extension_version": { "type": "string", "required": true } + "number": { + "default": 10, + "required": false + }, + "page": { + "default": 1, + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/(?P<backup_id>\\d+)\/extension\/(?P<extension_type>\\S+)\/stream": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backups": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { - "backup_id": { "required": true }, - "extension_type": { "type": "string", "required": true }, - "extension_slug": { "type": "string", "required": true }, - "extension_version": { "type": "string", "required": true }, - "token": { "type": "string", "required": true } - } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/filtered\/prepare": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/backups/enqueue": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { - "backup_id": { "type": "int", "required": true }, - "manifest_filter": { "type": "string", "required": true }, - "data_type": { "type": "int", "required": true } - } + "methods": [ + "POST" + ], + "args": [] } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/filtered\/status": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/billing/receipts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], - "args": { - "key": { "type": "string", "required": true }, - "data_type": { "type": "int", "required": true } - } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/ls": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/capabilities": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], - "args": { - "backup_id": { "type": "int", "required": true }, - "path": { "type": "string", "required": false }, - "extension_version": { "type": "string", "required": false } - } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backup\/path-info": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/credentials": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["POST"], - "args": { - "backup_id": { "type": "int", "required": true }, - "manifest_path": { "type": "string", "required": false }, - "extension_type": { "type": "string", "required": false } - } + "methods": [ + "GET" + ], + "args": [] } ] }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/rewind\/backups": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/credentials/delete": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "POST" + ], "args": { - "number": { "default": 10, "required": false }, - "page": { "default": 1, "required": false } + "role": { + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backups": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/backups\/enqueue": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/billing\/receipts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/capabilities": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/credentials": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/credentials\/delete": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [ - { "methods": ["POST"], "args": { "role": { "required": true } } } - ] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/credentials\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/credentials/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "credentials": { "type": "object", @@ -18723,25 +28627,54 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/credentials\/test": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/credentials/test": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ - { "methods": ["POST"], "args": { "role": { "required": true } } } + { + "methods": [ + "POST" + ], + "args": { + "role": { + "required": true + } + } + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/downloads": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/downloads": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "rewindId": { "required": false }, - "include_path_list": { "required": false }, - "exclude_path_list": { "required": false }, - "types": { "required": false }, + "rewindId": { + "required": false + }, + "include_path_list": { + "required": false + }, + "exclude_path_list": { + "required": false + }, + "types": { + "required": false + }, "skip_activity_log": { "type": "boolean", "default": false, @@ -18751,13 +28684,31 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/downloads\/(?P<id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/downloads/(?P<id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": { "id": { "required": true } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": { + "id": { + "required": true + } + } + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "dismissed": { "type": "boolean", @@ -18768,48 +28719,111 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/downloads\/(?P<id>\\d+)\/data": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/downloads/(?P<id>\\d+)/data": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "id": { "required": true }, "token": { "required": true } } + "methods": [ + "GET" + ], + "args": { + "id": { + "required": true + }, + "token": { + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/options": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/options": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/policies": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/policies": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/preflight": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/preflight": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/restores": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/restores": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/restores\/(?P<id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/restores/(?P<id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "dismissed": { "type": "boolean", @@ -18820,107 +28834,256 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/scheduled": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/scheduled": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], - "args": { "schedule_hour": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": { + "schedule_hour": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/screenshots": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/screenshots": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": { "period": { "required": false } } } + { + "methods": [ + "GET" + ], + "args": { + "period": { + "required": false + } + } + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/size": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/size": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/staging": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/staging": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/staging\/update": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/staging/update": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "staging": { "type": "boolean", "required": true } } + "methods": [ + "POST" + ], + "args": { + "staging": { + "type": "boolean", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/staging\/list": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/staging/list": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/basic": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/basic": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/rewind\/send-security-notification": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/rewind/send-security-notification": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scan": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scan": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scan\/counts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scan/counts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scan\/history": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scan/history": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "filter": { - "type": ["array", "string"], - "default": ["ignored", "fixed"], + "type": [ + "array", + "string" + ], + "default": [ + "ignored", + "fixed" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scan\/enqueue": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scan/enqueue": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scan\/threat\/(?P<threatId>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scan/threat/(?P<threatId>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scheduled-updates\/notifications": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scheduled-updates/notifications": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "success": { "type": "boolean", @@ -18936,12 +29099,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/scheduled-updates\/verify-path-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/scheduled-updates/verify-path-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "path": { "type": "string", @@ -18952,97 +29119,247 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/theme-setup": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/theme-setup": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/theme-support": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/theme-support": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/transfer": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/transfer": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST", "PUT", "PATCH"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/typekit-fonts\/(?P<kitId>\\w+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/typekit-fonts/(?P<kitId>\\w+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "domains": { "required": true }, - "name": { "required": true }, - "subset": { "required": true }, - "families": { "required": true } + "domains": { + "required": true + }, + "name": { + "required": true + }, + "subset": { + "required": true + }, + "families": { + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/typekit-fonts\/(?P<domain>[^\\\/]+)\/previewkit": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/typekit-fonts/(?P<domain>[^\\/]+)/previewkit": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/typekit-fonts\/(?P<fontId>\\w+)\/family": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/typekit-fonts/(?P<fontId>\\w+)/family": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/typekit-fonts\/(?P<kitId>\\w+)\/publish": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/typekit-fonts/(?P<kitId>\\w+)/publish": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/typekit-fonts": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/typekit-fonts": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "domains": { "required": true }, - "name": { "required": true }, - "subset": { "required": true }, - "families": { "required": true } + "domains": { + "required": true + }, + "name": { + "required": true + }, + "subset": { + "required": true + }, + "families": { + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/vouchers": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/vouchers": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/vouchers\/(?P<type>[\\w-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/vouchers/(?P<type>[\\w-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/vouchers\/(?P<type>[\\w-]+)\/assign": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/vouchers/(?P<type>[\\w-]+)/assign": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?gla\/connect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?gla/connect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?coupons": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?coupons": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", @@ -19099,13 +29416,17 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "include": { "description": "Limit result set to specific ids.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "offset": { @@ -19116,25 +29437,39 @@ "order": { "description": "Order sort attribute ascending or descending.", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { "description": "Sort collection by object attribute.", "type": "string", - "enum": ["date", "id", "include", "title", "slug", "modified"], + "enum": [ + "date", + "id", + "include", + "title", + "slug", + "modified" + ], "required": false }, "parent": { "description": "Limit result set to those of particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "code": { @@ -19146,47 +29481,113 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?coupons\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?coupons/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/connection\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/connection/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/connection\/connect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/connection/connect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "return_url": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "return_url": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/connection\/disconnect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/connection/disconnect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/(?P<service>marketing)\/(?P<path>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "DELETE"], - "endpoints": [{ "methods": ["GET", "POST", "DELETE"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/(?P<service>marketing)/(?P<path>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "GET", + "POST", + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/products-(?P<products_token>\\w+).csv": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/products-(?P<products_token>\\w+).csv": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/partners\/(?P<partner>[\\w]+)\/notifications": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/partners/(?P<partner>[\\w]+)/notifications": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "partner": { "description": "The Partner to send in the notification.", @@ -19197,12 +29598,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/partners\/(?P<partner>[\\w]+)\/remote-site-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/partners/(?P<partner>[\\w]+)/remote-site-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "partner": { "description": "The Partner for which we are checking the current status.", @@ -19213,12 +29618,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/partners\/(?P<partner>[\\w]+)\/revoke-token": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/partners/(?P<partner>[\\w]+)/revoke-token": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "partner": { "description": "The Partner name from which we want to remove the user's token.", @@ -19229,12 +29638,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/categories": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/categories": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", @@ -19291,13 +29704,17 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "include": { "description": "Limit result set to specific ids.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "offset": { @@ -19308,7 +29725,10 @@ "order": { "description": "Order sort attribute ascending or descending.", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -19337,7 +29757,9 @@ "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "slug": { @@ -19359,17 +29781,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/categories\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/categories/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/shipping_classes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/shipping_classes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", @@ -19426,13 +29861,17 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "include": { "description": "Limit result set to specific ids.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "offset": { @@ -19443,7 +29882,10 @@ "order": { "description": "Order sort attribute ascending or descending.", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -19467,7 +29909,9 @@ "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "slug": { @@ -19489,17 +29933,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/shipping_classes\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/shipping_classes/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", @@ -19556,13 +30013,17 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "include": { "description": "Limit result set to specific ids.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "offset": { @@ -19573,7 +30034,10 @@ "order": { "description": "Order sort attribute ascending or descending.", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -19593,13 +30057,17 @@ "parent": { "description": "Limit result set to those of particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "stock_status": { @@ -19653,7 +30121,7 @@ "required": false }, "attribute": { - "description": "Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.", + "description": "Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.", "type": "string", "required": false }, @@ -19690,140 +30158,346 @@ "include_meta": { "description": "Limit meta_data to specific keys.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "exclude_meta": { "description": "Ensure meta_data excludes specific keys.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/connection\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/connection/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/connection\/connect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/connection/connect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "return_url": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "return_url": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/connection\/disconnect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/connection/disconnect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/(?P<service>ads|conversions)\/(?P<path>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/(?P<service>ads|conversions)/(?P<path>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ - { "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], "args": [] } + { + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/products-(?P<products_token>\\w+).csv": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/products-(?P<products_token>\\w+).csv": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?settings\/general": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?settings/general": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?settings\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?settings/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?settings\/google-for-woocommerce": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?settings/google-for-woocommerce": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?shipping\/zones\/(?P<zone_id>[\\d]+)\/methods": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?shipping/zones/(?P<zone_id>[\\d]+)/methods": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?shipping\/zones\/(?P<zone_id>[\\d]+)\/methods\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?shipping/zones/(?P<zone_id>[\\d]+)/methods/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?shipping\/zones\/(?P<id>[\\d]+)\/locations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?shipping/zones/(?P<id>[\\d]+)/locations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?shipping\/zones": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?shipping/zones": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?shipping\/zones\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?shipping/zones/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/connection\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/connection/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/connection\/connect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/connection/connect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "return_url": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "return_url": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/connection\/disconnect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/connection/disconnect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/(?P<service>ads|conversions)\/(?P<path>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "DELETE"], - "endpoints": [{ "methods": ["GET", "POST", "DELETE"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/(?P<service>ads|conversions)/(?P<path>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "GET", + "POST", + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/products-(?P<products_token>\\w+).csv": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/products-(?P<products_token>\\w+).csv": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?gla\/sync": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?gla/sync": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST", "PUT", "PATCH"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/(?P<product_id>[\\d]+)\/variations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/(?P<product_id>[\\d]+)/variations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", @@ -19880,13 +30554,17 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "include": { "description": "Limit result set to specific ids.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "offset": { @@ -19897,7 +30575,10 @@ "order": { "description": "Order sort attribute ascending or descending.", "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -19917,13 +30598,17 @@ "parent": { "description": "Limit result set to those of particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "stock_status": { @@ -19977,7 +30662,7 @@ "required": false }, "attribute": { - "description": "Limit result set to products with a specific attribute. Use the taxonomy name\/attribute slug.", + "description": "Limit result set to products with a specific attribute. Use the taxonomy name/attribute slug.", "type": "string", "required": false }, @@ -20014,13 +30699,17 @@ "include_meta": { "description": "Limit meta_data to specific keys.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "exclude_meta": { "description": "Ensure meta_data excludes specific keys.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "has_price": { @@ -20054,30 +30743,58 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/(?:(?P<version>[0-9a-z]+)\/)?products\/(?P<product_id>[\\d]+)\/variations\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/(?:(?P<version>[0-9a-z]+)/)?products/(?P<product_id>[\\d]+)/variations/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/calypso-slack-channel-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/calypso-slack-channel-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/calypso-slack-channel-status" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/calypso-slack-channel-status" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ssh-migration": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ssh-migration": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "migration_source_site_domain": { "description": "Source site domain for the migration", @@ -20088,12 +30805,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ssh-migration\/start": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ssh-migration/start": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "remote_host": { "description": "Remote host to connect to", @@ -20139,17 +30860,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ssh-migration\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ssh-migration/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ssh-migration\/verify-host": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ssh-migration/verify-host": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "host": { "description": "The hostname or IP address to verify", @@ -20166,12 +30900,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/ssh-migration\/configure": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/ssh-migration/configure": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "remote_host": { "description": "Remote host to connect to", @@ -20197,12 +30935,16 @@ } ] }, - "\/wpcom\/v2\/starter-designs": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/starter-designs": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "seed": { "description": "Seed for design randomization", @@ -20213,7 +30955,9 @@ "goals": { "description": "Seed for design randomization", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } @@ -20222,27 +30966,43 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/starter-designs" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/starter-designs" } ] } }, - "\/wpcom\/v2\/starter-designs\/(?P<slug>[a-z0-9_\\-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/starter-designs/(?P<slug>[a-z0-9_\\-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/sync\/backup": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/sync/backup": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "options": { "description": "The types of data to include in the backup", "type": "array", - "default": ["all"], + "default": [ + "all" + ], "items": { "type": "string", "enum": [ @@ -20260,13 +31020,17 @@ "include_path_list": { "description": "List of specific paths to include when using the \"paths\" option", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "backup_id": { "description": "The identifier of the backup to retrieve the status for", @@ -20277,17 +31041,24 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/sync\/import": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/sync/import": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "options": { "description": "The options for the import", "type": "array", - "default": ["all"], + "default": [ + "all" + ], "items": { "type": "string", "enum": [ @@ -20305,20 +31076,31 @@ "list_sync_items": { "description": "List of specific paths to include when using the \"paths\" option", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/sync\/import\/initiate": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/sync/import/initiate": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "import_attachment_id": { "description": "The ID of the import attachment containing the Studio site archive", @@ -20328,7 +31110,9 @@ "options": { "description": "The options for the import", "type": "array", - "default": ["all"], + "default": [ + "all" + ], "items": { "type": "string", "enum": [ @@ -20346,80 +31130,136 @@ "list_sync_items": { "description": "List of specific paths to include when using the \"paths\" option", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/sync\/get-latest-rewind-id": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/sync/get-latest-rewind-id": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/studio-app\/updates": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/studio-app/updates": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "platform": { "type": "string", "required": true }, - "arch": { "type": "string", "required": false }, - "studioArch": { "type": "string", "required": false }, - "version": { "type": "string", "required": true } + "platform": { + "type": "string", + "required": true + }, + "arch": { + "type": "string", + "required": false + }, + "studioArch": { + "type": "string", + "required": false + }, + "version": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/updates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/updates" } ] } }, - "\/wpcom\/v2\/studio-app\/updates\/RELEASES": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/studio-app/updates/RELEASES": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "platform": { "type": "string", "required": true }, - "arch": { "type": "string", "required": false }, - "studioArch": { "type": "string", "required": false }, - "version": { "type": "string", "required": true } + "platform": { + "type": "string", + "required": true + }, + "arch": { + "type": "string", + "required": false + }, + "studioArch": { + "type": "string", + "required": false + }, + "version": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/updates\/RELEASES" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/updates/RELEASES" } ] } }, - "\/wpcom\/v2\/studio-app\/feature-flags": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/studio-app/feature-flags": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/feature-flags" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/feature-flags" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/chat": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/studio-app/ai-assistant/chat": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "chat_id": { "type": "integer", @@ -20442,7 +31282,9 @@ "required": false }, "context": { - "enum": ["json_object"], + "enum": [ + "json_object" + ], "description": "The context to use for completion.", "required": false } @@ -20452,53 +31294,84 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/ai-assistant\/chat" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/ai-assistant/chat" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/quota": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/studio-app/ai-assistant/quota": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/ai-assistant\/quota" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/ai-assistant/quota" } ] } }, - "\/wpcom\/v2\/studio-app\/ai-assistant\/welcome": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/studio-app/ai-assistant/welcome": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/ai-assistant\/welcome" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/ai-assistant/welcome" } ] } }, - "\/wpcom\/v2\/studio-app\/token": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], - "endpoints": [{ "methods": ["DELETE"], "args": [] }], + "/wpcom/v2/studio-app/token": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "DELETE" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/token" } ] } }, - "\/wpcom\/v2\/studio-app\/blueprints": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/studio-app/blueprints": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "locale": { "type": "string", @@ -20511,52 +31384,88 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/studio-app\/blueprints" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/studio-app/blueprints" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/count": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/count": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/counts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/counts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "subscription_status": { "type": "string", "description": "Filter subscriptions based on status", "default": "active", - "enum": ["all", "active", "inactive", "pending"], + "enum": [ + "all", + "active", + "inactive", + "pending" + ], "required": false }, "subscriber_status": { "type": "string", "description": "Filter subscribers based on status", "default": "all", - "enum": ["all", "active", "blocked"], + "enum": [ + "all", + "active", + "blocked" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/import": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/import": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "emails": { "type": "array", @@ -20577,7 +31486,9 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "type": "string", @@ -20588,22 +31499,44 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/import\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/import/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/import\/reset_state": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/import/reset_state": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "page": { "type": "int", @@ -20638,7 +31571,10 @@ "sort_order": { "type": "string", "description": "Sort order", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "filter": { @@ -20693,19 +31629,28 @@ "type": "array", "description": "An array of additional fields to include", "default": [], - "items": { "type": "string", "enum": ["country"] }, + "items": { + "type": "string", + "enum": [ + "country" + ] + }, "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers_by_user_type": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers_by_user_type": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "page": { "type": "integer", @@ -20728,32 +31673,47 @@ "type": "string", "description": "Sort subscribers by a specific field", "default": "date_subscribed", - "enum": ["date_subscribed", "email", "name", "plan"], + "enum": [ + "date_subscribed", + "email", + "name", + "plan" + ], "required": false }, "sort_order": { "type": "string", "description": "Sort order", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "user_type": { "type": "string", "description": "Filter subscribers by a specific subscriber type", "default": "wpcom", - "enum": ["wpcom", "email"], + "enum": [ + "wpcom", + "email" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/individual": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/individual": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "subscription_id": { "type": "int", @@ -20774,12 +31734,16 @@ } ] }, - "\/wpcom\/v2\/subscribers\/emails\/resend\/subscription-confirmation": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/subscribers/emails/resend/subscription-confirmation": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "email_address": { "type": "string", @@ -20803,17 +31767,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/emails\/resend\/subscription-confirmation" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/emails/resend/subscription-confirmation" } ] } }, - "\/wpcom\/v2\/subscribers\/emails\/resend\/subscription-management": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/subscribers/emails/resend/subscription-management": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "email_address": { "type": "string", @@ -20832,23 +31800,32 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/subscribers\/emails\/resend\/subscription-management" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/subscribers/emails/resend/subscription-management" } ] } }, - "\/wpcom\/v2\/support-interactions": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/support-interactions": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "type": "array", "items": { "type": "string", - "enum": ["open", "solved", "closed"] + "enum": [ + "open", + "solved", + "closed" + ] }, "default": [], "required": false @@ -20874,9 +31851,14 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "event_external_id": { "type": "string", "required": true }, + "event_external_id": { + "type": "string", + "required": true + }, "is_test_mode": { "type": "boolean", "default": false, @@ -20884,41 +31866,76 @@ }, "event_source": { "type": "string", - "enum": ["help-center", "odie", "zendesk", "zendesk_staging"], + "enum": [ + "help-center", + "odie", + "zendesk", + "zendesk_staging" + ], "required": true }, - "bot_slug": { "type": "string", "required": false }, - "event_metadata": { "type": "string", "required": false } + "bot_slug": { + "type": "string", + "required": false + }, + "event_metadata": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/support-interactions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/support-interactions" } ] } }, - "\/wpcom\/v2\/support-interactions\/(?P<support_interaction_id>[a-zA-Z0-9-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/support-interactions/(?P<support_interaction_id>[a-zA-Z0-9-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/support-interactions\/(?P<support_interaction_id>[a-zA-Z0-9-]+)\/events": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/support-interactions/(?P<support_interaction_id>[a-zA-Z0-9-]+)/events": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "event_external_id": { "type": "string", "required": true }, + "event_external_id": { + "type": "string", + "required": true + }, "event_source": { "type": "string", - "enum": ["help-center", "odie", "zendesk", "zendesk_staging"], + "enum": [ + "help-center", + "odie", + "zendesk", + "zendesk_staging" + ], "required": true }, - "event_metadata": { "type": "string", "required": false }, + "event_metadata": { + "type": "string", + "required": false + }, "is_test_mode": { "type": "boolean", "default": false, @@ -20928,38 +31945,63 @@ } ] }, - "\/wpcom\/v2\/support-interactions\/(?P<support_interaction_id>[a-zA-Z0-9-]+)\/status": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/support-interactions/(?P<support_interaction_id>[a-zA-Z0-9-]+)/status": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "status": { "type": "string", - "enum": ["open", "solved", "closed"], + "enum": [ + "open", + "solved", + "closed" + ], "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/supportforums\/ticket": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/supportforums/ticket": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "topic_id": { "type": "integer", "required": true } } + "methods": [ + "POST" + ], + "args": { + "topic_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/tags\/recommended": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/tags/recommended": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "type": "string", @@ -20972,126 +32014,248 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/tags\/recommended" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/tags/recommended" } ] } }, - "\/wpcom\/v2\/test": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/test": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/test" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/test" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/themes\/retained-benefits": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/themes/retained-benefits": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/themes\/activation-history": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/themes/activation-history": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/themes\/readymade-templates": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/themes/readymade-templates": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/themes\/readymade-templates" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/themes/readymade-templates" } ] } }, - "\/wpcom\/v2\/themes\/readymade-templates\/(?P<template_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/themes/readymade-templates/(?P<template_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "template_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "template_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/themes": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/themes": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "page": { "type": "integer", "required": false }, - "search": { "type": "string", "required": false } + "page": { + "type": "integer", + "required": false + }, + "search": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/themes" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/themes" } ] } }, - "\/wpcom\/v2\/themes\/(?P<theme>[^\\\/]+)\/premium-details": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/themes/(?P<theme>[^\\/]+)/premium-details": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/timezones": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/timezones": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/timezones" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/timezones" } ] } }, - "\/wpcom\/v2\/emails\/titan\/(?P<domain>[^\\\/]+)\/order-provisioning-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/emails/titan/(?P<domain>[^\\/]+)/order-provisioning-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/emails\/titan\/(?P<account_id>\\d+)\/control-panel-auto-login-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/emails/titan/(?P<account_id>\\d+)/control-panel-auto-login-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/emails\/titan\/(?P<account_id>\\d+)\/control-panel-iframe-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/emails/titan/(?P<account_id>\\d+)/control-panel-iframe-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/emails\/titan\/(?P<domain>[^\\\/]+)\/check-mailbox-availability\/(?P<mailbox>[^\\\/\\+]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/emails/titan/(?P<domain>[^\\/]+)/check-mailbox-availability/(?P<mailbox>[^\\/\\+]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/emails\/titan\/(?P<domain>[^\\\/]+)\/mailbox\/(?P<mailbox>[^\\\/\\+]+)": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], - "endpoints": [{ "methods": ["DELETE"], "args": [] }] + "/wpcom/v2/emails/titan/(?P<domain>[^\\/]+)/mailbox/(?P<mailbox>[^\\/\\+]+)": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], + "endpoints": [ + { + "methods": [ + "DELETE" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/emails\/titan\/(?P<domain>[^\\\/]+)\/mailbox\/create": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/emails/titan/(?P<domain>[^\\/]+)/mailbox/create": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "name": { - "description": "The name of the mailbox owner\/user", + "description": "The name of the mailbox owner/user", "type": "string", "required": true }, @@ -21111,7 +32275,7 @@ "required": true }, "is_admin": { - "description": "Whether this user should have administrative permissions\/privileges for the domain", + "description": "Whether this user should have administrative permissions/privileges for the domain", "type": "boolean", "default": false, "required": false @@ -21120,17 +32284,30 @@ } ] }, - "\/wpcom\/v2\/titan\/redirect-info\/(?P<mode>staging|live)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/titan/redirect-info/(?P<mode>staging|live)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/verticals": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/verticals": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "type": "string", @@ -21167,17 +32344,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/verticals" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/verticals" } ] } }, - "\/wpcom\/v2\/verticals\/(?P<vertical_id>[%&\\s\\w]+)\/templates": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/verticals/(?P<vertical_id>[%&\\s\\w]+)/templates": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "vertical_id": { "type": "string", @@ -21188,12 +32369,16 @@ } ] }, - "\/wpcom\/v2\/verticals\/(?P<vertical_id>[%&\\s\\w]+)\/templates\/(?P<template_slug>[\\w-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/verticals/(?P<vertical_id>[%&\\s\\w]+)/templates/(?P<template_slug>[\\w-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "vertical_id": { "type": "string", @@ -21209,12 +32394,16 @@ } ] }, - "\/wpcom\/v2\/verticals\/(?P<vertical_id>[%&\\s\\w]+)\/images": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/verticals/(?P<vertical_id>[%&\\s\\w]+)/images": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "vertical_id": { "type": "string", @@ -21224,75 +32413,135 @@ "orientation": { "type": "string", "description": "Orientation of the pictures to retrieve.", - "enum": ["portrait", "landscape", "square"], + "enum": [ + "portrait", + "landscape", + "square" + ], "required": false } } } ] }, - "\/wpcom\/v2\/tortuga\/(?P<host>.+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/tortuga/(?P<host>.+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/traffic-guide-download": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/traffic-guide-download": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/traffic-guide-download" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/traffic-guide-download" } ] } }, - "\/wpcom\/v2\/trelloCallback": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/trelloCallback": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/trelloCallback" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/trelloCallback" } ] } }, - "\/wpcom\/v2\/tumblr-smtp\/email-blocked\/(?P<email>[0-9a-z\\@\\_'.-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/tumblr-smtp/email-blocked/(?P<email>[0-9a-z\\@\\_'.-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "email": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "email": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/twilio-notification": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/twilio-notification": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/twilio-notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/twilio-notification" } ] } }, - "\/wpcom\/v2\/twitter": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/twitter": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "screen_name": { "type": "string", "required": true }, + "screen_name": { + "type": "string", + "required": true + }, "trim_user": { "type": "string", "default": "true", @@ -21303,53 +32552,82 @@ "default": "true", "required": false }, - "exclude_replies": { "type": "string", "required": false }, - "count": { "type": "integer", "required": false }, - "include_rts": { "type": "string", "required": false } + "exclude_replies": { + "type": "string", + "required": false + }, + "count": { + "type": "integer", + "required": false + }, + "include_rts": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/twitter" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/twitter" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/unauth-file-upload": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/unauth-file-upload": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "token": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "token": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/unauth-file-upload\/remove": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/unauth-file-upload/remove": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "token": { "type": "string", "description": "The temporary upload JWT token.", "required": true }, - "file_id": { "type": "number", "required": true } + "file_id": { + "type": "number", + "required": true + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/unauth-file-upload\/token": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/unauth-file-upload/token": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "context": { "description": "The context for which the upload token is being generated.", @@ -21365,44 +32643,75 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/unauth-file-upload\/(?P<file_id>[0-9]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/unauth-file-upload/(?P<file_id>[0-9]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/upgrades\/(?P<subscription_id>\\d+)\/cancel-features": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/upgrades/(?P<subscription_id>\\d+)/cancel-features": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "subscription_id": { "type": "integer", "required": true } } + "methods": [ + "GET" + ], + "args": { + "subscription_id": { + "type": "integer", + "required": true + } + } } ] }, - "\/wpcom\/v2\/gravatar-upload": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/gravatar-upload": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "account": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "account": { + "type": "string", + "required": true + } + } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gravatar-upload" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/gravatar-upload" } ] } }, - "\/wpcom\/v2\/users\/username\/suggestions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/users/username/suggestions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "type": "string", @@ -21415,17 +32724,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/users\/username\/suggestions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/users/username/suggestions" } ] } }, - "\/wpcom\/v2\/verticals\/prompt": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/verticals/prompt": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "segment_id": { "type": "integer", @@ -21438,32 +32751,79 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/verticals\/prompt" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/verticals/prompt" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/media\/videopress-playback-jwt\/(?P<guid>[a-zA-Z0-9]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/media/videopress-playback-jwt/(?P<guid>[a-zA-Z0-9]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/media\/videopress-privacy-details\/(?P<guid>[a-zA-Z0-9]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/media/videopress-privacy-details/(?P<guid>[a-zA-Z0-9]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/media\/videopress-upload-jwt": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/media/videopress-upload-jwt": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/videos": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/videos": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "guid": { "description": "The VideoPress video guid.", @@ -21496,59 +32856,85 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/videos" } ] } }, - "\/wpcom\/v2\/vip\/cs-services\/perf\/upstream_response_time": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/vip/cs-services/perf/upstream_response_time": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "site_id": { "required": true }, - "url": { "required": true }, - "date": { "default": "2026-01-12", "required": false } + "site_id": { + "required": true + }, + "url": { + "required": true + }, + "date": { + "default": "2026-01-12", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/vip\/cs-services\/perf\/upstream_response_time" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/vip/cs-services/perf/upstream_response_time" } ] } }, - "\/wpcom\/v2\/vip\/cs-services\/perf\/edge_cache_stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/vip/cs-services/perf/edge_cache_stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "site_id": { "required": true }, - "url": { "required": true }, - "date": { "default": "2026-01-12", "required": false } + "site_id": { + "required": true + }, + "url": { + "required": true + }, + "date": { + "default": "2026-01-12", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/vip\/cs-services\/perf\/edge_cache_stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/vip/cs-services/perf/edge_cache_stats" } ] } }, - "\/wpcom\/v2\/wccom\/happiness\/ssr-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/wccom/happiness/ssr-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "site_url": { "type": "string", @@ -21562,29 +32948,42 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wccom\/happiness\/ssr-url" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wccom/happiness/ssr-url" } ] } }, - "\/wpcom\/v2\/wccom\/happiness\/user-chat-token": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/wccom/happiness/user-chat-token": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wccom\/happiness\/user-chat-token" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wccom/happiness/user-chat-token" } ] } }, - "\/wpcom\/v2\/whats-new\/list": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/whats-new/list": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "_locale": { "type": "string", @@ -21607,37 +33006,54 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/whats-new\/list" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/whats-new/list" } ] } }, - "\/wpcom\/v2\/whats-new\/seen-announcement-ids": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/whats-new/seen-announcement-ids": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { - "seen_announcement_ids": { "type": "array", "required": true } + "seen_announcement_ids": { + "type": "array", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/whats-new\/seen-announcement-ids" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/whats-new/seen-announcement-ids" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/search": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/woo/address-autocomplete/search": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "query": { "type": "string", @@ -21686,26 +33102,36 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woo\/address-autocomplete\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/woo/address-autocomplete/search" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/select": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/woo/address-autocomplete/select": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "address_id": { "type": "string", "required": true }, + "address_id": { + "type": "string", + "required": true + }, "lang": { "type": "string", "default": "", "description": "The language code to use for the select address operation.", "required": false }, - "session_id": { "type": "string", "required": true }, + "session_id": { + "type": "string", + "required": true + }, "token": { "type": "string", "description": "The JWT token to use for authentication.", @@ -21717,40 +33143,54 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woo\/address-autocomplete\/select" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/woo/address-autocomplete/select" } ] } }, - "\/wpcom\/v2\/woo\/address-autocomplete\/map": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/woo/address-autocomplete/map": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "token": { "type": "string", "required": true }, - "locations": { "type": "string", "required": true } + "token": { + "type": "string", + "required": true + }, + "locations": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woo\/address-autocomplete\/map" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/woo/address-autocomplete/map" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woocommerce\/store-api\/checkout": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/woocommerce/store-api/checkout": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "payment_method_id": { - "description": "Card id or other payment method id to pass on to Stripe \/ Woo. This corresponds to Stripe ID with the sources API https:\/\/stripe.com\/docs\/api\/sources.", + "description": "Card id or other payment method id to pass on to Stripe / Woo. This corresponds to Stripe ID with the sources API https://stripe.com/docs/api/sources.", "type": "string", "required": true }, @@ -21828,17 +33268,30 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woocommerce\/payment-methods": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/woocommerce/payment-methods": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/order-attribution\/(?P<view>channel|source|campaign|device|channel-source)\/summary": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/order-attribution/(?P<view>channel|source|campaign|device|channel-source)/summary": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", @@ -21866,7 +33319,14 @@ }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The interval length to be used in the graph.", "required": true }, @@ -21881,7 +33341,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -21898,37 +33362,63 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] } + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -21941,7 +33431,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -21949,12 +33443,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/order-attribution\/(?P<view>channel|source|campaign|device|channel-source)\/items": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/order-attribution/(?P<view>channel|source|campaign|device|channel-source)/items": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", @@ -22010,13 +33508,18 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "item": { "type": "array", "description": "Limit comparison to the specified items.", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "include_unassigned": { @@ -22030,7 +33533,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22047,37 +33554,63 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] } + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -22090,7 +33623,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -22098,17 +33635,23 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/order-attribution\/(?P<view>channel|source|campaign|device|channel-source)\/compare": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/order-attribution/(?P<view>channel|source|campaign|device|channel-source)/compare": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "item": { "type": "array", "description": "Limit comparison to the specified items.", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": true }, "from": { @@ -22125,7 +33668,14 @@ }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The interval length to be used in the graph.", "required": true }, @@ -22134,7 +33684,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22151,37 +33705,63 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] } + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -22194,7 +33774,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -22202,12 +33786,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/order-attribution-by-product\/(?P<view>channel|source|campaign|device|channel-source)\/summary": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/order-attribution-by-product/(?P<view>channel|source|campaign|device|channel-source)/summary": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", @@ -22223,7 +33811,14 @@ }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The interval length to be used in the graph.", "required": true }, @@ -22238,7 +33833,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22258,45 +33857,87 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "string" }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] } + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -22309,7 +33950,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -22317,34 +33962,49 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/orders\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/orders/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The time interval for the report.", "required": true }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false }, @@ -22353,7 +34013,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22386,203 +34050,278 @@ "minItems": 1, "uniqueItems": true }, - { "type": "string" }, { - "type": "array", - "items": { "type": "string" }, - "minItems": 1 - }, - { "type": "number" }, - { - "type": "array", - "items": { "type": "number" }, - "minItems": 1, - "maxItems": 2 + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 1 + }, + { + "type": "number" + }, + { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 1, + "maxItems": 2 + }, + { + "type": "number" + }, + { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 1, + "maxItems": 2 + } + ] + }, + "compare": { + "type": "string", + "description": "The comparison operator." + } + } + }, + "required": false + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/orders-by-product-type/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "from": { + "type": "string", + "format": "date-time", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "required": true + }, + "to": { + "type": "string", + "format": "date-time", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "required": true + }, + "interval": { + "type": "string", + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], + "description": "The time interval for the report.", + "required": true + }, + "filters": { + "type": "array", + "description": "Filters to apply to the report.", + "items": { + "type": "object", + "required": [ + "key", + "value", + "compare" + ], + "properties": { + "key": { + "type": "string", + "description": "The field to filter on.", + "enum": [ + "status", + "fulfillment_status", + "product_type", + "virtual", + "downloadable" + ] + }, + "value": { + "description": "The value(s) to compare against.", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "wc-pending", + "wc-processing", + "wc-on-hold", + "wc-completed", + "wc-cancelled", + "wc-refunded", + "wc-failed", + "wc-checkout-draft" + ] + }, + "minItems": 1, + "uniqueItems": true + }, + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 1 + }, + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 1 + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } + ] + }, + "compare": { + "type": "string", + "description": "The comparison operator." + } + } + }, + "required": false + }, + "date_type": { + "type": "string", + "enum": [ + "created", + "paid", + "completed" + ], + "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", + "required": false + } + } + } + ] + }, + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/customers/new-returning": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": { + "from": { + "type": "string", + "format": "date-time", + "description": "Start date/time (ISO8601) for the report.", + "required": true + }, + "to": { + "type": "string", + "format": "date-time", + "description": "End date/time (ISO8601) for the report.", + "required": true + }, + "filters": { + "type": "array", + "description": "Filters to apply to the report.", + "items": { + "type": "object", + "required": [ + "key", + "value", + "compare" + ], + "properties": { + "key": { + "type": "string", + "description": "The field to filter on.", + "enum": [ + "order_status", + "product_type", + "virtual", + "downloadable" + ] + }, + "value": { + "description": "The value(s) to compare against.", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "wc-pending", + "wc-processing", + "wc-on-hold", + "wc-completed", + "wc-cancelled", + "wc-refunded", + "wc-failed", + "wc-checkout-draft" + ] + }, + "minItems": 1, + "uniqueItems": true + }, + { + "type": "string" }, - { "type": "number" }, - { - "type": "array", - "items": { "type": "number" }, - "minItems": 1, - "maxItems": 2 - } - ] - }, - "compare": { - "type": "string", - "description": "The comparison operator." - } - } - }, - "required": false - } - } - } - ] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/orders-by-product-type\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [ - { - "methods": ["GET"], - "args": { - "from": { - "type": "string", - "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", - "required": true - }, - "to": { - "type": "string", - "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", - "required": true - }, - "interval": { - "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], - "description": "The time interval for the report.", - "required": true - }, - "filters": { - "type": "array", - "description": "Filters to apply to the report.", - "items": { - "type": "object", - "required": ["key", "value", "compare"], - "properties": { - "key": { - "type": "string", - "description": "The field to filter on.", - "enum": [ - "status", - "fulfillment_status", - "product_type", - "virtual", - "downloadable" - ] - }, - "value": { - "description": "The value(s) to compare against.", - "anyOf": [ { "type": "array", "items": { - "type": "string", - "enum": [ - "wc-pending", - "wc-processing", - "wc-on-hold", - "wc-completed", - "wc-cancelled", - "wc-refunded", - "wc-failed", - "wc-checkout-draft" - ] + "type": "string" }, - "minItems": 1, - "uniqueItems": true - }, - { "type": "string" }, - { - "type": "array", - "items": { "type": "string" }, - "minItems": 1 - }, - { "type": "string" }, - { - "type": "array", - "items": { "type": "string" }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] } - ] - }, - "compare": { - "type": "string", - "description": "The comparison operator." - } - } - }, - "required": false - }, - "date_type": { - "type": "string", - "enum": ["created", "paid", "completed"], - "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", - "required": false - } - } - } - ] - }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/customers\/new-returning": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [ - { - "methods": ["GET"], - "args": { - "from": { - "type": "string", - "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", - "required": true - }, - "to": { - "type": "string", - "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", - "required": true - }, - "filters": { - "type": "array", - "description": "Filters to apply to the report.", - "items": { - "type": "object", - "required": ["key", "value", "compare"], - "properties": { - "key": { - "type": "string", - "description": "The field to filter on.", - "enum": [ - "order_status", - "product_type", - "virtual", - "downloadable" - ] - }, - "value": { - "description": "The value(s) to compare against.", - "anyOf": [ { - "type": "array", - "items": { - "type": "string", - "enum": [ - "wc-pending", - "wc-processing", - "wc-on-hold", - "wc-completed", - "wc-cancelled", - "wc-refunded", - "wc-failed", - "wc-checkout-draft" - ] - }, - "minItems": 1, - "uniqueItems": true + "type": "integer", + "enum": [ + 0, + 1 + ] }, - { "type": "string" }, { - "type": "array", - "items": { "type": "string" }, - "minItems": 1 - }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] } + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -22595,7 +34334,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -22603,28 +34346,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/customers\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/customers/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The time interval for the report.", "required": true }, @@ -22633,7 +34387,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22666,14 +34424,30 @@ "minItems": 1, "uniqueItems": true }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] } + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + } ] }, "compare": { @@ -22686,7 +34460,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -22694,41 +34472,56 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/coupons": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/coupons": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false }, "orderby": { "type": "string", - "enum": ["discount_amount", "orders_count", "coupon_code"], + "enum": [ + "discount_amount", + "orders_count", + "coupon_code" + ], "default": "discount_amount", "description": "Field to sort by.", "required": false }, "order": { "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "default": "desc", "description": "Sort direction.", "required": false @@ -22738,7 +34531,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22753,14 +34550,30 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, { "type": "array", "items": { @@ -22793,34 +34606,49 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/coupons\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/coupons/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "Time interval for grouping data.", "required": true }, @@ -22829,12 +34657,18 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", "description": "The field to filter on.", - "enum": ["status"] + "enum": [ + "status" + ] }, "value": { "description": "The value(s) to compare against.", @@ -22871,23 +34705,27 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/products": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/products": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report.", + "description": "Start date/time (ISO8601) for the report.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report.", + "description": "End date/time (ISO8601) for the report.", "required": true }, "orderby": { @@ -22907,7 +34745,10 @@ }, "order": { "type": "string", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "default": "desc", "description": "Sort direction.", "required": false @@ -22925,7 +34766,11 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", @@ -22943,35 +34788,63 @@ "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "number" }, + { + "type": "number" + }, { "type": "array", - "items": { "type": "number" }, + "items": { + "type": "number" + }, "minItems": 1, "maxItems": 2 }, - { "type": "number" }, + { + "type": "number" + }, { "type": "array", - "items": { "type": "number" }, + "items": { + "type": "number" + }, "minItems": 1, "maxItems": 2 }, - { "type": "number" }, + { + "type": "number" + }, { "type": "array", - "items": { "type": "number" }, + "items": { + "type": "number" + }, "minItems": 1, "maxItems": 2 }, - { "type": "integer", "enum": [0, 1] }, - { "type": "integer", "enum": [0, 1] }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, + { + "type": "integer", + "enum": [ + 0, + 1 + ] + }, { "type": "string", "description": "Comma-separated list of numeric values (whitespace allowed)", @@ -22979,7 +34852,9 @@ }, { "type": "array", - "items": { "type": "number" }, + "items": { + "type": "number" + }, "minItems": 1, "uniqueItems": true } @@ -22995,7 +34870,11 @@ }, "date_type": { "type": "string", - "enum": ["created", "paid", "completed"], + "enum": [ + "created", + "paid", + "completed" + ], "description": "The date field to use for filtering (created, paid, completed). Defaults to site setting.", "required": false } @@ -23003,12 +34882,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/options\/channels": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/options/channels": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Search query to filter items.", @@ -23043,7 +34926,10 @@ "description": "Order parameter.", "type": "string", "default": "ASC", - "enum": ["ASC", "DESC"], + "enum": [ + "ASC", + "DESC" + ], "required": false }, "cachebuster": { @@ -23055,12 +34941,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/options\/sources": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/options/sources": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Search query to filter items.", @@ -23095,7 +34985,10 @@ "description": "Order parameter.", "type": "string", "default": "ASC", - "enum": ["ASC", "DESC"], + "enum": [ + "ASC", + "DESC" + ], "required": false }, "cachebuster": { @@ -23107,28 +35000,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/sessions\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/sessions/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The interval for the report.", "required": true }, @@ -23137,20 +35041,30 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", "description": "The field to filter on.", - "enum": ["product_type"] + "enum": [ + "product_type" + ] }, "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 } ] @@ -23167,28 +35081,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/sessions\/by-conversion-rate": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/sessions/by-conversion-rate": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The interval for the report.", "required": true }, @@ -23197,20 +35122,30 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", "description": "The field to filter on.", - "enum": ["product_type"] + "enum": [ + "product_type" + ] }, "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 } ] @@ -23227,12 +35162,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/options\/campaigns": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/options/campaigns": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Search query to filter items.", @@ -23267,7 +35206,10 @@ "description": "Order parameter.", "type": "string", "default": "ASC", - "enum": ["ASC", "DESC"], + "enum": [ + "ASC", + "DESC" + ], "required": false }, "cachebuster": { @@ -23279,12 +35221,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/options\/channels-sources": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/options/channels-sources": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Search query to filter items.", @@ -23319,7 +35265,10 @@ "description": "Order parameter.", "type": "string", "default": "ASC", - "enum": ["ASC", "DESC"], + "enum": [ + "ASC", + "DESC" + ], "required": false }, "cachebuster": { @@ -23331,28 +35280,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/analytics\/reports\/bookings\/by-date": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/analytics/reports/bookings/by-date": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "from": { "type": "string", "format": "date-time", - "description": "Start date\/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", + "description": "Start date/time (ISO8601) for the report. e.g. 2020-01-01T12:00:00.", "required": true }, "to": { "type": "string", "format": "date-time", - "description": "End date\/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", + "description": "End date/time (ISO8601) for the report. e.g. 2020-03-01T16:00:00.", "required": true }, "interval": { "type": "string", - "enum": ["hour", "day", "week", "month", "quarter", "year"], + "enum": [ + "hour", + "day", + "week", + "month", + "quarter", + "year" + ], "description": "The time interval for the report.", "required": true }, @@ -23361,32 +35321,52 @@ "description": "Filters to apply to the report.", "items": { "type": "object", - "required": ["key", "value", "compare"], + "required": [ + "key", + "value", + "compare" + ], "properties": { "key": { "type": "string", "description": "The field to filter on.", - "enum": ["product_id", "resource_id", "cost"] + "enum": [ + "product_id", + "resource_id", + "cost" + ] }, "value": { "description": "The value(s) to compare against.", "anyOf": [ - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "string" }, + { + "type": "string" + }, { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "minItems": 1 }, - { "type": "number" }, + { + "type": "number" + }, { "type": "array", - "items": { "type": "number" }, + "items": { + "type": "number" + }, "minItems": 1, "maxItems": 2 } @@ -23404,24 +35384,37 @@ } ] }, - "\/wpcom\/v2\/woocommerce\/countries\/regions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/woocommerce/countries/regions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woocommerce\/countries\/regions" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/woocommerce/countries/regions" } ] } }, - "\/wpcom\/v2\/wc\/meta\/authorize": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/wc/meta/authorize": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "state": { "type": "string", @@ -23439,17 +35432,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/meta\/authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/meta/authorize" } ] } }, - "\/wpcom\/v2\/wc\/reddit\/authorize": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/wc/reddit/authorize": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "state": { "type": "string", @@ -23467,17 +35464,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/reddit\/authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/reddit/authorize" } ] } }, - "\/wpcom\/v2\/wc\/snapchat\/authorize": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/wc/snapchat/authorize": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "state": { "type": "string", @@ -23495,22 +35496,35 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wc\/snapchat\/authorize" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wc/snapchat/authorize" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/woocommerce\/active-theme": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/woocommerce/active-theme": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/adflow\/conf": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/adflow/conf": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "_jsonp": { "type": "string", @@ -23527,12 +35541,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/cmp\/vendors\/(?P<language>[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/cmp/vendors/(?P<language>[a-zA-Z-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "language": { "type": "string", @@ -23543,12 +35561,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/cmp\/v(?P<gvl_specification_version>[0-9]+)\/vendors\/(?P<language>[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/cmp/v(?P<gvl_specification_version>[0-9]+)/vendors/(?P<language>[a-zA-Z-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "language": { "type": "string", @@ -23558,19 +35580,26 @@ "gvl_specification_version": { "type": "integer", "description": "GVL specification version", - "enum": [2, 3], + "enum": [ + 2, + 3 + ], "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/cmp\/configuration\/(?P<locale>[a-zA-Z_-]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/cmp/configuration/(?P<locale>[a-zA-Z_-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "locale": { "type": "string", @@ -23586,87 +35615,156 @@ } ] }, - "\/wpcom\/v2\/wordads\/send-email": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/wordads/send-email": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "email": { "type": "string", "required": true }, - "subject": { "type": "string", "required": true }, - "content": { "type": "string", "required": true }, - "product": { "type": "string", "required": false } + "email": { + "type": "string", + "required": true + }, + "subject": { + "type": "string", + "required": true + }, + "content": { + "type": "string", + "required": true + }, + "product": { + "type": "string", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordads\/send-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wordads/send-email" } ] } }, - "\/wpcom\/v2\/wordads\/send-guides-email": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/wordads/send-guides-email": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "type": { "type": "string", "required": true }, - "wpcom_user_id": { "type": "integer", "required": true }, - "wpcom_site_id": { "type": "integer", "required": true }, - "credits_amount": { "type": "float", "required": true }, - "expire_seconds": { "type": "integer", "required": true }, - "expire_date": { "type": "string", "required": true } + "type": { + "type": "string", + "required": true + }, + "wpcom_user_id": { + "type": "integer", + "required": true + }, + "wpcom_site_id": { + "type": "integer", + "required": true + }, + "credits_amount": { + "type": "float", + "required": true + }, + "expire_seconds": { + "type": "integer", + "required": true + }, + "expire_date": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordads\/send-guides-email" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wordads/send-guides-email" } ] } }, - "\/wpcom\/v2\/wordads\/send-notification": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/wordads/send-notification": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "user_id": { "type": "number", "required": true }, - "blog_id": { "type": "number", "required": true }, - "post_id": { "type": "number", "required": true }, - "campaign_id": { "type": "number", "required": true }, - "title": { "type": "string", "required": true }, + "user_id": { + "type": "number", + "required": true + }, + "blog_id": { + "type": "number", + "required": true + }, + "post_id": { + "type": "number", + "required": true + }, + "campaign_id": { + "type": "number", + "required": true + }, + "title": { + "type": "string", + "required": true + }, "type": { "type": "string", - "enum": ["approved", "rejected", "cancelled", "performed"], + "enum": [ + "approved", + "rejected", + "cancelled", + "performed" + ], "required": false }, - "ad_type": { "type": "string", "required": true } + "ad_type": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordads\/send-notification" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wordads/send-notification" } ] } }, - "\/wpcom\/v2\/wordads\/redirect": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/wordads/redirect": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "source": { "type": "string", @@ -23710,22 +35808,35 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordads\/redirect" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wordads/redirect" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordads\/site-info": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/wordads/site-info": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/wordcamp-coupons": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/wordcamp-coupons": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "email": { "type": "string", @@ -23743,62 +35854,98 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/wordcamp-coupons" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/wordcamp-coupons" } ] } }, - "\/wpcom\/v2\/work-with-us": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/work-with-us": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/work-with-us" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/work-with-us" } ] } }, - "\/wpcom\/v2\/work-with-us\/names": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/work-with-us/names": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/work-with-us\/names" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/work-with-us/names" } ] } }, - "\/wpcom\/v2\/help\/wpe-migration-ticket\/new": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/help/wpe-migration-ticket/new": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "locale": { "type": "string", "default": "en", "required": false }, - "site_url": { "type": "string", "required": true }, - "email": { "type": "string", "required": true } + "locale": { + "type": "string", + "default": "en", + "required": false + }, + "site_url": { + "type": "string", + "required": true + }, + "email": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/wpe-migration-ticket\/new" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/wpe-migration-ticket/new" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/xposts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/xposts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "decode_html": { "type": "boolean", @@ -23809,122 +35956,211 @@ } ] }, - "\/wpcom\/v2\/help\/zendesk\/ai": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/help/zendesk/ai": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "blog_id": { "type": "integer", "required": true }, - "email": { "type": "string", "required": false }, - "query": { "type": "string", "required": true } + "blog_id": { + "type": "integer", + "required": true + }, + "email": { + "type": "string", + "required": false + }, + "query": { + "type": "string", + "required": true + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/help\/zendesk\/ai" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/help/zendesk/ai" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/woothemes\/ai-reply": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/woothemes/ai-reply": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/woothemes\/ai-reply" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/woothemes/ai-reply" } ] } }, - "\/wpcom\/v2\/zendesk-notification-staging\/ticket": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification-staging/ticket": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification-staging\/ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification-staging/ticket" } ] } }, - "\/wpcom\/v2\/zendesk\/triage\/(?P<handler>[a-zA-Z-]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/zendesk/triage/(?P<handler>[a-zA-Z-]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/zendesk-notification\/tumblr\/tos": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/tumblr/tos": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/tumblr\/tos" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/tumblr/tos" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-created": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/a8c/user-created": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/a8c\/user-created" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/a8c/user-created" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-deleted": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/a8c/user-deleted": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/a8c\/user-deleted" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/a8c/user-deleted" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/a8c\/user-external-id-changed": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/a8c/user-external-id-changed": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/a8c\/user-external-id-changed" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/a8c/user-external-id-changed" } ] } }, - "\/wpcom\/v2\/zendesk-notification\/woothemes\/ticket": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }], + "/wpcom/v2/zendesk-notification/woothemes/ticket": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/zendesk-notification\/woothemes\/ticket" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/zendesk-notification/woothemes/ticket" } ] } }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/blogging-prompts": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com/blogging-prompts": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "after": { "description": "Show prompts following a given date.", @@ -23944,14 +36180,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -23974,7 +36214,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -24004,12 +36247,16 @@ } ] }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/blogging-prompts\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v3", - "methods": ["GET"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com/blogging-prompts/(?P<id>[\\d]+)": { + "namespace": "wpcom/v3", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the prompt.", @@ -24020,35 +36267,81 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/business-hours\/localized-week": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/business-hours/localized-week": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/admin-color": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/admin-color": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/admin-menu": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/admin-menu": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai\/ai-assistant-feature": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai/ai-assistant-feature": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai\/completions": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai/completions": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "content": { "type": "string", "required": true }, - "post_id": { "type": "integer", "required": false }, + "content": { + "type": "string", + "required": true + }, + "post_id": { + "type": "integer", + "required": false + }, "skip_cache": { "type": "boolean", "description": "Whether to skip the cache and make a new request", @@ -24058,25 +36351,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-ai\/images\/generations": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/jetpack-ai/images/generations": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "prompt": { "type": "string", "required": true }, - "post_id": { "type": "integer", "required": false } + "prompt": { + "type": "string", + "required": true + }, + "post_id": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/app-media": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/app-media": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "number": { "description": "Number of media items in the request", @@ -24099,12 +36406,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/editor-assets": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/editor-assets": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "exclude": { "description": "Comma-separated list of asset types to exclude from the response. Supported values: \"core\" (WordPress core assets), \"gutenberg\" (Gutenberg plugin assets), or plugin handle prefixes (e.g., \"contact-form-7\").", @@ -24116,28 +36427,39 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/blog-stats": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/blog-stats": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "post_id": { "description": "Post ID to obtain stats for.", - "type": ["string", "integer"], + "type": [ + "string", + "integer" + ], "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/list\/(?P<service>google_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/list/(?P<service>google_photos|openverse|pexels)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Media collection search term.", @@ -24150,8 +36472,14 @@ "default": 20, "required": false }, - "path": { "type": "string", "required": false }, - "page_handle": { "type": "string", "required": false }, + "path": { + "type": "string", + "required": false + }, + "page_handle": { + "type": "string", + "required": false + }, "session_id": { "description": "Session id of a service, currently only Google Photos Picker", "type": "string", @@ -24161,12 +36489,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/copy\/(?P<service>google_photos|openverse|pexels)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/copy/(?P<service>google_photos|openverse|pexels)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "media": { "description": "Media data to copy.", @@ -24176,17 +36508,30 @@ "type": "object", "required": true, "properties": { - "caption": { "type": "string" }, + "caption": { + "type": "string" + }, "guid": { "type": "object", "properties": { - "caption": { "type": "string" }, - "name": { "type": "string" }, - "title": { "type": "string" }, - "url": { "format": "uri", "type": "string" } + "caption": { + "type": "string" + }, + "name": { + "type": "string" + }, + "title": { + "type": "string" + }, + "url": { + "format": "uri", + "type": "string" + } } }, - "title": { "type": "string" }, + "title": { + "type": "string" + }, "meta": { "type": "object", "additionalProperties": false, @@ -24195,7 +36540,9 @@ "type": "string", "format": "text-field" }, - "pexels_object": { "type": "object" } + "pexels_object": { + "type": "object" + } } } } @@ -24220,86 +36567,158 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/connection\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/connection/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/connection\/(?P<service>google_photos)\/picker_status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/connection/(?P<service>google_photos)/picker_status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/session\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/session/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/session\/(?P<service>google_photos)\/(?P<session_id>.*)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/session/(?P<service>google_photos)/(?P<session_id>.*)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/external-media\/proxy\/(?P<service>google_photos)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/external-media/proxy/(?P<service>google_photos)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], - "args": { "url": { "type": "string", "required": true } } + "methods": [ + "POST" + ], + "args": { + "url": { + "type": "string", + "required": true + } + } } ] }, - "\/wpcom\/v2\/following\/mine": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/following/mine": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "ignore_user_blogs": { "type": "boolean", "required": false } + "ignore_user_blogs": { + "type": "boolean", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/following\/mine" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/following/mine" } ] } }, - "\/wpcom\/v2\/following\/recommendations": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/following/recommendations": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "number": { "type": "number", "default": 5, "required": false } + "number": { + "type": "number", + "default": 5, + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/following\/recommendations" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/following/recommendations" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/goodreads\/user-id": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/goodreads/user-id": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Goodreads user ID", @@ -24311,27 +36730,58 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/checkGoogleDocVisibility": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/checkGoogleDocVisibility": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram-gallery\/connect-url": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram-gallery/connect-url": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram-gallery\/connections": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram-gallery/connections": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/instagram-gallery\/gallery": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/instagram-gallery/gallery": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "access_token": { "description": "An Instagram Keyring access token.", @@ -24349,27 +36799,58 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailchimp": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/mailchimp": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailchimp\/groups": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/mailchimp/groups": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailchimp\/settings": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/mailchimp/settings": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/podcast-player": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/podcast-player": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The Podcast RSS feed URL.", @@ -24390,32 +36871,72 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/podcast-player\/track-quantity": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/podcast-player/track-quantity": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/profile": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/profile": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/related-posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/related-posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/related-posts\/enable": { - "namespace": "wpcom\/v2", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/related-posts/enable": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/related-posts\/(?P<id>[\\d]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/related-posts/(?P<id>[\\d]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -24426,12 +36947,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/resolve-redirect\/?(?P<url>.+)?": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/resolve-redirect/?(?P<url>.+)?": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL to check for redirects.", @@ -24442,12 +36967,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/template-loader\/(?P<template_type>\\w+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/template-loader/(?P<template_type>\\w+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "template_type": { "description": "The type of the template.", @@ -24458,33 +36987,53 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/post-types": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/post-types": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/top-posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/top-posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "period": { "description": "Timeframe for stats.", - "type": ["string", "integer"], + "type": [ + "string", + "integer" + ], "required": true } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/transients\/(?P<name>\\w{1,172})": { - "namespace": "wpcom\/v2", - "methods": ["DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/transients/(?P<name>\\w{1,172})": { + "namespace": "wpcom/v2", + "methods": [ + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "name": { "description": "The name of the transient to delete.", @@ -24495,12 +37044,20 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videopress\/meta": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/videopress/meta": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "The post id for the attachment.", @@ -24546,13 +37103,27 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videopress\/(?P<video_guid>\\w+)\/poster": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/videopress/(?P<video_guid>\\w+)/poster": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "at_time": { "description": "The time in the video to use as the poster frame.", @@ -24573,27 +37144,67 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videopress\/(?P<video_guid>\\w+)\/check-ownership\/(?P<post_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/videopress/(?P<video_guid>\\w+)/check-ownership/(?P<post_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videopress\/upload-jwt": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/videopress/upload-jwt": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/videopress\/playback-jwt\/(?P<video_guid>\\w+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/videopress/playback-jwt/(?P<video_guid>\\w+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v3\/sites\/mobiledotblog.wordpress.com\/jitm": { - "namespace": "wpcom\/v3", - "methods": ["GET", "POST"], + "/wpcom/v3/sites/mobiledotblog.wordpress.com/jitm": { + "namespace": "wpcom/v3", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "message_path": { "type": "string", @@ -24613,7 +37224,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "type": "string", @@ -24629,12 +37242,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/email-preview": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/email-preview": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -24643,7 +37260,11 @@ }, "access": { "description": "Access level.", - "enum": ["everybody", "subscribers", "paid_subscribers"], + "enum": [ + "everybody", + "subscribers", + "paid_subscribers" + ], "default": "everybody", "required": false } @@ -24651,98 +37272,221 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/gutenberg\/available-extensions": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/gutenberg/available-extensions": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/hello": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/hello": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/status\/?": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/status/?": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "type": { "type": "string", "required": false }, - "source": { "type": "string", "required": false }, - "is_editable": { "type": "boolean", "required": false } + "type": { + "type": "string", + "required": false + }, + "source": { + "type": "string", + "required": false + }, + "is_editable": { + "type": "boolean", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/product\/?": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/product/?": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "title": { "type": "string", "required": true }, - "price": { "type": "number", "required": true }, - "currency": { "type": "string", "required": true }, - "interval": { "type": "string", "required": true }, - "is_editable": { "type": "boolean", "required": false }, - "buyer_can_change_amount": { "type": "boolean", "required": false }, - "tier": { "type": "integer", "required": false } + "title": { + "type": "string", + "required": true + }, + "price": { + "type": "number", + "required": true + }, + "currency": { + "type": "string", + "required": true + }, + "interval": { + "type": "string", + "required": true + }, + "is_editable": { + "type": "boolean", + "required": false + }, + "buyer_can_change_amount": { + "type": "boolean", + "required": false + }, + "tier": { + "type": "integer", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/products\/?": { - "namespace": "wpcom\/v2", - "methods": ["POST", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/products/?": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "GET" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "currency": { "type": "string", "required": true }, - "type": { "type": "string", "required": true }, - "is_editable": { "type": "boolean", "required": false } + "currency": { + "type": "string", + "required": true + }, + "type": { + "type": "string", + "required": true + }, + "is_editable": { + "type": "boolean", + "required": false + } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/memberships\/product\/(?P<product_id>[0-9]+)\/?": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/memberships/product/(?P<product_id>[0-9]+)/?": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "title": { "type": "string", "required": true }, - "price": { "type": "number", "required": true }, - "currency": { "type": "string", "required": true }, - "interval": { "type": "string", "required": true }, - "is_editable": { "type": "boolean", "required": false }, - "buyer_can_change_amount": { "type": "boolean", "required": false }, - "tier": { "type": "integer", "required": false } + "title": { + "type": "string", + "required": true + }, + "price": { + "type": "number", + "required": true + }, + "currency": { + "type": "string", + "required": true + }, + "interval": { + "type": "string", + "required": true + }, + "is_editable": { + "type": "boolean", + "required": false + }, + "buyer_can_change_amount": { + "type": "boolean", + "required": false + }, + "tier": { + "type": "integer", + "required": false + } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { - "cancel_subscriptions": { "type": "boolean", "required": false } + "cancel_subscriptions": { + "type": "boolean", + "required": false + } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/connection-test-results": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/connection-test-results": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/send-email-preview": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/send-email-preview": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -24753,115 +37497,213 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/service-api-keys\/(?P<service>[a-z\\-_]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/service-api-keys/(?P<service>[a-z\\-_]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], - "args": { "service_api_key": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": { + "service_api_key": { + "type": "string", + "required": true + } + } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom-origin\/jetpack\/v4": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["GET"], + "/wpcom-origin/jetpack/v4": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom-origin\/jetpack\/v4", + "default": "wpcom-origin/jetpack/v4", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4" }] + "self": [ + { + "href": "https://mobile.blog/wpcom-origin/jetpack/v4" + } + ] } }, - "\/wpcom-origin\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["GET"], + "/wpcom-origin/jetpack/v4/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom-origin\/jetpack\/v4", + "default": "wpcom-origin/jetpack/v4", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom-origin\/jetpack\/v4\/search\/plan": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom-origin/jetpack/v4/search/plan": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/plan" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/plan" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/settings": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom-origin/jetpack/v4/search/settings": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ - { "methods": ["POST", "PUT", "PATCH"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ], "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/settings" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/settings" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/stats": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom-origin/jetpack/v4/search/stats": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/stats" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/stats" } ] } }, - "\/wpcom-origin\/jetpack\/v4\/search\/pricing": { - "namespace": "wpcom-origin\/jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom-origin/jetpack/v4/search/pricing": { + "namespace": "wpcom-origin/jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/mobile.blog\/wpcom-origin\/jetpack\/v4\/search\/pricing" + "href": "https://mobile.blog/wpcom-origin/jetpack/v4/search/pricing" } ] } }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/comments": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/comments": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -24894,13 +37736,17 @@ "author": { "description": "Limit result set to comments assigned to specific user IDs. Requires authorization.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "author_exclude": { "description": "Ensure result set excludes comments assigned to specific user IDs. Requires authorization.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "author_email": { @@ -24919,14 +37765,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -24939,7 +37789,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -24961,21 +37814,27 @@ "default": [], "description": "Limit result set to comments of specific parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "parent_exclude": { "default": [], "description": "Ensure result set excludes specific parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "post": { "default": [], "description": "Limit result set to comments assigned to specific post IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "status": { @@ -24998,7 +37857,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "author": { "description": "The ID of the user object, if author was a user.", @@ -25040,12 +37901,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -25089,7 +37956,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -25097,12 +37967,18 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -25135,13 +38011,17 @@ "author": { "description": "Limit result set to comments assigned to specific user IDs. Requires authorization.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "author_exclude": { "description": "Ensure result set excludes comments assigned to specific user IDs. Requires authorization.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "author_email": { @@ -25160,14 +38040,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -25180,7 +38064,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -25202,21 +38089,27 @@ "default": [], "description": "Limit result set to comments of specific parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "parent_exclude": { "default": [], "description": "Ensure result set excludes specific parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "post": { "default": [], "description": "Limit result set to comments assigned to specific post IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "status": { @@ -25239,7 +38132,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "author": { "description": "The ID of the user object, if author was a user.", @@ -25281,12 +38176,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -25330,7 +38231,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -25339,8 +38243,8 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/comments\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobiledotblog.wordpress.com/comments/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -25355,7 +38259,9 @@ ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25365,7 +38271,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -25377,7 +38287,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25424,12 +38338,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -25471,7 +38391,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -25479,7 +38402,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25500,7 +38425,9 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25510,7 +38437,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -25522,7 +38453,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25569,12 +38504,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -25616,7 +38557,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -25624,7 +38568,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -25646,121 +38592,226 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-patterns\/patterns": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-patterns/patterns": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp-block-editor\/v1": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET"], + "/wp-block-editor/v1": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wp-block-editor\/v1", + "default": "wp-block-editor/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/wp-block-editor\/v1" }] + "self": [ + { + "href": "https://mobile.blog/wp-block-editor/v1" + } + ] } }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET"], + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wp-block-editor\/v1", + "default": "wp-block-editor/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com\/export": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET", "GET"], + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com/export": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com\/settings": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET", "GET"], + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com/settings": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com\/assets": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET", "GET"], + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com/assets": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/jetpack\/v4\/explat": { - "namespace": "jetpack\/v4\/explat", - "methods": ["GET"], + "/jetpack/v4/explat": { + "namespace": "jetpack/v4/explat", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "jetpack\/v4\/explat", + "default": "jetpack/v4/explat", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/jetpack\/v4\/explat" }] + "self": [ + { + "href": "https://mobile.blog/jetpack/v4/explat" + } + ] } }, - "\/jetpack\/v4\/explat\/sites\/mobiledotblog.wordpress.com": { - "namespace": "jetpack\/v4\/explat", - "methods": ["GET"], + "/jetpack/v4/explat/sites/mobiledotblog.wordpress.com": { + "namespace": "jetpack/v4/explat", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "jetpack\/v4\/explat", + "default": "jetpack/v4/explat", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/jetpack\/v4\/explat\/sites\/mobiledotblog.wordpress.com\/assignments": { - "namespace": "jetpack\/v4\/explat", - "methods": ["GET"], + "/jetpack/v4/explat/sites/mobiledotblog.wordpress.com/assignments": { + "namespace": "jetpack/v4/explat", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "experiment_name": { "type": "string", "required": false }, - "anon_id": { "type": "string", "required": false }, - "as_connected_user": { "type": "boolean", "required": false }, + "experiment_name": { + "type": "string", + "required": false + }, + "anon_id": { + "type": "string", + "required": false + }, + "as_connected_user": { + "type": "boolean", + "required": false + }, "platform": { "type": "string", - "enum": ["jetpack", "calypso", "wpcom"], + "enum": [ + "jetpack", + "calypso", + "wpcom" + ], "default": "jetpack", "required": false } @@ -25768,27 +38819,62 @@ } ] }, - "\/jetpack\/v4\/sites\/mobiledotblog.wordpress.com\/feature\/custom-content-types": { - "namespace": "jetpack\/v4", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/sites/mobiledotblog.wordpress.com/feature/custom-content-types": { + "namespace": "jetpack/v4", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/global-styles/status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/launchpad\/navigator": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/launchpad/navigator": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "active_checklist_slug": { "description": "The slug of the checklist to set as active.", - "type": ["null", "string"], + "type": [ + "null", + "string" + ], "required": false }, "remove_checklist_slug": { @@ -25827,12 +38913,19 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/launchpad": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/launchpad": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "checklist_slug": { "description": "Checklist slug", @@ -25880,95 +38973,253 @@ "enable_checklist_for_goals": { "description": "Used by the client to signal to Jetpack which launchpad goals have been enabled (e.g. via feature flags)", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [], "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "checklist_statuses": { "description": "Launchpad statuses", "type": "object", "properties": { - "design_edited": { "type": "boolean" }, - "site_edited": { "type": "boolean" }, - "design_completed": { "type": "boolean" }, - "design_selected": { "type": "boolean" }, - "domain_claim": { "type": "boolean" }, - "domain_upsell": { "type": "boolean" }, - "domain_upsell_deferred": { "type": "boolean" }, - "first_post_published": { "type": "boolean" }, - "generate_content": { "type": "boolean" }, - "plan_completed": { "type": "boolean" }, - "plan_selected": { "type": "boolean" }, - "setup_general": { "type": "boolean" }, - "site_launched": { "type": "boolean" }, - "verify_email": { "type": "boolean" }, - "first_post_published_newsletter": { "type": "boolean" }, - "newsletter_plan_created": { "type": "boolean" }, - "setup_newsletter": { "type": "boolean" }, - "set_up_payments": { "type": "boolean" }, - "subscribers_added": { "type": "boolean" }, - "migrate_content": { "type": "boolean" }, - "start_building_your_audience": { "type": "boolean" }, - "link_in_bio_launched": { "type": "boolean" }, - "links_added": { "type": "boolean" }, - "links_edited": { "type": "boolean" }, - "videopress_launched": { "type": "boolean" }, - "videopress_setup": { "type": "boolean" }, - "videopress_upload": { "type": "boolean" }, - "video_uploaded": { "type": "boolean" }, - "blog_launched": { "type": "boolean" }, - "setup_blog": { "type": "boolean" }, - "setup_free": { "type": "boolean" }, - "complete_profile": { "type": "boolean" }, - "site_title": { "type": "boolean" }, - "drive_traffic": { "type": "boolean" }, - "add_new_page": { "type": "boolean" }, - "update_about_page": { "type": "boolean" }, - "edit_page": { "type": "boolean" }, - "domain_customize": { "type": "boolean" }, - "domain_customize_deferred": { "type": "boolean" }, - "share_site": { "type": "boolean" }, - "earn_money": { "type": "boolean" }, - "customize_welcome_message": { "type": "boolean" }, - "enable_subscribers_modal": { "type": "boolean" }, - "add_10_email_subscribers": { "type": "boolean" }, - "write_3_posts": { "type": "boolean" }, - "manage_subscribers": { "type": "boolean" }, - "connect_social_media": { "type": "boolean" }, - "manage_paid_newsletter_plan": { "type": "boolean" }, - "add_about_page": { "type": "boolean" }, - "stripe_connected": { "type": "boolean" }, - "paid_offer_created": { "type": "boolean" }, - "site_theme_selected": { "type": "boolean" }, - "install_custom_plugin": { "type": "boolean" }, - "setup_ssh": { "type": "boolean" }, - "site_monitoring_page": { "type": "boolean" }, - "import_subscribers": { "type": "boolean" }, - "add_subscribe_block": { "type": "boolean" }, - "mobile_app_installed": { "type": "boolean" }, - "post_sharing_enabled": { "type": "boolean" }, - "front_page_updated": { "type": "boolean" }, - "woocommerce_setup": { "type": "boolean" }, - "sensei_setup": { "type": "boolean" }, - "verify_domain_email": { "type": "boolean" }, - "woo_customize_store": { "type": "boolean" }, - "woo_products": { "type": "boolean" }, - "woo_woocommerce_payments": { "type": "boolean" }, - "woo_tax": { "type": "boolean" }, - "woo_marketing": { "type": "boolean" }, - "woo_add_domain": { "type": "boolean" }, - "woo_launch_site": { "type": "boolean" }, - "migrating_site": { "type": "boolean" }, - "review_site": { "type": "boolean" }, - "review_plugins": { "type": "boolean" }, - "connect_migration_domain": { "type": "boolean" }, - "domain_dns_mapped": { "type": "boolean" }, - "check_ssl_status": { "type": "boolean" } + "design_edited": { + "type": "boolean" + }, + "site_edited": { + "type": "boolean" + }, + "design_completed": { + "type": "boolean" + }, + "design_selected": { + "type": "boolean" + }, + "domain_claim": { + "type": "boolean" + }, + "domain_upsell": { + "type": "boolean" + }, + "domain_upsell_deferred": { + "type": "boolean" + }, + "first_post_published": { + "type": "boolean" + }, + "generate_content": { + "type": "boolean" + }, + "plan_completed": { + "type": "boolean" + }, + "plan_selected": { + "type": "boolean" + }, + "setup_general": { + "type": "boolean" + }, + "site_launched": { + "type": "boolean" + }, + "verify_email": { + "type": "boolean" + }, + "first_post_published_newsletter": { + "type": "boolean" + }, + "newsletter_plan_created": { + "type": "boolean" + }, + "setup_newsletter": { + "type": "boolean" + }, + "set_up_payments": { + "type": "boolean" + }, + "subscribers_added": { + "type": "boolean" + }, + "migrate_content": { + "type": "boolean" + }, + "start_building_your_audience": { + "type": "boolean" + }, + "link_in_bio_launched": { + "type": "boolean" + }, + "links_added": { + "type": "boolean" + }, + "links_edited": { + "type": "boolean" + }, + "videopress_launched": { + "type": "boolean" + }, + "videopress_setup": { + "type": "boolean" + }, + "videopress_upload": { + "type": "boolean" + }, + "video_uploaded": { + "type": "boolean" + }, + "blog_launched": { + "type": "boolean" + }, + "setup_blog": { + "type": "boolean" + }, + "setup_free": { + "type": "boolean" + }, + "complete_profile": { + "type": "boolean" + }, + "site_title": { + "type": "boolean" + }, + "drive_traffic": { + "type": "boolean" + }, + "add_new_page": { + "type": "boolean" + }, + "update_about_page": { + "type": "boolean" + }, + "edit_page": { + "type": "boolean" + }, + "domain_customize": { + "type": "boolean" + }, + "domain_customize_deferred": { + "type": "boolean" + }, + "share_site": { + "type": "boolean" + }, + "earn_money": { + "type": "boolean" + }, + "customize_welcome_message": { + "type": "boolean" + }, + "enable_subscribers_modal": { + "type": "boolean" + }, + "add_10_email_subscribers": { + "type": "boolean" + }, + "write_3_posts": { + "type": "boolean" + }, + "manage_subscribers": { + "type": "boolean" + }, + "connect_social_media": { + "type": "boolean" + }, + "manage_paid_newsletter_plan": { + "type": "boolean" + }, + "add_about_page": { + "type": "boolean" + }, + "stripe_connected": { + "type": "boolean" + }, + "paid_offer_created": { + "type": "boolean" + }, + "site_theme_selected": { + "type": "boolean" + }, + "install_custom_plugin": { + "type": "boolean" + }, + "setup_ssh": { + "type": "boolean" + }, + "site_monitoring_page": { + "type": "boolean" + }, + "import_subscribers": { + "type": "boolean" + }, + "add_subscribe_block": { + "type": "boolean" + }, + "mobile_app_installed": { + "type": "boolean" + }, + "post_sharing_enabled": { + "type": "boolean" + }, + "front_page_updated": { + "type": "boolean" + }, + "woocommerce_setup": { + "type": "boolean" + }, + "sensei_setup": { + "type": "boolean" + }, + "verify_domain_email": { + "type": "boolean" + }, + "woo_customize_store": { + "type": "boolean" + }, + "woo_products": { + "type": "boolean" + }, + "woo_woocommerce_payments": { + "type": "boolean" + }, + "woo_tax": { + "type": "boolean" + }, + "woo_marketing": { + "type": "boolean" + }, + "woo_add_domain": { + "type": "boolean" + }, + "woo_launch_site": { + "type": "boolean" + }, + "migrating_site": { + "type": "boolean" + }, + "review_site": { + "type": "boolean" + }, + "review_plugins": { + "type": "boolean" + }, + "connect_migration_domain": { + "type": "boolean" + }, + "domain_dns_mapped": { + "type": "boolean" + }, + "check_ssl_status": { + "type": "boolean" + } }, "additionalProperties": false, "required": false @@ -25976,7 +39227,12 @@ "launchpad_screen": { "description": "Launchpad screen", "type": "string", - "enum": ["off", "minimized", "full", "skipped"], + "enum": [ + "off", + "minimized", + "full", + "skipped" + ], "required": false }, "is_checklist_dismissed": { @@ -26022,7 +39278,10 @@ "dismiss_by": { "description": "Timestamp of when the checklist should be shown again", "type": "string", - "enum": ["+ 1 day", "+ 1 week"] + "enum": [ + "+ 1 day", + "+ 1 week" + ] } }, "additionalProperties": false, @@ -26037,68 +39296,117 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/atomic-migration-status\/migrate-guru-key": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/atomic-migration-status/migrate-guru-key": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/atomic-migration-status\/wpcom-migration-key": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/atomic-migration-status/wpcom-migration-key": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/newspack-blocks\/v1": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], + "/newspack-blocks/v1": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "newspack-blocks\/v1", + "default": "newspack-blocks/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/158030780\/" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/158030780/" } ] } }, - "\/newspack-blocks\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], + "/newspack-blocks/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "newspack-blocks\/v1", + "default": "newspack-blocks/v1", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/newspack-blocks\/v1\/sites\/mobiledotblog.wordpress.com\/video-playlist": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/newspack-blocks/v1/sites/mobiledotblog.wordpress.com/video-playlist": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/newspack-blocks\/v1\/sites\/mobiledotblog.wordpress.com\/articles": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], + "/newspack-blocks/v1/sites/mobiledotblog.wordpress.com/articles": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "className": { "type": "string", "default": "", "required": false }, + "className": { + "type": "string", + "default": "", + "required": false + }, "showExcerpt": { "type": "boolean", "default": true, @@ -26164,7 +39472,11 @@ "default": "landscape", "required": false }, - "minHeight": { "type": "integer", "default": 0, "required": false }, + "minHeight": { + "type": "integer", + "default": 0, + "required": false + }, "moreButton": { "type": "boolean", "default": false, @@ -26195,8 +39507,16 @@ "default": "list", "required": false }, - "columns": { "type": "integer", "default": 3, "required": false }, - "colGap": { "type": "integer", "default": 3, "required": false }, + "columns": { + "type": "integer", + "default": 3, + "required": false + }, + "colGap": { + "type": "integer", + "default": 3, + "required": false + }, "postsToShow": { "type": "integer", "default": 3, @@ -26210,19 +39530,26 @@ "authors": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categories": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryJoinType": { "type": "string", "default": "or", - "enum": ["or", "all"], + "enum": [ + "or", + "all" + ], "required": false }, "includeSubcategories": { @@ -26233,7 +39560,9 @@ "tags": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomies": { @@ -26242,8 +39571,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -26251,34 +39587,51 @@ "tagExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, + "required": false + }, + "customTaxonomyExclusions": { + "type": "array", + "default": [], + "items": { + "type": "object", + "properties": { + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } + } + }, "required": false }, - "customTaxonomyExclusions": { + "specificPosts": { "type": "array", "default": [], "items": { - "type": "object", - "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } - } + "type": "integer" }, "required": false }, - "specificPosts": { - "type": "array", - "default": [], - "items": { "type": "integer" }, + "typeScale": { + "type": "integer", + "default": 4, "required": false }, - "typeScale": { "type": "integer", "default": 4, "required": false }, "imageScale": { "type": "integer", "default": 3, @@ -26299,7 +39652,11 @@ "default": false, "required": false }, - "textColor": { "type": "string", "default": "", "required": false }, + "textColor": { + "type": "string", + "default": "", + "required": false + }, "customTextColor": { "type": "string", "default": "", @@ -26317,8 +39674,12 @@ }, "postType": { "type": "array", - "default": ["post"], - "items": { "type": "string" }, + "default": [ + "post" + ], + "items": { + "type": "string" + }, "required": false }, "textAlign": { @@ -26328,8 +39689,12 @@ }, "includedPostStatuses": { "type": "array", - "default": ["publish"], - "items": { "type": "string" }, + "default": [ + "publish" + ], + "items": { + "type": "string" + }, "required": false }, "deduplicate": { @@ -26340,21 +39705,31 @@ "exclude_ids": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } } } ] }, - "\/newspack-blocks\/v1\/sites\/mobiledotblog.wordpress.com\/newspack-blocks-posts": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], + "/newspack-blocks/v1/sites/mobiledotblog.wordpress.com/newspack-blocks-posts": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "className": { "type": "string", "default": "", "required": false }, + "className": { + "type": "string", + "default": "", + "required": false + }, "showExcerpt": { "type": "boolean", "default": true, @@ -26420,7 +39795,11 @@ "default": "landscape", "required": false }, - "minHeight": { "type": "integer", "default": 0, "required": false }, + "minHeight": { + "type": "integer", + "default": 0, + "required": false + }, "moreButton": { "type": "boolean", "default": false, @@ -26451,8 +39830,16 @@ "default": "list", "required": false }, - "columns": { "type": "integer", "default": 3, "required": false }, - "colGap": { "type": "integer", "default": 3, "required": false }, + "columns": { + "type": "integer", + "default": 3, + "required": false + }, + "colGap": { + "type": "integer", + "default": 3, + "required": false + }, "postsToShow": { "type": "integer", "default": 3, @@ -26466,19 +39853,26 @@ "authors": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categories": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryJoinType": { "type": "string", "default": "or", - "enum": ["or", "all"], + "enum": [ + "or", + "all" + ], "required": false }, "includeSubcategories": { @@ -26489,7 +39883,9 @@ "tags": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomies": { @@ -26498,8 +39894,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -26507,13 +39910,17 @@ "tagExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomyExclusions": { @@ -26522,8 +39929,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -26531,10 +39945,16 @@ "specificPosts": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, + "required": false + }, + "typeScale": { + "type": "integer", + "default": 4, "required": false }, - "typeScale": { "type": "integer", "default": 4, "required": false }, "imageScale": { "type": "integer", "default": 3, @@ -26555,7 +39975,11 @@ "default": false, "required": false }, - "textColor": { "type": "string", "default": "", "required": false }, + "textColor": { + "type": "string", + "default": "", + "required": false + }, "customTextColor": { "type": "string", "default": "", @@ -26573,8 +39997,12 @@ }, "postType": { "type": "array", - "default": ["post"], - "items": { "type": "string" }, + "default": [ + "post" + ], + "items": { + "type": "string" + }, "required": false }, "textAlign": { @@ -26584,8 +40012,12 @@ }, "includedPostStatuses": { "type": "array", - "default": ["publish"], - "items": { "type": "string" }, + "default": [ + "publish" + ], + "items": { + "type": "string" + }, "required": false }, "deduplicate": { @@ -26596,18 +40028,24 @@ "exclude_ids": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "exclude": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false } @@ -26615,18 +40053,28 @@ } ] }, - "\/newspack-blocks\/v1\/sites\/mobiledotblog.wordpress.com\/newspack-blocks-specific-posts": { - "namespace": "newspack-blocks\/v1", - "methods": ["GET"], + "/newspack-blocks/v1/sites/mobiledotblog.wordpress.com/newspack-blocks-specific-posts": { + "namespace": "newspack-blocks/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "search": { "required": false }, - "postsToShow": { "required": false }, + "search": { + "required": false + }, + "postsToShow": { + "required": false + }, "postType": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [], "required": false } @@ -26634,58 +40082,118 @@ } ] }, - "\/akismet\/v1": { - "namespace": "akismet\/v1", - "methods": ["GET"], + "/akismet/v1": { + "namespace": "akismet/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "akismet\/v1", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "akismet/v1", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], - "_links": { "self": [{ "href": "https:\/\/mobile.blog\/akismet\/v1" }] } + "_links": { + "self": [ + { + "href": "https://mobile.blog/akismet/v1" + } + ] + } }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "akismet\/v1", - "methods": ["GET"], + "/akismet/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "akismet/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "akismet\/v1", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "akismet/v1", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/key": { - "namespace": "akismet\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/akismet/v1/sites/mobiledotblog.wordpress.com/key": { + "namespace": "akismet/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/account", + "description": "A 12-character Akismet API key. Available at akismet.com/account", "required": true } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/settings": { - "namespace": "akismet\/v1", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/akismet/v1/sites/mobiledotblog.wordpress.com/settings": { + "namespace": "akismet/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "akismet_strictness": { "type": "boolean", @@ -26701,12 +40209,16 @@ } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/stats": { - "namespace": "akismet\/v1", - "methods": ["GET"], + "/akismet/v1/sites/mobiledotblog.wordpress.com/stats": { + "namespace": "akismet/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "interval": { "type": "string", @@ -26718,12 +40230,16 @@ } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/stats\/(?P<interval>[\\w+])": { - "namespace": "akismet\/v1", - "methods": ["GET"], + "/akismet/v1/sites/mobiledotblog.wordpress.com/stats/(?P<interval>[\\w+])": { + "namespace": "akismet/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "interval": { "description": "The time period for which to retrieve stats. Options: 60-days, 6-months, all", @@ -26734,386 +40250,786 @@ } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/alert": { - "namespace": "akismet\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/akismet/v1/sites/mobiledotblog.wordpress.com/alert": { + "namespace": "akismet/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/account", + "description": "A 12-character Akismet API key. Available at akismet.com/account", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/account", + "description": "A 12-character Akismet API key. Available at akismet.com/account", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "key": { "type": "string", - "description": "A 12-character Akismet API key. Available at akismet.com\/account", + "description": "A 12-character Akismet API key. Available at akismet.com/account", "required": false } } } ] }, - "\/akismet\/v1\/sites\/mobiledotblog.wordpress.com\/webhook": { - "namespace": "akismet\/v1", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] + "/akismet/v1/sites/mobiledotblog.wordpress.com/webhook": { + "namespace": "akismet/v1", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], + "/jetpack/v4/blaze-app": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze-app", + "default": "jetpack/v4/blaze-app", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/jetpack\/v4\/blaze-app" }] + "self": [ + { + "href": "https://mobile.blog/jetpack/v4/blaze-app" + } + ] } }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "jetpack\/v4\/blaze-app", - "required": false + "default": "jetpack/v4/blaze-app", + "required": false }, - "context": { "default": "view", "required": false } - } - } - ] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/blaze\/posts(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/checkout": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/credits(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/media(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/sites\/5836086\/media": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST"], - "endpoints": [{ "methods": ["POST"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/wpcom\/media(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/experiments(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] - }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/campaigns(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "context": { + "default": "view", + "required": false + } + } + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/blaze/posts(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/wpcom/checkout": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/credits(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/media(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/wpcom/sites/5836086/media": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST" + ], + "endpoints": [ + { + "methods": [ + "POST" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/wpcom/media(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/experiments(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/campaigns(?P<sub_path>[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/campaigns(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] + }, + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/campaigns(?P<sub_path>[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/sites\/5836086\/campaigns(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/sites/5836086/campaigns(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/stats(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/stats(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/stats(?P<sub_path>[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/stats(?P<sub_path>[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/search(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/search(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/user(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/user(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/templates(?P<sub_path>[a-zA-Z0-9-_\\\/:]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/templates(?P<sub_path>[a-zA-Z0-9-_\\/:]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/subscriptions(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/subscriptions(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/subscriptions(?P<sub_path>[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/subscriptions(?P<sub_path>[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/payments(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/payments(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/(?P<api_version>v[0-9]+\\.?[0-9]*)\/payments(?P<sub_path>[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/(?P<api_version>v[0-9]+\\.?[0-9]*)/payments(?P<sub_path>[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/smart(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/smart(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/smart(?P<sub_path>[a-zA-Z0-9-_\\\/]*)": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/smart(?P<sub_path>[a-zA-Z0-9-_\\/]*)": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/locations(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/locations(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/woo(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/woo(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/image(?P<sub_path>[a-zA-Z0-9-_\\\/]*)(\\?.*)?": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/image(?P<sub_path>[a-zA-Z0-9-_\\/]*)(\\?.*)?": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze-app\/sites\/mobiledotblog.wordpress.com\/sites\/5836086\/wordads\/dsp\/api\/v1\/logs": { - "namespace": "jetpack\/v4\/blaze-app", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/jetpack/v4/blaze-app/sites/mobiledotblog.wordpress.com/sites/5836086/wordads/dsp/api/v1/logs": { + "namespace": "jetpack/v4/blaze-app", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze": { - "namespace": "jetpack\/v4\/blaze", - "methods": ["GET"], + "/jetpack/v4/blaze": { + "namespace": "jetpack/v4/blaze", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "jetpack\/v4\/blaze", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "jetpack/v4/blaze", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/jetpack\/v4\/blaze" }] + "self": [ + { + "href": "https://mobile.blog/jetpack/v4/blaze" + } + ] } }, - "\/jetpack\/v4\/blaze\/sites\/mobiledotblog.wordpress.com": { - "namespace": "jetpack\/v4\/blaze", - "methods": ["GET"], + "/jetpack/v4/blaze/sites/mobiledotblog.wordpress.com": { + "namespace": "jetpack/v4/blaze", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "jetpack\/v4\/blaze", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "jetpack/v4/blaze", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/jetpack\/v4\/blaze\/sites\/mobiledotblog.wordpress.com\/eligibility": { - "namespace": "jetpack\/v4\/blaze", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze/sites/mobiledotblog.wordpress.com/eligibility": { + "namespace": "jetpack/v4/blaze", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/jetpack\/v4\/blaze\/sites\/mobiledotblog.wordpress.com\/dashboard": { - "namespace": "jetpack\/v4\/blaze", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/jetpack/v4/blaze/sites/mobiledotblog.wordpress.com/dashboard": { + "namespace": "jetpack/v4/blaze", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/internal": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2/internal": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/internal", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "default": "wpcom/v2/mailpoet-bridge/v2/internal", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/internal" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/internal" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/internal\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2/internal/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/internal", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/internal", + "default": "wpcom/v2/mailpoet-bridge/v2/internal", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/monitor": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2/monitor": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/monitor", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", + "default": "wpcom/v2/mailpoet-bridge/v2/monitor", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/monitor" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/monitor" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/monitor\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2/monitor/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/monitor", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", + "default": "wpcom/v2/mailpoet-bridge/v2/monitor", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/monitor\/domain-risk": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2\/monitor", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }], + "/wpcom/v2/mailpoet-bridge/v2/monitor/domain-risk": { + "namespace": "wpcom/v2/mailpoet-bridge/v2/monitor", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/monitor\/domain-risk" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/monitor/domain-risk" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2", + "default": "wpcom/v2/mailpoet-bridge/v2", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ], "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["GET"], + "/wpcom/v2/mailpoet-bridge/v2/sites/mobiledotblog.wordpress.com": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { - "default": "wpcom\/v2\/mailpoet-bridge\/v2", + "default": "wpcom/v2/mailpoet-bridge/v2", "required": false }, - "context": { "default": "view", "required": false } + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/me": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["POST"], + "/wpcom/v2/mailpoet-bridge/v2/me": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "site": { "type": "string", @@ -27126,17 +41042,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/me" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/me" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/premium": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["POST"], + "/wpcom/v2/mailpoet-bridge/v2/premium": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "site": { "type": "string", @@ -27149,18 +41069,28 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/premium" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/premium" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sender_domain": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/mailpoet-bridge/v2/sender_domain": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "domain": { "type": "string", @@ -27173,17 +41103,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/sender_domain" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/sender_domain" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/sender_domain_verify\/(?P<domain>[^\/]+)": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["POST"], + "/wpcom/v2/mailpoet-bridge/v2/sender_domain_verify/(?P<domain>[^/]+)": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "domain": { "type": "string", @@ -27194,13 +41128,23 @@ } ] }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/authorized_email_address": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/mailpoet-bridge/v2/authorized_email_address": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "email": { "type": "string", @@ -27213,17 +41157,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/authorized_email_address" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/authorized_email_address" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/stats": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["PUT"], + "/wpcom/v2/mailpoet-bridge/v2/stats": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "PUT" + ], "endpoints": [ { - "methods": ["PUT"], + "methods": [ + "PUT" + ], "args": { "subscriber_count": { "type": "integer", @@ -27237,17 +41185,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/stats" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/stats" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/bounces\/search": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["POST"], + "/wpcom/v2/mailpoet-bridge/v2/bounces/search": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "addresses": { "type": "array", @@ -27261,17 +41213,21 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/bounces\/search" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/bounces/search" } ] } }, - "\/wpcom\/v2\/mailpoet-bridge\/v2\/messages": { - "namespace": "wpcom\/v2\/mailpoet-bridge\/v2", - "methods": ["POST"], + "/wpcom/v2/mailpoet-bridge/v2/messages": { + "namespace": "wpcom/v2/mailpoet-bridge/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "messages": { "type": "array", @@ -27284,17 +41240,22 @@ "_links": { "self": [ { - "href": "https:\/\/public-api.wordpress.com\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/mailpoet-bridge\/v2\/messages" + "href": "https://public-api.wordpress.com/wpcom/v2/sites/mobiledotblog.wordpress.com/mailpoet-bridge/v2/messages" } ] } }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/connections": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/connections": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "test_connections": { "type": "boolean", @@ -27304,7 +41265,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "keyring_connection_ID": { "description": "Keyring connection ID.", @@ -27325,12 +41288,21 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/connections\/(?P<connection_id>[0-9]+)": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/connections/(?P<connection_id>[0-9]+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "connection_id": { "description": "Unique identifier for the connection.", @@ -27345,7 +41317,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "connection_id": { "description": "Unique identifier for the connection.", @@ -27356,12 +41330,17 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/scheduled-actions": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/scheduled-actions": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "post_id": { "type": "integer", @@ -27371,11 +41350,22 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "post_id": { "type": "integer", "required": true }, - "connection_id": { "type": "integer", "required": true }, - "message": { "type": "string", "required": false }, + "post_id": { + "type": "integer", + "required": true + }, + "connection_id": { + "type": "integer", + "required": true + }, + "message": { + "type": "string", + "required": false + }, "share_date": { "type": "integer", "description": "Deprecated in favor of timestamp.", @@ -27383,22 +41373,40 @@ }, "timestamp": { "type": "integer", - "description": "GMT\/UTC Unix timestamp in seconds for the action.", + "description": "GMT/UTC Unix timestamp in seconds for the action.", "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/scheduled-actions\/(?P<action_id>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/scheduled-actions/(?P<action_id>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { - "message": { "type": "string", "required": false }, + "message": { + "type": "string", + "required": false + }, "share_date": { "type": "integer", "description": "Deprecated in favor of timestamp.", @@ -27406,25 +41414,43 @@ }, "timestamp": { "type": "integer", - "description": "GMT\/UTC Unix timestamp in seconds for the action.", + "description": "GMT/UTC Unix timestamp in seconds for the action.", "required": false } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/services": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/services": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/share-post\/(?P<postId>\\d+)": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/share-post/(?P<postId>\\d+)": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "message": { "description": "The message to share.", @@ -27446,12 +41472,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<postId>\\d+)\/publicize": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/posts/(?P<postId>\\d+)/publicize": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "message": { "description": "The message to share.", @@ -27473,12 +41503,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/share-status": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/share-status": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "post_id": { "type": "integer", @@ -27489,12 +41523,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/share-status\/sync": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/share-status/sync": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "post_id": { "type": "integer", @@ -27555,12 +41593,16 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/social-image-generator\/generate-token": { - "namespace": "wpcom\/v2", - "methods": ["POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/social-image-generator/generate-token": { + "namespace": "wpcom/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "text": { "description": "The text to be used to generate the image.", @@ -27569,13 +41611,25 @@ }, "image_url": { "description": "The URL of the background image to use when generating the social image.", - "oneOf": [{ "type": "string" }, { "type": "null" }], + "oneOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], "required": false }, "template": { "description": "The template slug.", "type": "string", - "enum": ["highway", "dois", "fullscreen", "edge"], + "enum": [ + "highway", + "dois", + "fullscreen", + "edge" + ], "required": false }, "font": { @@ -27587,22 +41641,49 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/publicize\/social-image-generator\/font-options": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/publicize/social-image-generator/font-options": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/update-schedules\/capabilities": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/update-schedules/capabilities": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/update-schedules\/(?P<schedule_id>[\\w]+)\/logs": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH", "GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/update-schedules/(?P<schedule_id>[\\w]+)/logs": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH", + "GET" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "action": { "description": "The action to be logged", @@ -27632,15 +41713,28 @@ } } }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/update-schedules\/(?P<schedule_id>[\\w]+)\/active": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/update-schedules/(?P<schedule_id>[\\w]+)/active": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "active": { "description": "Whether the schedule is active.", @@ -27651,34 +41745,87 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jetpack-global-styles": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jetpack-global-styles": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor\/nux": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor/nux": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["POST", "PUT", "PATCH"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor\/should-show-first-post-published-modal": { - "namespace": "wpcom\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor/should-show-first-post-published-modal": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor\/has-seen-seller-celebration-modal": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor/has-seen-seller-celebration-modal": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "has_seen_seller_celebration_modal": { "type": "boolean", @@ -27688,13 +41835,27 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor\/has-seen-video-celebration-modal": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor/has-seen-video-celebration-modal": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "has_seen_video_celebration_modal": { "type": "boolean", @@ -27704,19 +41865,40 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/block-editor\/recommended-tags-modal-dismissed": { - "namespace": "wpcom\/v2", - "methods": ["POST", "PUT", "PATCH"], - "endpoints": [{ "methods": ["POST", "PUT", "PATCH"], "args": [] }] + "/wpcom/v2/sites/mobiledotblog.wordpress.com/block-editor/recommended-tags-modal-dismissed": { + "namespace": "wpcom/v2", + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "endpoints": [ + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "args": [] + } + ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/articles": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/articles": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "className": { "type": "string", "default": "", "required": false }, + "className": { + "type": "string", + "default": "", + "required": false + }, "showExcerpt": { "type": "boolean", "default": true, @@ -27782,7 +41964,11 @@ "default": "landscape", "required": false }, - "minHeight": { "type": "integer", "default": 0, "required": false }, + "minHeight": { + "type": "integer", + "default": 0, + "required": false + }, "moreButton": { "type": "boolean", "default": false, @@ -27813,8 +41999,16 @@ "default": "list", "required": false }, - "columns": { "type": "integer", "default": 3, "required": false }, - "colGap": { "type": "integer", "default": 3, "required": false }, + "columns": { + "type": "integer", + "default": 3, + "required": false + }, + "colGap": { + "type": "integer", + "default": 3, + "required": false + }, "postsToShow": { "type": "integer", "default": 3, @@ -27828,19 +42022,26 @@ "authors": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categories": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryJoinType": { "type": "string", "default": "or", - "enum": ["or", "all"], + "enum": [ + "or", + "all" + ], "required": false }, "includeSubcategories": { @@ -27851,7 +42052,9 @@ "tags": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomies": { @@ -27860,8 +42063,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -27869,13 +42079,17 @@ "tagExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomyExclusions": { @@ -27884,8 +42098,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -27893,10 +42114,16 @@ "specificPosts": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, + "required": false + }, + "typeScale": { + "type": "integer", + "default": 4, "required": false }, - "typeScale": { "type": "integer", "default": 4, "required": false }, "imageScale": { "type": "integer", "default": 3, @@ -27917,7 +42144,11 @@ "default": false, "required": false }, - "textColor": { "type": "string", "default": "", "required": false }, + "textColor": { + "type": "string", + "default": "", + "required": false + }, "customTextColor": { "type": "string", "default": "", @@ -27935,8 +42166,12 @@ }, "postType": { "type": "array", - "default": ["post"], - "items": { "type": "string" }, + "default": [ + "post" + ], + "items": { + "type": "string" + }, "required": false }, "textAlign": { @@ -27946,8 +42181,12 @@ }, "includedPostStatuses": { "type": "array", - "default": ["publish"], - "items": { "type": "string" }, + "default": [ + "publish" + ], + "items": { + "type": "string" + }, "required": false }, "deduplicate": { @@ -27958,21 +42197,31 @@ "exclude_ids": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } } } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newspack-blocks-posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newspack-blocks-posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "className": { "type": "string", "default": "", "required": false }, + "className": { + "type": "string", + "default": "", + "required": false + }, "showExcerpt": { "type": "boolean", "default": true, @@ -28038,7 +42287,11 @@ "default": "landscape", "required": false }, - "minHeight": { "type": "integer", "default": 0, "required": false }, + "minHeight": { + "type": "integer", + "default": 0, + "required": false + }, "moreButton": { "type": "boolean", "default": false, @@ -28069,8 +42322,16 @@ "default": "list", "required": false }, - "columns": { "type": "integer", "default": 3, "required": false }, - "colGap": { "type": "integer", "default": 3, "required": false }, + "columns": { + "type": "integer", + "default": 3, + "required": false + }, + "colGap": { + "type": "integer", + "default": 3, + "required": false + }, "postsToShow": { "type": "integer", "default": 3, @@ -28084,19 +42345,26 @@ "authors": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categories": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryJoinType": { "type": "string", "default": "or", - "enum": ["or", "all"], + "enum": [ + "or", + "all" + ], "required": false }, "includeSubcategories": { @@ -28107,7 +42375,9 @@ "tags": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomies": { @@ -28116,8 +42386,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -28125,13 +42402,17 @@ "tagExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "categoryExclusions": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "customTaxonomyExclusions": { @@ -28140,8 +42421,15 @@ "items": { "type": "object", "properties": { - "slug": { "type": "string" }, - "terms": { "type": "array", "items": { "type": "integer" } } + "slug": { + "type": "string" + }, + "terms": { + "type": "array", + "items": { + "type": "integer" + } + } } }, "required": false @@ -28149,10 +42437,16 @@ "specificPosts": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, + "required": false + }, + "typeScale": { + "type": "integer", + "default": 4, "required": false }, - "typeScale": { "type": "integer", "default": 4, "required": false }, "imageScale": { "type": "integer", "default": 3, @@ -28173,7 +42467,11 @@ "default": false, "required": false }, - "textColor": { "type": "string", "default": "", "required": false }, + "textColor": { + "type": "string", + "default": "", + "required": false + }, "customTextColor": { "type": "string", "default": "", @@ -28191,8 +42489,12 @@ }, "postType": { "type": "array", - "default": ["post"], - "items": { "type": "string" }, + "default": [ + "post" + ], + "items": { + "type": "string" + }, "required": false }, "textAlign": { @@ -28202,8 +42504,12 @@ }, "includedPostStatuses": { "type": "array", - "default": ["publish"], - "items": { "type": "string" }, + "default": [ + "publish" + ], + "items": { + "type": "string" + }, "required": false }, "deduplicate": { @@ -28214,18 +42520,24 @@ "exclude_ids": { "type": "array", "default": [], - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "exclude": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false } @@ -28233,18 +42545,28 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/newspack-blocks-specific-posts": { - "namespace": "wpcom\/v2", - "methods": ["GET"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/newspack-blocks-specific-posts": { + "namespace": "wpcom/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "search": { "required": false }, - "postsToShow": { "required": false }, + "search": { + "required": false + }, + "postsToShow": { + "required": false + }, "postType": { "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "default": [], "required": false } @@ -28252,13 +42574,23 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/update-schedules": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/update-schedules": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST" + ], "args": { "plugins": { "description": "List of plugin slugs to update.", @@ -28268,14 +42600,14 @@ "arg_options": { "validate_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "validate_plugin_param" ], "sanitize_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "sanitize_plugin_param" @@ -28297,7 +42629,10 @@ "interval": { "description": "Interval for the schedule.", "type": "string", - "enum": ["daily", "weekly"], + "enum": [ + "daily", + "weekly" + ], "required": true }, "timestamp": { @@ -28312,12 +42647,20 @@ } ] }, - "\/wpcom\/v2\/sites\/mobiledotblog.wordpress.com\/update-schedules\/(?P<schedule_id>[\\w]+)": { - "namespace": "wpcom\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wpcom/v2/sites/mobiledotblog.wordpress.com/update-schedules/(?P<schedule_id>[\\w]+)": { + "namespace": "wpcom/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "schedule_id": { "description": "ID of the schedule.", @@ -28327,7 +42670,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "schedule_id": { "description": "ID of the schedule.", @@ -28342,14 +42689,14 @@ "arg_options": { "validate_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "validate_plugin_param" ], "sanitize_callback": [ { - "namespace": "wpcom\/v2", + "namespace": "wpcom/v2", "rest_base": "update-schedules" }, "sanitize_plugin_param" @@ -28371,7 +42718,10 @@ "interval": { "description": "Interval for the schedule.", "type": "string", - "enum": ["daily", "weekly"], + "enum": [ + "daily", + "weekly" + ], "required": true }, "timestamp": { @@ -28384,21 +42734,37 @@ } } }, - { "methods": ["DELETE"], "args": [] } + { + "methods": [ + "DELETE" + ], + "args": [] + } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -28437,14 +42803,18 @@ "author": { "description": "Limit result set to posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "author_exclude": { "description": "Ensure result set excludes posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -28463,21 +42833,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -28489,7 +42865,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -28515,7 +42894,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -28523,7 +42906,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -28555,18 +42940,26 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "categories": { "description": "Limit result set to items with specific terms assigned in the categories taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -28576,7 +42969,9 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] }, "include_children": { @@ -28587,7 +42982,10 @@ "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -28598,13 +42996,18 @@ }, "categories_exclude": { "description": "Limit result set to items except those with specific terms assigned in the categories taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -28614,7 +43017,9 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] }, "include_children": { @@ -28630,13 +43035,18 @@ }, "tags": { "description": "Limit result set to items with specific terms assigned in the tags taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -28646,13 +43056,18 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] }, "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -28663,13 +43078,18 @@ }, "tags_exclude": { "description": "Limit result set to items except those with specific terms assigned in the tags taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -28679,7 +43099,9 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] } }, @@ -28723,18 +43145,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -28769,12 +43201,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -28787,24 +43225,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -28822,18 +43271,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -28847,13 +43306,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -28880,13 +43345,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -28999,15 +43464,23 @@ "version": 2 }, "properties": { - "version": { "type": "number" }, + "version": { + "type": "number" + }, "attached_media": { "type": "array", "items": { "type": "object", "properties": { - "id": { "type": "number" }, - "url": { "type": "string" }, - "type": { "type": "string" } + "id": { + "type": "number" + }, + "url": { + "type": "string" + }, + "type": { + "type": "string" + } }, "additionalProperties": false } @@ -29015,14 +43488,30 @@ "image_generator_settings": { "type": "object", "properties": { - "enabled": { "type": "boolean" }, - "custom_text": { "type": "string" }, - "image_type": { "type": "string" }, - "image_id": { "type": "number" }, - "template": { "type": "string" }, - "font": { "type": "string" }, - "token": { "type": "string" }, - "default_image_id": { "type": "number" } + "enabled": { + "type": "boolean" + }, + "custom_text": { + "type": "string" + }, + "image_type": { + "type": "string" + }, + "image_id": { + "type": "number" + }, + "template": { + "type": "string" + }, + "font": { + "type": "string" + }, + "token": { + "type": "string" + }, + "default_image_id": { + "type": "number" + } }, "additionalProperties": false }, @@ -29055,13 +43544,17 @@ "categories": { "description": "The terms assigned to the post in the category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "tags": { "description": "The terms assigned to the post in the post_tag taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "jetpack_sharing_enabled": { @@ -29079,7 +43572,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -29094,7 +43587,10 @@ "can_disconnect": { "description": "Whether the current user can disconnect this connection. Deprecated.", "type": "boolean", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "connection_id": { @@ -29106,7 +43602,10 @@ "description": "Display name of the connected account." }, "external_handle": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The external handle or username of the connected account." }, "external_id": { @@ -29134,9 +43633,17 @@ "description": "Whether the connection is shared with other users." }, "status": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The connection status.", - "enum": ["ok", "broken", "must_reauth", null] + "enum": [ + "ok", + "broken", + "must_reauth", + null + ] }, "wpcom_user_id": { "type": "integer", @@ -29145,7 +43652,9 @@ "enabled": { "description": "Whether to share to this connection.", "type": "boolean", - "context": ["edit"] + "context": [ + "edit" + ] } } }, @@ -29155,13 +43664,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -29171,7 +43690,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -29188,8 +43711,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -29198,13 +43727,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -29239,12 +43774,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29257,24 +43798,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29292,18 +43844,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29317,13 +43879,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -29350,13 +43918,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -29469,15 +44037,23 @@ "version": 2 }, "properties": { - "version": { "type": "number" }, + "version": { + "type": "number" + }, "attached_media": { "type": "array", "items": { "type": "object", "properties": { - "id": { "type": "number" }, - "url": { "type": "string" }, - "type": { "type": "string" } + "id": { + "type": "number" + }, + "url": { + "type": "string" + }, + "type": { + "type": "string" + } }, "additionalProperties": false } @@ -29485,14 +44061,30 @@ "image_generator_settings": { "type": "object", "properties": { - "enabled": { "type": "boolean" }, - "custom_text": { "type": "string" }, - "image_type": { "type": "string" }, - "image_id": { "type": "number" }, - "template": { "type": "string" }, - "font": { "type": "string" }, - "token": { "type": "string" }, - "default_image_id": { "type": "number" } + "enabled": { + "type": "boolean" + }, + "custom_text": { + "type": "string" + }, + "image_type": { + "type": "string" + }, + "image_id": { + "type": "number" + }, + "template": { + "type": "string" + }, + "font": { + "type": "string" + }, + "token": { + "type": "string" + }, + "default_image_id": { + "type": "number" + } }, "additionalProperties": false }, @@ -29525,13 +44117,17 @@ "categories": { "description": "The terms assigned to the post in the category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "tags": { "description": "The terms assigned to the post in the post_tag taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "jetpack_sharing_enabled": { @@ -29548,7 +44144,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -29563,7 +44159,10 @@ "can_disconnect": { "description": "Whether the current user can disconnect this connection. Deprecated.", "type": "boolean", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "connection_id": { @@ -29575,7 +44174,10 @@ "description": "Display name of the connected account." }, "external_handle": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The external handle or username of the connected account." }, "external_id": { @@ -29603,9 +44205,17 @@ "description": "Whether the connection is shared with other users." }, "status": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The connection status.", - "enum": ["ok", "broken", "must_reauth", null] + "enum": [ + "ok", + "broken", + "must_reauth", + null + ] }, "wpcom_user_id": { "type": "integer", @@ -29614,7 +44224,9 @@ "enabled": { "description": "Whether to share to this connection.", "type": "boolean", - "context": ["edit"] + "context": [ + "edit" + ] } } }, @@ -29623,8 +44235,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -29641,12 +44257,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -29656,7 +44276,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -29682,14 +44306,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -29702,7 +44330,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -29724,12 +44355,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -29744,14 +44380,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -29773,12 +44415,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -29788,14 +44435,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -29804,13 +44457,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -29845,12 +44504,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29863,24 +44528,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29898,18 +44574,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -29923,13 +44609,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -29956,13 +44648,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -30075,15 +44767,23 @@ "version": 2 }, "properties": { - "version": { "type": "number" }, + "version": { + "type": "number" + }, "attached_media": { "type": "array", "items": { "type": "object", "properties": { - "id": { "type": "number" }, - "url": { "type": "string" }, - "type": { "type": "string" } + "id": { + "type": "number" + }, + "url": { + "type": "string" + }, + "type": { + "type": "string" + } }, "additionalProperties": false } @@ -30091,14 +44791,30 @@ "image_generator_settings": { "type": "object", "properties": { - "enabled": { "type": "boolean" }, - "custom_text": { "type": "string" }, - "image_type": { "type": "string" }, - "image_id": { "type": "number" }, - "template": { "type": "string" }, - "font": { "type": "string" }, - "token": { "type": "string" }, - "default_image_id": { "type": "number" } + "enabled": { + "type": "boolean" + }, + "custom_text": { + "type": "string" + }, + "image_type": { + "type": "string" + }, + "image_id": { + "type": "number" + }, + "template": { + "type": "string" + }, + "font": { + "type": "string" + }, + "token": { + "type": "string" + }, + "default_image_id": { + "type": "number" + } }, "additionalProperties": false }, @@ -30131,13 +44847,17 @@ "categories": { "description": "The terms assigned to the post in the category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "tags": { "description": "The terms assigned to the post in the post_tag taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false }, "jetpack_sharing_enabled": { @@ -30154,7 +44874,7 @@ "title": "jetpack-publicize-post-connections", "type": "array", "items": { - "$schema": "http:\/\/json-schema.org\/draft-04\/schema#", + "$schema": "http://json-schema.org/draft-04/schema#", "title": "jetpack-publicize-post-connection", "type": "object", "properties": { @@ -30169,7 +44889,10 @@ "can_disconnect": { "description": "Whether the current user can disconnect this connection. Deprecated.", "type": "boolean", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "connection_id": { @@ -30181,7 +44904,10 @@ "description": "Display name of the connected account." }, "external_handle": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The external handle or username of the connected account." }, "external_id": { @@ -30209,9 +44935,17 @@ "description": "Whether the connection is shared with other users." }, "status": { - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "description": "The connection status.", - "enum": ["ok", "broken", "must_reauth", null] + "enum": [ + "ok", + "broken", + "must_reauth", + null + ] }, "wpcom_user_id": { "type": "integer", @@ -30220,7 +44954,9 @@ "enabled": { "description": "Whether to share to this connection.", "type": "boolean", - "context": ["edit"] + "context": [ + "edit" + ] } } }, @@ -30230,12 +44966,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/posts\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/posts/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -30250,7 +44990,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -30258,18 +45002,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -30308,14 +45063,18 @@ "author": { "description": "Limit result set to posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "author_exclude": { "description": "Ensure result set excludes posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -30334,14 +45093,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -30353,7 +45116,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -30365,7 +45130,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -30390,14 +45158,18 @@ "parent": { "description": "Limit result set to items with particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -30406,7 +45178,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -30414,7 +45190,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -30452,18 +45230,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -30503,12 +45291,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30521,24 +45315,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30556,18 +45361,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30581,13 +45396,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -30602,13 +45423,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -30681,13 +45502,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -30697,7 +45528,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -30714,8 +45549,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -30724,13 +45565,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -30770,12 +45617,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30788,24 +45641,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30823,18 +45687,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -30848,13 +45722,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -30869,13 +45749,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -30947,8 +45827,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -30965,12 +45849,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -30980,7 +45868,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -31006,14 +45898,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -31026,7 +45922,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -31048,12 +45947,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -31068,14 +45972,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -31097,12 +46007,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -31112,14 +46027,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the post.", @@ -31128,13 +46049,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -31169,12 +46096,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31187,24 +46120,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31222,18 +46166,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31247,13 +46201,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -31268,13 +46228,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -31347,12 +46307,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pages\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pages/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -31367,7 +46331,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -31375,17 +46343,26 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/media": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -31424,14 +46401,18 @@ "author": { "description": "Limit result set to posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "author_exclude": { "description": "Ensure result set excludes posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -31450,21 +46431,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -31476,7 +46463,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -31500,14 +46490,18 @@ "parent": { "description": "Limit result set to items with particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -31516,7 +46510,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -31524,7 +46522,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -31532,7 +46532,11 @@ "description": "Limit result set to posts assigned one or more statuses.", "type": "array", "items": { - "enum": ["inherit", "private", "trash"], + "enum": [ + "inherit", + "private", + "trash" + ], "type": "string" }, "required": false @@ -31541,30 +46545,46 @@ "default": null, "description": "Limit result set to attachments of a particular media type or media types.", "type": "array", - "items": { "type": "string", "enum": ["image", "application"] }, + "items": { + "type": "string", + "enum": [ + "image", + "application" + ] + }, "required": false }, "mime_type": { "default": null, "description": "Limit result set to attachments of a particular MIME type or MIME types.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -31593,12 +46613,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31617,13 +46643,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "meta": { @@ -31633,13 +46665,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -31714,12 +46746,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31732,12 +46770,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -31752,12 +46795,20 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/media/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -31767,14 +46818,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -31783,13 +46842,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -31818,12 +46883,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31842,13 +46913,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "meta": { @@ -31858,13 +46935,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -31939,12 +47016,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -31957,12 +47040,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -31976,7 +47064,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -31993,12 +47083,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media\/(?P<id>[\\d]+)\/post-process": { - "namespace": "wp\/v2", - "methods": ["POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/media/(?P<id>[\\d]+)/post-process": { + "namespace": "wp/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "Unique identifier for the attachment.", @@ -32007,19 +47101,25 @@ }, "action": { "type": "string", - "enum": ["create-image-subsizes"], + "enum": [ + "create-image-subsizes" + ], "required": true } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media\/(?P<id>[\\d]+)\/edit": { - "namespace": "wp\/v2", - "methods": ["POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/media/(?P<id>[\\d]+)/edit": { + "namespace": "wp/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "src": { "description": "URL to the edited image file.", @@ -32034,7 +47134,10 @@ "items": { "description": "Image edit.", "type": "object", - "required": ["type", "args"], + "required": [ + "type", + "args" + ], "oneOf": [ { "title": "Flip", @@ -32042,17 +47145,24 @@ "type": { "description": "Flip type.", "type": "string", - "enum": ["flip"] + "enum": [ + "flip" + ] }, "args": { "description": "Flip arguments.", "type": "object", - "required": ["flip"], + "required": [ + "flip" + ], "properties": { "flip": { "description": "Flip direction.", "type": "object", - "required": ["horizontal", "vertical"], + "required": [ + "horizontal", + "vertical" + ], "properties": { "horizontal": { "description": "Whether to flip in the horizontal direction.", @@ -32074,12 +47184,16 @@ "type": { "description": "Rotation type.", "type": "string", - "enum": ["rotate"] + "enum": [ + "rotate" + ] }, "args": { "description": "Rotation arguments.", "type": "object", - "required": ["angle"], + "required": [ + "angle" + ], "properties": { "angle": { "description": "Angle to rotate clockwise in degrees.", @@ -32095,12 +47209,19 @@ "type": { "description": "Crop type.", "type": "string", - "enum": ["crop"] + "enum": [ + "crop" + ] }, "args": { "description": "Crop arguments.", "type": "object", - "required": ["left", "top", "width", "height"], + "required": [ + "left", + "top", + "width", + "height" + ], "properties": { "left": { "description": "Horizontal position from the left to begin the crop as a percentage of the image width.", @@ -32170,12 +47291,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -32188,12 +47315,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -32206,12 +47338,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -32231,18 +47369,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-items": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-items": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -32293,21 +47442,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -32319,7 +47474,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -32346,7 +47504,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -32354,7 +47516,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -32386,18 +47550,26 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "menus": { "description": "Limit result set to items with specific terms assigned in the menus taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -32407,13 +47579,18 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] }, "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -32424,13 +47601,18 @@ }, "menus_exclude": { "description": "Limit result set to items except those with specific terms assigned in the menus taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -32440,7 +47622,9 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] } }, @@ -32457,22 +47641,35 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -32482,7 +47679,12 @@ "default": "custom", "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { @@ -32514,7 +47716,9 @@ "classes": { "description": "Class names for the link element of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "description": { @@ -32544,7 +47748,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -32556,7 +47763,9 @@ "xfn": { "description": "The XFN relationship expressed in the link of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "menus": { @@ -32571,13 +47780,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -32629,13 +47838,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-items\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-items/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -32645,15 +47864,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -32662,17 +47891,26 @@ }, "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -32681,7 +47919,12 @@ "type": { "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { @@ -32711,7 +47954,9 @@ "classes": { "description": "Class names for the link element of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "description": { @@ -32739,7 +47984,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -32751,7 +47999,9 @@ "xfn": { "description": "The XFN relationship expressed in the link of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "menus": { @@ -32766,13 +48016,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -32823,8 +48073,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -32841,12 +48095,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-items\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-items/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -32856,14 +48115,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the object.", @@ -32873,17 +48138,26 @@ }, "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -32892,7 +48166,12 @@ "type": { "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { @@ -32916,7 +48195,9 @@ "classes": { "description": "Class names for the link element of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "description": { @@ -32944,7 +48225,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -32956,7 +48240,9 @@ "xfn": { "description": "The XFN relationship expressed in the link of this menu item.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "menus": { @@ -32971,13 +48257,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -33029,12 +48315,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-items\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-items/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -33049,7 +48339,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -33057,18 +48351,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -33119,21 +48424,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -33145,7 +48456,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -33171,7 +48485,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -33179,7 +48497,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -33211,18 +48531,26 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "wp_pattern_category": { "description": "Limit result set to items with specific terms assigned in the wp_pattern_category taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -33232,13 +48560,18 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] }, "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -33249,13 +48582,18 @@ }, "wp_pattern_category_exclude": { "description": "Limit result set to items except those with specific terms assigned in the wp_pattern_category taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", "description": "Match terms with the listed IDs.", "type": "array", - "items": { "type": "integer" } + "items": { + "type": "integer" + } }, { "title": "Term ID Taxonomy Query", @@ -33265,7 +48603,9 @@ "terms": { "description": "Term IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [] } }, @@ -33277,18 +48617,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -33322,7 +48672,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -33334,18 +48687,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33358,18 +48720,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33382,13 +48754,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -33438,7 +48810,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -33457,20 +48832,32 @@ "wp_pattern_category": { "description": "The terms assigned to the post in the wp_pattern_category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -33480,7 +48867,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -33497,8 +48888,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -33507,13 +48904,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -33547,7 +48950,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -33559,18 +48965,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33583,18 +48998,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33607,13 +49032,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -33663,7 +49088,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -33682,14 +49110,20 @@ "wp_pattern_category": { "description": "The terms assigned to the post in the wp_pattern_category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -33706,12 +49140,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -33721,7 +49159,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -33747,14 +49189,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -33767,7 +49213,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -33789,12 +49238,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -33809,14 +49263,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -33838,12 +49298,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -33853,14 +49318,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -33869,13 +49340,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -33909,7 +49386,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -33921,18 +49401,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33945,18 +49434,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -33969,13 +49468,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -34025,7 +49524,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -34044,19 +49546,25 @@ "wp_pattern_category": { "description": "The terms assigned to the post in the wp_pattern_category taxonomy.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/blocks\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/blocks/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -34071,7 +49579,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -34079,12 +49591,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34094,7 +49610,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -34120,14 +49640,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -34140,7 +49664,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -34162,12 +49689,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34182,14 +49714,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The id of a template", @@ -34211,12 +49749,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -34226,14 +49769,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The id of a template", @@ -34259,17 +49808,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -34277,17 +49834,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -34320,12 +49888,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34340,7 +49912,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -34348,17 +49924,26 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -34380,7 +49965,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "description": "Unique slug identifying the template.", @@ -34402,17 +49989,25 @@ "content": { "default": "", "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -34421,17 +50016,28 @@ "title": { "default": "", "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -34466,12 +50072,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/lookup": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/lookup": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "The slug of the template to get the fallback for", @@ -34492,12 +50102,20 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/templates\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -34507,14 +50125,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "The id of a template", @@ -34540,17 +50166,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -34558,17 +50192,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -34600,7 +50245,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "The id of a template", @@ -34617,12 +50264,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34632,7 +50283,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -34658,14 +50313,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -34678,7 +50337,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -34700,12 +50362,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34720,14 +50387,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The id of a template", @@ -34749,12 +50422,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -34764,14 +50442,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The id of a template", @@ -34797,17 +50481,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -34815,17 +50507,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -34863,12 +50566,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/(?P<parent>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -34883,7 +50590,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -34891,17 +50602,26 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -34923,7 +50643,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "description": "Unique slug identifying the template.", @@ -34945,17 +50667,25 @@ "content": { "default": "", "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -34964,17 +50694,28 @@ "title": { "default": "", "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35014,12 +50755,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/lookup": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/lookup": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "The slug of the template to get the fallback for", @@ -35040,12 +50785,20 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/template-parts\/(?P<id>([^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)[\\\/\\w%-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -35055,14 +50808,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "The id of a template", @@ -35088,17 +50849,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -35106,17 +50875,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35153,7 +50933,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "The id of a template", @@ -35170,12 +50952,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/global-styles/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -35185,7 +50971,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -35212,12 +51002,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/global-styles/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the global styles revision.", @@ -35232,7 +51026,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -35240,13 +51038,19 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/themes\/(?P<stylesheet>[\\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)\/variations": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/global-styles/themes/(?P<stylesheet>[\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)/variations": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": false }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": false + }, "args": { "stylesheet": { "description": "The theme identifier", @@ -35257,13 +51061,19 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/themes\/(?P<stylesheet>[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/global-styles/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": false }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": false + }, "args": { "stylesheet": { "description": "The theme identifier", @@ -35274,13 +51084,22 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/global-styles\/(?P<id>[\\\/\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wp/v2/sites/mobiledotblog.wordpress.com/global-styles/(?P<id>[\\/\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": false }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": false + }, "args": { "id": { "description": "The id of a template", @@ -35290,32 +51109,53 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": false }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": false + }, "args": { "styles": { "description": "Global styles.", - "type": ["object"], + "type": [ + "object" + ], "required": false }, "settings": { "description": "Global settings.", - "type": ["object"], + "type": [ + "object" + ], "required": false }, "title": { "description": "Title of the global styles variation.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the global styles variation, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35325,18 +51165,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -35387,21 +51238,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -35413,7 +51270,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -35439,7 +51299,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -35447,7 +51311,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -35479,18 +51345,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -35524,12 +51400,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35542,24 +51425,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35574,13 +51471,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -35590,7 +51497,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -35602,8 +51513,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -35612,13 +51529,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -35652,12 +51575,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35670,24 +51600,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35701,8 +51645,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -35719,12 +51667,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation\/(?P<parent>[\\d]+)\/revisions": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation/(?P<parent>[\\d]+)/revisions": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -35734,7 +51686,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -35760,14 +51716,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -35780,7 +51740,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -35802,12 +51765,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation\/(?P<parent>[\\d]+)\/revisions\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -35822,14 +51790,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -35851,12 +51825,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -35866,14 +51845,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -35882,13 +51867,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -35922,12 +51913,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35940,24 +51938,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -35972,12 +51984,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/navigation\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/navigation/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -35992,7 +52008,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -36000,17 +52020,26 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-families": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-families": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -36032,21 +52061,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -36058,26 +52093,36 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { "description": "Sort collection by post attribute.", "type": "string", "default": "id", - "enum": ["id", "include"], + "enum": [ + "id", + "include" + ], "required": false }, "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "theme_json_version": { "description": "Version of the theme.json schema used for the typography settings.", @@ -36096,12 +52141,20 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-families\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-families/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -36111,14 +52164,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -36141,7 +52202,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -36158,12 +52221,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-families\/(?P<font_family_id>[\\d]+)\/font-faces": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-families/(?P<font_family_id>[\\d]+)/font-faces": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -36173,7 +52241,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -36195,21 +52267,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -36221,20 +52299,28 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { "description": "Sort collection by post attribute.", "type": "string", "default": "id", - "enum": ["id", "include"], + "enum": [ + "id", + "include" + ], "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -36258,12 +52344,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-families\/(?P<font_family_id>[\\d]+)\/font-faces\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-families/(?P<font_family_id>[\\d]+)/font-faces/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -36278,14 +52369,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -36307,18 +52404,31 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -36369,21 +52479,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -36395,7 +52511,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -36421,7 +52540,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -36429,7 +52552,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -36461,14 +52586,18 @@ "parent": { "description": "Limit result set to items with particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -36480,25 +52609,37 @@ "invalid_ids": { "description": "List of item IDs to include in results regardless of filters.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -36523,25 +52664,39 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false } } }, { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -36592,21 +52747,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -36618,7 +52779,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -36644,7 +52808,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -36652,7 +52820,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -36684,14 +52854,18 @@ "parent": { "description": "Limit result set to items with particular parent IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "parent_exclude": { "description": "Limit result set to all items except those of a particular parent ID.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -36703,25 +52877,37 @@ "invalid_ids": { "description": "List of item IDs to include in results regardless of filters.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -36746,21 +52932,27 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -36775,8 +52967,12 @@ ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36786,15 +52982,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36803,13 +53009,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -36834,20 +53046,30 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false } } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36863,8 +53085,12 @@ } }, { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36874,15 +53100,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36891,13 +53127,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -36922,20 +53164,30 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false } } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -36952,119 +53204,223 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/filters": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/filters": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/integrations": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/integrations": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "version": { "type": "integer", "default": 1, "required": false } + "version": { + "type": "integer", + "default": 1, + "required": false + } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "version": { "type": "integer", "default": 1, "required": false } + "version": { + "type": "integer", + "default": 1, + "required": false + } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/integrations-metadata": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/integrations-metadata": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/integrations\/(?P<slug>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "DELETE", "GET", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/integrations/(?P<slug>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "DELETE", + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "args": { "slug": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "slug": { + "type": "string", + "required": true + } + } }, { - "methods": ["DELETE"], - "args": { "slug": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "slug": { + "type": "string", + "required": true + } + } }, { - "methods": ["GET"], - "args": { "slug": { "type": "string", "required": true } } + "methods": [ + "GET" + ], + "args": { + "slug": { + "type": "string", + "required": true + } + } }, { - "methods": ["DELETE"], - "args": { "slug": { "type": "string", "required": true } } + "methods": [ + "DELETE" + ], + "args": { + "slug": { + "type": "string", + "required": true + } + } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/bulk_actions": { - "namespace": "wp\/v2", - "methods": ["POST", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/bulk_actions": { + "namespace": "wp/v2", + "methods": [ + "POST", + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "action": { "type": "string", - "enum": ["mark_as_spam", "mark_as_not_spam"], + "enum": [ + "mark_as_spam", + "mark_as_not_spam" + ], "required": true }, "post_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "action": { "type": "string", - "enum": ["mark_as_spam", "mark_as_not_spam"], + "enum": [ + "mark_as_spam", + "mark_as_not_spam" + ], "required": true }, "post_ids": { "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "required": true } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/trash": { - "namespace": "wp\/v2", - "methods": ["DELETE", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/trash": { + "namespace": "wp/v2", + "methods": [ + "DELETE", + "DELETE" + ], "endpoints": [ { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "status": { "type": "string", - "enum": ["trash", "spam"], + "enum": [ + "trash", + "spam" + ], "default": "trash", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "status": { "type": "string", - "enum": ["trash", "spam"], + "enum": [ + "trash", + "spam" + ], "default": "trash", "required": false } @@ -37072,40 +53428,77 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/config": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/config": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, - { "methods": ["GET"], "args": [] } + { + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "GET" + ], + "args": [] + } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<id>\\d+)\/read": { - "namespace": "wp\/v2", - "methods": ["POST", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/(?P<id>\\d+)/read": { + "namespace": "wp/v2", + "methods": [ + "POST", + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "id": { "type": "integer", "required": true }, - "is_unread": { "type": "boolean", "required": true } + "id": { + "type": "integer", + "required": true + }, + "is_unread": { + "type": "boolean", + "required": true + } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { - "id": { "type": "integer", "required": true }, - "is_unread": { "type": "boolean", "required": true } + "id": { + "type": "integer", + "required": true + }, + "is_unread": { + "type": "boolean", + "required": true + } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/counts": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/counts": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Limit results to those matching a string.", @@ -37137,7 +53530,9 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "search": { "description": "Limit results to those matching a string.", @@ -37170,18 +53565,31 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_order": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_order": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -37232,21 +53640,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -37258,7 +53672,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -37284,7 +53701,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -37292,7 +53713,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -37324,18 +53747,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -37369,18 +53802,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -37393,13 +53836,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -37455,13 +53898,21 @@ } }, { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -37512,21 +53963,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -37538,7 +53995,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -37564,7 +54024,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -37572,7 +54036,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -37604,18 +54070,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -37649,18 +54125,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -37673,13 +54159,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -37736,8 +54222,8 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_order\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_order/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -37752,8 +54238,227 @@ ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, + "args": { + "id": { + "description": "Unique identifier for the post.", + "type": "integer", + "required": false + }, + "context": { + "description": "Scope under which the request is made; determines fields present in response.", + "type": "string", + "enum": [ + "view", + "embed", + "edit" + ], + "default": "view", + "required": false + }, + "excerpt_length": { + "description": "Override the default excerpt length.", + "type": "integer", + "required": false + }, + "password": { + "description": "The password for the post if it is password protected.", + "type": "string", + "required": false + } + } + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, + "args": { + "id": { + "description": "Unique identifier for the post.", + "type": "integer", + "required": false + }, + "date": { + "description": "The date the post was published, in the site's timezone.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "required": false + }, + "date_gmt": { + "description": "The date the post was published, as GMT.", + "type": [ + "string", + "null" + ], + "format": "date-time", + "required": false + }, + "slug": { + "description": "An alphanumeric identifier for the post unique to its type.", + "type": "string", + "required": false + }, + "status": { + "description": "A named status for the post.", + "type": "string", + "enum": [ + "publish", + "future", + "draft", + "pending", + "private", + "spam" + ], + "required": false + }, + "password": { + "description": "A password to protect access to the content and excerpt.", + "type": "string", + "required": false + }, + "excerpt": { + "description": "The excerpt for the post.", + "type": "object", + "properties": { + "raw": { + "description": "Excerpt for the post, as it exists in the database.", + "type": "string", + "context": [ + "edit" + ] + }, + "rendered": { + "description": "HTML excerpt for the post, transformed for display.", + "type": "string", + "context": [ + "view", + "edit", + "embed" + ], + "readonly": true + }, + "protected": { + "description": "Whether the excerpt is protected with a password.", + "type": "boolean", + "context": [ + "view", + "edit", + "embed" + ], + "readonly": true + } + }, + "required": false + }, + "meta": { + "description": "Meta fields.", + "type": "object", + "properties": { + "advanced_seo_description": { + "type": "string", + "title": "", + "description": "Custom post description to be used in HTML <meta /> tag.", + "default": "" + }, + "jetpack_seo_html_title": { + "type": "string", + "title": "", + "description": "Custom title to be used in HTML <title /> tag.", + "default": "" + }, + "jetpack_seo_noindex": { + "type": "boolean", + "title": "", + "description": "Whether to hide the post from search engines and the Jetpack sitemap.", + "default": false + }, + "_coblocks_attr": { + "type": "string", + "title": "", + "description": "", + "default": "" + }, + "_coblocks_dimensions": { + "type": "string", + "title": "", + "description": "", + "default": "" + }, + "_coblocks_responsive_height": { + "type": "string", + "title": "", + "description": "", + "default": "" + }, + "_coblocks_accordion_ie_support": { + "type": "string", + "title": "", + "description": "", + "default": "" + }, + "jetpack_post_was_ever_published": { + "type": "boolean", + "title": "", + "description": "Whether the post was ever published.", + "default": false + }, + "reader_suggested_tags": { + "type": "string", + "title": "", + "description": "Reader: List of suggested tags related to post", + "default": "" + } + }, + "required": false + }, + "template": { + "description": "The theme file to use to display the post.", + "type": "string", + "required": false + } + } + }, + { + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, + "args": { + "id": { + "description": "Unique identifier for the post.", + "type": "integer", + "required": false + }, + "force": { + "type": "boolean", + "default": false, + "description": "Whether to bypass Trash and force deletion.", + "required": false + } + } + }, + { + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -37763,7 +54468,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -37780,8 +54489,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -37790,194 +54505,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], - "format": "date-time", - "required": false - }, - "date_gmt": { - "description": "The date the post was published, as GMT.", - "type": ["string", "null"], - "format": "date-time", - "required": false - }, - "slug": { - "description": "An alphanumeric identifier for the post unique to its type.", - "type": "string", - "required": false - }, - "status": { - "description": "A named status for the post.", - "type": "string", - "enum": [ - "publish", - "future", - "draft", - "pending", - "private", - "spam" + "type": [ + "string", + "null" ], - "required": false - }, - "password": { - "description": "A password to protect access to the content and excerpt.", - "type": "string", - "required": false - }, - "excerpt": { - "description": "The excerpt for the post.", - "type": "object", - "properties": { - "raw": { - "description": "Excerpt for the post, as it exists in the database.", - "type": "string", - "context": ["edit"] - }, - "rendered": { - "description": "HTML excerpt for the post, transformed for display.", - "type": "string", - "context": ["view", "edit", "embed"], - "readonly": true - }, - "protected": { - "description": "Whether the excerpt is protected with a password.", - "type": "boolean", - "context": ["view", "edit", "embed"], - "readonly": true - } - }, - "required": false - }, - "meta": { - "description": "Meta fields.", - "type": "object", - "properties": { - "advanced_seo_description": { - "type": "string", - "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", - "default": "" - }, - "jetpack_seo_html_title": { - "type": "string", - "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", - "default": "" - }, - "jetpack_seo_noindex": { - "type": "boolean", - "title": "", - "description": "Whether to hide the post from search engines and the Jetpack sitemap.", - "default": false - }, - "_coblocks_attr": { - "type": "string", - "title": "", - "description": "", - "default": "" - }, - "_coblocks_dimensions": { - "type": "string", - "title": "", - "description": "", - "default": "" - }, - "_coblocks_responsive_height": { - "type": "string", - "title": "", - "description": "", - "default": "" - }, - "_coblocks_accordion_ie_support": { - "type": "string", - "title": "", - "description": "", - "default": "" - }, - "jetpack_post_was_ever_published": { - "type": "boolean", - "title": "", - "description": "Whether the post was ever published.", - "default": false - }, - "reader_suggested_tags": { - "type": "string", - "title": "", - "description": "Reader: List of suggested tags related to post", - "default": "" - } - }, - "required": false - }, - "template": { - "description": "The theme file to use to display the post.", - "type": "string", - "required": false - } - } - }, - { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, - "args": { - "id": { - "description": "Unique identifier for the post.", - "type": "integer", - "required": false - }, - "force": { - "type": "boolean", - "default": false, - "description": "Whether to bypass Trash and force deletion.", - "required": false - } - } - }, - { - "methods": ["GET"], - "allow_batch": { "v1": true }, - "args": { - "id": { - "description": "Unique identifier for the post.", - "type": "integer", - "required": false - }, - "context": { - "description": "Scope under which the request is made; determines fields present in response.", - "type": "string", - "enum": ["view", "embed", "edit"], - "default": "view", - "required": false - }, - "excerpt_length": { - "description": "Override the default excerpt length.", - "type": "integer", - "required": false - }, - "password": { - "description": "The password for the post if it is password protected.", - "type": "string", - "required": false - } - } - }, - { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, - "args": { - "id": { - "description": "Unique identifier for the post.", - "type": "integer", - "required": false - }, - "date": { - "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -38011,18 +54551,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38035,13 +54585,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -38097,8 +54647,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -38115,18 +54669,31 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_product": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_product": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -38165,14 +54732,18 @@ "author": { "description": "Limit result set to posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "author_exclude": { "description": "Ensure result set excludes posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -38191,21 +54762,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -38217,7 +54794,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -38243,7 +54823,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -38251,7 +54835,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -38283,18 +54869,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -38328,12 +54924,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38346,24 +54948,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38386,13 +54999,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -38484,13 +55097,21 @@ } }, { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -38529,14 +55150,18 @@ "author": { "description": "Limit result set to posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "author_exclude": { "description": "Ensure result set excludes posts assigned to specific authors.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -38555,21 +55180,27 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -38581,7 +55212,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -38607,7 +55241,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -38615,7 +55253,9 @@ "slug": { "description": "Limit result set to posts with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "status": { @@ -38647,18 +55287,28 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -38692,12 +55342,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38710,24 +55366,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38750,13 +55417,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -38849,8 +55516,8 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_product\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_product/(?P<id>[\\d]+)": { + "namespace": "wp/v2", "methods": [ "GET", "POST", @@ -38865,8 +55532,12 @@ ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -38876,7 +55547,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -38888,8 +55563,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -38898,13 +55579,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -38938,12 +55625,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38956,24 +55649,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -38996,13 +55700,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -39094,8 +55798,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -39111,8 +55819,12 @@ } }, { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -39122,7 +55834,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -39134,8 +55850,14 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -39144,13 +55866,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -39184,12 +55912,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39202,24 +55936,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39242,13 +55987,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -39340,8 +56085,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the post.", @@ -39358,12 +56107,19 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_product\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_product/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39373,14 +56129,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39389,13 +56151,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -39429,12 +56197,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39447,24 +56221,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39487,13 +56272,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -39585,7 +56370,9 @@ } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39595,14 +56382,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39611,13 +56404,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -39651,12 +56450,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39669,24 +56474,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -39709,13 +56525,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -39808,12 +56624,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_product\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_product/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39828,14 +56649,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -39850,7 +56677,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39858,17 +56689,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/types": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/types": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39876,12 +56715,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/types\/(?P<type>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/types/(?P<type>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "type": { "description": "An alphanumeric identifier for the post type.", @@ -39891,7 +56734,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39899,17 +56746,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/statuses": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/statuses": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39917,12 +56772,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/statuses\/(?P<status>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/statuses/(?P<status>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "description": "An alphanumeric identifier for the status.", @@ -39932,7 +56791,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39940,17 +56803,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/taxonomies": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/taxonomies": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -39963,12 +56834,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/taxonomies\/(?P<taxonomy>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/taxonomies/(?P<taxonomy>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "taxonomy": { "description": "An alphanumeric identifier for the taxonomy.", @@ -39978,7 +56853,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -39986,18 +56865,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/categories": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/categories": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -40024,14 +56914,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -40039,7 +56933,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -40078,14 +56975,20 @@ "slug": { "description": "Limit result set to terms with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "description": { "description": "HTML description of the term.", @@ -40117,13 +57020,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/categories\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/categories/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40133,15 +57046,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40177,8 +57100,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40195,18 +57122,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/tags": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/tags": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -40233,14 +57171,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -40253,7 +57195,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -40287,14 +57232,20 @@ "slug": { "description": "Limit result set to terms with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "description": { "description": "HTML description of the term.", @@ -40321,13 +57272,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/tags\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/tags/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40337,15 +57298,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40376,8 +57347,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40394,18 +57369,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menus": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menus": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -40432,14 +57418,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -40452,7 +57442,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -40486,14 +57479,20 @@ "slug": { "description": "Limit result set to terms with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "description": { "description": "HTML description of the term.", @@ -40519,7 +57518,9 @@ "locations": { "description": "The locations assigned to the menu.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "auto_add": { @@ -40531,13 +57532,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menus\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menus/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40547,15 +57558,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40586,7 +57607,9 @@ "locations": { "description": "The locations assigned to the menu.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "auto_add": { @@ -40597,8 +57620,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40615,18 +57642,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp_pattern_category": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp_pattern_category": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -40653,14 +57691,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -40673,7 +57715,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -40707,14 +57752,20 @@ "slug": { "description": "Limit result set to terms with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false } } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "description": { "description": "HTML description of the term.", @@ -40741,13 +57792,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/wp_pattern_category\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/wp_pattern_category/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40757,15 +57818,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40796,8 +57867,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the term.", @@ -40814,18 +57889,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/users": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/users": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -40852,14 +57938,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, @@ -40871,7 +57961,10 @@ "order": { "default": "asc", "description": "Order sort attribute ascending or descending.", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "type": "string", "required": false }, @@ -40894,30 +57987,41 @@ "slug": { "description": "Limit result set to users with one or more specific slugs.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "roles": { "description": "Limit result set to users matching at least one specific role provided. Accepts csv list or single role.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "capabilities": { "description": "Limit result set to users matching at least one specific capability provided. Accepts csv list or single capability.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "who": { "description": "Limit result set to users who are considered authors.", "type": "string", - "enum": ["authors"], + "enum": [ + "authors" + ], "required": false }, "has_published_posts": { "description": "Limit result set to users who have published posts.", - "type": ["boolean", "array"], + "type": [ + "boolean", + "array" + ], "items": { "type": "string", "enum": { @@ -40944,7 +58048,13 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["email", "name", "id", "username", "slug"], + "enum": [ + "email", + "name", + "id", + "username", + "slug" + ], "type": "string" }, "required": false @@ -40952,8 +58062,12 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "username": { "description": "Login name for the user.", @@ -41129,7 +58243,9 @@ "roles": { "description": "Roles assigned to the user.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "password": { @@ -41154,13 +58270,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/users\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/users/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the user.", @@ -41170,15 +58296,25 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the user.", @@ -41359,7 +58495,9 @@ "roles": { "description": "Roles assigned to the user.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "password": { @@ -41383,8 +58521,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the user.", @@ -41406,24 +58548,40 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/users\/me": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/users/me": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "username": { "description": "Login name for the user.", @@ -41599,7 +58757,9 @@ "roles": { "description": "Roles assigned to the user.", "type": "array", - "items": { "type": "string" }, + "items": { + "type": "string" + }, "required": false }, "password": { @@ -41623,7 +58783,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "force": { "type": "boolean", @@ -41640,17 +58802,24 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/search": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/search": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed"], + "enum": [ + "view", + "embed" + ], "default": "view", "required": false }, @@ -41678,7 +58847,11 @@ "default": "post", "description": "Limit results to items of an object type.", "type": "string", - "enum": ["post", "term", "post-format"], + "enum": [ + "post", + "term", + "post-format" + ], "required": false }, "subtype": { @@ -41686,7 +58859,13 @@ "description": "Limit results to items of one or more object subtypes.", "type": "array", "items": { - "enum": ["post", "page", "category", "post_tag", "any"], + "enum": [ + "post", + "page", + "category", + "post_tag", + "any" + ], "type": "string" }, "required": false @@ -41694,14 +58873,18 @@ "exclude": { "description": "Ensure result set excludes specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false }, "include": { "description": "Limit result set to specific IDs.", "type": "array", - "items": { "type": "integer" }, + "items": { + "type": "integer" + }, "default": [], "required": false } @@ -41709,12 +58892,20 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-renderer\/(?P<name>[a-z0-9-]+\/[a-z0-9-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-renderer/(?P<name>[a-z0-9-]+/[a-z0-9-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "args": { "name": { "description": "Unique registered name for the block.", @@ -41724,7 +58915,9 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["edit"], + "enum": [ + "edit" + ], "default": "view", "required": false }, @@ -41742,7 +58935,10 @@ } }, { - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "args": { "name": { "description": "Unique registered name for the block.", @@ -41752,7 +58948,9 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["edit"], + "enum": [ + "edit" + ], "default": "view", "required": false }, @@ -41771,17 +58969,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-types": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-types": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -41794,17 +59000,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-types\/(?P<namespace>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-types/(?P<namespace>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -41817,12 +59031,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-types\/(?P<namespace>[a-zA-Z0-9_-]+)\/(?P<name>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-types/(?P<namespace>[a-zA-Z0-9_-]+)/(?P<name>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "Block name.", @@ -41837,7 +59055,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -41845,13 +59067,27 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/settings": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wp/v2/sites/mobiledotblog.wordpress.com/settings": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ - { "methods": ["GET"], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "GET" + ], + "args": [] + }, + { + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "active_templates": { "title": "Active Templates", @@ -41960,14 +59196,20 @@ "title": "", "description": "Allow link notifications from other blogs (pingbacks and trackbacks) on new articles.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "default_comment_status": { "title": "Allow comments on new posts", "description": "Allow people to submit comments on new posts.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "jetpack_social_image_generator_settings": { @@ -41975,10 +59217,18 @@ "description": "", "type": "object", "properties": { - "enabled": { "type": "boolean" }, - "template": { "type": "string" }, - "font": { "type": "string" }, - "default_image_id": { "type": "number" } + "enabled": { + "type": "boolean" + }, + "template": { + "type": "string" + }, + "font": { + "type": "string" + }, + "default_image_id": { + "type": "number" + } }, "additionalProperties": false, "required": false @@ -41987,7 +59237,11 @@ "title": "", "description": "", "type": "object", - "properties": { "enabled": { "type": "boolean" } }, + "properties": { + "enabled": { + "type": "boolean" + } + }, "additionalProperties": false, "required": false }, @@ -42008,10 +59262,16 @@ "description": "", "type": "object", "properties": { - "append_link": { "type": "boolean" }, + "append_link": { + "type": "boolean" + }, "link_format": { "type": "string", - "enum": ["full_url", "shortlink", "permashortcitation"] + "enum": [ + "full_url", + "shortlink", + "permashortcitation" + ] } }, "additionalProperties": false, @@ -42030,12 +59290,29 @@ "items": { "type": "object", "properties": { - "id": { "type": "string", "format": "text-field" }, - "name": { "type": "string", "format": "text-field" }, - "icon": { "type": "string", "format": "uri" }, - "url": { "type": "string", "format": "uri" }, - "description": { "type": "string", "format": "text-field" }, - "is_non_wpcom_site": { "type": "boolean" } + "id": { + "type": "string", + "format": "text-field" + }, + "name": { + "type": "string", + "format": "text-field" + }, + "icon": { + "type": "string", + "format": "uri" + }, + "url": { + "type": "string", + "format": "uri" + }, + "description": { + "type": "string", + "format": "text-field" + }, + "is_non_wpcom_site": { + "type": "boolean" + } }, "additionalProperties": false }, @@ -42045,29 +59322,43 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/themes": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/themes": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "description": "Limit result set to themes assigned one or more statuses.", "type": "array", - "items": { "enum": ["active", "inactive"], "type": "string" }, + "items": { + "enum": [ + "active", + "inactive" + ], + "type": "string" + }, "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/themes\/(?P<stylesheet>[^\\\/:<>\\*\\?\"\\|]+(?:\\\/[^\\\/:<>\\*\\?\"\\|]+)?)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { "description": "The theme's stylesheet. This uniquely identifies the theme.", @@ -42078,17 +59369,26 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/plugins": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/plugins": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42102,14 +59402,20 @@ "type": "array", "items": { "type": "string", - "enum": ["inactive", "active", "network-active"] + "enum": [ + "inactive", + "active", + "network-active" + ] }, "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "type": "string", @@ -42120,7 +59426,11 @@ "status": { "description": "The plugin activation status.", "type": "string", - "enum": ["inactive", "active", "network-active"], + "enum": [ + "inactive", + "active", + "network-active" + ], "default": "inactive", "required": false } @@ -42128,80 +59438,118 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/plugins\/(?P<plugin>[^.\\\/]+(?:\\\/[^.\\\/]+)?)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/plugins/(?P<plugin>[^.\\/]+(?:\\/[^.\\/]+)?)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false }, "status": { "description": "The plugin activation status.", "type": "string", - "enum": ["inactive", "active", "network-active"], + "enum": [ + "inactive", + "active", + "network-active" + ], "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, "plugin": { "type": "string", - "pattern": "[^.\\\/]+(?:\\\/[^.\\\/]+)?", + "pattern": "[^.\\/]+(?:\\/[^.\\/]+)?", "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/sidebars": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/sidebars": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42209,12 +59557,19 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/sidebars\/(?P<id>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "/wp/v2/sites/mobiledotblog.wordpress.com/sidebars/(?P<id>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a registered sidebar", @@ -42224,36 +59579,57 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "widgets": { "description": "Nested widgets.", "type": "array", - "items": { "type": ["object", "string"] }, + "items": { + "type": [ + "object", + "string" + ] + }, "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widget-types": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widget-types": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42261,12 +59637,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widget-types/(?P<id>[a-zA-Z0-9_-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The widget type id.", @@ -42276,7 +59656,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42284,12 +59668,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)\/encode": { - "namespace": "wp\/v2", - "methods": ["POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widget-types/(?P<id>[a-zA-Z0-9_-]+)/encode": { + "namespace": "wp/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The widget type id.", @@ -42310,12 +59698,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widget-types\/(?P<id>[a-zA-Z0-9_-]+)\/render": { - "namespace": "wp\/v2", - "methods": ["POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widget-types/(?P<id>[a-zA-Z0-9_-]+)/render": { + "namespace": "wp/v2", + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The widget type id.", @@ -42331,18 +59723,29 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widgets": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widgets": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42354,8 +59757,12 @@ } }, { - "methods": ["POST"], - "allow_batch": { "v1": true }, + "methods": [ + "POST" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the widget.", @@ -42380,17 +59787,23 @@ "encoded": { "description": "Base64 encoded representation of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "hash": { "description": "Cryptographic hash of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "raw": { "description": "Unencoded instance settings, if supported.", "type": "object", - "context": ["edit"] + "context": [ + "edit" + ] } }, "required": false @@ -42404,26 +59817,46 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/widgets\/(?P<id>[\\w\\-]+)": { - "namespace": "wp\/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp/v2/sites/mobiledotblog.wordpress.com/widgets/(?P<id>[\\w\\-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], - "allow_batch": { "v1": true }, + "methods": [ + "GET" + ], + "allow_batch": { + "v1": true + }, "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], - "allow_batch": { "v1": true }, + "methods": [ + "POST", + "PUT", + "PATCH" + ], + "allow_batch": { + "v1": true + }, "args": { "id": { "description": "Unique identifier for the widget.", @@ -42447,17 +59880,23 @@ "encoded": { "description": "Base64 encoded representation of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "hash": { "description": "Cryptographic hash of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "raw": { "description": "Unencoded instance settings, if supported.", "type": "object", - "context": ["edit"] + "context": [ + "edit" + ] } }, "required": false @@ -42470,8 +59909,12 @@ } }, { - "methods": ["DELETE"], - "allow_batch": { "v1": true }, + "methods": [ + "DELETE" + ], + "allow_batch": { + "v1": true + }, "args": { "force": { "description": "Whether to force removal of the widget, or move it to the inactive sidebar.", @@ -42482,17 +59925,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-directory\/search": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/block-directory/search": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view"], + "enum": [ + "view" + ], "default": "view", "required": false }, @@ -42521,17 +59970,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/pattern-directory\/patterns": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/pattern-directory/patterns": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42582,7 +60039,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -42608,17 +60068,30 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/block-patterns\/categories": { - "namespace": "wp\/v2", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wp/v2/sites/mobiledotblog.wordpress.com/block-patterns/categories": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com\/url-details": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET"], + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com/url-details": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL to process.", @@ -42630,17 +60103,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-locations": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-locations": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42648,12 +60129,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/menu-locations\/(?P<location>[\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/menu-locations/(?P<location>[\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "location": { "description": "An alphanumeric identifier for the menu location.", @@ -42663,7 +60148,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42671,22 +60160,39 @@ } ] }, - "\/wp-block-editor\/v1\/sites\/mobiledotblog.wordpress.com\/navigation-fallback": { - "namespace": "wp-block-editor\/v1", - "methods": ["GET"], - "endpoints": [{ "methods": ["GET"], "args": [] }] + "/wp-block-editor/v1/sites/mobiledotblog.wordpress.com/navigation-fallback": { + "namespace": "wp-block-editor/v1", + "methods": [ + "GET" + ], + "endpoints": [ + { + "methods": [ + "GET" + ], + "args": [] + } + ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-collections": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-collections": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42709,17 +60215,25 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/font-collections\/(?P<slug>[\\\/\\w-]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/font-collections/(?P<slug>[\\/\\w-]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42727,46 +60241,78 @@ } ] }, - "\/wp-abilities\/v1": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wp-abilities\/v1", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wp-abilities/v1", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ], "_links": { - "self": [{ "href": "https:\/\/mobile.blog\/wp-abilities\/v1" }] + "self": [ + { + "href": "https://mobile.blog/wp-abilities/v1" + } + ] } }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { - "namespace": { "default": "wp-abilities\/v1", "required": false }, - "context": { "default": "view", "required": false } + "namespace": { + "default": "wp-abilities/v1", + "required": false + }, + "context": { + "default": "view", + "required": false + } } } ] }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com\/categories": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com/categories": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42789,12 +60335,16 @@ } ] }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com\/categories\/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com/categories/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "Unique identifier for the ability category.", @@ -42806,17 +60356,29 @@ } ] }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com\/abilities\/(?P<name>[a-zA-Z0-9\\-\\\/]+?)\/run": { - "namespace": "wp-abilities\/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+?)/run": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "args": { "name": { "description": "Unique identifier for the ability.", "type": "string", - "pattern": "^[a-zA-Z0-9\\-\\\/]+$", + "pattern": "^[a-zA-Z0-9\\-\\/]+$", "required": false }, "input": { @@ -42837,17 +60399,25 @@ } ] }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com\/abilities": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com/abilities": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -42875,29 +60445,38 @@ } ] }, - "\/wp-abilities\/v1\/sites\/mobiledotblog.wordpress.com\/abilities\/(?P<name>[a-zA-Z0-9\\-\\\/]+)": { - "namespace": "wp-abilities\/v1", - "methods": ["GET"], + "/wp-abilities/v1/sites/mobiledotblog.wordpress.com/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+)": { + "namespace": "wp-abilities/v1", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "Unique identifier for the ability.", "type": "string", - "pattern": "^[a-zA-Z0-9\\-\\\/]+$", + "pattern": "^[a-zA-Z0-9\\-\\/]+$", "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -42907,14 +60486,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -42923,13 +60508,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -42954,25 +60545,35 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false } } } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/feedback\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/feedback/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -42987,7 +60588,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -42995,12 +60600,17 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_order\/(?P<id>[\\d]+)\/autosaves": { - "namespace": "wp\/v2", - "methods": ["GET", "POST"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_order/(?P<id>[\\d]+)/autosaves": { + "namespace": "wp/v2", + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -43010,14 +60620,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -43026,13 +60642,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -43066,18 +60688,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -43090,13 +60722,13 @@ "advanced_seo_description": { "type": "string", "title": "", - "description": "Custom post description to be used in HTML <meta \/> tag.", + "description": "Custom post description to be used in HTML <meta /> tag.", "default": "" }, "jetpack_seo_html_title": { "type": "string", "title": "", - "description": "Custom title to be used in HTML <title \/> tag.", + "description": "Custom title to be used in HTML <title /> tag.", "default": "" }, "jetpack_seo_noindex": { @@ -43153,12 +60785,16 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/jp_pay_order\/(?P<parent>[\\d]+)\/autosaves\/(?P<id>[\\d]+)": { - "namespace": "wp\/v2", - "methods": ["GET"], + "/wp/v2/sites/mobiledotblog.wordpress.com/jp_pay_order/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { + "namespace": "wp/v2", + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -43173,7 +60809,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -43181,16 +60821,23 @@ } ] }, - "\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/batch\/v1": { + "/wp/v2/sites/mobiledotblog.wordpress.com/batch/v1": { "namespace": "", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "validation": { "type": "string", - "enum": ["require-all-validate", "normal"], + "enum": [ + "require-all-validate", + "normal" + ], "default": "normal", "required": false }, @@ -43202,10 +60849,18 @@ "properties": { "method": { "type": "string", - "enum": ["POST", "PUT", "PATCH", "DELETE"], + "enum": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "default": "POST" }, - "path": { "type": "string", "required": true }, + "path": { + "type": "string", + "required": true + }, "body": { "type": "object", "properties": [], @@ -43215,8 +60870,13 @@ "type": "object", "properties": [], "additionalProperties": { - "type": ["string", "array"], - "items": { "type": "string" } + "type": [ + "string", + "array" + ], + "items": { + "type": "string" + } } } } @@ -43230,23 +60890,31 @@ }, "site_logo": 311, "site_icon": 93, - "site_icon_url": "https:\/\/mobiledotblog.wordpress.com\/wp-content\/uploads\/2019\/03\/mobile-logo.png", + "site_icon_url": "https://mobiledotblog.wordpress.com/wp-content/uploads/2019/03/mobile-logo.png", "_links": { - "help": [{ "href": "https:\/\/developer.wordpress.org\/rest-api\/" }], + "help": [ + { + "href": "https://developer.wordpress.org/rest-api/" + } + ], "wp:featuredmedia": [ { "embeddable": true, "type": "site_logo", - "href": "https:\/\/public-api.wordpress.com\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media\/311" + "href": "https://public-api.wordpress.com/wp/v2/sites/mobiledotblog.wordpress.com/media/311" }, { "embeddable": true, "type": "site_icon", - "href": "https:\/\/public-api.wordpress.com\/wp\/v2\/sites\/mobiledotblog.wordpress.com\/media\/93" + "href": "https://public-api.wordpress.com/wp/v2/sites/mobiledotblog.wordpress.com/media/93" } ], "curies": [ - { "name": "wp", "href": "https:\/\/api.w.org\/{rel}", "templated": true } + { + "name": "wp", + "href": "https://api.w.org/{rel}", + "templated": true + } ] } } diff --git a/test-data/api-details/test-case-07.json b/test-data/api-details/test-case-07.json index c672b844a..b48c9b2c4 100644 --- a/test-data/api-details/test-case-07.json +++ b/test-data/api-details/test-case-07.json @@ -32,10 +32,14 @@ "routes": { "/": { "namespace": "", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "default": "view", @@ -54,14 +58,21 @@ }, "/batch/v1": { "namespace": "", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "validation": { "type": "string", - "enum": ["require-all-validate", "normal"], + "enum": [ + "require-all-validate", + "normal" + ], "default": "normal", "required": false }, @@ -73,7 +84,12 @@ "properties": { "method": { "type": "string", - "enum": ["POST", "PUT", "PATCH", "DELETE"], + "enum": [ + "POST", + "PUT", + "PATCH", + "DELETE" + ], "default": "POST" }, "path": { @@ -89,7 +105,10 @@ "type": "object", "properties": [], "additionalProperties": { - "type": ["string", "array"], + "type": [ + "string", + "array" + ], "items": { "type": "string" } @@ -112,10 +131,14 @@ }, "/oembed/1.0": { "namespace": "oembed/1.0", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { "default": "oembed/1.0", @@ -138,10 +161,14 @@ }, "/oembed/1.0/embed": { "namespace": "oembed/1.0", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL of the resource for which to fetch oEmbed data.", @@ -170,10 +197,14 @@ }, "/oembed/1.0/proxy": { "namespace": "oembed/1.0", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL of the resource for which to fetch oEmbed data.", @@ -185,7 +216,10 @@ "description": "The oEmbed format to use.", "type": "string", "default": "json", - "enum": ["json", "xml"], + "enum": [ + "json", + "xml" + ], "required": false }, "maxwidth": { @@ -218,10 +252,14 @@ }, "/wp/v2": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { "default": "wp/v2", @@ -244,10 +282,15 @@ }, "/wp/v2/posts": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -255,7 +298,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -342,7 +389,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -354,7 +403,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -380,7 +432,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -420,12 +476,18 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "categories": { "description": "Limit result set to items with specific terms assigned in the categories taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -456,7 +518,10 @@ "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -467,7 +532,10 @@ }, "categories_exclude": { "description": "Limit result set to items except those with specific terms assigned in the categories taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -503,7 +571,10 @@ }, "tags": { "description": "Limit result set to items with specific terms assigned in the tags taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -529,7 +600,10 @@ "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -540,7 +614,10 @@ }, "tags_exclude": { "description": "Limit result set to items except those with specific terms assigned in the tags taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -604,20 +681,28 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -629,7 +714,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -644,12 +735,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -662,24 +759,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -697,18 +805,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -722,13 +840,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -800,10 +924,18 @@ }, "/wp/v2/posts/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -816,7 +948,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -833,7 +969,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -845,13 +985,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -863,7 +1009,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -878,12 +1030,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -896,24 +1054,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -931,18 +1100,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -956,13 +1135,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -1024,7 +1209,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -1046,10 +1233,14 @@ }, "/wp/v2/posts/(?P<parent>[\\d]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -1059,7 +1250,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -1109,7 +1304,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -1133,10 +1331,15 @@ }, "/wp/v2/posts/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -1151,14 +1354,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -1182,10 +1391,15 @@ }, "/wp/v2/posts/(?P<id>[\\d]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -1195,14 +1409,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -1211,13 +1431,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -1229,7 +1455,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -1244,12 +1476,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1262,24 +1500,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1297,18 +1546,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1322,13 +1581,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "format": { @@ -1393,10 +1658,14 @@ }, "/wp/v2/posts/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -1411,7 +1680,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -1421,10 +1694,15 @@ }, "/wp/v2/pages": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -1432,7 +1710,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -1524,7 +1806,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -1536,7 +1820,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -1581,7 +1868,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -1621,20 +1912,28 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -1646,7 +1945,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -1666,12 +1971,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1684,24 +1995,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1719,18 +2041,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1744,13 +2076,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -1789,10 +2127,18 @@ }, "/wp/v2/pages/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -1805,7 +2151,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -1822,7 +2172,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -1834,13 +2188,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -1852,7 +2212,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -1872,12 +2238,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1890,24 +2262,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1925,18 +2308,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -1950,13 +2343,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -1985,7 +2384,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -2007,10 +2408,14 @@ }, "/wp/v2/pages/(?P<parent>[\\d]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -2020,7 +2425,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -2070,7 +2479,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -2094,10 +2506,15 @@ }, "/wp/v2/pages/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -2112,14 +2529,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -2143,10 +2566,15 @@ }, "/wp/v2/pages/(?P<id>[\\d]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -2156,14 +2584,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the post.", @@ -2172,13 +2606,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -2190,7 +2630,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -2205,12 +2651,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2223,24 +2675,35 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2258,18 +2721,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2283,13 +2756,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "menu_order": { @@ -2321,10 +2800,14 @@ }, "/wp/v2/pages/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -2339,7 +2822,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -2349,15 +2836,24 @@ }, "/wp/v2/media": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -2444,7 +2940,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -2456,7 +2954,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -2500,7 +3001,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -2518,7 +3023,11 @@ "description": "Limit result set to posts assigned one or more statuses.", "type": "array", "items": { - "enum": ["inherit", "private", "trash"], + "enum": [ + "inherit", + "private", + "trash" + ], "type": "string" }, "required": false @@ -2529,7 +3038,13 @@ "type": "array", "items": { "type": "string", - "enum": ["image", "video", "text", "application", "audio"] + "enum": [ + "image", + "video", + "text", + "application", + "audio" + ] }, "required": false }, @@ -2545,17 +3060,25 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -2567,7 +3090,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "title": { @@ -2577,12 +3106,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2601,13 +3136,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "meta": { @@ -2633,12 +3174,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2651,12 +3198,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -2680,10 +3232,18 @@ }, "/wp/v2/media/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -2693,14 +3253,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -2709,13 +3277,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -2727,7 +3301,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "title": { @@ -2737,12 +3317,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2761,13 +3347,19 @@ "comment_status": { "description": "Whether or not comments are open on the post.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "ping_status": { "description": "Whether or not the post can be pinged.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "meta": { @@ -2793,12 +3385,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -2811,12 +3409,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -2830,7 +3433,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -2849,10 +3454,14 @@ }, "/wp/v2/media/(?P<id>[\\d]+)/post-process": { "namespace": "wp/v2", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "Unique identifier for the attachment.", @@ -2861,7 +3470,9 @@ }, "action": { "type": "string", - "enum": ["create-image-subsizes"], + "enum": [ + "create-image-subsizes" + ], "required": true } } @@ -2870,10 +3481,14 @@ }, "/wp/v2/media/(?P<id>[\\d]+)/edit": { "namespace": "wp/v2", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "src": { "description": "URL to the edited image file.", @@ -2888,7 +3503,10 @@ "items": { "description": "Image edit.", "type": "object", - "required": ["type", "args"], + "required": [ + "type", + "args" + ], "oneOf": [ { "title": "Flip", @@ -2896,17 +3514,24 @@ "type": { "description": "Flip type.", "type": "string", - "enum": ["flip"] + "enum": [ + "flip" + ] }, "args": { "description": "Flip arguments.", "type": "object", - "required": ["flip"], + "required": [ + "flip" + ], "properties": { "flip": { "description": "Flip direction.", "type": "object", - "required": ["horizontal", "vertical"], + "required": [ + "horizontal", + "vertical" + ], "properties": { "horizontal": { "description": "Whether to flip in the horizontal direction.", @@ -2928,12 +3553,16 @@ "type": { "description": "Rotation type.", "type": "string", - "enum": ["rotate"] + "enum": [ + "rotate" + ] }, "args": { "description": "Rotation arguments.", "type": "object", - "required": ["angle"], + "required": [ + "angle" + ], "properties": { "angle": { "description": "Angle to rotate clockwise in degrees.", @@ -2949,12 +3578,19 @@ "type": { "description": "Crop type.", "type": "string", - "enum": ["crop"] + "enum": [ + "crop" + ] }, "args": { "description": "Crop arguments.", "type": "object", - "required": ["left", "top", "width", "height"], + "required": [ + "left", + "top", + "width", + "height" + ], "properties": { "left": { "description": "Horizontal position from the left to begin the crop as a percentage of the image width.", @@ -3024,12 +3660,18 @@ "raw": { "description": "Caption for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML caption for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -3042,12 +3684,17 @@ "raw": { "description": "Description for the attachment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML description for the attachment, transformed for display.", "type": "string", - "context": ["view", "edit"], + "context": [ + "view", + "edit" + ], "readonly": true } }, @@ -3060,12 +3707,18 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -3087,10 +3740,15 @@ }, "/wp/v2/menu-items": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -3098,7 +3756,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -3167,7 +3829,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -3179,7 +3843,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -3206,7 +3873,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -3246,12 +3917,18 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "menus": { "description": "Limit result set to items with specific terms assigned in the menus taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -3277,7 +3954,10 @@ "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -3288,7 +3968,10 @@ }, "menus_exclude": { "description": "Limit result set to items except those with specific terms assigned in the menus taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -3325,24 +4008,35 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, "args": { "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -3352,14 +4046,25 @@ "default": "custom", "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { "default": "publish", "description": "A named status for the object.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "parent": { @@ -3409,7 +4114,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -3450,10 +4158,18 @@ }, "/wp/v2/menu-items/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -3466,14 +4182,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -3485,17 +4209,26 @@ }, "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -3504,13 +4237,24 @@ "type": { "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { "description": "A named status for the object.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "parent": { @@ -3557,7 +4301,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -3588,7 +4335,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -3610,10 +4359,15 @@ }, "/wp/v2/menu-items/(?P<id>[\\d]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -3623,14 +4377,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the object.", @@ -3640,17 +4400,26 @@ }, "title": { "description": "The title for the object.", - "type": ["string", "object"], + "type": [ + "string", + "object" + ], "properties": { "raw": { "description": "Title for the object, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML title for the object, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -3659,13 +4428,24 @@ "type": { "description": "The family of objects originally represented, such as \"post_type\" or \"taxonomy\".", "type": "string", - "enum": ["taxonomy", "post_type", "post_type_archive", "custom"], + "enum": [ + "taxonomy", + "post_type", + "post_type_archive", + "custom" + ], "required": false }, "status": { "description": "A named status for the object.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "attr_title": { @@ -3706,7 +4486,10 @@ "target": { "description": "The target attribute of the link element for this menu item.", "type": "string", - "enum": ["_blank", ""], + "enum": [ + "_blank", + "" + ], "required": false }, "url": { @@ -3740,10 +4523,14 @@ }, "/wp/v2/menu-items/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -3758,7 +4545,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -3768,10 +4559,15 @@ }, "/wp/v2/blocks": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -3779,7 +4575,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -3848,7 +4648,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -3860,7 +4662,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -3886,7 +4691,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -3926,12 +4735,18 @@ "tax_relation": { "description": "Limit result set based on relationship between multiple taxonomies.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "required": false }, "wp_pattern_category": { "description": "Limit result set to items with specific terms assigned in the wp_pattern_category taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -3957,7 +4772,10 @@ "operator": { "description": "Whether items must be assigned all or any of the specified terms.", "type": "string", - "enum": ["AND", "OR"], + "enum": [ + "AND", + "OR" + ], "default": "OR" } }, @@ -3968,7 +4786,10 @@ }, "wp_pattern_category_exclude": { "description": "Limit result set to items except those with specific terms assigned in the wp_pattern_category taxonomy.", - "type": ["object", "array"], + "type": [ + "object", + "array" + ], "oneOf": [ { "title": "Term ID List", @@ -4000,20 +4821,28 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -4025,7 +4854,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -4040,7 +4875,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -4052,18 +4890,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4076,18 +4923,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4102,7 +4959,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -4139,10 +4999,18 @@ }, "/wp/v2/blocks/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -4155,7 +5023,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -4172,7 +5044,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -4184,13 +5060,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -4202,7 +5084,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -4217,7 +5105,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -4229,18 +5120,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4253,18 +5153,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4279,7 +5189,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -4306,7 +5219,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -4328,10 +5243,14 @@ }, "/wp/v2/blocks/(?P<parent>[\\d]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -4341,7 +5260,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -4391,7 +5314,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -4415,10 +5341,15 @@ }, "/wp/v2/blocks/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -4433,14 +5364,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -4464,10 +5401,15 @@ }, "/wp/v2/blocks/(?P<id>[\\d]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -4477,14 +5419,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -4493,13 +5441,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -4511,7 +5465,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -4526,7 +5486,10 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] } }, "required": false @@ -4538,18 +5501,27 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4562,18 +5534,28 @@ "raw": { "description": "Excerpt for the post, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML excerpt for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the excerpt is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4588,7 +5570,10 @@ "title": "", "description": "", "default": "", - "enum": ["partial", "unsynced"] + "enum": [ + "partial", + "unsynced" + ] }, "footnotes": { "type": "string", @@ -4618,10 +5603,14 @@ }, "/wp/v2/blocks/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -4636,7 +5625,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -4646,10 +5639,14 @@ }, "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -4659,7 +5656,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -4709,7 +5710,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -4733,10 +5737,15 @@ }, "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -4751,14 +5760,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The id of a template", @@ -4782,10 +5797,15 @@ }, "/wp/v2/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -4795,14 +5815,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The id of a template", @@ -4828,17 +5854,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -4846,17 +5880,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -4870,7 +5915,13 @@ "status": { "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -4884,10 +5935,14 @@ }, "/wp/v2/templates/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -4902,7 +5957,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -4912,15 +5971,24 @@ }, "/wp/v2/templates": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -4942,7 +6010,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "description": "Unique slug identifying the template.", @@ -4964,17 +6034,25 @@ "content": { "default": "", "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -4983,17 +6061,28 @@ "title": { "default": "", "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5009,7 +6098,13 @@ "default": "publish", "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -5030,10 +6125,14 @@ }, "/wp/v2/templates/lookup": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "The slug of the template to get the fallback for", @@ -5063,10 +6162,18 @@ }, "/wp/v2/templates/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -5076,14 +6183,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "The id of a template", @@ -5109,17 +6224,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -5127,17 +6250,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5151,7 +6285,13 @@ "status": { "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -5162,7 +6302,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "The id of a template", @@ -5181,10 +6323,14 @@ }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -5194,7 +6340,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -5244,7 +6394,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -5268,10 +6421,15 @@ }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -5286,14 +6444,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The id of a template", @@ -5317,10 +6481,15 @@ }, "/wp/v2/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -5330,14 +6499,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The id of a template", @@ -5363,17 +6538,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -5381,17 +6564,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5405,7 +6599,13 @@ "status": { "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -5424,10 +6624,14 @@ }, "/wp/v2/template-parts/(?P<parent>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The id of a template", @@ -5442,7 +6646,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -5452,15 +6660,24 @@ }, "/wp/v2/template-parts": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -5482,7 +6699,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "description": "Unique slug identifying the template.", @@ -5504,17 +6723,25 @@ "content": { "default": "", "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -5523,17 +6750,28 @@ "title": { "default": "", "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5549,7 +6787,13 @@ "default": "publish", "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -5575,10 +6819,14 @@ }, "/wp/v2/template-parts/lookup": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "The slug of the template to get the fallback for", @@ -5608,10 +6856,18 @@ }, "/wp/v2/template-parts/(?P<id>([^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)[\\/\\w%-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a template", @@ -5621,14 +6877,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "The id of a template", @@ -5654,17 +6918,25 @@ }, "content": { "description": "Content of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Content for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit"] + "context": [ + "view", + "edit" + ] }, "block_version": { "description": "Version of the content block format used by the template.", "type": "integer", - "context": ["edit"], + "context": [ + "edit" + ], "readonly": true } }, @@ -5672,17 +6944,28 @@ }, "title": { "description": "Title of template.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the template, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the template, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5696,7 +6979,13 @@ "status": { "description": "Status of template.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "author": { @@ -5712,7 +7001,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "The id of a template", @@ -5731,10 +7022,14 @@ }, "/wp/v2/global-styles/(?P<parent>[\\d]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -5744,7 +7039,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -5773,10 +7072,14 @@ }, "/wp/v2/global-styles/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the global styles revision.", @@ -5791,7 +7094,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -5801,10 +7108,14 @@ }, "/wp/v2/global-styles/themes/(?P<stylesheet>[\\/\\s%\\w\\.\\(\\)\\[\\]\\@_\\-]+)/variations": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": false }, @@ -5820,10 +7131,14 @@ }, "/wp/v2/global-styles/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": false }, @@ -5839,10 +7154,17 @@ }, "/wp/v2/global-styles/(?P<id>[\\/\\d+]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": false }, @@ -5855,34 +7177,53 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": false }, "args": { "styles": { "description": "Global styles.", - "type": ["object"], + "type": [ + "object" + ], "required": false }, "settings": { "description": "Global settings.", - "type": ["object"], + "type": [ + "object" + ], "required": false }, "title": { "description": "Title of the global styles variation.", - "type": ["object", "string"], + "type": [ + "object", + "string" + ], "properties": { "raw": { "description": "Title for the global styles variation, as it exists in the database.", "type": "string", - "context": ["view", "edit", "embed"] + "context": [ + "view", + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -5894,10 +7235,15 @@ }, "/wp/v2/navigation": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -5905,7 +7251,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -5974,7 +7324,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -5986,7 +7338,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -6012,7 +7367,11 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["post_title", "post_content", "post_excerpt"], + "enum": [ + "post_title", + "post_content", + "post_excerpt" + ], "type": "string" }, "required": false @@ -6052,20 +7411,28 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, "args": { "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -6077,7 +7444,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -6092,12 +7465,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6110,24 +7490,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6151,10 +7545,18 @@ }, "/wp/v2/navigation/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -6167,7 +7569,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -6179,7 +7585,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -6191,13 +7601,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -6209,7 +7625,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -6224,12 +7646,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6242,24 +7671,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6273,7 +7716,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -6295,10 +7740,14 @@ }, "/wp/v2/navigation/(?P<parent>[\\d]+)/revisions": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -6308,7 +7757,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -6358,7 +7811,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -6382,10 +7838,15 @@ }, "/wp/v2/navigation/(?P<parent>[\\d]+)/revisions/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -6400,14 +7861,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "parent": { "description": "The ID for the parent of the revision.", @@ -6431,10 +7898,15 @@ }, "/wp/v2/navigation/(?P<id>[\\d]+)/autosaves": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -6444,14 +7916,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -6460,13 +7938,19 @@ }, "date": { "description": "The date the post was published, in the site's timezone.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, "date_gmt": { "description": "The date the post was published, as GMT.", - "type": ["string", "null"], + "type": [ + "string", + "null" + ], "format": "date-time", "required": false }, @@ -6478,7 +7962,13 @@ "status": { "description": "A named status for the post.", "type": "string", - "enum": ["publish", "future", "draft", "pending", "private"], + "enum": [ + "publish", + "future", + "draft", + "pending", + "private" + ], "required": false }, "password": { @@ -6493,12 +7983,19 @@ "raw": { "description": "Title for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML title for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6511,24 +8008,38 @@ "raw": { "description": "Content for the post, as it exists in the database.", "type": "string", - "context": ["edit", "embed"] + "context": [ + "edit", + "embed" + ] }, "rendered": { "description": "HTML content for the post, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true }, "block_version": { "description": "Version of the content block format used by the post.", "type": "integer", - "context": ["edit", "embed"], + "context": [ + "edit", + "embed" + ], "readonly": true }, "protected": { "description": "Whether the content is protected with a password.", "type": "boolean", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -6545,10 +8056,14 @@ }, "/wp/v2/navigation/(?P<parent>[\\d]+)/autosaves/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "parent": { "description": "The ID for the parent of the autosave.", @@ -6563,7 +8078,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -6573,15 +8092,24 @@ }, "/wp/v2/font-families": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -6621,7 +8149,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -6633,14 +8163,20 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { "description": "Sort collection by post attribute.", "type": "string", "default": "id", - "enum": ["id", "include"], + "enum": [ + "id", + "include" + ], "required": false }, "slug": { @@ -6654,7 +8190,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "theme_json_version": { "description": "Version of the theme.json schema used for the typography settings.", @@ -6682,10 +8220,18 @@ }, "/wp/v2/font-families/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -6695,14 +8241,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -6725,7 +8279,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the post.", @@ -6744,10 +8300,15 @@ }, "/wp/v2/font-families/(?P<font_family_id>[\\d]+)/font-faces": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -6757,7 +8318,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -6797,7 +8362,9 @@ "search_semantics": { "description": "How to interpret the search input.", "type": "string", - "enum": ["exact"], + "enum": [ + "exact" + ], "required": false }, "offset": { @@ -6809,20 +8376,28 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { "description": "Sort collection by post attribute.", "type": "string", "default": "id", - "enum": ["id", "include"], + "enum": [ + "id", + "include" + ], "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -6848,10 +8423,15 @@ }, "/wp/v2/font-families/(?P<font_family_id>[\\d]+)/font-faces/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "DELETE"], + "methods": [ + "GET", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -6866,14 +8446,20 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "font_family_id": { "description": "The ID for the parent font family of the font face.", @@ -6897,15 +8483,23 @@ }, "/wp/v2/types": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -6922,10 +8516,14 @@ }, "/wp/v2/types/(?P<type>[\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "type": { "description": "An alphanumeric identifier for the post type.", @@ -6935,7 +8533,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -6945,15 +8547,23 @@ }, "/wp/v2/statuses": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -6970,10 +8580,14 @@ }, "/wp/v2/statuses/(?P<status>[\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "description": "An alphanumeric identifier for the status.", @@ -6983,7 +8597,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -6993,15 +8611,23 @@ }, "/wp/v2/taxonomies": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -7023,10 +8649,14 @@ }, "/wp/v2/taxonomies/(?P<taxonomy>[\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "taxonomy": { "description": "An alphanumeric identifier for the taxonomy.", @@ -7036,7 +8666,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -7046,10 +8680,15 @@ }, "/wp/v2/categories": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7057,7 +8696,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -7103,7 +8746,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -7150,7 +8796,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -7194,10 +8842,18 @@ }, "/wp/v2/categories/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7210,14 +8866,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -7256,7 +8920,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -7278,10 +8944,15 @@ }, "/wp/v2/tags": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7289,7 +8960,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -7340,7 +9015,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -7382,7 +9060,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -7421,10 +9101,18 @@ }, "/wp/v2/tags/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7437,14 +9125,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -7478,7 +9174,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -7500,10 +9198,15 @@ }, "/wp/v2/menus": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7511,7 +9214,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -7562,7 +9269,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -7604,7 +9314,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -7656,10 +9368,18 @@ }, "/wp/v2/menus/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7672,14 +9392,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -7726,7 +9454,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -7748,10 +9478,15 @@ }, "/wp/v2/wp_pattern_category": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7759,7 +9494,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -7810,7 +9549,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "asc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -7852,7 +9594,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -7891,10 +9635,18 @@ }, "/wp/v2/wp_pattern_category/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7907,14 +9659,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -7948,7 +9708,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -7970,10 +9732,15 @@ }, "/wp/v2/users": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -7981,7 +9748,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -8031,7 +9802,10 @@ "order": { "default": "asc", "description": "Order sort attribute ascending or descending.", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "type": "string", "required": false }, @@ -8078,12 +9852,17 @@ "who": { "description": "Limit result set to users who are considered authors.", "type": "string", - "enum": ["authors"], + "enum": [ + "authors" + ], "required": false }, "has_published_posts": { "description": "Limit result set to users who have published posts.", - "type": ["boolean", "array"], + "type": [ + "boolean", + "array" + ], "items": { "type": "string", "enum": { @@ -8107,7 +9886,13 @@ "description": "Array of column names to be searched.", "type": "array", "items": { - "enum": ["email", "name", "id", "username", "slug"], + "enum": [ + "email", + "name", + "id", + "username", + "slug" + ], "type": "string" }, "required": false @@ -8115,7 +9900,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -8160,7 +9947,10 @@ "locale": { "description": "Locale for the user.", "type": "string", - "enum": ["", "en_US"], + "enum": [ + "", + "en_US" + ], "required": false }, "nickname": { @@ -8195,7 +9985,9 @@ "title": "", "description": "", "default": [], - "context": ["edit"], + "context": [ + "edit" + ], "properties": { "_modified": { "description": "The date and time the preferences were updated.", @@ -8222,10 +10014,18 @@ }, "/wp/v2/users/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -8238,14 +10038,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -8295,7 +10103,10 @@ "locale": { "description": "Locale for the user.", "type": "string", - "enum": ["", "en_US"], + "enum": [ + "", + "en_US" + ], "required": false }, "nickname": { @@ -8330,7 +10141,9 @@ "title": "", "description": "", "default": [], - "context": ["edit"], + "context": [ + "edit" + ], "properties": { "_modified": { "description": "The date and time the preferences were updated.", @@ -8347,7 +10160,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -8374,22 +10189,38 @@ }, "/wp/v2/users/me": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "username": { "description": "Login name for the user.", @@ -8431,7 +10262,10 @@ "locale": { "description": "Locale for the user.", "type": "string", - "enum": ["", "en_US"], + "enum": [ + "", + "en_US" + ], "required": false }, "nickname": { @@ -8466,7 +10300,9 @@ "title": "", "description": "", "default": [], - "context": ["edit"], + "context": [ + "edit" + ], "properties": { "_modified": { "description": "The date and time the preferences were updated.", @@ -8483,7 +10319,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "force": { "type": "boolean", @@ -8509,22 +10347,34 @@ }, "/wp/v2/users/(?P<user_id>(?:[\\d]+|me))/application-passwords": { "namespace": "wp/v2", - "methods": ["GET", "POST", "DELETE"], + "methods": [ + "GET", + "POST", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "app_id": { "description": "A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.", @@ -8536,7 +10386,9 @@ }, { "type": "string", - "enum": [""] + "enum": [ + "" + ] } ], "required": false @@ -8551,22 +10403,32 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": [] } ] }, "/wp/v2/users/(?P<user_id>(?:[\\d]+|me))/application-passwords/introspect": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -8576,22 +10438,38 @@ }, "/wp/v2/users/(?P<user_id>(?:[\\d]+|me))/application-passwords/(?P<uuid>[\\w\\-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "app_id": { "description": "A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.", @@ -8603,7 +10481,9 @@ }, { "type": "string", - "enum": [""] + "enum": [ + "" + ] } ], "required": false @@ -8618,22 +10498,33 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": [] } ] }, "/wp/v2/comments": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -8719,7 +10610,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -8784,7 +10678,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "author": { "description": "The ID of the user object, if author was a user.", @@ -8826,12 +10722,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -8875,7 +10777,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -8893,10 +10798,18 @@ }, "/wp/v2/comments/(?P<id>[\\d]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -8906,7 +10819,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -8918,7 +10835,11 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -8965,12 +10886,18 @@ "raw": { "description": "Content for the comment, as it exists in the database.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "rendered": { "description": "HTML content for the comment, transformed for display.", "type": "string", - "context": ["view", "edit", "embed"], + "context": [ + "view", + "edit", + "embed" + ], "readonly": true } }, @@ -9012,7 +10939,10 @@ "title": "", "description": "Note resolution status", "default": "", - "enum": ["resolved", "reopen"] + "enum": [ + "resolved", + "reopen" + ] } }, "required": false @@ -9020,7 +10950,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "id": { "description": "Unique identifier for the comment.", @@ -9044,15 +10976,22 @@ }, "/wp/v2/search": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed"], + "enum": [ + "view", + "embed" + ], "default": "view", "required": false }, @@ -9080,7 +11019,11 @@ "default": "post", "description": "Limit results to items of an object type.", "type": "string", - "enum": ["post", "term", "post-format"], + "enum": [ + "post", + "term", + "post-format" + ], "required": false }, "subtype": { @@ -9088,7 +11031,13 @@ "description": "Limit results to items of one or more object subtypes.", "type": "array", "items": { - "enum": ["post", "page", "category", "post_tag", "any"], + "enum": [ + "post", + "page", + "category", + "post_tag", + "any" + ], "type": "string" }, "required": false @@ -9124,10 +11073,16 @@ }, "/wp/v2/block-renderer/(?P<name>[a-z0-9-]+/[a-z0-9-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "args": { "name": { "description": "Unique registered name for the block.", @@ -9137,7 +11092,9 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["edit"], + "enum": [ + "edit" + ], "default": "view", "required": false }, @@ -9158,15 +11115,23 @@ }, "/wp/v2/block-types": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9188,15 +11153,23 @@ }, "/wp/v2/block-types/(?P<namespace>[a-zA-Z0-9_-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9211,10 +11184,14 @@ }, "/wp/v2/block-types/(?P<namespace>[a-zA-Z0-9_-]+)/(?P<name>[a-zA-Z0-9_-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "Block name.", @@ -9229,7 +11206,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -9239,14 +11220,25 @@ }, "/wp/v2/settings": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "title": { "title": "Title", @@ -9350,14 +11342,20 @@ "title": "", "description": "Allow link notifications from other blogs (pingbacks and trackbacks) on new articles.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "default_comment_status": { "title": "Allow comments on new posts", "description": "Allow people to submit comments on new posts.", "type": "string", - "enum": ["open", "closed"], + "enum": [ + "open", + "closed" + ], "required": false }, "site_logo": { @@ -9385,16 +11383,23 @@ }, "/wp/v2/themes": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "status": { "description": "Limit result set to themes assigned one or more statuses.", "type": "array", "items": { - "enum": ["active", "inactive"], + "enum": [ + "active", + "inactive" + ], "type": "string" }, "required": false @@ -9412,10 +11417,14 @@ }, "/wp/v2/themes/(?P<stylesheet>[^\\/:<>\\*\\?\"\\|]+(?:\\/[^\\/:<>\\*\\?\"\\|]+)?)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "stylesheet": { "description": "The theme's stylesheet. This uniquely identifies the theme.", @@ -9428,15 +11437,24 @@ }, "/wp/v2/plugins": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9450,14 +11468,19 @@ "type": "array", "items": { "type": "string", - "enum": ["inactive", "active"] + "enum": [ + "inactive", + "active" + ] }, "required": false } } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "slug": { "type": "string", @@ -9468,7 +11491,10 @@ "status": { "description": "The plugin activation status.", "type": "string", - "enum": ["inactive", "active"], + "enum": [ + "inactive", + "active" + ], "default": "inactive", "required": false } @@ -9485,15 +11511,27 @@ }, "/wp/v2/plugins/(?P<plugin>[^.\\/]+(?:\\/[^.\\/]+)?)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9505,12 +11543,20 @@ } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9522,18 +11568,27 @@ "status": { "description": "The plugin activation status.", "type": "string", - "enum": ["inactive", "active"], + "enum": [ + "inactive", + "active" + ], "required": false } } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9548,15 +11603,23 @@ }, "/wp/v2/sidebars": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -9573,10 +11636,17 @@ }, "/wp/v2/sidebars/(?P<id>[\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The id of a registered sidebar", @@ -9586,20 +11656,31 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "args": { "widgets": { "description": "Nested widgets.", "type": "array", "items": { - "type": ["object", "string"] + "type": [ + "object", + "string" + ] }, "required": false } @@ -9609,15 +11690,23 @@ }, "/wp/v2/widget-types": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -9634,10 +11723,14 @@ }, "/wp/v2/widget-types/(?P<id>[a-zA-Z0-9_-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "id": { "description": "The widget type id.", @@ -9647,7 +11740,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -9657,10 +11754,14 @@ }, "/wp/v2/widget-types/(?P<id>[a-zA-Z0-9_-]+)/encode": { "namespace": "wp/v2", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The widget type id.", @@ -9683,10 +11784,14 @@ }, "/wp/v2/widget-types/(?P<id>[a-zA-Z0-9_-]+)/render": { "namespace": "wp/v2", - "methods": ["POST"], + "methods": [ + "POST" + ], "endpoints": [ { - "methods": ["POST"], + "methods": [ + "POST" + ], "args": { "id": { "description": "The widget type id.", @@ -9704,10 +11809,15 @@ }, "/wp/v2/widgets": { "namespace": "wp/v2", - "methods": ["GET", "POST"], + "methods": [ + "GET", + "POST" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -9715,7 +11825,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9727,7 +11841,9 @@ } }, { - "methods": ["POST"], + "methods": [ + "POST" + ], "allow_batch": { "v1": true }, @@ -9755,17 +11871,23 @@ "encoded": { "description": "Base64 encoded representation of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "hash": { "description": "Cryptographic hash of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "raw": { "description": "Unencoded instance settings, if supported.", "type": "object", - "context": ["edit"] + "context": [ + "edit" + ] } }, "required": false @@ -9788,10 +11910,18 @@ }, "/wp/v2/widgets/(?P<id>[\\w\\-]+)": { "namespace": "wp/v2", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "allow_batch": { "v1": true }, @@ -9799,14 +11929,22 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } } }, { - "methods": ["POST", "PUT", "PATCH"], + "methods": [ + "POST", + "PUT", + "PATCH" + ], "allow_batch": { "v1": true }, @@ -9833,17 +11971,23 @@ "encoded": { "description": "Base64 encoded representation of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "hash": { "description": "Cryptographic hash of the instance settings.", "type": "string", - "context": ["edit"] + "context": [ + "edit" + ] }, "raw": { "description": "Unencoded instance settings, if supported.", "type": "object", - "context": ["edit"] + "context": [ + "edit" + ] } }, "required": false @@ -9856,7 +12000,9 @@ } }, { - "methods": ["DELETE"], + "methods": [ + "DELETE" + ], "allow_batch": { "v1": true }, @@ -9872,15 +12018,21 @@ }, "/wp/v2/block-directory/search": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view"], + "enum": [ + "view" + ], "default": "view", "required": false }, @@ -9918,15 +12070,23 @@ }, "/wp/v2/pattern-directory/patterns": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -9977,7 +12137,10 @@ "description": "Order sort attribute ascending or descending.", "type": "string", "default": "desc", - "enum": ["asc", "desc"], + "enum": [ + "asc", + "desc" + ], "required": false }, "orderby": { @@ -10012,10 +12175,14 @@ }, "/wp/v2/block-patterns/patterns": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10029,10 +12196,14 @@ }, "/wp/v2/block-patterns/categories": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10046,10 +12217,14 @@ }, "/wp-site-health/v1": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { "default": "wp-site-health/v1", @@ -10072,10 +12247,14 @@ }, "/wp-site-health/v1/tests/background-updates": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10089,10 +12268,14 @@ }, "/wp-site-health/v1/tests/loopback-requests": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10106,10 +12289,14 @@ }, "/wp-site-health/v1/tests/https-status": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10123,10 +12310,14 @@ }, "/wp-site-health/v1/tests/dotorg-communication": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10140,10 +12331,14 @@ }, "/wp-site-health/v1/tests/authorization-header": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10157,10 +12352,14 @@ }, "/wp-site-health/v1/directory-sizes": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10174,10 +12373,14 @@ }, "/wp-site-health/v1/tests/page-cache": { "namespace": "wp-site-health/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10191,10 +12394,14 @@ }, "/wp-block-editor/v1": { "namespace": "wp-block-editor/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { "default": "wp-block-editor/v1", @@ -10217,10 +12424,14 @@ }, "/wp-block-editor/v1/url-details": { "namespace": "wp-block-editor/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "url": { "description": "The URL to process.", @@ -10241,15 +12452,23 @@ }, "/wp/v2/menu-locations": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -10266,10 +12485,14 @@ }, "/wp/v2/menu-locations/(?P<location>[\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "location": { "description": "An alphanumeric identifier for the menu location.", @@ -10279,7 +12502,11 @@ "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -10289,10 +12516,14 @@ }, "/wp-block-editor/v1/export": { "namespace": "wp-block-editor/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10306,10 +12537,14 @@ }, "/wp-block-editor/v1/navigation-fallback": { "namespace": "wp-block-editor/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": [] } ], @@ -10323,15 +12558,23 @@ }, "/wp/v2/font-collections": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -10363,15 +12606,23 @@ }, "/wp/v2/font-collections/(?P<slug>[\\/\\w-]+)": { "namespace": "wp/v2", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false } @@ -10381,10 +12632,14 @@ }, "/wp-abilities/v1": { "namespace": "wp-abilities/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "namespace": { "default": "wp-abilities/v1", @@ -10407,15 +12662,23 @@ }, "/wp-abilities/v1/categories": { "namespace": "wp-abilities/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -10447,10 +12710,14 @@ }, "/wp-abilities/v1/categories/(?P<slug>[a-z0-9]+(?:-[a-z0-9]+)*)": { "namespace": "wp-abilities/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "slug": { "description": "Unique identifier for the ability category.", @@ -10464,10 +12731,22 @@ }, "/wp-abilities/v1/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+?)/run": { "namespace": "wp-abilities/v1", - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "endpoints": [ { - "methods": ["GET", "POST", "PUT", "PATCH", "DELETE"], + "methods": [ + "GET", + "POST", + "PUT", + "PATCH", + "DELETE" + ], "args": { "name": { "description": "Unique identifier for the ability.", @@ -10495,15 +12774,23 @@ }, "/wp-abilities/v1/abilities": { "namespace": "wp-abilities/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "context": { "description": "Scope under which the request is made; determines fields present in response.", "type": "string", - "enum": ["view", "embed", "edit"], + "enum": [ + "view", + "embed", + "edit" + ], "default": "view", "required": false }, @@ -10540,10 +12827,14 @@ }, "/wp-abilities/v1/abilities/(?P<name>[a-zA-Z0-9\\-\\/]+)": { "namespace": "wp-abilities/v1", - "methods": ["GET"], + "methods": [ + "GET" + ], "endpoints": [ { - "methods": ["GET"], + "methods": [ + "GET" + ], "args": { "name": { "description": "Unique identifier for the ability.", diff --git a/test-data/integration-test-responses/localhost-json-root.json b/test-data/integration-test-responses/localhost-json-root.json index af9f01ee8..3a0a8e215 100644 --- a/test-data/integration-test-responses/localhost-json-root.json +++ b/test-data/integration-test-responses/localhost-json-root.json @@ -1,15 +1,15 @@ { "name": "my-test-site", "description": "", - "url": "http:\/\/localhost", - "home": "http:\/\/localhost", + "url": "http://localhost", + "home": "http://localhost", "gmt_offset": -5, - "timezone_string": "America\/New_York", + "timezone_string": "America/New_York", "namespaces": [ - "oembed\/1.0", - "wp\/v2", - "wp-site-health\/v1", - "wp-block-editor\/v1" + "oembed/1.0", + "wp/v2", + "wp-site-health/v1", + "wp-block-editor/v1" ], "authentication": {}, "routes": {}, @@ -19,7 +19,7 @@ "_links": { "help": [ { - "href": "https:\/\/developer.wordpress.org\/rest-api\/" + "href": "https://developer.wordpress.org/rest-api/" } ] } diff --git a/wp_api/tests/plugin-directory/plugin-query-result.json b/wp_api/tests/plugin-directory/plugin-query-result.json index 712ab97a7..7c414b9be 100644 --- a/wp_api/tests/plugin-directory/plugin-query-result.json +++ b/wp_api/tests/plugin-directory/plugin-query-result.json @@ -1,5 +1,9 @@ { - "info": { "page": 1, "pages": 27333, "results": 54665 }, + "info": { + "page": 1, + "pages": 27333, + "results": 54665 + }, "plugins": [ { "name": "Plugin 1", @@ -12,7 +16,13 @@ "requires_php": "7.4", "requires_plugins": [], "rating": 92, - "ratings": { "5": 5, "4": 4, "3": 3, "2": 2, "1": 1 }, + "ratings": { + "5": 5, + "4": 4, + "3": 3, + "2": 2, + "1": 1 + }, "num_ratings": 15, "support_threads": 2, "support_threads_resolved": 9, @@ -45,7 +55,13 @@ "requires_php": "7.4", "requires_plugins": [], "rating": 92, - "ratings": { "5": 5, "4": 4, "3": 3, "2": 2, "1": 1 }, + "ratings": { + "5": 5, + "4": 4, + "3": 3, + "2": 2, + "1": 1 + }, "num_ratings": 15, "support_threads": 2, "support_threads_resolved": 9, diff --git a/wp_api/tests/plugin-directory/plugin-with-different-types-of-values.json b/wp_api/tests/plugin-directory/plugin-with-different-types-of-values.json index 4ccfd9d0a..7ff7493ee 100644 --- a/wp_api/tests/plugin-directory/plugin-with-different-types-of-values.json +++ b/wp_api/tests/plugin-directory/plugin-with-different-types-of-values.json @@ -1,42 +1,48 @@ { - "name": "Plugin name", - "slug": "plugins-lug", - "version": "1.0", - "author": "<a href=\"http://www.author.com/\">author</a>", - "requires_plugins": [], - "rating": 0, - "ratings": { "5": 0, "4": 0, "3": 0, "2": 0, "1": 0 }, - "num_ratings": 0, - "support_url": "https://wordpress.org/support/plugin/plugin-slug/", - "support_threads": 0, - "support_threads_resolved": 0, - "active_installs": 20, - "last_updated": "2007-12-24 3:00am GMT", - "added": "2007-12-23", - "homepage": "http://www.author.com/plugin-slug", - "sections": { - "description": "<p>Awesome plugin</p>\n", - "installation": "Install", - "reviews": "" - }, - "download_link": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.zip", - "screenshots": [], - "repository_url": "", - "commercial_support_url": "", - "donate_link": "http://www.author.com/", - "icons": { - "default": "https://s.w.org/plugins/plugin-slug.svg" - }, - "preview_link": "", - "---- When not set by the plugin author, the fields below have different types compared to when values are set.": false, - "author_profile": false, - "contributors": [], - "requires": false, - "tested": false, - "requires_php": false, - "upgrade_notice": [], - "tags": [], - "versions": [], - "business_model": false, - "banners": [] - } + "name": "Plugin name", + "slug": "plugins-lug", + "version": "1.0", + "author": "<a href=\"http://www.author.com/\">author</a>", + "requires_plugins": [], + "rating": 0, + "ratings": { + "5": 0, + "4": 0, + "3": 0, + "2": 0, + "1": 0 + }, + "num_ratings": 0, + "support_url": "https://wordpress.org/support/plugin/plugin-slug/", + "support_threads": 0, + "support_threads_resolved": 0, + "active_installs": 20, + "last_updated": "2007-12-24 3:00am GMT", + "added": "2007-12-23", + "homepage": "http://www.author.com/plugin-slug", + "sections": { + "description": "<p>Awesome plugin</p>\n", + "installation": "Install", + "reviews": "" + }, + "download_link": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.zip", + "screenshots": [], + "repository_url": "", + "commercial_support_url": "", + "donate_link": "http://www.author.com/", + "icons": { + "default": "https://s.w.org/plugins/plugin-slug.svg" + }, + "preview_link": "", + "---- When not set by the plugin author, the fields below have different types compared to when values are set.": false, + "author_profile": false, + "contributors": [], + "requires": false, + "tested": false, + "requires_php": false, + "upgrade_notice": [], + "tags": [], + "versions": [], + "business_model": false, + "banners": [] +} diff --git a/wp_api/tests/plugin-directory/plugin-with-expected-types.json b/wp_api/tests/plugin-directory/plugin-with-expected-types.json index 8ed657369..10c7c16da 100644 --- a/wp_api/tests/plugin-directory/plugin-with-expected-types.json +++ b/wp_api/tests/plugin-directory/plugin-with-expected-types.json @@ -1,57 +1,65 @@ { - "name": "Plugin name", - "slug": "plugins-lug", - "version": "1.0", - "author": "<a href=\"http://www.author.com/\">author</a>", - "requires_plugins": [], - "rating": 0, - "ratings": { "5": 0, "4": 0, "3": 0, "2": 0, "1": 0 }, - "num_ratings": 0, - "support_url": "https://wordpress.org/support/plugin/plugin-slug/", - "support_threads": 0, - "support_threads_resolved": 0, - "active_installs": 20, - "last_updated": "2007-12-24 3:00am GMT", - "added": "2007-12-23", - "homepage": "http://www.author.com/plugin-slug", - "sections": { - "description": "<p>Awesome plugin</p>\n", - "installation": "Install", - "reviews": "" - }, - "download_link": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.zip", - "screenshots": [], - "repository_url": "", - "commercial_support_url": "", - "donate_link": "http://www.author.com/", - "icons": { - "default": "https://s.w.org/plugins/plugin-slug.svg" - }, - "preview_link": "", - "---- When not set by the plugin author, the fields below have different types compared to when values are set.": false, - "author_profile": "https://about.me/author", - "contributors": { - "me": { - "profile": "https://about.me/me", - "avatar": "https://secure.gravatar.com/avatar/me", - "display_name": "Author" - } - }, - "requires": "4.0", - "tested": "4.9", - "requires_php": "5.6", - "upgrade_notice": { "1.0.0": "Please upgrade" }, - "tags": { - "popular-posts": "popular posts", - "recent-posts": "recent posts" - }, - "versions": { - "1.0.0": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.0.zip", - "trunk": "https://downloads.wordpress.org/plugin/plugin-slug.zip" - }, - "business_model": "commercial", - "banners": { - "low": "https://ps.w.org/assets/plugin-slug.png", - "high": false + "name": "Plugin name", + "slug": "plugins-lug", + "version": "1.0", + "author": "<a href=\"http://www.author.com/\">author</a>", + "requires_plugins": [], + "rating": 0, + "ratings": { + "5": 0, + "4": 0, + "3": 0, + "2": 0, + "1": 0 + }, + "num_ratings": 0, + "support_url": "https://wordpress.org/support/plugin/plugin-slug/", + "support_threads": 0, + "support_threads_resolved": 0, + "active_installs": 20, + "last_updated": "2007-12-24 3:00am GMT", + "added": "2007-12-23", + "homepage": "http://www.author.com/plugin-slug", + "sections": { + "description": "<p>Awesome plugin</p>\n", + "installation": "Install", + "reviews": "" + }, + "download_link": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.zip", + "screenshots": [], + "repository_url": "", + "commercial_support_url": "", + "donate_link": "http://www.author.com/", + "icons": { + "default": "https://s.w.org/plugins/plugin-slug.svg" + }, + "preview_link": "", + "---- When not set by the plugin author, the fields below have different types compared to when values are set.": false, + "author_profile": "https://about.me/author", + "contributors": { + "me": { + "profile": "https://about.me/me", + "avatar": "https://secure.gravatar.com/avatar/me", + "display_name": "Author" } + }, + "requires": "4.0", + "tested": "4.9", + "requires_php": "5.6", + "upgrade_notice": { + "1.0.0": "Please upgrade" + }, + "tags": { + "popular-posts": "popular posts", + "recent-posts": "recent posts" + }, + "versions": { + "1.0.0": "https://downloads.wordpress.org/plugin/plugin-slug.1.0.0.zip", + "trunk": "https://downloads.wordpress.org/plugin/plugin-slug.zip" + }, + "business_model": "commercial", + "banners": { + "low": "https://ps.w.org/assets/plugin-slug.png", + "high": false } +} diff --git a/wp_api/tests/plugin-directory/plugin_directory_single_plugin_case_1.json b/wp_api/tests/plugin-directory/plugin_directory_single_plugin_case_1.json index 140db0e67..ee4053e6d 100644 --- a/wp_api/tests/plugin-directory/plugin_directory_single_plugin_case_1.json +++ b/wp_api/tests/plugin-directory/plugin_directory_single_plugin_case_1.json @@ -2,12 +2,12 @@ "name": "Duplicate Page", "slug": "duplicate-page", "version": "4.5.4", - "author": "<a href=\"https:\/\/profiles.wordpress.org\/mndpsingh287\/\">mndpsingh287<\/a>", - "author_profile": "https:\/\/profiles.wordpress.org\/mndpsingh287\/", + "author": "<a href=\"https://profiles.wordpress.org/mndpsingh287/\">mndpsingh287</a>", + "author_profile": "https://profiles.wordpress.org/mndpsingh287/", "contributors": { "mndpsingh287": { - "profile": "https:\/\/profiles.wordpress.org\/mndpsingh287\/", - "avatar": "https:\/\/secure.gravatar.com\/avatar\/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", + "profile": "https://profiles.wordpress.org/mndpsingh287/", + "avatar": "https://secure.gravatar.com/avatar/f45d3518db13edc49526efa590ebce2f3f53a6461ef2000a5d3f7197daf7cf9e?s=96&d=monsterid&r=g", "display_name": "mndpsingh287" } }, @@ -24,42 +24,42 @@ "1": 13 }, "num_ratings": 402, - "support_url": "https:\/\/wordpress.org\/support\/plugin\/duplicate-page\/", + "support_url": "https://wordpress.org/support/plugin/duplicate-page/", "support_threads": 3, "support_threads_resolved": 0, "active_installs": 3000000, "last_updated": "2024-07-29 10:47am GMT", "added": "2016-05-04", - "homepage": "https:\/\/wordpress.org\/plugins\/duplicate-page\/", + "homepage": "https://wordpress.org/plugins/duplicate-page/", "sections": { - "description": "<p>Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).<\/p>\n<h4>Key Features in Duplicate Page Pro Editions<\/h4>\n<ul>\n<li><strong>User Roles:<\/strong> Allow User Roles To access Duplicate Page.<\/li>\n<li><strong>Post Types:<\/strong> Filter to show Duplicate Page link in post types.<\/li>\n<li><strong>Clone Link Location:<\/strong> Option where to show clone link.<\/li>\n<li><strong>Status:<\/strong> Option to select Duplicate Posts Status.<\/li>\n<li><strong>Redirection:<\/strong> Option to Redirect after click on clone link..<\/li>\n<li><strong>Clone Link Title:<\/strong> Option to change Duplicate Post Link Title.<\/li>\n<li><strong>Post Prefix:<\/strong> Option to add Post Prefix.<\/li>\n<li><strong>Post Suffix:<\/strong> Option to add Post Suffix.<\/li>\n<li><strong>Editor<\/strong>: And Many More Filters and Features.<\/li>\n<\/ul>\n<blockquote>\n<p><strong><a href=\"https:\/\/duplicatepro.com\/pro\/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Buy Pro Version<\/a><\/strong> with various features & support.<\/p>\n<p><strong><a href=\"https:\/\/duplicatepro.com\/contact\/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Contact us<\/a><\/strong> for Support Only Pro Version Users.<\/p>\n<\/blockquote>\n<p><strong><a href=\"https:\/\/duplicatepro.com\/pro\/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Upgrade to Pro Version<\/a><\/strong><\/p>\n<p><iframe loading=\"lazy\" title=\"Duplicate page WordPress Plugin | Webdesi9\" width=\"750\" height=\"422\" src=\"https:\/\/www.youtube.com\/embed\/Fj8BHxvebXs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n<h3>How to use<\/h3>\n<ol>\n<li>First Activate Plugin.<\/li>\n<li>Go Select to Duplicate Page settings Menu from Settings Tab and savings settings. <\/li>\n<li>Then Create New Post\/Page or Use old.<\/li>\n<li>After click on duplicate this link, then duplicate post\/ page will be created and saved as draft,publish,pending,private depending upon settings.<\/li>\n<\/ol>\n<h3>Minimum requirements for Duplicate Page<\/h3>\n<ul>\n<li>WordPress 3.3+<\/li>\n<li>PHP 5.x<\/li>\n<li>MySQL 5.x<\/li>\n<\/ul>\n", - "installation": "<ol>\n<li>Upload the <code>duplicate-page<\/code> folder to the directory <code>\/wp-content\/plugins\/<\/code>.<\/li>\n<li>Activate the plugin using the ‘Plugins’ menu in WordPress.<\/li>\n<\/ol>\n", - "changelog": "<h4>4.5.4 (29th July, 2024)<\/h4>\n<ul>\n<li>Compatible with WordPress 6.6.1<\/li>\n<\/ul>\n<p>= 4.5.3(11th Sept, 2023)<\/p>\n<ul>\n<li>Compatible with wordpress 6.3.1<\/li>\n<\/ul>\n<p>= 4.5.2(4th May, 2023)<\/p>\n<ul>\n<li>Compatible with wordpress 6.2<\/li>\n<\/ul>\n<p>= 4.5.1(8th Feb, 2023)<\/p>\n<ul>\n<li>Fixes compatibility issues with event calendar plugin.<\/li>\n<li>Minor bug fixes<\/li>\n<\/ul>\n<p>= 4.5(14th Dec, 2022)<\/p>\n<ul>\n<li>Checked compatibility with wordpress v6.1.1 <\/li>\n<li>Fixes elementor sections compatibility issue<\/li>\n<\/ul>\n<p>= 4.4.9(15th Jul, 2022)<\/p>\n<ul>\n<li>Checked compatibility with wordpress v6.0.1<\/li>\n<\/ul>\n<p>= 4.4.8(27th Jan, 2022)<\/p>\n<ul>\n<li>Checked compatibility with wordpress v5.9<\/li>\n<\/ul>\n<p>= 4.4.7(16th Dec, 2021)<\/p>\n<ul>\n<li>Added editor role check<\/li>\n<\/ul>\n<p>= 4.4.6(7th Dec, 2021)<\/p>\n<ul>\n<li>Fixed security issues.<\/li>\n<\/ul>\n<p>= 4.4.5(29th Sep, 2021)<\/p>\n<ul>\n<li>Fixed the issue for content HTML displaying in the sidebar.<\/li>\n<\/ul>\n<p>= 4.4.4(16th Sep, 2021)<\/p>\n<ul>\n<li>Fixed sanitization Issues as per wordpress standards.<\/li>\n<\/ul>\n<p>= 4.4.3(8th Sep, 2021)<\/p>\n<ul>\n<li>Updated code sanitization process for secure data submission<\/li>\n<\/ul>\n<p>= 4.4.2(6th Sep, 2021)<\/p>\n<ul>\n<li>Added sanitization as per wordpress standards.<\/li>\n<\/ul>\n<h4>4.4.1(27th July, 2021)<\/h4>\n<ul>\n<li>Checked compatibility with wordpress v5.8<\/li>\n<li>Fixed php warnings<\/li>\n<\/ul>\n<h4>4.4(18th Mar, 2021)<\/h4>\n<ul>\n<li>Tested upto wordpress v5.7<\/li>\n<\/ul>\n<h4>4.3(28th Aug, 2020)<\/h4>\n<ul>\n<li>Tested with wordpress v5.5<\/li>\n<\/ul>\n<h4>4.2(26th March, 2020)<\/h4>\n<ul>\n<li>Fixed Translations string issue<\/li>\n<\/ul>\n<h4>4.1(20th Feb, 2020)<\/h4>\n<ul>\n<li>Fixed Translations issue<\/li>\n<\/ul>\n<h4>4.0(20th Sep, 2019)<\/h4>\n<ul>\n<li>Fixed slug duplication issue<\/li>\n<\/ul>\n<h4>3.9 (6th Aug, 2019)<\/h4>\n<ul>\n<li>Fixed some compatibility issues<\/li>\n<\/ul>\n<h4>3.8 (18th July, 2019)<\/h4>\n<ul>\n<li>Fixed compatibility issues with GT3 editor<\/li>\n<\/ul>\n<h4>3.7 (18th July, 2019)<\/h4>\n<ul>\n<li>Fixed compatibility issues with other editors<\/li>\n<\/ul>\n<h4>3.6 (16th July, 2019)<\/h4>\n<ul>\n<li>Security fixes addressed by wordpress<\/li>\n<\/ul>\n<h4>3.5 (2nd Apr, 2019)<\/h4>\n<ul>\n<li>Gutenberg and advanced custom fields compatibility <\/li>\n<\/ul>\n<h4>3.4 (1st Apr, 2019)<\/h4>\n<ul>\n<li>Security issues fixes addressed by Securi<\/li>\n<\/ul>\n<h4>3.3 (14th March, 2019)<\/h4>\n<ul>\n<li>Compatible with WordPress 5.1.1<\/li>\n<\/ul>\n<h4>3.2 (25th Dec, 2018)<\/h4>\n<ul>\n<li>Gutenberg Compatible<\/li>\n<\/ul>\n<h4>3.1 (5th Dec, 2018)<\/h4>\n<ul>\n<li>removed nag<\/li>\n<\/ul>\n<h4>3.0 (3rd Dec, 2018)<\/h4>\n<ul>\n<li>German Formal lang added<\/li>\n<\/ul>\n<h4>2.9 (16th Nov, 2018)<\/h4>\n<ul>\n<li>Minor bug fixes<\/li>\n<\/ul>\n<h4>2.8 (20th Oct, 2018)<\/h4>\n<ul>\n<li>Compatible with php 7.3 and wordpress 5.0<\/li>\n<\/ul>\n<h4>2.7 (28th July, 2018)<\/h4>\n<ul>\n<li>removed useless adsense code<\/li>\n<\/ul>\n<h4>2.6 (24th March, 2018)<\/h4>\n<ul>\n<li>Added signup popup and minor fixes.<\/li>\n<\/ul>\n<h4>2.5 (5th Feb, 2018)<\/h4>\n<ul>\n<li>Translations issue resolve.<\/li>\n<\/ul>\n<h4>2.4 (29th Nov, 2017)<\/h4>\n<ul>\n<li>Duplicate Page appends original post name issue fixed.<\/li>\n<\/ul>\n<h4>2.3 (27st april, 2017)<\/h4>\n<ul>\n<li>Minor Fixes<\/li>\n<\/ul>\n<h4>2.2 (28th Jan, 2017)<\/h4>\n<ul>\n<li>Strings Translations<\/li>\n<\/ul>\n<h4>2.1 (25th Aug, 2016)<\/h4>\n<ul>\n<li>New Text field added in settings page for duplicate post title suffix to remove confusion of currently duplicate page.<\/li>\n<\/ul>\n<h4>1.4 (18th Jun, 2016)<\/h4>\n<ul>\n<li>New Features added<\/li>\n<\/ul>\n<h4>1.3 (23th May, 2016)<\/h4>\n<ul>\n<li>New Features added<\/li>\n<\/ul>\n<h4>1.2 (05th May, 2016)<\/h4>\n<ul>\n<li>Duplicate Page Settings Menu Added.<\/li>\n<\/ul>\n<h4>1.1 (04th May ,2016)<\/h4>\n<ul>\n<li>fix some Bug in 1.0<\/li>\n<\/ul>\n", - "screenshots": "<ol><li><a href=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-1.png?rev=1410933\"><img src=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-1.png?rev=1410933\" alt=\"Activate Screen\"><\/a><p>Activate Screen<\/p><\/li><li><a href=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-2.png?rev=1779481\"><img src=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-2.png?rev=1779481\" alt=\"Duplicate Page Settings Screen\"><\/a><p>Duplicate Page Settings Screen<\/p><\/li><li><a href=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-3.png?rev=1410933\"><img src=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-3.png?rev=1410933\" alt=\"Select Option from Settings Page.\"><\/a><p>Select Option from Settings Page.<\/p><\/li><li><a href=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-4.png?rev=1410933\"><img src=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-4.png?rev=1410933\" alt=\"Click on Duplicate This.\"><\/a><p>Click on Duplicate This.<\/p><\/li><li><a href=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-5.png?rev=1410933\"><img src=\"https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-5.png?rev=1410933\" alt=\"Duplicate Post \/ Page will Appear.\"><\/a><p>Duplicate Post \/ Page will Appear.<\/p><\/li><\/ol>", - "reviews": "<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Genial!<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/socialserhs\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/05626f150fe8a8bd45dc421c8d28eb2481248837ac3a6fab24fae2f3c2bb180b?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/05626f150fe8a8bd45dc421c8d28eb2481248837ac3a6fab24fae2f3c2bb180b?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/socialserhs\/\" class=\"reviewer-name\">socialserhs<\/a> on <span class=\"review-date\">February 5, 2025<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Un imprescindible per a Wordpress<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">user friendly... I like that<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/dayath80\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/eefe5943396161a994c7101bd7b2e8f077ca8a152d200c3d89a16fa8ab005a7c?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/eefe5943396161a994c7101bd7b2e8f077ca8a152d200c3d89a16fa8ab005a7c?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/dayath80\/\" class=\"reviewer-name\">dayath80<\/a> on <span class=\"review-date\">February 2, 2025<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>i like this apps, user friendly make duplicate page or post website. thank you<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Best of all.<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/prothesis\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/1909d6b27a9cb504eea20318fc7c683590891d5a056caaf46841bafed8b441ba?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/1909d6b27a9cb504eea20318fc7c683590891d5a056caaf46841bafed8b441ba?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/prothesis\/\" class=\"reviewer-name\">prothesis<\/a> on <span class=\"review-date\">January 18, 2025<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Easy and clean. Never had any problems<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works with portfolio pages and Spectra blocks<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/ronf\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/bf66c82fc396e01e3b384b8bac1143a6a357f7ace0307749a2d76b49d1b447dd?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/bf66c82fc396e01e3b384b8bac1143a6a357f7ace0307749a2d76b49d1b447dd?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/ronf\/\" class=\"reviewer-name\">Ron Fredericks <small>(ronf)<\/small><\/a> on <span class=\"review-date\">January 16, 2025<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Nice plugin. It just works. I tried another duplicate plugin but portfolio pages were not supported. The duplicated page included other plugin blocks such as Spectra and TablePress. It works fine with my version of WordPress as well (currently the latest version: 6.7.1).<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Perfect<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/step54\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/6fa48b854ef8d52de1331f9b36cb083cba9097f1bf08a66cd4f5de99d5bdebd3?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/6fa48b854ef8d52de1331f9b36cb083cba9097f1bf08a66cd4f5de99d5bdebd3?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/step54\/\" class=\"reviewer-name\">step54<\/a> on <span class=\"review-date\">January 5, 2025<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Works great<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works flawlessly<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/quiss42\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/5a050b317f2841bf39243f3fa89cc22c000e99a149d374da16dab2d016c0701c?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/5a050b317f2841bf39243f3fa89cc22c000e99a149d374da16dab2d016c0701c?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/quiss42\/\" class=\"reviewer-name\">Ingo G\u00fcnther <small>(quiss42)<\/small><\/a> on <span class=\"review-date\">December 18, 2024<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Great plugin - works without any problems so far. It would be nice, if one could keep the original publishing date for the duplicate post. <\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works great<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/natol\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/944618bc1f4c4a020926ba9cdc415196508baecdc59583bc2f67ce652badcc35?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/944618bc1f4c4a020926ba9cdc415196508baecdc59583bc2f67ce652badcc35?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/natol\/\" class=\"reviewer-name\">Anatolijs Ladiks <small>(natol)<\/small><\/a> on <span class=\"review-date\">December 15, 2024<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>All the best !<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Perfect<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/emiliokyriakakis\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/66b3e968987da3f445ddc94fa4bc9963ab8732468b7c9ff0f42a6247bf5a1d3f?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/66b3e968987da3f445ddc94fa4bc9963ab8732468b7c9ff0f42a6247bf5a1d3f?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/emiliokyriakakis\/\" class=\"reviewer-name\">emiliokyriakakis<\/a> on <span class=\"review-date\">December 8, 2024<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Does just what it says<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Simple and bloat\/nonsense free<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-filled\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/aaylasecura\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/2d7bbf8bb3b03413c850a4e2ece125ea56d0133e053495c840813e948b6900cd?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/2d7bbf8bb3b03413c850a4e2ece125ea56d0133e053495c840813e948b6900cd?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/aaylasecura\/\" class=\"reviewer-name\">aaylasecura<\/a> on <span class=\"review-date\">December 6, 2024<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I use Gutenberg with custom post types and haven't had issues so far.<\/p>\n<!-- \/wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I like that the settings page is very non-obtrusive and bloat-free, unlike the other top-rated Duplicate plugin (I won't name).<\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Messed up my permalinks<\/h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"><\/span><span class=\"star dashicons dashicons-star-empty\"><\/span><span class=\"star dashicons dashicons-star-empty\"><\/span><span class=\"star dashicons dashicons-star-empty\"><\/span><span class=\"star dashicons dashicons-star-empty\"><\/span><\/div>\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https:\/\/profiles.wordpress.org\/bobaphilly\/\"><img alt='' src='https:\/\/secure.gravatar.com\/avatar\/765a91e04f9e0d3b88ac29dbc6b538a4d3cbb67e30b29963db36417d76434842?s=16&d=monsterid&r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/765a91e04f9e0d3b88ac29dbc6b538a4d3cbb67e30b29963db36417d76434842?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'\/><\/a><a href=\"https:\/\/profiles.wordpress.org\/bobaphilly\/\" class=\"reviewer-name\">bobaphilly<\/a> on <span class=\"review-date\">December 4, 2024<\/span>\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The site was fine, I installed this and duplicated a couple of pages. Now those pages are constantly redirected to the wrong link. I have no idea how to fix this, but I've uninstalled this plug it, it's caused nothing but problems. <\/p>\n<!-- \/wp:paragraph --><\/div>\n<\/div>\n" + "description": "<p>Duplicate Posts, Pages and Custom Posts easily using single click. You can duplicate your pages, posts and custom post by just one click and it will save as your selected options (draft, private, public, pending).</p>\n<h4>Key Features in Duplicate Page Pro Editions</h4>\n<ul>\n<li><strong>User Roles:</strong> Allow User Roles To access Duplicate Page.</li>\n<li><strong>Post Types:</strong> Filter to show Duplicate Page link in post types.</li>\n<li><strong>Clone Link Location:</strong> Option where to show clone link.</li>\n<li><strong>Status:</strong> Option to select Duplicate Posts Status.</li>\n<li><strong>Redirection:</strong> Option to Redirect after click on clone link..</li>\n<li><strong>Clone Link Title:</strong> Option to change Duplicate Post Link Title.</li>\n<li><strong>Post Prefix:</strong> Option to add Post Prefix.</li>\n<li><strong>Post Suffix:</strong> Option to add Post Suffix.</li>\n<li><strong>Editor</strong>: And Many More Filters and Features.</li>\n</ul>\n<blockquote>\n<p><strong><a href=\"https://duplicatepro.com/pro/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Buy Pro Version</a></strong> with various features & support.</p>\n<p><strong><a href=\"https://duplicatepro.com/contact/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Contact us</a></strong> for Support Only Pro Version Users.</p>\n</blockquote>\n<p><strong><a href=\"https://duplicatepro.com/pro/?utm_source=Wordpress.org&utm_medium=Website&utm_campaign=Duplicate%20Page%20Pro\" rel=\"nofollow ugc\">Upgrade to Pro Version</a></strong></p>\n<p><iframe loading=\"lazy\" title=\"Duplicate page WordPress Plugin | Webdesi9\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/Fj8BHxvebXs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe></p>\n<h3>How to use</h3>\n<ol>\n<li>First Activate Plugin.</li>\n<li>Go Select to Duplicate Page settings Menu from Settings Tab and savings settings. </li>\n<li>Then Create New Post/Page or Use old.</li>\n<li>After click on duplicate this link, then duplicate post/ page will be created and saved as draft,publish,pending,private depending upon settings.</li>\n</ol>\n<h3>Minimum requirements for Duplicate Page</h3>\n<ul>\n<li>WordPress 3.3+</li>\n<li>PHP 5.x</li>\n<li>MySQL 5.x</li>\n</ul>\n", + "installation": "<ol>\n<li>Upload the <code>duplicate-page</code> folder to the directory <code>/wp-content/plugins/</code>.</li>\n<li>Activate the plugin using the ‘Plugins’ menu in WordPress.</li>\n</ol>\n", + "changelog": "<h4>4.5.4 (29th July, 2024)</h4>\n<ul>\n<li>Compatible with WordPress 6.6.1</li>\n</ul>\n<p>= 4.5.3(11th Sept, 2023)</p>\n<ul>\n<li>Compatible with wordpress 6.3.1</li>\n</ul>\n<p>= 4.5.2(4th May, 2023)</p>\n<ul>\n<li>Compatible with wordpress 6.2</li>\n</ul>\n<p>= 4.5.1(8th Feb, 2023)</p>\n<ul>\n<li>Fixes compatibility issues with event calendar plugin.</li>\n<li>Minor bug fixes</li>\n</ul>\n<p>= 4.5(14th Dec, 2022)</p>\n<ul>\n<li>Checked compatibility with wordpress v6.1.1 </li>\n<li>Fixes elementor sections compatibility issue</li>\n</ul>\n<p>= 4.4.9(15th Jul, 2022)</p>\n<ul>\n<li>Checked compatibility with wordpress v6.0.1</li>\n</ul>\n<p>= 4.4.8(27th Jan, 2022)</p>\n<ul>\n<li>Checked compatibility with wordpress v5.9</li>\n</ul>\n<p>= 4.4.7(16th Dec, 2021)</p>\n<ul>\n<li>Added editor role check</li>\n</ul>\n<p>= 4.4.6(7th Dec, 2021)</p>\n<ul>\n<li>Fixed security issues.</li>\n</ul>\n<p>= 4.4.5(29th Sep, 2021)</p>\n<ul>\n<li>Fixed the issue for content HTML displaying in the sidebar.</li>\n</ul>\n<p>= 4.4.4(16th Sep, 2021)</p>\n<ul>\n<li>Fixed sanitization Issues as per wordpress standards.</li>\n</ul>\n<p>= 4.4.3(8th Sep, 2021)</p>\n<ul>\n<li>Updated code sanitization process for secure data submission</li>\n</ul>\n<p>= 4.4.2(6th Sep, 2021)</p>\n<ul>\n<li>Added sanitization as per wordpress standards.</li>\n</ul>\n<h4>4.4.1(27th July, 2021)</h4>\n<ul>\n<li>Checked compatibility with wordpress v5.8</li>\n<li>Fixed php warnings</li>\n</ul>\n<h4>4.4(18th Mar, 2021)</h4>\n<ul>\n<li>Tested upto wordpress v5.7</li>\n</ul>\n<h4>4.3(28th Aug, 2020)</h4>\n<ul>\n<li>Tested with wordpress v5.5</li>\n</ul>\n<h4>4.2(26th March, 2020)</h4>\n<ul>\n<li>Fixed Translations string issue</li>\n</ul>\n<h4>4.1(20th Feb, 2020)</h4>\n<ul>\n<li>Fixed Translations issue</li>\n</ul>\n<h4>4.0(20th Sep, 2019)</h4>\n<ul>\n<li>Fixed slug duplication issue</li>\n</ul>\n<h4>3.9 (6th Aug, 2019)</h4>\n<ul>\n<li>Fixed some compatibility issues</li>\n</ul>\n<h4>3.8 (18th July, 2019)</h4>\n<ul>\n<li>Fixed compatibility issues with GT3 editor</li>\n</ul>\n<h4>3.7 (18th July, 2019)</h4>\n<ul>\n<li>Fixed compatibility issues with other editors</li>\n</ul>\n<h4>3.6 (16th July, 2019)</h4>\n<ul>\n<li>Security fixes addressed by wordpress</li>\n</ul>\n<h4>3.5 (2nd Apr, 2019)</h4>\n<ul>\n<li>Gutenberg and advanced custom fields compatibility </li>\n</ul>\n<h4>3.4 (1st Apr, 2019)</h4>\n<ul>\n<li>Security issues fixes addressed by Securi</li>\n</ul>\n<h4>3.3 (14th March, 2019)</h4>\n<ul>\n<li>Compatible with WordPress 5.1.1</li>\n</ul>\n<h4>3.2 (25th Dec, 2018)</h4>\n<ul>\n<li>Gutenberg Compatible</li>\n</ul>\n<h4>3.1 (5th Dec, 2018)</h4>\n<ul>\n<li>removed nag</li>\n</ul>\n<h4>3.0 (3rd Dec, 2018)</h4>\n<ul>\n<li>German Formal lang added</li>\n</ul>\n<h4>2.9 (16th Nov, 2018)</h4>\n<ul>\n<li>Minor bug fixes</li>\n</ul>\n<h4>2.8 (20th Oct, 2018)</h4>\n<ul>\n<li>Compatible with php 7.3 and wordpress 5.0</li>\n</ul>\n<h4>2.7 (28th July, 2018)</h4>\n<ul>\n<li>removed useless adsense code</li>\n</ul>\n<h4>2.6 (24th March, 2018)</h4>\n<ul>\n<li>Added signup popup and minor fixes.</li>\n</ul>\n<h4>2.5 (5th Feb, 2018)</h4>\n<ul>\n<li>Translations issue resolve.</li>\n</ul>\n<h4>2.4 (29th Nov, 2017)</h4>\n<ul>\n<li>Duplicate Page appends original post name issue fixed.</li>\n</ul>\n<h4>2.3 (27st april, 2017)</h4>\n<ul>\n<li>Minor Fixes</li>\n</ul>\n<h4>2.2 (28th Jan, 2017)</h4>\n<ul>\n<li>Strings Translations</li>\n</ul>\n<h4>2.1 (25th Aug, 2016)</h4>\n<ul>\n<li>New Text field added in settings page for duplicate post title suffix to remove confusion of currently duplicate page.</li>\n</ul>\n<h4>1.4 (18th Jun, 2016)</h4>\n<ul>\n<li>New Features added</li>\n</ul>\n<h4>1.3 (23th May, 2016)</h4>\n<ul>\n<li>New Features added</li>\n</ul>\n<h4>1.2 (05th May, 2016)</h4>\n<ul>\n<li>Duplicate Page Settings Menu Added.</li>\n</ul>\n<h4>1.1 (04th May ,2016)</h4>\n<ul>\n<li>fix some Bug in 1.0</li>\n</ul>\n", + "screenshots": "<ol><li><a href=\"https://ps.w.org/duplicate-page/assets/screenshot-1.png?rev=1410933\"><img src=\"https://ps.w.org/duplicate-page/assets/screenshot-1.png?rev=1410933\" alt=\"Activate Screen\"></a><p>Activate Screen</p></li><li><a href=\"https://ps.w.org/duplicate-page/assets/screenshot-2.png?rev=1779481\"><img src=\"https://ps.w.org/duplicate-page/assets/screenshot-2.png?rev=1779481\" alt=\"Duplicate Page Settings Screen\"></a><p>Duplicate Page Settings Screen</p></li><li><a href=\"https://ps.w.org/duplicate-page/assets/screenshot-3.png?rev=1410933\"><img src=\"https://ps.w.org/duplicate-page/assets/screenshot-3.png?rev=1410933\" alt=\"Select Option from Settings Page.\"></a><p>Select Option from Settings Page.</p></li><li><a href=\"https://ps.w.org/duplicate-page/assets/screenshot-4.png?rev=1410933\"><img src=\"https://ps.w.org/duplicate-page/assets/screenshot-4.png?rev=1410933\" alt=\"Click on Duplicate This.\"></a><p>Click on Duplicate This.</p></li><li><a href=\"https://ps.w.org/duplicate-page/assets/screenshot-5.png?rev=1410933\"><img src=\"https://ps.w.org/duplicate-page/assets/screenshot-5.png?rev=1410933\" alt=\"Duplicate Post / Page will Appear.\"></a><p>Duplicate Post / Page will Appear.</p></li></ol>", + "reviews": "<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Genial!</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/socialserhs/\"><img alt='' src='https://secure.gravatar.com/avatar/05626f150fe8a8bd45dc421c8d28eb2481248837ac3a6fab24fae2f3c2bb180b?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/05626f150fe8a8bd45dc421c8d28eb2481248837ac3a6fab24fae2f3c2bb180b?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/socialserhs/\" class=\"reviewer-name\">socialserhs</a> on <span class=\"review-date\">February 5, 2025</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Un imprescindible per a Wordpress</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">user friendly... I like that</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/dayath80/\"><img alt='' src='https://secure.gravatar.com/avatar/eefe5943396161a994c7101bd7b2e8f077ca8a152d200c3d89a16fa8ab005a7c?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/eefe5943396161a994c7101bd7b2e8f077ca8a152d200c3d89a16fa8ab005a7c?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/dayath80/\" class=\"reviewer-name\">dayath80</a> on <span class=\"review-date\">February 2, 2025</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>i like this apps, user friendly make duplicate page or post website. thank you</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Best of all.</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/prothesis/\"><img alt='' src='https://secure.gravatar.com/avatar/1909d6b27a9cb504eea20318fc7c683590891d5a056caaf46841bafed8b441ba?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/1909d6b27a9cb504eea20318fc7c683590891d5a056caaf46841bafed8b441ba?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/prothesis/\" class=\"reviewer-name\">prothesis</a> on <span class=\"review-date\">January 18, 2025</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Easy and clean. Never had any problems</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works with portfolio pages and Spectra blocks</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/ronf/\"><img alt='' src='https://secure.gravatar.com/avatar/bf66c82fc396e01e3b384b8bac1143a6a357f7ace0307749a2d76b49d1b447dd?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/bf66c82fc396e01e3b384b8bac1143a6a357f7ace0307749a2d76b49d1b447dd?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/ronf/\" class=\"reviewer-name\">Ron Fredericks <small>(ronf)</small></a> on <span class=\"review-date\">January 16, 2025</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Nice plugin. It just works. I tried another duplicate plugin but portfolio pages were not supported. The duplicated page included other plugin blocks such as Spectra and TablePress. It works fine with my version of WordPress as well (currently the latest version: 6.7.1).</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Perfect</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/step54/\"><img alt='' src='https://secure.gravatar.com/avatar/6fa48b854ef8d52de1331f9b36cb083cba9097f1bf08a66cd4f5de99d5bdebd3?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/6fa48b854ef8d52de1331f9b36cb083cba9097f1bf08a66cd4f5de99d5bdebd3?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/step54/\" class=\"reviewer-name\">step54</a> on <span class=\"review-date\">January 5, 2025</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Works great</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works flawlessly</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/quiss42/\"><img alt='' src='https://secure.gravatar.com/avatar/5a050b317f2841bf39243f3fa89cc22c000e99a149d374da16dab2d016c0701c?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/5a050b317f2841bf39243f3fa89cc22c000e99a149d374da16dab2d016c0701c?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/quiss42/\" class=\"reviewer-name\">Ingo Günther <small>(quiss42)</small></a> on <span class=\"review-date\">December 18, 2024</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Great plugin - works without any problems so far. It would be nice, if one could keep the original publishing date for the duplicate post. </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Works great</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/natol/\"><img alt='' src='https://secure.gravatar.com/avatar/944618bc1f4c4a020926ba9cdc415196508baecdc59583bc2f67ce652badcc35?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/944618bc1f4c4a020926ba9cdc415196508baecdc59583bc2f67ce652badcc35?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/natol/\" class=\"reviewer-name\">Anatolijs Ladiks <small>(natol)</small></a> on <span class=\"review-date\">December 15, 2024</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>All the best !</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Perfect</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/emiliokyriakakis/\"><img alt='' src='https://secure.gravatar.com/avatar/66b3e968987da3f445ddc94fa4bc9963ab8732468b7c9ff0f42a6247bf5a1d3f?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/66b3e968987da3f445ddc94fa4bc9963ab8732468b7c9ff0f42a6247bf5a1d3f?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/emiliokyriakakis/\" class=\"reviewer-name\">emiliokyriakakis</a> on <span class=\"review-date\">December 8, 2024</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Does just what it says</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Simple and bloat/nonsense free</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/aaylasecura/\"><img alt='' src='https://secure.gravatar.com/avatar/2d7bbf8bb3b03413c850a4e2ece125ea56d0133e053495c840813e948b6900cd?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/2d7bbf8bb3b03413c850a4e2ece125ea56d0133e053495c840813e948b6900cd?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/aaylasecura/\" class=\"reviewer-name\">aaylasecura</a> on <span class=\"review-date\">December 6, 2024</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I use Gutenberg with custom post types and haven't had issues so far.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I like that the settings page is very non-obtrusive and bloat-free, unlike the other top-rated Duplicate plugin (I won't name).</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n\t<div class=\"review-head\">\n\t\t<div class=\"reviewer-info\">\n\t\t\t<div class=\"review-title-section\">\n\t\t\t\t<h4 class=\"review-title\">Messed up my permalinks</h4>\n\t\t\t\t<div class=\"star-rating\">\n\t\t\t\t<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t<p class=\"reviewer\">\n\t\t\t\tBy <a href=\"https://profiles.wordpress.org/bobaphilly/\"><img alt='' src='https://secure.gravatar.com/avatar/765a91e04f9e0d3b88ac29dbc6b538a4d3cbb67e30b29963db36417d76434842?s=16&d=monsterid&r=g' srcset='https://secure.gravatar.com/avatar/765a91e04f9e0d3b88ac29dbc6b538a4d3cbb67e30b29963db36417d76434842?s=32&d=monsterid&r=g 2x' class='avatar avatar-16 photo' height='16' width='16' loading='lazy' decoding='async'/></a><a href=\"https://profiles.wordpress.org/bobaphilly/\" class=\"reviewer-name\">bobaphilly</a> on <span class=\"review-date\">December 4, 2024</span>\t\t\t</p>\n\t\t</div>\n\t</div>\n\t<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The site was fine, I installed this and duplicated a couple of pages. Now those pages are constantly redirected to the wrong link. I have no idea how to fix this, but I've uninstalled this plug it, it's caused nothing but problems. </p>\n<!-- /wp:paragraph --></div>\n</div>\n" }, - "download_link": "https:\/\/downloads.wordpress.org\/plugin\/duplicate-page.zip", + "download_link": "https://downloads.wordpress.org/plugin/duplicate-page.zip", "upgrade_notice": [], "screenshots": { "1": { - "src": "https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-1.png?rev=1410933", + "src": "https://ps.w.org/duplicate-page/assets/screenshot-1.png?rev=1410933", "caption": "Activate Screen" }, "2": { - "src": "https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-2.png?rev=1779481", + "src": "https://ps.w.org/duplicate-page/assets/screenshot-2.png?rev=1779481", "caption": "Duplicate Page Settings Screen" }, "3": { - "src": "https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-3.png?rev=1410933", + "src": "https://ps.w.org/duplicate-page/assets/screenshot-3.png?rev=1410933", "caption": "Select Option from Settings Page." }, "4": { - "src": "https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-4.png?rev=1410933", + "src": "https://ps.w.org/duplicate-page/assets/screenshot-4.png?rev=1410933", "caption": "Click on Duplicate This." }, "5": { - "src": "https:\/\/ps.w.org\/duplicate-page\/assets\/screenshot-5.png?rev=1410933", - "caption": "Duplicate Post \/ Page will Appear." + "src": "https://ps.w.org/duplicate-page/assets/screenshot-5.png?rev=1410933", + "caption": "Duplicate Post / Page will Appear." } }, "tags": { @@ -70,18 +70,18 @@ "post-duplicate": "Post duplicate" }, "versions": { - "1.1": "https:\/\/downloads.wordpress.org\/plugin\/duplicate-page.1.1.zip", - "2.5": "https:\/\/downloads.wordpress.org\/plugin\/duplicate-page.2.5.zip", - "4.4.9": "https:\/\/downloads.wordpress.org\/plugin\/duplicate-page.4.4.9.zip", - "4.5": "https:\/\/downloads.wordpress.org\/plugin\/duplicate-page.4.5.zip" + "1.1": "https://downloads.wordpress.org/plugin/duplicate-page.1.1.zip", + "2.5": "https://downloads.wordpress.org/plugin/duplicate-page.2.5.zip", + "4.4.9": "https://downloads.wordpress.org/plugin/duplicate-page.4.4.9.zip", + "4.5": "https://downloads.wordpress.org/plugin/duplicate-page.4.5.zip" }, "business_model": false, "repository_url": "", "commercial_support_url": "", "donate_link": "", "banners": { - "low": "https:\/\/ps.w.org\/duplicate-page\/assets\/banner-772x250.jpg?rev=1410328", + "low": "https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328", "high": false }, "preview_link": "" -} \ No newline at end of file +} diff --git a/wp_api/tests/plugin-directory/plugin_update_check_case_1.json b/wp_api/tests/plugin-directory/plugin_update_check_case_1.json index c5334c7fb..8610b75b5 100644 --- a/wp_api/tests/plugin-directory/plugin_update_check_case_1.json +++ b/wp_api/tests/plugin-directory/plugin_update_check_case_1.json @@ -1,19 +1,19 @@ { "plugins": { - "akismet\/akismet.php": { - "id": "w.org\/plugins\/akismet", + "akismet/akismet.php": { + "id": "w.org/plugins/akismet", "slug": "akismet", - "plugin": "akismet\/akismet.php", + "plugin": "akismet/akismet.php", "new_version": "5.3.6", - "url": "https:\/\/wordpress.org\/plugins\/akismet\/", - "package": "https:\/\/downloads.wordpress.org\/plugin\/akismet.5.3.6.zip", + "url": "https://wordpress.org/plugins/akismet/", + "package": "https://downloads.wordpress.org/plugin/akismet.5.3.6.zip", "icons": { - "2x": "https:\/\/ps.w.org\/akismet\/assets\/icon-256x256.png?rev=2818463", - "1x": "https:\/\/ps.w.org\/akismet\/assets\/icon-128x128.png?rev=2818463" + "2x": "https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463", + "1x": "https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463" }, "banners": { - "2x": "https:\/\/ps.w.org\/akismet\/assets\/banner-1544x500.png?rev=2900731", - "1x": "https:\/\/ps.w.org\/akismet\/assets\/banner-772x250.png?rev=2900731" + "2x": "https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731", + "1x": "https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731" }, "banners_rtl": [], "requires": "5.8", @@ -25,59 +25,59 @@ }, "translations": [], "no_update": { - "classic-editor\/classic-editor.php": { - "id": "w.org\/plugins\/classic-editor", + "classic-editor/classic-editor.php": { + "id": "w.org/plugins/classic-editor", "slug": "classic-editor", - "plugin": "classic-editor\/classic-editor.php", + "plugin": "classic-editor/classic-editor.php", "new_version": "1.6.7", - "url": "https:\/\/wordpress.org\/plugins\/classic-editor\/", - "package": "https:\/\/downloads.wordpress.org\/plugin\/classic-editor.1.6.7.zip", + "url": "https://wordpress.org/plugins/classic-editor/", + "package": "https://downloads.wordpress.org/plugin/classic-editor.1.6.7.zip", "icons": { - "2x": "https:\/\/ps.w.org\/classic-editor\/assets\/icon-256x256.png?rev=1998671", - "1x": "https:\/\/ps.w.org\/classic-editor\/assets\/icon-128x128.png?rev=1998671" + "2x": "https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671", + "1x": "https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671" }, "banners": { - "2x": "https:\/\/ps.w.org\/classic-editor\/assets\/banner-1544x500.png?rev=1998671", - "1x": "https:\/\/ps.w.org\/classic-editor\/assets\/banner-772x250.png?rev=1998676" + "2x": "https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671", + "1x": "https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676" }, "banners_rtl": [], "requires": "4.9" }, "hello.php": { - "id": "w.org\/plugins\/hello-dolly", + "id": "w.org/plugins/hello-dolly", "slug": "hello-dolly", "plugin": "hello.php", "new_version": "1.7.2", - "url": "https:\/\/wordpress.org\/plugins\/hello-dolly\/", - "package": "https:\/\/downloads.wordpress.org\/plugin\/hello-dolly.1.7.3.zip", + "url": "https://wordpress.org/plugins/hello-dolly/", + "package": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip", "icons": { - "2x": "https:\/\/ps.w.org\/hello-dolly\/assets\/icon-256x256.jpg?rev=2052855", - "1x": "https:\/\/ps.w.org\/hello-dolly\/assets\/icon-128x128.jpg?rev=2052855" + "2x": "https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855", + "1x": "https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855" }, "banners": { - "2x": "https:\/\/ps.w.org\/hello-dolly\/assets\/banner-1544x500.jpg?rev=2645582", - "1x": "https:\/\/ps.w.org\/hello-dolly\/assets\/banner-772x250.jpg?rev=2052855" + "2x": "https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582", + "1x": "https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855" }, "banners_rtl": [], "requires": "4.6" }, - "hello-dolly\/hello.php": { - "id": "w.org\/plugins\/hello-dolly", + "hello-dolly/hello.php": { + "id": "w.org/plugins/hello-dolly", "slug": "hello-dolly", - "plugin": "hello-dolly\/hello.php", + "plugin": "hello-dolly/hello.php", "new_version": "1.7.2", - "url": "https:\/\/wordpress.org\/plugins\/hello-dolly\/", - "package": "https:\/\/downloads.wordpress.org\/plugin\/hello-dolly.1.7.3.zip", + "url": "https://wordpress.org/plugins/hello-dolly/", + "package": "https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip", "icons": { - "2x": "https:\/\/ps.w.org\/hello-dolly\/assets\/icon-256x256.jpg?rev=2052855", - "1x": "https:\/\/ps.w.org\/hello-dolly\/assets\/icon-128x128.jpg?rev=2052855" + "2x": "https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855", + "1x": "https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855" }, "banners": { - "2x": "https:\/\/ps.w.org\/hello-dolly\/assets\/banner-1544x500.jpg?rev=2645582", - "1x": "https:\/\/ps.w.org\/hello-dolly\/assets\/banner-772x250.jpg?rev=2052855" + "2x": "https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582", + "1x": "https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855" }, "banners_rtl": [], "requires": "4.6" } } -} \ No newline at end of file +} diff --git a/wp_api/tests/post_types/newspack-newsletter-3.27.0.json b/wp_api/tests/post_types/newspack-newsletter-3.27.0.json index 060183e17..8a1e07284 100644 --- a/wp_api/tests/post_types/newspack-newsletter-3.27.0.json +++ b/wp_api/tests/post_types/newspack-newsletter-3.27.0.json @@ -20,7 +20,10 @@ "description": "", "hierarchical": false, "has_archive": "newsletter", - "visibility": { "show_in_nav_menus": true, "show_ui": true }, + "visibility": { + "show_in_nav_menus": true, + "show_ui": true + }, "viewable": true, "labels": { "name": "Newsletters", @@ -62,10 +65,14 @@ }, "name": "Newsletters", "slug": "newspack_nl_cpt", - "icon": "data:image\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zIDdjMC0xLjEuOS0yIDItMmgxNGEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0yVjdabTItLjVoMTRjLjMgMCAuNS4yLjUuNXYxTDEyIDEzLjUgNC41IDcuOVY3YzAtLjMuMi0uNS41LS41Wm0tLjUgMy4zVjE3YzAgLjMuMi41LjUuNWgxNGMuMyAwIC41LS4yLjUtLjVWOS44TDEyIDE1LjQgNC41IDkuOFoiPjwvcGF0aD48L3N2Zz4=", + "icon": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zIDdjMC0xLjEuOS0yIDItMmgxNGEyIDIgMCAwIDEgMiAydjEwYTIgMiAwIDAgMS0yIDJINWEyIDIgMCAwIDEtMi0yVjdabTItLjVoMTRjLjMgMCAuNS4yLjUuNXYxTDEyIDEzLjUgNC41IDcuOVY3YzAtLjMuMi0uNS41LS41Wm0tLjUgMy4zVjE3YzAgLjMuMi41LjUuNWgxNGMuMyAwIC41LS4yLjUtLjVWOS44TDEyIDE1LjQgNC41IDkuOFoiPjwvcGF0aD48L3N2Zz4=", "supports": { "author": true, - "editor": [{ "notes": true }], + "editor": [ + { + "notes": true + } + ], "title": true, "custom-fields": true, "newspack_blocks": true, @@ -76,26 +83,30 @@ "jetpack-post-likes": true, "jetpack-sharing-buttons": true }, - "taxonomies": ["category", "post_tag", "newspack_nl_advertiser"], + "taxonomies": [ + "category", + "post_tag", + "newspack_nl_advertiser" + ], "rest_base": "newspack_nl_cpt", - "rest_namespace": "wp\/v2", + "rest_namespace": "wp/v2", "template": [], "template_lock": false, "_links": { "collection": [ { - "href": "https:\/\/paper-of-guineafowls.jurassic.ninja\/wp-json\/wp\/v2\/types" + "href": "https://paper-of-guineafowls.jurassic.ninja/wp-json/wp/v2/types" } ], "wp:items": [ { - "href": "https:\/\/paper-of-guineafowls.jurassic.ninja\/wp-json\/wp\/v2\/newspack_nl_cpt" + "href": "https://paper-of-guineafowls.jurassic.ninja/wp-json/wp/v2/newspack_nl_cpt" } ], "curies": [ { "name": "wp", - "href": "https:\/\/api.w.org\/{rel}", + "href": "https://api.w.org/{rel}", "templated": true } ] @@ -122,7 +133,10 @@ "description": "", "hierarchical": false, "has_archive": false, - "visibility": { "show_in_nav_menus": false, "show_ui": true }, + "visibility": { + "show_in_nav_menus": false, + "show_ui": true + }, "viewable": false, "labels": { "name": "Newsletter Ads", @@ -177,24 +191,24 @@ "newspack_nl_ad_placement" ], "rest_base": "newspack_nl_ads_cpt", - "rest_namespace": "wp\/v2", + "rest_namespace": "wp/v2", "template": [], "template_lock": false, "_links": { "collection": [ { - "href": "https:\/\/paper-of-guineafowls.jurassic.ninja\/wp-json\/wp\/v2\/types" + "href": "https://paper-of-guineafowls.jurassic.ninja/wp-json/wp/v2/types" } ], "wp:items": [ { - "href": "https:\/\/paper-of-guineafowls.jurassic.ninja\/wp-json\/wp\/v2\/newspack_nl_ads_cpt" + "href": "https://paper-of-guineafowls.jurassic.ninja/wp-json/wp/v2/newspack_nl_ads_cpt" } ], "curies": [ { "name": "wp", - "href": "https:\/\/api.w.org\/{rel}", + "href": "https://api.w.org/{rel}", "templated": true } ] diff --git a/wp_api/tests/themes/active-01.json b/wp_api/tests/themes/active-01.json index 693865981..e8031a0a4 100644 --- a/wp_api/tests/themes/active-01.json +++ b/wp_api/tests/themes/active-01.json @@ -400,7 +400,9 @@ { "href": "https://content-heavy.wpmt.co/wp-json/wp/v2/themes/twentytwentyone", "targetHints": { - "allow": ["GET"] + "allow": [ + "GET" + ] } } ], diff --git a/wp_api/tests/wp_block_editor/settings/settings-01.json b/wp_api/tests/wp_block_editor/settings/settings-01.json index 2bc2a2e27..4275ab8e9 100644 --- a/wp_api/tests/wp_block_editor/settings/settings-01.json +++ b/wp_api/tests/wp_block_editor/settings/settings-01.json @@ -1,3411 +1,3411 @@ { - "alignWide": false, - "allowedBlockTypes": true, - "allowedMimeTypes": { - "jpg|jpeg|jpe": "image\/jpeg", - "gif": "image\/gif", - "png": "image\/png", - "bmp": "image\/bmp", - "tiff|tif": "image\/tiff", - "webp": "image\/webp", - "avif": "image\/avif", - "ico": "image\/x-icon", - "heic": "image\/heic", - "heif": "image\/heif", - "heics": "image\/heic-sequence", - "heifs": "image\/heif-sequence", - "asf|asx": "video\/x-ms-asf", - "wmv": "video\/x-ms-wmv", - "wmx": "video\/x-ms-wmx", - "wm": "video\/x-ms-wm", - "avi": "video\/avi", - "divx": "video\/divx", - "flv": "video\/x-flv", - "mov|qt": "video\/quicktime", - "mpeg|mpg|mpe": "video\/mpeg", - "mp4|m4v": "video\/mp4", - "ogv": "video\/ogg", - "webm": "video\/webm", - "mkv": "video\/x-matroska", - "3gp|3gpp": "video\/3gpp", - "3g2|3gp2": "video\/3gpp2", - "txt|asc|c|cc|h|srt": "text\/plain", - "csv": "text\/csv", - "tsv": "text\/tab-separated-values", - "ics": "text\/calendar", - "rtx": "text\/richtext", - "css": "text\/css", - "htm|html": "text\/html", - "vtt": "text\/vtt", - "dfxp": "application\/ttaf+xml", - "mp3|m4a|m4b": "audio\/mpeg", - "aac": "audio\/aac", - "ra|ram": "audio\/x-realaudio", - "wav|x-wav": "audio\/wav", - "ogg|oga": "audio\/ogg", - "flac": "audio\/flac", - "mid|midi": "audio\/midi", - "wma": "audio\/x-ms-wma", - "wax": "audio\/x-ms-wax", - "mka": "audio\/x-matroska", - "rtf": "application\/rtf", - "js": "application\/javascript", - "pdf": "application\/pdf", - "class": "application\/java", - "tar": "application\/x-tar", - "zip": "application\/zip", - "gz|gzip": "application\/x-gzip", - "rar": "application\/rar", - "7z": "application\/x-7z-compressed", - "psd": "application\/octet-stream", - "xcf": "application\/octet-stream", - "doc": "application\/msword", - "pot|pps|ppt": "application\/vnd.ms-powerpoint", - "wri": "application\/vnd.ms-write", - "xla|xls|xlt|xlw": "application\/vnd.ms-excel", - "mdb": "application\/vnd.ms-access", - "mpp": "application\/vnd.ms-project", - "docx": "application\/vnd.openxmlformats-officedocument.wordprocessingml.document", - "docm": "application\/vnd.ms-word.document.macroEnabled.12", - "dotx": "application\/vnd.openxmlformats-officedocument.wordprocessingml.template", - "dotm": "application\/vnd.ms-word.template.macroEnabled.12", - "xlsx": "application\/vnd.openxmlformats-officedocument.spreadsheetml.sheet", - "xlsm": "application\/vnd.ms-excel.sheet.macroEnabled.12", - "xlsb": "application\/vnd.ms-excel.sheet.binary.macroEnabled.12", - "xltx": "application\/vnd.openxmlformats-officedocument.spreadsheetml.template", - "xltm": "application\/vnd.ms-excel.template.macroEnabled.12", - "xlam": "application\/vnd.ms-excel.addin.macroEnabled.12", - "pptx": "application\/vnd.openxmlformats-officedocument.presentationml.presentation", - "pptm": "application\/vnd.ms-powerpoint.presentation.macroEnabled.12", - "ppsx": "application\/vnd.openxmlformats-officedocument.presentationml.slideshow", - "ppsm": "application\/vnd.ms-powerpoint.slideshow.macroEnabled.12", - "potx": "application\/vnd.openxmlformats-officedocument.presentationml.template", - "potm": "application\/vnd.ms-powerpoint.template.macroEnabled.12", - "ppam": "application\/vnd.ms-powerpoint.addin.macroEnabled.12", - "sldx": "application\/vnd.openxmlformats-officedocument.presentationml.slide", - "sldm": "application\/vnd.ms-powerpoint.slide.macroEnabled.12", - "onetoc|onetoc2|onetmp|onepkg": "application\/onenote", - "oxps": "application\/oxps", - "xps": "application\/vnd.ms-xpsdocument", - "odt": "application\/vnd.oasis.opendocument.text", - "odp": "application\/vnd.oasis.opendocument.presentation", - "ods": "application\/vnd.oasis.opendocument.spreadsheet", - "odg": "application\/vnd.oasis.opendocument.graphics", - "odc": "application\/vnd.oasis.opendocument.chart", - "odb": "application\/vnd.oasis.opendocument.database", - "odf": "application\/vnd.oasis.opendocument.formula", - "wp|wpd": "application\/wordperfect", - "key": "application\/vnd.apple.keynote", - "numbers": "application\/vnd.apple.numbers", - "pages": "application\/vnd.apple.pages" + "alignWide": false, + "allowedBlockTypes": true, + "allowedMimeTypes": { + "jpg|jpeg|jpe": "image/jpeg", + "gif": "image/gif", + "png": "image/png", + "bmp": "image/bmp", + "tiff|tif": "image/tiff", + "webp": "image/webp", + "avif": "image/avif", + "ico": "image/x-icon", + "heic": "image/heic", + "heif": "image/heif", + "heics": "image/heic-sequence", + "heifs": "image/heif-sequence", + "asf|asx": "video/x-ms-asf", + "wmv": "video/x-ms-wmv", + "wmx": "video/x-ms-wmx", + "wm": "video/x-ms-wm", + "avi": "video/avi", + "divx": "video/divx", + "flv": "video/x-flv", + "mov|qt": "video/quicktime", + "mpeg|mpg|mpe": "video/mpeg", + "mp4|m4v": "video/mp4", + "ogv": "video/ogg", + "webm": "video/webm", + "mkv": "video/x-matroska", + "3gp|3gpp": "video/3gpp", + "3g2|3gp2": "video/3gpp2", + "txt|asc|c|cc|h|srt": "text/plain", + "csv": "text/csv", + "tsv": "text/tab-separated-values", + "ics": "text/calendar", + "rtx": "text/richtext", + "css": "text/css", + "htm|html": "text/html", + "vtt": "text/vtt", + "dfxp": "application/ttaf+xml", + "mp3|m4a|m4b": "audio/mpeg", + "aac": "audio/aac", + "ra|ram": "audio/x-realaudio", + "wav|x-wav": "audio/wav", + "ogg|oga": "audio/ogg", + "flac": "audio/flac", + "mid|midi": "audio/midi", + "wma": "audio/x-ms-wma", + "wax": "audio/x-ms-wax", + "mka": "audio/x-matroska", + "rtf": "application/rtf", + "js": "application/javascript", + "pdf": "application/pdf", + "class": "application/java", + "tar": "application/x-tar", + "zip": "application/zip", + "gz|gzip": "application/x-gzip", + "rar": "application/rar", + "7z": "application/x-7z-compressed", + "psd": "application/octet-stream", + "xcf": "application/octet-stream", + "doc": "application/msword", + "pot|pps|ppt": "application/vnd.ms-powerpoint", + "wri": "application/vnd.ms-write", + "xla|xls|xlt|xlw": "application/vnd.ms-excel", + "mdb": "application/vnd.ms-access", + "mpp": "application/vnd.ms-project", + "docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document", + "docm": "application/vnd.ms-word.document.macroEnabled.12", + "dotx": "application/vnd.openxmlformats-officedocument.wordprocessingml.template", + "dotm": "application/vnd.ms-word.template.macroEnabled.12", + "xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", + "xlsm": "application/vnd.ms-excel.sheet.macroEnabled.12", + "xlsb": "application/vnd.ms-excel.sheet.binary.macroEnabled.12", + "xltx": "application/vnd.openxmlformats-officedocument.spreadsheetml.template", + "xltm": "application/vnd.ms-excel.template.macroEnabled.12", + "xlam": "application/vnd.ms-excel.addin.macroEnabled.12", + "pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation", + "pptm": "application/vnd.ms-powerpoint.presentation.macroEnabled.12", + "ppsx": "application/vnd.openxmlformats-officedocument.presentationml.slideshow", + "ppsm": "application/vnd.ms-powerpoint.slideshow.macroEnabled.12", + "potx": "application/vnd.openxmlformats-officedocument.presentationml.template", + "potm": "application/vnd.ms-powerpoint.template.macroEnabled.12", + "ppam": "application/vnd.ms-powerpoint.addin.macroEnabled.12", + "sldx": "application/vnd.openxmlformats-officedocument.presentationml.slide", + "sldm": "application/vnd.ms-powerpoint.slide.macroEnabled.12", + "onetoc|onetoc2|onetmp|onepkg": "application/onenote", + "oxps": "application/oxps", + "xps": "application/vnd.ms-xpsdocument", + "odt": "application/vnd.oasis.opendocument.text", + "odp": "application/vnd.oasis.opendocument.presentation", + "ods": "application/vnd.oasis.opendocument.spreadsheet", + "odg": "application/vnd.oasis.opendocument.graphics", + "odc": "application/vnd.oasis.opendocument.chart", + "odb": "application/vnd.oasis.opendocument.database", + "odf": "application/vnd.oasis.opendocument.formula", + "wp|wpd": "application/wordperfect", + "key": "application/vnd.apple.keynote", + "numbers": "application/vnd.apple.numbers", + "pages": "application/vnd.apple.pages" + }, + "defaultEditorStyles": [ + { + "css": ":root{\n --wp-admin-theme-color:#007cba;\n --wp-admin-theme-color--rgb:0, 124, 186;\n --wp-admin-theme-color-darker-10:#006ba1;\n --wp-admin-theme-color-darker-10--rgb:0, 107, 161;\n --wp-admin-theme-color-darker-20:#005a87;\n --wp-admin-theme-color-darker-20--rgb:0, 90, 135;\n --wp-admin-border-width-focus:2px;\n --wp-block-synced-color:#7a00df;\n --wp-block-synced-color--rgb:122, 0, 223;\n --wp-bound-block-color:var(--wp-block-synced-color);\n}\n@media (min-resolution:192dpi){\n :root{\n --wp-admin-border-width-focus:1.5px;\n }\n}\nbody{\n font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;\n font-size:18px;\n line-height:1.5;\n --wp--style--block-gap:2em;\n}\n\np{\n line-height:1.8;\n}\n\n.editor-post-title__block{\n font-size:2.5em;\n font-weight:800;\n margin-bottom:1em;\n margin-top:2em;\n}" + } + ], + "blockCategories": [ + { + "slug": "text", + "title": "Text", + "icon": null }, - "defaultEditorStyles": [ - { - "css": ":root{\n --wp-admin-theme-color:#007cba;\n --wp-admin-theme-color--rgb:0, 124, 186;\n --wp-admin-theme-color-darker-10:#006ba1;\n --wp-admin-theme-color-darker-10--rgb:0, 107, 161;\n --wp-admin-theme-color-darker-20:#005a87;\n --wp-admin-theme-color-darker-20--rgb:0, 90, 135;\n --wp-admin-border-width-focus:2px;\n --wp-block-synced-color:#7a00df;\n --wp-block-synced-color--rgb:122, 0, 223;\n --wp-bound-block-color:var(--wp-block-synced-color);\n}\n@media (min-resolution:192dpi){\n :root{\n --wp-admin-border-width-focus:1.5px;\n }\n}\nbody{\n font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;\n font-size:18px;\n line-height:1.5;\n --wp--style--block-gap:2em;\n}\n\np{\n line-height:1.8;\n}\n\n.editor-post-title__block{\n font-size:2.5em;\n font-weight:800;\n margin-bottom:1em;\n margin-top:2em;\n}" - } - ], - "blockCategories": [ - { - "slug": "text", - "title": "Text", - "icon": null - }, - { - "slug": "media", - "title": "Media", - "icon": null - }, - { - "slug": "design", - "title": "Design", - "icon": null - }, - { - "slug": "widgets", - "title": "Widgets", - "icon": null - }, - { - "slug": "theme", - "title": "Theme", - "icon": null - }, - { - "slug": "embed", - "title": "Embeds", - "icon": null - }, - { - "slug": "reusable", - "title": "Patterns", - "icon": null - } - ], - "isRTL": false, - "imageDefaultSize": "large", - "imageDimensions": { - "thumbnail": { - "width": 150, - "height": 150, - "crop": true - }, - "medium": { - "width": 300, - "height": 300, - "crop": false - }, - "large": { - "width": 1024, - "height": 1024, - "crop": false - } + { + "slug": "media", + "title": "Media", + "icon": null }, - "imageEditing": true, - "imageSizes": [ - { - "slug": "thumbnail", - "name": "Thumbnail" - }, - { - "slug": "medium", - "name": "Medium" - }, - { - "slug": "large", - "name": "Large" - }, - { - "slug": "full", - "name": "Full Size" - } - ], - "maxUploadFileSize": 2097152000, - "__experimentalDashboardLink": "http:\/\/localhost:8881\/wp-admin\/", - "__unstableGalleryWithImageBlocks": true, - "disableCustomColors": false, - "disableCustomFontSizes": false, - "disableCustomGradients": false, - "disableLayoutStyles": false, - "enableCustomLineHeight": true, - "enableCustomSpacing": true, - "enableCustomUnits": [ - "%", - "px", - "em", - "rem", - "vh", - "vw" - ], - "styles": [ - { - "css": ":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4\/3;--wp--preset--aspect-ratio--3-4: 3\/4;--wp--preset--aspect-ratio--3-2: 3\/2;--wp--preset--aspect-ratio--2-3: 2\/3;--wp--preset--aspect-ratio--16-9: 16\/9;--wp--preset--aspect-ratio--9-16: 9\/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--base: #FFFFFF;--wp--preset--color--contrast: #111111;--wp--preset--color--accent-1: #FFEE58;--wp--preset--color--accent-2: #F6CFF4;--wp--preset--color--accent-3: #503AA8;--wp--preset--color--accent-4: #686868;--wp--preset--color--accent-5: #FBFAF3;--wp--preset--color--accent-6: color-mix(in srgb, currentColor 20%, transparent);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 0.875rem;--wp--preset--font-size--medium: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.196), 1.125rem);--wp--preset--font-size--large: clamp(1.125rem, 1.125rem + ((1vw - 0.2rem) * 0.392), 1.375rem);--wp--preset--font-size--x-large: clamp(1.75rem, 1.75rem + ((1vw - 0.2rem) * 0.392), 2rem);--wp--preset--font-size--xx-large: clamp(2.15rem, 2.15rem + ((1vw - 0.2rem) * 1.333), 3rem);--wp--preset--font-family--manrope: Manrope, sans-serif;--wp--preset--font-family--fira-code: \"Fira Code\", monospace;--wp--preset--spacing--20: 10px;--wp--preset--spacing--30: 20px;--wp--preset--spacing--40: 30px;--wp--preset--spacing--50: clamp(30px, 5vw, 50px);--wp--preset--spacing--60: clamp(30px, 7vw, 70px);--wp--preset--spacing--70: clamp(50px, 7vw, 90px);--wp--preset--spacing--80: clamp(70px, 10vw, 140px);--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}", - "__unstableType": "presets", - "isGlobalStyles": true - }, - { - "css": ".has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-base-color{color: var(--wp--preset--color--base) !important;}.has-contrast-color{color: var(--wp--preset--color--contrast) !important;}.has-accent-1-color{color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-color{color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-color{color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-color{color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-color{color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-color{color: var(--wp--preset--color--accent-6) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-background-color{background-color: var(--wp--preset--color--base) !important;}.has-contrast-background-color{background-color: var(--wp--preset--color--contrast) !important;}.has-accent-1-background-color{background-color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-background-color{background-color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-background-color{background-color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-background-color{background-color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-background-color{background-color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-background-color{background-color: var(--wp--preset--color--accent-6) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-border-color{border-color: var(--wp--preset--color--base) !important;}.has-contrast-border-color{border-color: var(--wp--preset--color--contrast) !important;}.has-accent-1-border-color{border-color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-border-color{border-color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-border-color{border-color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-border-color{border-color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-border-color{border-color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-border-color{border-color: var(--wp--preset--color--accent-6) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-xx-large-font-size{font-size: var(--wp--preset--font-size--xx-large) !important;}.has-manrope-font-family{font-family: var(--wp--preset--font-family--manrope) !important;}.has-fira-code-font-family{font-family: var(--wp--preset--font-family--fira-code) !important;}", - "__unstableType": "presets", - "isGlobalStyles": true - }, - { - "css": ":root { --wp--style--global--content-size: 645px;--wp--style--global--wide-size: 1340px; }:where(body) { margin: 0; }.wp-site-blocks { padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom); }.has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) { padding-right: 0; padding-left: 0; }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) > .alignfull { margin-left: 0; margin-right: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 1.2rem; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 1.2rem; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 1.2rem;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 1.2rem;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 1.2rem;}:root :where(.is-layout-grid){gap: 1.2rem;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{background-color: var(--wp--preset--color--base);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--manrope);font-size: var(--wp--preset--font-size--large);font-weight: 300;letter-spacing: -0.1px;line-height: 1.4;--wp--style--root--padding-top: 0px;--wp--style--root--padding-right: var(--wp--preset--spacing--50);--wp--style--root--padding-bottom: 0px;--wp--style--root--padding-left: var(--wp--preset--spacing--50);}a:where(:not(.wp-element-button)){color: currentColor;text-decoration: underline;}:root :where(a:where(:not(.wp-element-button)):hover){text-decoration: none;}h1, h2, h3, h4, h5, h6{font-weight: 400;letter-spacing: -0.1px;line-height: 1.125;}h1{font-size: var(--wp--preset--font-size--xx-large);}h2{font-size: var(--wp--preset--font-size--x-large);}h3{font-size: var(--wp--preset--font-size--large);}h4{font-size: var(--wp--preset--font-size--medium);}h5{font-size: var(--wp--preset--font-size--small);letter-spacing: 0.5px;}h6{font-size: var(--wp--preset--font-size--small);font-weight: 700;letter-spacing: 1.4px;text-transform: uppercase;}:root :where(.wp-element-button, .wp-block-button__link){background-color: var(--wp--preset--color--contrast);border-width: 0;color: var(--wp--preset--color--base);font-family: inherit;font-size: var(--wp--preset--font-size--medium);font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: 1rem;padding-right: 2.25rem;padding-bottom: 1rem;padding-left: 2.25rem;text-decoration: none;text-transform: inherit;}:root :where(.wp-element-button:hover, .wp-block-button__link:hover){background-color: color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent);border-color: transparent;color: var(--wp--preset--color--base);}:root :where(.wp-element-button:focus, .wp-block-button__link:focus){outline-color: var(--wp--preset--color--accent-4);outline-offset: 2px;}:root :where(.wp-element-caption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-gallery figcaption, .wp-block-image figcaption, .wp-block-table figcaption, .wp-block-video figcaption){font-size: var(--wp--preset--font-size--small);line-height: 1.4;}:root :where(.wp-block-columns-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flex){gap: var(--wp--preset--spacing--50);}:root :where(.wp-block-columns-is-layout-grid){gap: var(--wp--preset--spacing--50);}:root :where(.wp-block-pullquote){font-size: var(--wp--preset--font-size--xx-large);font-weight: 300;line-height: 1.2;padding-top: var(--wp--preset--spacing--30);padding-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-pullquote p:last-of-type){margin-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-pullquote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;}:root :where(.wp-block-avatar img){border-radius: 100px;}:root :where(.wp-block-buttons-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flow) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flex){gap: 16px;}:root :where(.wp-block-buttons-is-layout-grid){gap: 16px;}:root :where(.wp-block-code){background-color: var(--wp--preset--color--accent-5);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--fira-code);font-size: var(--wp--preset--font-size--medium);font-weight: 300;padding-top: var(--wp--preset--spacing--40);padding-right: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);padding-left: var(--wp--preset--spacing--40);}:root :where(.wp-block-comment-author-name){color: var(--wp--preset--color--accent-4);font-size: var(--wp--preset--font-size--small);margin-top: 5px;margin-bottom: 0px;}:root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button))){color: var(--wp--preset--color--accent-4);text-decoration: none;}:root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-comment-content){font-size: var(--wp--preset--font-size--medium);margin-top: var(--wp--preset--spacing--30);margin-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-comment-date){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-edit-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-comment-reply-link){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-reply-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-post-comments-form){font-size: var(--wp--preset--font-size--medium);padding-top: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);}:root :where(.wp-block-post-comments-form textarea, .wp-block-post-comments-form input:not([type=submit])){border-radius:.25rem; border-color: var(--wp--preset--color--accent-6) !important;}:root :where(.wp-block-post-comments-form input[type=checkbox]){margin:0 .2rem 0 0 !important;}:root :where(.wp-block-post-comments-form label){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comments-pagination){font-size: var(--wp--preset--font-size--medium);margin-top: var(--wp--preset--spacing--40);margin-bottom: var(--wp--preset--spacing--40);}:root :where(.wp-block-comments-pagination-next){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-comments-pagination-numbers){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-comments-pagination-previous){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-post-date){color: var(--wp--preset--color--accent-4);font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-post-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--accent-4);text-decoration: none;}:root :where(.wp-block-post-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-post-navigation-link){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--small);font-weight: 600;}:root :where(.wp-block-post-terms a){white-space: nowrap;}:root :where(.wp-block-post-title a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-quote){border-color: currentColor;border-width: 0 0 0 2px;border-style: solid;font-size: var(--wp--preset--font-size--large);font-weight: 300;margin-right: 0;margin-left: 0;padding-top: var(--wp--preset--spacing--30);padding-right: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--40);}:root :where(.wp-block-quote-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-quote-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--30);margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-quote-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--30);margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-flex){gap: var(--wp--preset--spacing--30);}:root :where(.wp-block-quote-is-layout-grid){gap: var(--wp--preset--spacing--30);}:root :where(.wp-block-quote.has-text-align-right ){border-width: 0 2px 0 0;}:root :where(.wp-block-quote.has-text-align-center ){border-width: 0;border-inline: 0; padding-inline: 0;}:root :where(.wp-block-quote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;font-weight: 300;}:root :where(.wp-block-quote cite sub){font-size: 0.65em}:root :where(.wp-block-query-pagination){font-size: var(--wp--preset--font-size--medium);font-weight: 500;}:root :where(.wp-block-search .wp-block-search__label, .wp-block-search .wp-block-search__input, .wp-block-search .wp-block-search__button){font-size: var(--wp--preset--font-size--medium);line-height: 1.6;}:root :where(.wp-block-search .wp-block-search__input){border-radius:3.125rem;padding-left:1.5625rem;padding-right:1.5625rem;border-color:var(--wp--preset--color--accent-6);}:root :where(.wp-block-search .wp-element-button,.wp-block-search .wp-block-button__link){border-radius: 3.125rem;margin-left: 1.125rem;}:root :where(.wp-block-search .wp-element-button:hover,.wp-block-search .wp-block-button__link:hover){border-color: transparent;}:root :where(.wp-block-separator){border-color: currentColor;border-width: 0 0 1px 0;border-style: solid;color: var(--wp--preset--color--accent-6);}:root :where(.wp-block-site-tagline){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-site-title){font-weight: 700;letter-spacing: -.5px;}:root :where(.wp-block-site-title a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-site-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-term-description){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-navigation){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-navigation a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-list li){margin-top: 0.5rem;}", - "__unstableType": "theme", - "isGlobalStyles": true - }, - { - "css": "", - "__unstableType": "user", - "isGlobalStyles": false + { + "slug": "design", + "title": "Design", + "icon": null + }, + { + "slug": "widgets", + "title": "Widgets", + "icon": null + }, + { + "slug": "theme", + "title": "Theme", + "icon": null + }, + { + "slug": "embed", + "title": "Embeds", + "icon": null + }, + { + "slug": "reusable", + "title": "Patterns", + "icon": null + } + ], + "isRTL": false, + "imageDefaultSize": "large", + "imageDimensions": { + "thumbnail": { + "width": 150, + "height": 150, + "crop": true + }, + "medium": { + "width": 300, + "height": 300, + "crop": false + }, + "large": { + "width": 1024, + "height": 1024, + "crop": false + } + }, + "imageEditing": true, + "imageSizes": [ + { + "slug": "thumbnail", + "name": "Thumbnail" + }, + { + "slug": "medium", + "name": "Medium" + }, + { + "slug": "large", + "name": "Large" + }, + { + "slug": "full", + "name": "Full Size" + } + ], + "maxUploadFileSize": 2097152000, + "__experimentalDashboardLink": "http://localhost:8881/wp-admin/", + "__unstableGalleryWithImageBlocks": true, + "disableCustomColors": false, + "disableCustomFontSizes": false, + "disableCustomGradients": false, + "disableLayoutStyles": false, + "enableCustomLineHeight": true, + "enableCustomSpacing": true, + "enableCustomUnits": [ + "%", + "px", + "em", + "rem", + "vh", + "vw" + ], + "styles": [ + { + "css": ":root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--base: #FFFFFF;--wp--preset--color--contrast: #111111;--wp--preset--color--accent-1: #FFEE58;--wp--preset--color--accent-2: #F6CFF4;--wp--preset--color--accent-3: #503AA8;--wp--preset--color--accent-4: #686868;--wp--preset--color--accent-5: #FBFAF3;--wp--preset--color--accent-6: color-mix(in srgb, currentColor 20%, transparent);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 0.875rem;--wp--preset--font-size--medium: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.196), 1.125rem);--wp--preset--font-size--large: clamp(1.125rem, 1.125rem + ((1vw - 0.2rem) * 0.392), 1.375rem);--wp--preset--font-size--x-large: clamp(1.75rem, 1.75rem + ((1vw - 0.2rem) * 0.392), 2rem);--wp--preset--font-size--xx-large: clamp(2.15rem, 2.15rem + ((1vw - 0.2rem) * 1.333), 3rem);--wp--preset--font-family--manrope: Manrope, sans-serif;--wp--preset--font-family--fira-code: \"Fira Code\", monospace;--wp--preset--spacing--20: 10px;--wp--preset--spacing--30: 20px;--wp--preset--spacing--40: 30px;--wp--preset--spacing--50: clamp(30px, 5vw, 50px);--wp--preset--spacing--60: clamp(30px, 7vw, 70px);--wp--preset--spacing--70: clamp(50px, 7vw, 90px);--wp--preset--spacing--80: clamp(70px, 10vw, 140px);--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}", + "__unstableType": "presets", + "isGlobalStyles": true + }, + { + "css": ".has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-base-color{color: var(--wp--preset--color--base) !important;}.has-contrast-color{color: var(--wp--preset--color--contrast) !important;}.has-accent-1-color{color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-color{color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-color{color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-color{color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-color{color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-color{color: var(--wp--preset--color--accent-6) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-background-color{background-color: var(--wp--preset--color--base) !important;}.has-contrast-background-color{background-color: var(--wp--preset--color--contrast) !important;}.has-accent-1-background-color{background-color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-background-color{background-color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-background-color{background-color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-background-color{background-color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-background-color{background-color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-background-color{background-color: var(--wp--preset--color--accent-6) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-base-border-color{border-color: var(--wp--preset--color--base) !important;}.has-contrast-border-color{border-color: var(--wp--preset--color--contrast) !important;}.has-accent-1-border-color{border-color: var(--wp--preset--color--accent-1) !important;}.has-accent-2-border-color{border-color: var(--wp--preset--color--accent-2) !important;}.has-accent-3-border-color{border-color: var(--wp--preset--color--accent-3) !important;}.has-accent-4-border-color{border-color: var(--wp--preset--color--accent-4) !important;}.has-accent-5-border-color{border-color: var(--wp--preset--color--accent-5) !important;}.has-accent-6-border-color{border-color: var(--wp--preset--color--accent-6) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-xx-large-font-size{font-size: var(--wp--preset--font-size--xx-large) !important;}.has-manrope-font-family{font-family: var(--wp--preset--font-family--manrope) !important;}.has-fira-code-font-family{font-family: var(--wp--preset--font-family--fira-code) !important;}", + "__unstableType": "presets", + "isGlobalStyles": true + }, + { + "css": ":root { --wp--style--global--content-size: 645px;--wp--style--global--wide-size: 1340px; }:where(body) { margin: 0; }.wp-site-blocks { padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom); }.has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) { padding-right: 0; padding-left: 0; }.has-global-padding :where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) > .alignfull { margin-left: 0; margin-right: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 1.2rem; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 1.2rem; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 1.2rem;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 1.2rem;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 1.2rem;}:root :where(.is-layout-grid){gap: 1.2rem;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{background-color: var(--wp--preset--color--base);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--manrope);font-size: var(--wp--preset--font-size--large);font-weight: 300;letter-spacing: -0.1px;line-height: 1.4;--wp--style--root--padding-top: 0px;--wp--style--root--padding-right: var(--wp--preset--spacing--50);--wp--style--root--padding-bottom: 0px;--wp--style--root--padding-left: var(--wp--preset--spacing--50);}a:where(:not(.wp-element-button)){color: currentColor;text-decoration: underline;}:root :where(a:where(:not(.wp-element-button)):hover){text-decoration: none;}h1, h2, h3, h4, h5, h6{font-weight: 400;letter-spacing: -0.1px;line-height: 1.125;}h1{font-size: var(--wp--preset--font-size--xx-large);}h2{font-size: var(--wp--preset--font-size--x-large);}h3{font-size: var(--wp--preset--font-size--large);}h4{font-size: var(--wp--preset--font-size--medium);}h5{font-size: var(--wp--preset--font-size--small);letter-spacing: 0.5px;}h6{font-size: var(--wp--preset--font-size--small);font-weight: 700;letter-spacing: 1.4px;text-transform: uppercase;}:root :where(.wp-element-button, .wp-block-button__link){background-color: var(--wp--preset--color--contrast);border-width: 0;color: var(--wp--preset--color--base);font-family: inherit;font-size: var(--wp--preset--font-size--medium);font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: 1rem;padding-right: 2.25rem;padding-bottom: 1rem;padding-left: 2.25rem;text-decoration: none;text-transform: inherit;}:root :where(.wp-element-button:hover, .wp-block-button__link:hover){background-color: color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent);border-color: transparent;color: var(--wp--preset--color--base);}:root :where(.wp-element-button:focus, .wp-block-button__link:focus){outline-color: var(--wp--preset--color--accent-4);outline-offset: 2px;}:root :where(.wp-element-caption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-gallery figcaption, .wp-block-image figcaption, .wp-block-table figcaption, .wp-block-video figcaption){font-size: var(--wp--preset--font-size--small);line-height: 1.4;}:root :where(.wp-block-columns-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-columns-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--50);margin-block-end: 0;}:root :where(.wp-block-columns-is-layout-flex){gap: var(--wp--preset--spacing--50);}:root :where(.wp-block-columns-is-layout-grid){gap: var(--wp--preset--spacing--50);}:root :where(.wp-block-pullquote){font-size: var(--wp--preset--font-size--xx-large);font-weight: 300;line-height: 1.2;padding-top: var(--wp--preset--spacing--30);padding-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-pullquote p:last-of-type){margin-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-pullquote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;}:root :where(.wp-block-avatar img){border-radius: 100px;}:root :where(.wp-block-buttons-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flow) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-constrained) > *{margin-block-start: 16px;margin-block-end: 0;}:root :where(.wp-block-buttons-is-layout-flex){gap: 16px;}:root :where(.wp-block-buttons-is-layout-grid){gap: 16px;}:root :where(.wp-block-code){background-color: var(--wp--preset--color--accent-5);color: var(--wp--preset--color--contrast);font-family: var(--wp--preset--font-family--fira-code);font-size: var(--wp--preset--font-size--medium);font-weight: 300;padding-top: var(--wp--preset--spacing--40);padding-right: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);padding-left: var(--wp--preset--spacing--40);}:root :where(.wp-block-comment-author-name){color: var(--wp--preset--color--accent-4);font-size: var(--wp--preset--font-size--small);margin-top: 5px;margin-bottom: 0px;}:root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button))){color: var(--wp--preset--color--accent-4);text-decoration: none;}:root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-comment-content){font-size: var(--wp--preset--font-size--medium);margin-top: var(--wp--preset--spacing--30);margin-bottom: var(--wp--preset--spacing--30);}:root :where(.wp-block-comment-date){color: var(--wp--preset--color--contrast);font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-edit-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-comment-reply-link){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comment-reply-link a:where(:not(.wp-element-button))){color: var(--wp--preset--color--contrast);}:root :where(.wp-block-post-comments-form){font-size: var(--wp--preset--font-size--medium);padding-top: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--40);}:root :where(.wp-block-post-comments-form textarea, .wp-block-post-comments-form input:not([type=submit])){border-radius:.25rem; border-color: var(--wp--preset--color--accent-6) !important;}:root :where(.wp-block-post-comments-form input[type=checkbox]){margin:0 .2rem 0 0 !important;}:root :where(.wp-block-post-comments-form label){font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-comments-pagination){font-size: var(--wp--preset--font-size--medium);margin-top: var(--wp--preset--spacing--40);margin-bottom: var(--wp--preset--spacing--40);}:root :where(.wp-block-comments-pagination-next){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-comments-pagination-numbers){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-comments-pagination-previous){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-post-date){color: var(--wp--preset--color--accent-4);font-size: var(--wp--preset--font-size--small);}:root :where(.wp-block-post-date a:where(:not(.wp-element-button))){color: var(--wp--preset--color--accent-4);text-decoration: none;}:root :where(.wp-block-post-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-post-navigation-link){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--small);font-weight: 600;}:root :where(.wp-block-post-terms a){white-space: nowrap;}:root :where(.wp-block-post-title a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-quote){border-color: currentColor;border-width: 0 0 0 2px;border-style: solid;font-size: var(--wp--preset--font-size--large);font-weight: 300;margin-right: 0;margin-left: 0;padding-top: var(--wp--preset--spacing--30);padding-right: var(--wp--preset--spacing--40);padding-bottom: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--40);}:root :where(.wp-block-quote-is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.wp-block-quote-is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-flow) > *{margin-block-start: var(--wp--preset--spacing--30);margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.wp-block-quote-is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-constrained) > *{margin-block-start: var(--wp--preset--spacing--30);margin-block-end: 0;}:root :where(.wp-block-quote-is-layout-flex){gap: var(--wp--preset--spacing--30);}:root :where(.wp-block-quote-is-layout-grid){gap: var(--wp--preset--spacing--30);}:root :where(.wp-block-quote.has-text-align-right ){border-width: 0 2px 0 0;}:root :where(.wp-block-quote.has-text-align-center ){border-width: 0;border-inline: 0; padding-inline: 0;}:root :where(.wp-block-quote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;font-weight: 300;}:root :where(.wp-block-quote cite sub){font-size: 0.65em}:root :where(.wp-block-query-pagination){font-size: var(--wp--preset--font-size--medium);font-weight: 500;}:root :where(.wp-block-search .wp-block-search__label, .wp-block-search .wp-block-search__input, .wp-block-search .wp-block-search__button){font-size: var(--wp--preset--font-size--medium);line-height: 1.6;}:root :where(.wp-block-search .wp-block-search__input){border-radius:3.125rem;padding-left:1.5625rem;padding-right:1.5625rem;border-color:var(--wp--preset--color--accent-6);}:root :where(.wp-block-search .wp-element-button,.wp-block-search .wp-block-button__link){border-radius: 3.125rem;margin-left: 1.125rem;}:root :where(.wp-block-search .wp-element-button:hover,.wp-block-search .wp-block-button__link:hover){border-color: transparent;}:root :where(.wp-block-separator){border-color: currentColor;border-width: 0 0 1px 0;border-style: solid;color: var(--wp--preset--color--accent-6);}:root :where(.wp-block-site-tagline){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-site-title){font-weight: 700;letter-spacing: -.5px;}:root :where(.wp-block-site-title a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-site-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-term-description){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-navigation){font-size: var(--wp--preset--font-size--medium);}:root :where(.wp-block-navigation a:where(:not(.wp-element-button))){text-decoration: none;}:root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover){text-decoration: underline;}:root :where(.wp-block-list li){margin-top: 0.5rem;}", + "__unstableType": "theme", + "isGlobalStyles": true + }, + { + "css": "", + "__unstableType": "user", + "isGlobalStyles": false + }, + { + "css": "", + "__unstableType": "user", + "isGlobalStyles": true + }, + { + "css": "/*\n * Link styles\n * https://github.com/WordPress/gutenberg/issues/42319\n */\na {\n\ttext-decoration-thickness: 1px !important;\n\ttext-underline-offset: .1em;\n}\n", + "baseURL": "http://localhost:8881/wp-content/themes/twentytwentyfive/assets/css/editor-style.css", + "__unstableType": "theme", + "isGlobalStyles": false + }, + { + "assets": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" /><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" /><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" /><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" /><feFuncB type=\"table\" tableValues=\"0 1\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" /><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" /><feFuncG type=\"table\" tableValues=\"0 1\" /><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" /><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" /><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" /><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" /><feFuncA type=\"table\" tableValues=\"1 1\" /></feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" /></filter></defs></svg>", + "__unstableType": "svgs", + "isGlobalStyles": false + }, + { + "css": ":root{--wp--preset--duotone--dark-grayscale:url(#wp-duotone-dark-grayscale);--wp--preset--duotone--grayscale:url(#wp-duotone-grayscale);--wp--preset--duotone--purple-yellow:url(#wp-duotone-purple-yellow);--wp--preset--duotone--blue-red:url(#wp-duotone-blue-red);--wp--preset--duotone--midnight:url(#wp-duotone-midnight);--wp--preset--duotone--magenta-yellow:url(#wp-duotone-magenta-yellow);--wp--preset--duotone--purple-green:url(#wp-duotone-purple-green);--wp--preset--duotone--blue-orange:url(#wp-duotone-blue-orange);}", + "__unstableType": "presets", + "isGlobalStyles": false + } + ], + "__experimentalFeatures": { + "appearanceTools": false, + "useRootPaddingAwareAlignments": true, + "border": { + "color": true, + "radius": true, + "style": true, + "width": true + }, + "color": { + "background": true, + "button": true, + "caption": true, + "customDuotone": true, + "defaultDuotone": false, + "defaultGradients": false, + "defaultPalette": false, + "duotone": { + "default": [ + { + "name": "Dark grayscale", + "colors": [ + "#000000", + "#7f7f7f" + ], + "slug": "dark-grayscale" + }, + { + "name": "Grayscale", + "colors": [ + "#000000", + "#ffffff" + ], + "slug": "grayscale" + }, + { + "name": "Purple and yellow", + "colors": [ + "#8c00b7", + "#fcff41" + ], + "slug": "purple-yellow" + }, + { + "name": "Blue and red", + "colors": [ + "#000097", + "#ff4747" + ], + "slug": "blue-red" + }, + { + "name": "Midnight", + "colors": [ + "#000000", + "#00a5ff" + ], + "slug": "midnight" + }, + { + "name": "Magenta and yellow", + "colors": [ + "#c7005a", + "#fff278" + ], + "slug": "magenta-yellow" + }, + { + "name": "Purple and green", + "colors": [ + "#a60072", + "#67ff66" + ], + "slug": "purple-green" + }, + { + "name": "Blue and orange", + "colors": [ + "#1900d8", + "#ffa96b" + ], + "slug": "blue-orange" + } + ] }, - { - "css": "", - "__unstableType": "user", - "isGlobalStyles": true + "gradients": { + "default": [ + { + "name": "Vivid cyan blue to vivid purple", + "gradient": "linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%)", + "slug": "vivid-cyan-blue-to-vivid-purple" + }, + { + "name": "Light green cyan to vivid green cyan", + "gradient": "linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)", + "slug": "light-green-cyan-to-vivid-green-cyan" + }, + { + "name": "Luminous vivid amber to luminous vivid orange", + "gradient": "linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%)", + "slug": "luminous-vivid-amber-to-luminous-vivid-orange" + }, + { + "name": "Luminous vivid orange to vivid red", + "gradient": "linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%)", + "slug": "luminous-vivid-orange-to-vivid-red" + }, + { + "name": "Very light gray to cyan bluish gray", + "gradient": "linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)", + "slug": "very-light-gray-to-cyan-bluish-gray" + }, + { + "name": "Cool to warm spectrum", + "gradient": "linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)", + "slug": "cool-to-warm-spectrum" + }, + { + "name": "Blush light purple", + "gradient": "linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)", + "slug": "blush-light-purple" + }, + { + "name": "Blush bordeaux", + "gradient": "linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)", + "slug": "blush-bordeaux" + }, + { + "name": "Luminous dusk", + "gradient": "linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)", + "slug": "luminous-dusk" + }, + { + "name": "Pale ocean", + "gradient": "linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)", + "slug": "pale-ocean" + }, + { + "name": "Electric grass", + "gradient": "linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)", + "slug": "electric-grass" + }, + { + "name": "Midnight", + "gradient": "linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)", + "slug": "midnight" + } + ] }, - { - "css": "\/*\n * Link styles\n * https:\/\/github.com\/WordPress\/gutenberg\/issues\/42319\n *\/\na {\n\ttext-decoration-thickness: 1px !important;\n\ttext-underline-offset: .1em;\n}\n", - "baseURL": "http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/css\/editor-style.css", - "__unstableType": "theme", - "isGlobalStyles": false + "heading": true, + "link": true, + "palette": { + "default": [ + { + "name": "Black", + "slug": "black", + "color": "#000000" + }, + { + "name": "Cyan bluish gray", + "slug": "cyan-bluish-gray", + "color": "#abb8c3" + }, + { + "name": "White", + "slug": "white", + "color": "#ffffff" + }, + { + "name": "Pale pink", + "slug": "pale-pink", + "color": "#f78da7" + }, + { + "name": "Vivid red", + "slug": "vivid-red", + "color": "#cf2e2e" + }, + { + "name": "Luminous vivid orange", + "slug": "luminous-vivid-orange", + "color": "#ff6900" + }, + { + "name": "Luminous vivid amber", + "slug": "luminous-vivid-amber", + "color": "#fcb900" + }, + { + "name": "Light green cyan", + "slug": "light-green-cyan", + "color": "#7bdcb5" + }, + { + "name": "Vivid green cyan", + "slug": "vivid-green-cyan", + "color": "#00d084" + }, + { + "name": "Pale cyan blue", + "slug": "pale-cyan-blue", + "color": "#8ed1fc" + }, + { + "name": "Vivid cyan blue", + "slug": "vivid-cyan-blue", + "color": "#0693e3" + }, + { + "name": "Vivid purple", + "slug": "vivid-purple", + "color": "#9b51e0" + } + ], + "theme": [ + { + "color": "#FFFFFF", + "name": "Base", + "slug": "base" + }, + { + "color": "#111111", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#FFEE58", + "name": "Accent 1", + "slug": "accent-1" + }, + { + "color": "#F6CFF4", + "name": "Accent 2", + "slug": "accent-2" + }, + { + "color": "#503AA8", + "name": "Accent 3", + "slug": "accent-3" + }, + { + "color": "#686868", + "name": "Accent 4", + "slug": "accent-4" + }, + { + "color": "#FBFAF3", + "name": "Accent 5", + "slug": "accent-5" + }, + { + "color": "color-mix(in srgb, currentColor 20%, transparent)", + "name": "Accent 6", + "slug": "accent-6" + } + ] }, - { - "assets": "<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-dark-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0.49803921568627\" \/><feFuncG type=\"table\" tableValues=\"0 0.49803921568627\" \/><feFuncB type=\"table\" tableValues=\"0 0.49803921568627\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-grayscale\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" \/><feFuncG type=\"table\" tableValues=\"0 1\" \/><feFuncB type=\"table\" tableValues=\"0 1\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.54901960784314 0.98823529411765\" \/><feFuncG type=\"table\" tableValues=\"0 1\" \/><feFuncB type=\"table\" tableValues=\"0.71764705882353 0.25490196078431\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-red\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 1\" \/><feFuncG type=\"table\" tableValues=\"0 0.27843137254902\" \/><feFuncB type=\"table\" tableValues=\"0.5921568627451 0.27843137254902\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-midnight\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0 0\" \/><feFuncG type=\"table\" tableValues=\"0 0.64705882352941\" \/><feFuncB type=\"table\" tableValues=\"0 1\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-magenta-yellow\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.78039215686275 1\" \/><feFuncG type=\"table\" tableValues=\"0 0.94901960784314\" \/><feFuncB type=\"table\" tableValues=\"0.35294117647059 0.47058823529412\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-purple-green\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.65098039215686 0.40392156862745\" \/><feFuncG type=\"table\" tableValues=\"0 1\" \/><feFuncB type=\"table\" tableValues=\"0.44705882352941 0.4\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 0 0\" width=\"0\" height=\"0\" focusable=\"false\" role=\"none\" style=\"visibility: hidden; position: absolute; left: -9999px; overflow: hidden;\" ><defs><filter id=\"wp-duotone-blue-orange\"><feColorMatrix color-interpolation-filters=\"sRGB\" type=\"matrix\" values=\" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 \" \/><feComponentTransfer color-interpolation-filters=\"sRGB\" ><feFuncR type=\"table\" tableValues=\"0.098039215686275 1\" \/><feFuncG type=\"table\" tableValues=\"0 0.66274509803922\" \/><feFuncB type=\"table\" tableValues=\"0.84705882352941 0.41960784313725\" \/><feFuncA type=\"table\" tableValues=\"1 1\" \/><\/feComponentTransfer><feComposite in2=\"SourceGraphic\" operator=\"in\" \/><\/filter><\/defs><\/svg>", - "__unstableType": "svgs", - "isGlobalStyles": false + "text": true + }, + "dimensions": { + "defaultAspectRatios": true, + "aspectRatios": { + "default": [ + { + "name": "Square - 1:1", + "slug": "square", + "ratio": "1" + }, + { + "name": "Standard - 4:3", + "slug": "4-3", + "ratio": "4/3" + }, + { + "name": "Portrait - 3:4", + "slug": "3-4", + "ratio": "3/4" + }, + { + "name": "Classic - 3:2", + "slug": "3-2", + "ratio": "3/2" + }, + { + "name": "Classic Portrait - 2:3", + "slug": "2-3", + "ratio": "2/3" + }, + { + "name": "Wide - 16:9", + "slug": "16-9", + "ratio": "16/9" + }, + { + "name": "Tall - 9:16", + "slug": "9-16", + "ratio": "9/16" + } + ] }, - { - "css": ":root{--wp--preset--duotone--dark-grayscale:url(#wp-duotone-dark-grayscale);--wp--preset--duotone--grayscale:url(#wp-duotone-grayscale);--wp--preset--duotone--purple-yellow:url(#wp-duotone-purple-yellow);--wp--preset--duotone--blue-red:url(#wp-duotone-blue-red);--wp--preset--duotone--midnight:url(#wp-duotone-midnight);--wp--preset--duotone--magenta-yellow:url(#wp-duotone-magenta-yellow);--wp--preset--duotone--purple-green:url(#wp-duotone-purple-green);--wp--preset--duotone--blue-orange:url(#wp-duotone-blue-orange);}", - "__unstableType": "presets", - "isGlobalStyles": false + "aspectRatio": true, + "minHeight": true + }, + "shadow": { + "defaultPresets": true, + "presets": { + "default": [ + { + "name": "Natural", + "slug": "natural", + "shadow": "6px 6px 9px rgba(0, 0, 0, 0.2)" + }, + { + "name": "Deep", + "slug": "deep", + "shadow": "12px 12px 50px rgba(0, 0, 0, 0.4)" + }, + { + "name": "Sharp", + "slug": "sharp", + "shadow": "6px 6px 0px rgba(0, 0, 0, 0.2)" + }, + { + "name": "Outlined", + "slug": "outlined", + "shadow": "6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0)" + }, + { + "name": "Crisp", + "slug": "crisp", + "shadow": "6px 6px 0px rgb(0, 0, 0)" + } + ] } - ], - "__experimentalFeatures": { - "appearanceTools": false, - "useRootPaddingAwareAlignments": true, - "border": { - "color": true, - "radius": true, - "style": true, - "width": true - }, - "color": { - "background": true, - "button": true, - "caption": true, - "customDuotone": true, - "defaultDuotone": false, - "defaultGradients": false, - "defaultPalette": false, - "duotone": { - "default": [ - { - "name": "Dark grayscale", - "colors": [ - "#000000", - "#7f7f7f" - ], - "slug": "dark-grayscale" - }, - { - "name": "Grayscale", - "colors": [ - "#000000", - "#ffffff" - ], - "slug": "grayscale" - }, - { - "name": "Purple and yellow", - "colors": [ - "#8c00b7", - "#fcff41" - ], - "slug": "purple-yellow" - }, - { - "name": "Blue and red", - "colors": [ - "#000097", - "#ff4747" - ], - "slug": "blue-red" - }, - { - "name": "Midnight", - "colors": [ - "#000000", - "#00a5ff" - ], - "slug": "midnight" - }, - { - "name": "Magenta and yellow", - "colors": [ - "#c7005a", - "#fff278" - ], - "slug": "magenta-yellow" - }, - { - "name": "Purple and green", - "colors": [ - "#a60072", - "#67ff66" - ], - "slug": "purple-green" - }, - { - "name": "Blue and orange", - "colors": [ - "#1900d8", - "#ffa96b" - ], - "slug": "blue-orange" - } - ] - }, - "gradients": { - "default": [ - { - "name": "Vivid cyan blue to vivid purple", - "gradient": "linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%)", - "slug": "vivid-cyan-blue-to-vivid-purple" - }, - { - "name": "Light green cyan to vivid green cyan", - "gradient": "linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)", - "slug": "light-green-cyan-to-vivid-green-cyan" - }, - { - "name": "Luminous vivid amber to luminous vivid orange", - "gradient": "linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%)", - "slug": "luminous-vivid-amber-to-luminous-vivid-orange" - }, - { - "name": "Luminous vivid orange to vivid red", - "gradient": "linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%)", - "slug": "luminous-vivid-orange-to-vivid-red" - }, - { - "name": "Very light gray to cyan bluish gray", - "gradient": "linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)", - "slug": "very-light-gray-to-cyan-bluish-gray" - }, - { - "name": "Cool to warm spectrum", - "gradient": "linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)", - "slug": "cool-to-warm-spectrum" - }, - { - "name": "Blush light purple", - "gradient": "linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)", - "slug": "blush-light-purple" - }, - { - "name": "Blush bordeaux", - "gradient": "linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)", - "slug": "blush-bordeaux" - }, - { - "name": "Luminous dusk", - "gradient": "linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)", - "slug": "luminous-dusk" - }, - { - "name": "Pale ocean", - "gradient": "linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)", - "slug": "pale-ocean" - }, - { - "name": "Electric grass", - "gradient": "linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)", - "slug": "electric-grass" - }, - { - "name": "Midnight", - "gradient": "linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)", - "slug": "midnight" - } - ] - }, - "heading": true, - "link": true, - "palette": { - "default": [ - { - "name": "Black", - "slug": "black", - "color": "#000000" - }, - { - "name": "Cyan bluish gray", - "slug": "cyan-bluish-gray", - "color": "#abb8c3" - }, - { - "name": "White", - "slug": "white", - "color": "#ffffff" - }, - { - "name": "Pale pink", - "slug": "pale-pink", - "color": "#f78da7" - }, - { - "name": "Vivid red", - "slug": "vivid-red", - "color": "#cf2e2e" - }, - { - "name": "Luminous vivid orange", - "slug": "luminous-vivid-orange", - "color": "#ff6900" - }, - { - "name": "Luminous vivid amber", - "slug": "luminous-vivid-amber", - "color": "#fcb900" - }, - { - "name": "Light green cyan", - "slug": "light-green-cyan", - "color": "#7bdcb5" - }, - { - "name": "Vivid green cyan", - "slug": "vivid-green-cyan", - "color": "#00d084" - }, - { - "name": "Pale cyan blue", - "slug": "pale-cyan-blue", - "color": "#8ed1fc" - }, - { - "name": "Vivid cyan blue", - "slug": "vivid-cyan-blue", - "color": "#0693e3" - }, - { - "name": "Vivid purple", - "slug": "vivid-purple", - "color": "#9b51e0" - } - ], - "theme": [ - { - "color": "#FFFFFF", - "name": "Base", - "slug": "base" - }, - { - "color": "#111111", - "name": "Contrast", - "slug": "contrast" - }, - { - "color": "#FFEE58", - "name": "Accent 1", - "slug": "accent-1" - }, - { - "color": "#F6CFF4", - "name": "Accent 2", - "slug": "accent-2" - }, - { - "color": "#503AA8", - "name": "Accent 3", - "slug": "accent-3" - }, - { - "color": "#686868", - "name": "Accent 4", - "slug": "accent-4" - }, - { - "color": "#FBFAF3", - "name": "Accent 5", - "slug": "accent-5" - }, - { - "color": "color-mix(in srgb, currentColor 20%, transparent)", - "name": "Accent 6", - "slug": "accent-6" - } - ] - }, - "text": true - }, - "dimensions": { - "defaultAspectRatios": true, - "aspectRatios": { - "default": [ - { - "name": "Square - 1:1", - "slug": "square", - "ratio": "1" - }, - { - "name": "Standard - 4:3", - "slug": "4-3", - "ratio": "4\/3" - }, - { - "name": "Portrait - 3:4", - "slug": "3-4", - "ratio": "3\/4" - }, - { - "name": "Classic - 3:2", - "slug": "3-2", - "ratio": "3\/2" - }, - { - "name": "Classic Portrait - 2:3", - "slug": "2-3", - "ratio": "2\/3" - }, - { - "name": "Wide - 16:9", - "slug": "16-9", - "ratio": "16\/9" - }, - { - "name": "Tall - 9:16", - "slug": "9-16", - "ratio": "9\/16" - } - ] - }, - "aspectRatio": true, - "minHeight": true - }, - "shadow": { - "defaultPresets": true, - "presets": { - "default": [ - { - "name": "Natural", - "slug": "natural", - "shadow": "6px 6px 9px rgba(0, 0, 0, 0.2)" - }, - { - "name": "Deep", - "slug": "deep", - "shadow": "12px 12px 50px rgba(0, 0, 0, 0.4)" - }, - { - "name": "Sharp", - "slug": "sharp", - "shadow": "6px 6px 0px rgba(0, 0, 0, 0.2)" - }, - { - "name": "Outlined", - "slug": "outlined", - "shadow": "6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0)" - }, - { - "name": "Crisp", - "slug": "crisp", - "shadow": "6px 6px 0px rgb(0, 0, 0)" - } - ] + }, + "spacing": { + "blockGap": true, + "margin": true, + "defaultSpacingSizes": false, + "spacingScale": { + "default": { + "operator": "*", + "increment": 1.5, + "steps": 7, + "mediumStep": 1.5, + "unit": "rem" } }, - "spacing": { - "blockGap": true, - "margin": true, - "defaultSpacingSizes": false, - "spacingScale": { - "default": { - "operator": "*", - "increment": 1.5, - "steps": 7, - "mediumStep": 1.5, - "unit": "rem" + "spacingSizes": { + "default": [ + { + "name": "2X-Small", + "slug": "20", + "size": "0.44rem" + }, + { + "name": "X-Small", + "slug": "30", + "size": "0.67rem" + }, + { + "name": "Small", + "slug": "40", + "size": "1rem" + }, + { + "name": "Medium", + "slug": "50", + "size": "1.5rem" + }, + { + "name": "Large", + "slug": "60", + "size": "2.25rem" + }, + { + "name": "X-Large", + "slug": "70", + "size": "3.38rem" + }, + { + "name": "2X-Large", + "slug": "80", + "size": "5.06rem" } - }, - "spacingSizes": { - "default": [ - { - "name": "2X-Small", - "slug": "20", - "size": "0.44rem" - }, - { - "name": "X-Small", - "slug": "30", - "size": "0.67rem" - }, - { - "name": "Small", - "slug": "40", - "size": "1rem" - }, - { - "name": "Medium", - "slug": "50", - "size": "1.5rem" - }, - { - "name": "Large", - "slug": "60", - "size": "2.25rem" - }, - { - "name": "X-Large", - "slug": "70", - "size": "3.38rem" - }, - { - "name": "2X-Large", - "slug": "80", - "size": "5.06rem" - } - ], - "theme": [ - { - "name": "Tiny", - "size": "10px", - "slug": "20" - }, - { - "name": "X-Small", - "size": "20px", - "slug": "30" - }, - { - "name": "Small", - "size": "30px", - "slug": "40" - }, - { - "name": "Regular", - "size": "clamp(30px, 5vw, 50px)", - "slug": "50" - }, - { - "name": "Large", - "size": "clamp(30px, 7vw, 70px)", - "slug": "60" - }, - { - "name": "X-Large", - "size": "clamp(50px, 7vw, 90px)", - "slug": "70" - }, - { - "name": "XX-Large", - "size": "clamp(70px, 10vw, 140px)", - "slug": "80" - } - ] - } - }, - "typography": { - "defaultFontSizes": false, - "dropCap": true, - "fontSizes": { - "default": [ - { - "name": "Small", - "slug": "small", - "size": "13px" - }, - { - "name": "Medium", - "slug": "medium", - "size": "20px" - }, - { - "name": "Large", - "slug": "large", - "size": "36px" - }, - { - "name": "Extra Large", - "slug": "x-large", - "size": "42px" - } - ], - "theme": [ - { - "fluid": false, - "name": "Small", - "size": "0.875rem", - "slug": "small" - }, - { - "fluid": { - "max": "1.125rem", - "min": "1rem" - }, - "name": "Medium", - "size": "1rem", - "slug": "medium" - }, - { - "fluid": { - "max": "1.375rem", - "min": "1.125rem" - }, - "name": "Large", - "size": "1.38rem", - "slug": "large" - }, - { - "fluid": { - "max": "2rem", - "min": "1.75rem" - }, - "name": "Extra Large", - "size": "1.75rem", - "slug": "x-large" - }, - { - "fluid": { - "max": "3rem", - "min": "2.15rem" - }, - "name": "Extra Extra Large", - "size": "2.15rem", - "slug": "xx-large" - } - ] - }, - "fontStyle": true, - "fontWeight": true, - "letterSpacing": true, - "textAlign": true, - "textColumns": false, - "textDecoration": true, - "textTransform": true, - "writingMode": true, - "fluid": true, - "fontFamilies": { - "theme": [ - { - "name": "Manrope", - "slug": "manrope", - "fontFamily": "Manrope, sans-serif", - "fontFace": [ - { - "src": [ - "file:.\/assets\/fonts\/manrope\/Manrope-VariableFont_wght.woff2" - ], - "fontWeight": "200 800", - "fontStyle": "normal", - "fontFamily": "Manrope" - } - ] - }, - { - "name": "Fira Code", - "slug": "fira-code", - "fontFamily": "\"Fira Code\", monospace", - "fontFace": [ - { - "src": [ - "file:.\/assets\/fonts\/fira-code\/FiraCode-VariableFont_wght.woff2" - ], - "fontWeight": "300 700", - "fontStyle": "normal", - "fontFamily": "\"Fira Code\"" - } - ] - } - ] - } - }, - "blocks": { - "core\/button": { - "border": { - "radius": true + ], + "theme": [ + { + "name": "Tiny", + "size": "10px", + "slug": "20" + }, + { + "name": "X-Small", + "size": "20px", + "slug": "30" + }, + { + "name": "Small", + "size": "30px", + "slug": "40" + }, + { + "name": "Regular", + "size": "clamp(30px, 5vw, 50px)", + "slug": "50" + }, + { + "name": "Large", + "size": "clamp(30px, 7vw, 70px)", + "slug": "60" + }, + { + "name": "X-Large", + "size": "clamp(50px, 7vw, 90px)", + "slug": "70" + }, + { + "name": "XX-Large", + "size": "clamp(70px, 10vw, 140px)", + "slug": "80" } - }, - "core\/image": { - "lightbox": { - "allowEditing": true + ] + } + }, + "typography": { + "defaultFontSizes": false, + "dropCap": true, + "fontSizes": { + "default": [ + { + "name": "Small", + "slug": "small", + "size": "13px" + }, + { + "name": "Medium", + "slug": "medium", + "size": "20px" + }, + { + "name": "Large", + "slug": "large", + "size": "36px" + }, + { + "name": "Extra Large", + "slug": "x-large", + "size": "42px" } - }, - "core\/pullquote": { - "border": { - "color": true, - "radius": true, - "style": true, - "width": true + ], + "theme": [ + { + "fluid": false, + "name": "Small", + "size": "0.875rem", + "slug": "small" + }, + { + "fluid": { + "max": "1.125rem", + "min": "1rem" + }, + "name": "Medium", + "size": "1rem", + "slug": "medium" + }, + { + "fluid": { + "max": "1.375rem", + "min": "1.125rem" + }, + "name": "Large", + "size": "1.38rem", + "slug": "large" + }, + { + "fluid": { + "max": "2rem", + "min": "1.75rem" + }, + "name": "Extra Large", + "size": "1.75rem", + "slug": "x-large" + }, + { + "fluid": { + "max": "3rem", + "min": "2.15rem" + }, + "name": "Extra Extra Large", + "size": "2.15rem", + "slug": "xx-large" } - } + ] }, - "layout": { - "contentSize": "645px", - "wideSize": "1340px" - }, - "background": { - "backgroundImage": true, - "backgroundSize": true - }, - "position": { - "fixed": true, - "sticky": true + "fontStyle": true, + "fontWeight": true, + "letterSpacing": true, + "textAlign": true, + "textColumns": false, + "textDecoration": true, + "textTransform": true, + "writingMode": true, + "fluid": true, + "fontFamilies": { + "theme": [ + { + "name": "Manrope", + "slug": "manrope", + "fontFamily": "Manrope, sans-serif", + "fontFace": [ + { + "src": [ + "file:./assets/fonts/manrope/Manrope-VariableFont_wght.woff2" + ], + "fontWeight": "200 800", + "fontStyle": "normal", + "fontFamily": "Manrope" + } + ] + }, + { + "name": "Fira Code", + "slug": "fira-code", + "fontFamily": "\"Fira Code\", monospace", + "fontFace": [ + { + "src": [ + "file:./assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2" + ], + "fontWeight": "300 700", + "fontStyle": "normal", + "fontFamily": "\"Fira Code\"" + } + ] + } + ] } }, - "colors": [ - { - "color": "#FFFFFF", - "name": "Base", - "slug": "base" - }, - { - "color": "#111111", - "name": "Contrast", - "slug": "contrast" - }, - { - "color": "#FFEE58", - "name": "Accent 1", - "slug": "accent-1" - }, - { - "color": "#F6CFF4", - "name": "Accent 2", - "slug": "accent-2" - }, - { - "color": "#503AA8", - "name": "Accent 3", - "slug": "accent-3" - }, - { - "color": "#686868", - "name": "Accent 4", - "slug": "accent-4" - }, - { - "color": "#FBFAF3", - "name": "Accent 5", - "slug": "accent-5" - }, - { - "color": "color-mix(in srgb, currentColor 20%, transparent)", - "name": "Accent 6", - "slug": "accent-6" - } - ], - "gradients": [ - { - "name": "Vivid cyan blue to vivid purple", - "gradient": "linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%)", - "slug": "vivid-cyan-blue-to-vivid-purple" - }, - { - "name": "Light green cyan to vivid green cyan", - "gradient": "linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)", - "slug": "light-green-cyan-to-vivid-green-cyan" - }, - { - "name": "Luminous vivid amber to luminous vivid orange", - "gradient": "linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%)", - "slug": "luminous-vivid-amber-to-luminous-vivid-orange" - }, - { - "name": "Luminous vivid orange to vivid red", - "gradient": "linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%)", - "slug": "luminous-vivid-orange-to-vivid-red" - }, - { - "name": "Very light gray to cyan bluish gray", - "gradient": "linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)", - "slug": "very-light-gray-to-cyan-bluish-gray" - }, - { - "name": "Cool to warm spectrum", - "gradient": "linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)", - "slug": "cool-to-warm-spectrum" - }, - { - "name": "Blush light purple", - "gradient": "linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)", - "slug": "blush-light-purple" - }, - { - "name": "Blush bordeaux", - "gradient": "linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)", - "slug": "blush-bordeaux" - }, - { - "name": "Luminous dusk", - "gradient": "linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)", - "slug": "luminous-dusk" - }, - { - "name": "Pale ocean", - "gradient": "linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)", - "slug": "pale-ocean" - }, - { - "name": "Electric grass", - "gradient": "linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)", - "slug": "electric-grass" - }, - { - "name": "Midnight", - "gradient": "linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)", - "slug": "midnight" - } - ], - "fontSizes": [ - { - "fluid": false, - "name": "Small", - "size": "0.875rem", - "slug": "small" - }, - { - "fluid": { - "max": "1.125rem", - "min": "1rem" - }, - "name": "Medium", - "size": "1rem", - "slug": "medium" - }, - { - "fluid": { - "max": "1.375rem", - "min": "1.125rem" - }, - "name": "Large", - "size": "1.38rem", - "slug": "large" + "blocks": { + "core/button": { + "border": { + "radius": true + } }, - { - "fluid": { - "max": "2rem", - "min": "1.75rem" - }, - "name": "Extra Large", - "size": "1.75rem", - "slug": "x-large" + "core/image": { + "lightbox": { + "allowEditing": true + } }, - { - "fluid": { - "max": "3rem", - "min": "2.15rem" - }, - "name": "Extra Extra Large", - "size": "2.15rem", - "slug": "xx-large" + "core/pullquote": { + "border": { + "color": true, + "radius": true, + "style": true, + "width": true + } } - ], - "disableCustomSpacingSizes": false, - "spacingSizes": [ - { - "name": "Tiny", - "size": "10px", - "slug": "20" - }, - { - "name": "X-Small", - "size": "20px", - "slug": "30" - }, - { - "name": "Small", - "size": "30px", - "slug": "40" + }, + "layout": { + "contentSize": "645px", + "wideSize": "1340px" + }, + "background": { + "backgroundImage": true, + "backgroundSize": true + }, + "position": { + "fixed": true, + "sticky": true + } + }, + "colors": [ + { + "color": "#FFFFFF", + "name": "Base", + "slug": "base" + }, + { + "color": "#111111", + "name": "Contrast", + "slug": "contrast" + }, + { + "color": "#FFEE58", + "name": "Accent 1", + "slug": "accent-1" + }, + { + "color": "#F6CFF4", + "name": "Accent 2", + "slug": "accent-2" + }, + { + "color": "#503AA8", + "name": "Accent 3", + "slug": "accent-3" + }, + { + "color": "#686868", + "name": "Accent 4", + "slug": "accent-4" + }, + { + "color": "#FBFAF3", + "name": "Accent 5", + "slug": "accent-5" + }, + { + "color": "color-mix(in srgb, currentColor 20%, transparent)", + "name": "Accent 6", + "slug": "accent-6" + } + ], + "gradients": [ + { + "name": "Vivid cyan blue to vivid purple", + "gradient": "linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%)", + "slug": "vivid-cyan-blue-to-vivid-purple" + }, + { + "name": "Light green cyan to vivid green cyan", + "gradient": "linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%)", + "slug": "light-green-cyan-to-vivid-green-cyan" + }, + { + "name": "Luminous vivid amber to luminous vivid orange", + "gradient": "linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%)", + "slug": "luminous-vivid-amber-to-luminous-vivid-orange" + }, + { + "name": "Luminous vivid orange to vivid red", + "gradient": "linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%)", + "slug": "luminous-vivid-orange-to-vivid-red" + }, + { + "name": "Very light gray to cyan bluish gray", + "gradient": "linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%)", + "slug": "very-light-gray-to-cyan-bluish-gray" + }, + { + "name": "Cool to warm spectrum", + "gradient": "linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%)", + "slug": "cool-to-warm-spectrum" + }, + { + "name": "Blush light purple", + "gradient": "linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%)", + "slug": "blush-light-purple" + }, + { + "name": "Blush bordeaux", + "gradient": "linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)", + "slug": "blush-bordeaux" + }, + { + "name": "Luminous dusk", + "gradient": "linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%)", + "slug": "luminous-dusk" + }, + { + "name": "Pale ocean", + "gradient": "linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%)", + "slug": "pale-ocean" + }, + { + "name": "Electric grass", + "gradient": "linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%)", + "slug": "electric-grass" + }, + { + "name": "Midnight", + "gradient": "linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%)", + "slug": "midnight" + } + ], + "fontSizes": [ + { + "fluid": false, + "name": "Small", + "size": "0.875rem", + "slug": "small" + }, + { + "fluid": { + "max": "1.125rem", + "min": "1rem" }, - { - "name": "Regular", - "size": "clamp(30px, 5vw, 50px)", - "slug": "50" + "name": "Medium", + "size": "1rem", + "slug": "medium" + }, + { + "fluid": { + "max": "1.375rem", + "min": "1.125rem" }, - { - "name": "Large", - "size": "clamp(30px, 7vw, 70px)", - "slug": "60" + "name": "Large", + "size": "1.38rem", + "slug": "large" + }, + { + "fluid": { + "max": "2rem", + "min": "1.75rem" }, - { - "name": "X-Large", - "size": "clamp(50px, 7vw, 90px)", - "slug": "70" + "name": "Extra Large", + "size": "1.75rem", + "slug": "x-large" + }, + { + "fluid": { + "max": "3rem", + "min": "2.15rem" }, - { - "name": "XX-Large", - "size": "clamp(70px, 10vw, 140px)", - "slug": "80" - } - ], - "__unstableResolvedAssets": { - "styles": "<link rel='stylesheet' id='dashicons-css' href='http:\/\/localhost:8881\/wp-includes\/css\/dashicons.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-components-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/components\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-library-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/common.css?ver=21.6.0' media='all' \/>\n<style id='wp-block-library-inline-css'>\n\n\t\t\t\tul.is-style-checkmark-list {\n\t\t\t\t\tlist-style-type: \"\\2713\";\n\t\t\t\t}\n\n\t\t\t\tul.is-style-checkmark-list li {\n\t\t\t\t\tpadding-inline-start: 1ch;\n\t\t\t\t}\n<\/style>\n<link rel='stylesheet' id='wp-block-editor-content-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-editor\/content.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-edit-blocks-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/editor.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-audio-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/audio\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-buttons-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/buttons\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-code-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/code\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-columns-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/columns\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-details-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/details\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-form-submit-button-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/form-submit-button\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-group-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/group\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-paragraph-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/paragraph\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-preformatted-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/preformatted\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-pullquote-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/pullquote\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-quote-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/quote\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-separator-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/separator\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-social-links-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/social-links\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-spacer-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/spacer\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-table-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/table\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-table-of-contents-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/table-of-contents\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-text-columns-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/text-columns\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-verse-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/verse\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-embed-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/embed\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-accordion-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/accordion\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-archives-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/archives\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-avatar-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/avatar\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-button-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/button\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-calendar-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/calendar\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-categories-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/categories\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-cover-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/cover\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-author-name-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-author-name\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-content-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-content\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-date-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-date\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-edit-link-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-edit-link\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-reply-link-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-reply-link\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comment-template-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comment-template\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-pagination-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comments-pagination\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/comments\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-footnotes-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/footnotes\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-file-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/file\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-image-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/image\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-gallery-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/gallery\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-heading-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/heading\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-latest-comments-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/latest-comments\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-latest-posts-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/latest-posts\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-list-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/list\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-loginout-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/loginout\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-media-text-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/media-text\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-navigation-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/navigation\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-navigation-link-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/navigation-link\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-page-list-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/page-list\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-author-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-author\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-author-name-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-author-name\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-author-biography-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-author-biography\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-comments-count-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-comments-count\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-comments-form-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-comments-form\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-comments-link-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-comments-link\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-content-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-content\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-date-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-date\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-excerpt-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-excerpt\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-featured-image-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-featured-image\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-navigation-link-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-navigation-link\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-terms-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-terms\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-time-to-read-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-time-to-read\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-title-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-title\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-template-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/post-template\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-pagination-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/query-pagination\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-title-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/query-title\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-total-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/query-total\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-read-more-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/read-more\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-rss-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/rss\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-search-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/search\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-logo-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/site-logo\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-tagline-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/site-tagline\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-title-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/site-title\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-tag-cloud-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/tag-cloud\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-term-description-css' href='http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/block-library\/blocks\/term-description\/style.css?ver=21.6.0' media='all' \/>\n<link rel='stylesheet' id='wp-block-audio-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/audio\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-buttons-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/buttons\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-freeform-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/freeform\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-code-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/code\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-columns-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/columns\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-details-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/details\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-group-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/group\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-html-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/html\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-more-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/more\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-nextpage-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/nextpage\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-paragraph-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/paragraph\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-pullquote-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/pullquote\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-separator-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/separator\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-social-links-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/social-links\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-spacer-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/spacer\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-table-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/table\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-text-columns-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/text-columns\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-embed-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/embed\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-archives-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/archives\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-avatar-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/avatar\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-button-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/button\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-categories-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/categories\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-cover-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/cover\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-pagination-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/comments-pagination\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-pagination-numbers-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/comments-pagination-numbers\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-title-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/comments-title\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-comments-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/comments\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-file-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/file\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-image-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/image\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-gallery-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/gallery\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-latest-posts-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/latest-posts\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-media-text-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/media-text\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-navigation-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/navigation\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-navigation-link-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/navigation-link\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-navigation-submenu-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/navigation-submenu\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-page-list-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/page-list\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-author-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/post-author\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-comments-form-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/post-comments-form\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-excerpt-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/post-excerpt\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-post-featured-image-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/post-featured-image\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/query\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-pagination-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/query-pagination\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-query-pagination-numbers-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/query-pagination-numbers\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-rss-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/rss\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-search-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/search\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-shortcode-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/shortcode\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-social-link-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/social-link\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-logo-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/site-logo\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-tagline-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/site-tagline\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-site-title-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/site-title\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-tag-cloud-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/tag-cloud\/editor.min.css?ver=6.8.2' media='all' \/>\n<link rel='stylesheet' id='wp-block-template-part-editor-css' href='http:\/\/localhost:8881\/wp-includes\/blocks\/template-part\/editor.min.css?ver=6.8.2' media='all' \/>\n<style class='wp-fonts-local'>\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/manrope\/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-code\/FiraCode-VariableFont_wght.woff2') format('woff2');}\n<\/style>\n<style class='wp-fonts-local'>\n@font-face{font-family:Beiruti;font-style:normal;font-weight:200 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/beiruti\/Beiruti-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:italic;font-weight:400 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/vollkorn\/Vollkorn-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:normal;font-weight:400 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/vollkorn\/Vollkorn-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-code\/FiraCode-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Roboto Slab\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/roboto-slab\/RobotoSlab-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/manrope\/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:100;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Thin.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:100;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ThinItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Light.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-LightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Italic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Regular.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Medium.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-SemiBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Bold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Black.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Beiruti;font-style:normal;font-weight:200 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/beiruti\/Beiruti-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:italic;font-weight:400 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/vollkorn\/Vollkorn-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:normal;font-weight:400 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/vollkorn\/Vollkorn-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-code\/FiraCode-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Roboto Slab\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/roboto-slab\/RobotoSlab-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/manrope\/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/ysabeau-office\/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/platypi\/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/literata\/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:100;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Thin.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:100;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ThinItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:200;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Light.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:300;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-LightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Italic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:400;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Regular.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Medium.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:500;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-SemiBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:600;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Bold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:700;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:800;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-Black.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:900;font-display:fallback;src:url('http:\/\/localhost:8881\/wp-content\/themes\/twentytwentyfive\/assets\/fonts\/fira-sans\/FiraSans-BlackItalic.woff2') format('woff2');}\n<\/style>\n", - "scripts": "<script src=\"http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/hooks\/index.min.js?ver=84e753e2b66eb7028d38\" id=\"wp-hooks-js\"><\/script>\n<script src=\"http:\/\/localhost:8881\/wp-content\/plugins\/gutenberg\/build\/i18n\/index.min.js?ver=671c1c41fbf6f13df25a\" id=\"wp-i18n-js\"><\/script>\n<script id=\"wp-i18n-js-after\">\nwp.i18n.setLocaleData( { 'text direction\\u0004ltr': [ 'ltr' ] } );\n<\/script>\n<script src=\"http:\/\/localhost:8881\/wp-includes\/js\/dist\/vendor\/wp-polyfill.min.js?ver=3.15.0\" id=\"wp-polyfill-js\"><\/script>\n<script id=\"jetpack-script-data-js-before\">\nwindow.JetpackScriptData = {\"site\":{\"admin_url\":\"http:\/\/localhost:8881\/wp-admin\/\",\"date_format\":\"F j, Y\",\"icon\":\"\",\"is_multisite\":false,\"host\":\"unknown\",\"is_wpcom_platform\":false,\"plan\":{\"product_slug\":\"jetpack_free\",\"class\":\"free\",\"features\":{\"active\":[]},\"supports\":[\"advanced-seo\",\"opentable\",\"calendly\",\"send-a-message\",\"sharing-block\",\"whatsapp-button\",\"social-previews\",\"videopress\",\"videopress\/video\",\"v6-video-frame-poster\",\"core\/video\",\"core\/cover\",\"core\/audio\",\"multistep-form\",\"account-protection\",\"blaze\",\"blocks\",\"carousel\",\"comment-likes\",\"comments\",\"contact-form\",\"copy-post\",\"custom-content-types\",\"google-fonts\",\"gravatar-hovercards\",\"infinite-scroll\",\"json-api\",\"latex\",\"likes\",\"markdown\",\"monitor\",\"notes\",\"photon-cdn\",\"photon\",\"post-by-email\",\"post-list\",\"protect\",\"publicize\",\"related-posts\",\"seo-tools\",\"sharedaddy\",\"shortcodes\",\"shortlinks\",\"sitemaps\",\"sso\",\"stats\",\"subscriptions\",\"tiled-gallery\",\"verification-tools\",\"videopress\",\"waf\",\"widget-visibility\",\"widgets\",\"woocommerce-analytics\"]},\"rest_nonce\":\"e2371fee3b\",\"rest_root\":\"http:\/\/localhost:8881\/wp-json\/\",\"suffix\":\"localhost:8881\",\"title\":\"My WordPress Website\",\"wp_version\":\"6.8.2\",\"wpcom\":{\"blog_id\":null}},\"user\":{\"current_user\":{\"display_name\":\"admin\",\"id\":1,\"capabilities\":{\"manage_options\":true,\"manage_modules\":true},\"wpcom\":[]}},\"connection\":{\"apiRoot\":\"http:\/\/localhost:8881\/wp-json\/\",\"apiNonce\":\"e2371fee3b\",\"registrationNonce\":\"92a47bed03\",\"connectionStatus\":{\"isActive\":false,\"isStaging\":false,\"isRegistered\":false,\"isUserConnected\":false,\"hasConnectedOwner\":false,\"offlineMode\":{\"isActive\":true,\"constant\":false,\"url\":true,\"filter\":false,\"wpLocalConstant\":false,\"option\":false},\"isPublic\":true},\"userConnectionData\":{\"currentUser\":{\"isConnected\":false,\"isMaster\":false,\"username\":\"admin\",\"id\":1,\"blogId\":false,\"wpcomUser\":{\"avatar\":false},\"gravatar\":\"https:\/\/secure.gravatar.com\/avatar\/8c9689fb60bd7c4c56112540c064fea2dea8e61c4e527dd53f7adfea094b490b?s=96\\u0026d=mm\\u0026r=g\",\"permissions\":{\"connect\":false,\"connect_user\":false,\"unlink_user\":false,\"disconnect\":true,\"manage_options\":true,\"admin_page\":true,\"manage_modules\":true,\"network_admin\":false,\"network_sites_page\":false,\"edit_posts\":true,\"publish_posts\":true,\"view_stats\":true,\"manage_plugins\":true},\"possibleAccountErrors\":[]},\"connectionOwner\":null,\"isRegistered\":false},\"connectedPlugins\":[{\"name\":\"Jetpack\",\"slug\":\"jetpack\"}],\"wpVersion\":\"6.8.2\",\"siteSuffix\":\"localhost:8881\",\"connectionErrors\":[],\"isOfflineMode\":true,\"calypsoEnv\":\"\"},\"social\":[]};\n<\/script>\n<script src=\"http:\/\/localhost:8881\/wp-content\/plugins\/jetpack\/jetpack_vendor\/automattic\/jetpack-assets\/build\/jetpack-script-data.js?minify=false&ver=26e1d55213256aaec2aa\" id=\"jetpack-script-data-js\"><\/script>\n" + "name": "Extra Extra Large", + "size": "2.15rem", + "slug": "xx-large" + } + ], + "disableCustomSpacingSizes": false, + "spacingSizes": [ + { + "name": "Tiny", + "size": "10px", + "slug": "20" }, - "__unstableIsBlockBasedTheme": true, - "localAutosaveInterval": 15, - "__experimentalDiscussionSettings": { - "commentOrder": "asc", - "commentsPerPage": "50", - "defaultCommentsPage": "newest", - "pageComments": "0", - "threadComments": "1", - "threadCommentsDepth": "5", - "defaultCommentStatus": "open", - "avatarURL": "https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&f=y&r=g" + { + "name": "X-Small", + "size": "20px", + "slug": "30" }, - "canUpdateBlockBindings": true, - "__experimentalStyles": { - "blocks": { - "core\/button": { - "variations": { - "outline": { - "border": { - "width": "1px", - "style": "solid", - "color": "currentColor" - }, - "color": { - "text": "currentColor", - "gradient": "transparent none" - }, - "spacing": { - "padding": { - "top": "calc(1rem - 1px)", - "right": "calc(2.25rem - 1px)", - "bottom": "calc(1rem - 1px)", - "left": "calc(2.25rem - 1px)" - } - }, - "css": ".wp-block-button__link:not(.has-background):hover {background-color:color-mix(in srgb, var(--wp--preset--color--contrast) 5%, transparent);}" - } - } - }, - "core\/site-logo": { - "variations": { - "rounded": { - "border": { - "radius": "9999px" + { + "name": "Small", + "size": "30px", + "slug": "40" + }, + { + "name": "Regular", + "size": "clamp(30px, 5vw, 50px)", + "slug": "50" + }, + { + "name": "Large", + "size": "clamp(30px, 7vw, 70px)", + "slug": "60" + }, + { + "name": "X-Large", + "size": "clamp(50px, 7vw, 90px)", + "slug": "70" + }, + { + "name": "XX-Large", + "size": "clamp(70px, 10vw, 140px)", + "slug": "80" + } + ], + "__unstableResolvedAssets": { + "styles": "<link rel='stylesheet' id='dashicons-css' href='http://localhost:8881/wp-includes/css/dashicons.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-components-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/components/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-library-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/common.css?ver=21.6.0' media='all' />\n<style id='wp-block-library-inline-css'>\n\n\t\t\t\tul.is-style-checkmark-list {\n\t\t\t\t\tlist-style-type: \"\\2713\";\n\t\t\t\t}\n\n\t\t\t\tul.is-style-checkmark-list li {\n\t\t\t\t\tpadding-inline-start: 1ch;\n\t\t\t\t}\n</style>\n<link rel='stylesheet' id='wp-block-editor-content-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-editor/content.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-edit-blocks-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/editor.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-audio-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/audio/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-buttons-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/buttons/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-code-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/code/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-columns-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/columns/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-details-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/details/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-form-submit-button-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/form-submit-button/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-group-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/group/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-paragraph-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/paragraph/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-preformatted-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/preformatted/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-pullquote-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/pullquote/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-quote-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/quote/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-separator-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/separator/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-social-links-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/social-links/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-spacer-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/spacer/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-table-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/table/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-table-of-contents-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/table-of-contents/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-text-columns-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/text-columns/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-verse-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/verse/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-embed-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/embed/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-accordion-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/accordion/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-archives-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/archives/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-avatar-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/avatar/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-button-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/button/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-calendar-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/calendar/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-categories-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/categories/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-cover-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/cover/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-author-name-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-author-name/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-content-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-content/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-date-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-date/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-edit-link-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-edit-link/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-reply-link-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-reply-link/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comment-template-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comment-template/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comments-pagination-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comments-pagination/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-comments-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/comments/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-footnotes-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/footnotes/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-file-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/file/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-image-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/image/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-gallery-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/gallery/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-heading-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/heading/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-latest-comments-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/latest-comments/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-latest-posts-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/latest-posts/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-list-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/list/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-loginout-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/loginout/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-media-text-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/media-text/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-navigation-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/navigation/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-navigation-link-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/navigation-link/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-page-list-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/page-list/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-author-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-author/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-author-name-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-author-name/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-author-biography-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-author-biography/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-comments-count-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-comments-count/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-comments-form-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-comments-form/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-comments-link-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-comments-link/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-content-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-content/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-date-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-date/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-excerpt-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-excerpt/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-featured-image-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-featured-image/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-navigation-link-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-navigation-link/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-terms-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-terms/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-time-to-read-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-time-to-read/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-title-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-title/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-post-template-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/post-template/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-query-pagination-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/query-pagination/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-query-title-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/query-title/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-query-total-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/query-total/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-read-more-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/read-more/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-rss-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/rss/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-search-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/search/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-site-logo-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/site-logo/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-site-tagline-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/site-tagline/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-site-title-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/site-title/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-tag-cloud-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/tag-cloud/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-term-description-css' href='http://localhost:8881/wp-content/plugins/gutenberg/build/block-library/blocks/term-description/style.css?ver=21.6.0' media='all' />\n<link rel='stylesheet' id='wp-block-audio-editor-css' href='http://localhost:8881/wp-includes/blocks/audio/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-buttons-editor-css' href='http://localhost:8881/wp-includes/blocks/buttons/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-freeform-editor-css' href='http://localhost:8881/wp-includes/blocks/freeform/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-code-editor-css' href='http://localhost:8881/wp-includes/blocks/code/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-columns-editor-css' href='http://localhost:8881/wp-includes/blocks/columns/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-details-editor-css' href='http://localhost:8881/wp-includes/blocks/details/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-group-editor-css' href='http://localhost:8881/wp-includes/blocks/group/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-html-editor-css' href='http://localhost:8881/wp-includes/blocks/html/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-more-editor-css' href='http://localhost:8881/wp-includes/blocks/more/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-nextpage-editor-css' href='http://localhost:8881/wp-includes/blocks/nextpage/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-paragraph-editor-css' href='http://localhost:8881/wp-includes/blocks/paragraph/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-pullquote-editor-css' href='http://localhost:8881/wp-includes/blocks/pullquote/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-separator-editor-css' href='http://localhost:8881/wp-includes/blocks/separator/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-social-links-editor-css' href='http://localhost:8881/wp-includes/blocks/social-links/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-spacer-editor-css' href='http://localhost:8881/wp-includes/blocks/spacer/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-table-editor-css' href='http://localhost:8881/wp-includes/blocks/table/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-text-columns-editor-css' href='http://localhost:8881/wp-includes/blocks/text-columns/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-embed-editor-css' href='http://localhost:8881/wp-includes/blocks/embed/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-archives-editor-css' href='http://localhost:8881/wp-includes/blocks/archives/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-avatar-editor-css' href='http://localhost:8881/wp-includes/blocks/avatar/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-button-editor-css' href='http://localhost:8881/wp-includes/blocks/button/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-categories-editor-css' href='http://localhost:8881/wp-includes/blocks/categories/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-cover-editor-css' href='http://localhost:8881/wp-includes/blocks/cover/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-comments-pagination-editor-css' href='http://localhost:8881/wp-includes/blocks/comments-pagination/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-comments-pagination-numbers-editor-css' href='http://localhost:8881/wp-includes/blocks/comments-pagination-numbers/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-comments-title-editor-css' href='http://localhost:8881/wp-includes/blocks/comments-title/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-comments-editor-css' href='http://localhost:8881/wp-includes/blocks/comments/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-file-editor-css' href='http://localhost:8881/wp-includes/blocks/file/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-image-editor-css' href='http://localhost:8881/wp-includes/blocks/image/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-gallery-editor-css' href='http://localhost:8881/wp-includes/blocks/gallery/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-latest-posts-editor-css' href='http://localhost:8881/wp-includes/blocks/latest-posts/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-media-text-editor-css' href='http://localhost:8881/wp-includes/blocks/media-text/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-navigation-editor-css' href='http://localhost:8881/wp-includes/blocks/navigation/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-navigation-link-editor-css' href='http://localhost:8881/wp-includes/blocks/navigation-link/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-navigation-submenu-editor-css' href='http://localhost:8881/wp-includes/blocks/navigation-submenu/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-page-list-editor-css' href='http://localhost:8881/wp-includes/blocks/page-list/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-post-author-editor-css' href='http://localhost:8881/wp-includes/blocks/post-author/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-post-comments-form-editor-css' href='http://localhost:8881/wp-includes/blocks/post-comments-form/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-post-excerpt-editor-css' href='http://localhost:8881/wp-includes/blocks/post-excerpt/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-post-featured-image-editor-css' href='http://localhost:8881/wp-includes/blocks/post-featured-image/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-query-editor-css' href='http://localhost:8881/wp-includes/blocks/query/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-query-pagination-editor-css' href='http://localhost:8881/wp-includes/blocks/query-pagination/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-query-pagination-numbers-editor-css' href='http://localhost:8881/wp-includes/blocks/query-pagination-numbers/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-rss-editor-css' href='http://localhost:8881/wp-includes/blocks/rss/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-search-editor-css' href='http://localhost:8881/wp-includes/blocks/search/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-shortcode-editor-css' href='http://localhost:8881/wp-includes/blocks/shortcode/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-social-link-editor-css' href='http://localhost:8881/wp-includes/blocks/social-link/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-site-logo-editor-css' href='http://localhost:8881/wp-includes/blocks/site-logo/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-site-tagline-editor-css' href='http://localhost:8881/wp-includes/blocks/site-tagline/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-site-title-editor-css' href='http://localhost:8881/wp-includes/blocks/site-title/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-tag-cloud-editor-css' href='http://localhost:8881/wp-includes/blocks/tag-cloud/editor.min.css?ver=6.8.2' media='all' />\n<link rel='stylesheet' id='wp-block-template-part-editor-css' href='http://localhost:8881/wp-includes/blocks/template-part/editor.min.css?ver=6.8.2' media='all' />\n<style class='wp-fonts-local'>\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/manrope/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2') format('woff2');}\n</style>\n<style class='wp-fonts-local'>\n@font-face{font-family:Beiruti;font-style:normal;font-weight:200 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:italic;font-weight:400 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:normal;font-weight:400 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Roboto Slab\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/manrope/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:100;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Thin.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:100;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ThinItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Light.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-LightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Italic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Regular.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Medium.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-SemiBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Bold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Black.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Beiruti;font-style:normal;font-weight:200 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/beiruti/Beiruti-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:italic;font-weight:400 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/vollkorn/Vollkorn-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Vollkorn;font-style:normal;font-weight:400 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/vollkorn/Vollkorn-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Fira Code\";font-style:normal;font-weight:300 700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-code/FiraCode-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Roboto Slab\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/roboto-slab/RobotoSlab-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Manrope;font-style:normal;font-weight:200 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/manrope/Manrope-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:normal;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:\"Ysabeau Office\";font-style:italic;font-weight:100 900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/ysabeau-office/YsabeauOffice-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:normal;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Platypi;font-style:italic;font-weight:300 800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/platypi/Platypi-Italic-VariableFont_wght.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Light.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-LightItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Regular.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Medium.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Bold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-Black.woff2') format('woff2');}\n@font-face{font-family:Literata;font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/literata/Literata72pt-BlackItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:100;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Thin.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:100;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ThinItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraLight.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:200;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraLightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Light.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:300;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-LightItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Italic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:400;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Regular.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Medium.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:500;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-MediumItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-SemiBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:600;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-SemiBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Bold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:700;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-BoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraBold.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:800;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:normal;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-Black.woff2') format('woff2');}\n@font-face{font-family:\"Fira Sans\";font-style:italic;font-weight:900;font-display:fallback;src:url('http://localhost:8881/wp-content/themes/twentytwentyfive/assets/fonts/fira-sans/FiraSans-BlackItalic.woff2') format('woff2');}\n</style>\n", + "scripts": "<script src=\"http://localhost:8881/wp-content/plugins/gutenberg/build/hooks/index.min.js?ver=84e753e2b66eb7028d38\" id=\"wp-hooks-js\"></script>\n<script src=\"http://localhost:8881/wp-content/plugins/gutenberg/build/i18n/index.min.js?ver=671c1c41fbf6f13df25a\" id=\"wp-i18n-js\"></script>\n<script id=\"wp-i18n-js-after\">\nwp.i18n.setLocaleData( { 'text direction\\u0004ltr': [ 'ltr' ] } );\n</script>\n<script src=\"http://localhost:8881/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0\" id=\"wp-polyfill-js\"></script>\n<script id=\"jetpack-script-data-js-before\">\nwindow.JetpackScriptData = {\"site\":{\"admin_url\":\"http://localhost:8881/wp-admin/\",\"date_format\":\"F j, Y\",\"icon\":\"\",\"is_multisite\":false,\"host\":\"unknown\",\"is_wpcom_platform\":false,\"plan\":{\"product_slug\":\"jetpack_free\",\"class\":\"free\",\"features\":{\"active\":[]},\"supports\":[\"advanced-seo\",\"opentable\",\"calendly\",\"send-a-message\",\"sharing-block\",\"whatsapp-button\",\"social-previews\",\"videopress\",\"videopress/video\",\"v6-video-frame-poster\",\"core/video\",\"core/cover\",\"core/audio\",\"multistep-form\",\"account-protection\",\"blaze\",\"blocks\",\"carousel\",\"comment-likes\",\"comments\",\"contact-form\",\"copy-post\",\"custom-content-types\",\"google-fonts\",\"gravatar-hovercards\",\"infinite-scroll\",\"json-api\",\"latex\",\"likes\",\"markdown\",\"monitor\",\"notes\",\"photon-cdn\",\"photon\",\"post-by-email\",\"post-list\",\"protect\",\"publicize\",\"related-posts\",\"seo-tools\",\"sharedaddy\",\"shortcodes\",\"shortlinks\",\"sitemaps\",\"sso\",\"stats\",\"subscriptions\",\"tiled-gallery\",\"verification-tools\",\"videopress\",\"waf\",\"widget-visibility\",\"widgets\",\"woocommerce-analytics\"]},\"rest_nonce\":\"e2371fee3b\",\"rest_root\":\"http://localhost:8881/wp-json/\",\"suffix\":\"localhost:8881\",\"title\":\"My WordPress Website\",\"wp_version\":\"6.8.2\",\"wpcom\":{\"blog_id\":null}},\"user\":{\"current_user\":{\"display_name\":\"admin\",\"id\":1,\"capabilities\":{\"manage_options\":true,\"manage_modules\":true},\"wpcom\":[]}},\"connection\":{\"apiRoot\":\"http://localhost:8881/wp-json/\",\"apiNonce\":\"e2371fee3b\",\"registrationNonce\":\"92a47bed03\",\"connectionStatus\":{\"isActive\":false,\"isStaging\":false,\"isRegistered\":false,\"isUserConnected\":false,\"hasConnectedOwner\":false,\"offlineMode\":{\"isActive\":true,\"constant\":false,\"url\":true,\"filter\":false,\"wpLocalConstant\":false,\"option\":false},\"isPublic\":true},\"userConnectionData\":{\"currentUser\":{\"isConnected\":false,\"isMaster\":false,\"username\":\"admin\",\"id\":1,\"blogId\":false,\"wpcomUser\":{\"avatar\":false},\"gravatar\":\"https://secure.gravatar.com/avatar/8c9689fb60bd7c4c56112540c064fea2dea8e61c4e527dd53f7adfea094b490b?s=96\\u0026d=mm\\u0026r=g\",\"permissions\":{\"connect\":false,\"connect_user\":false,\"unlink_user\":false,\"disconnect\":true,\"manage_options\":true,\"admin_page\":true,\"manage_modules\":true,\"network_admin\":false,\"network_sites_page\":false,\"edit_posts\":true,\"publish_posts\":true,\"view_stats\":true,\"manage_plugins\":true},\"possibleAccountErrors\":[]},\"connectionOwner\":null,\"isRegistered\":false},\"connectedPlugins\":[{\"name\":\"Jetpack\",\"slug\":\"jetpack\"}],\"wpVersion\":\"6.8.2\",\"siteSuffix\":\"localhost:8881\",\"connectionErrors\":[],\"isOfflineMode\":true,\"calypsoEnv\":\"\"},\"social\":[]};\n</script>\n<script src=\"http://localhost:8881/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-assets/build/jetpack-script-data.js?minify=false&ver=26e1d55213256aaec2aa\" id=\"jetpack-script-data-js\"></script>\n" + }, + "__unstableIsBlockBasedTheme": true, + "localAutosaveInterval": 15, + "__experimentalDiscussionSettings": { + "commentOrder": "asc", + "commentsPerPage": "50", + "defaultCommentsPage": "newest", + "pageComments": "0", + "threadComments": "1", + "threadCommentsDepth": "5", + "defaultCommentStatus": "open", + "avatarURL": "https://secure.gravatar.com/avatar/?s=96&d=mm&f=y&r=g" + }, + "canUpdateBlockBindings": true, + "__experimentalStyles": { + "blocks": { + "core/button": { + "variations": { + "outline": { + "border": { + "width": "1px", + "style": "solid", + "color": "currentColor" + }, + "color": { + "text": "currentColor", + "gradient": "transparent none" + }, + "spacing": { + "padding": { + "top": "calc(1rem - 1px)", + "right": "calc(2.25rem - 1px)", + "bottom": "calc(1rem - 1px)", + "left": "calc(2.25rem - 1px)" } + }, + "css": ".wp-block-button__link:not(.has-background):hover {background-color:color-mix(in srgb, var(--wp--preset--color--contrast) 5%, transparent);}" + } + } + }, + "core/site-logo": { + "variations": { + "rounded": { + "border": { + "radius": "9999px" } } + } + }, + "core/columns": { + "spacing": { + "blockGap": "var(--wp--preset--spacing--50)" }, - "core\/columns": { - "spacing": { - "blockGap": "var(--wp--preset--spacing--50)" - }, - "variations": { - "section-1": { - "color": { - "background": "var(--wp--preset--color--accent-5)", - "text": "var(--wp--preset--color--contrast)" - }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "variations": { + "section-1": { + "color": { + "background": "var(--wp--preset--color--accent-5)", + "text": "var(--wp--preset--color--contrast)" + }, + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } + }, + "core/site-title": { + "color": { + "text": "currentColor" }, - "core\/site-title": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-2": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--contrast)" }, - "section-2": { - "color": { - "background": "var(--wp--preset--color--accent-2)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-3": { + "color": { + "background": "var(--wp--preset--color--accent-1)", + "text": "var(--wp--preset--color--contrast)" }, - "section-3": { - "color": { - "background": "var(--wp--preset--color--accent-1)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-4": { + "color": { + "background": "var(--wp--preset--color--accent-3)", + "text": "var(--wp--preset--color--accent-2)" }, - "section-4": { - "color": { - "background": "var(--wp--preset--color--accent-3)", - "text": "var(--wp--preset--color--accent-2)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--accent-3)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--accent-2)", + "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", "text": "var(--wp--preset--color--accent-3)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", - "text": "var(--wp--preset--color--accent-3)" - } } } } + } + }, + "section-5": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" }, - "section-5": { - "color": { - "background": "var(--wp--preset--color--contrast)", - "text": "var(--wp--preset--color--base)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--base)", - "text": "var(--wp--preset--color--contrast)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", - "text": "var(--wp--preset--color--contrast)" - } + "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", + "text": "var(--wp--preset--color--contrast)" } } } } } + } + }, + "core/pullquote": { + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)", + "lineHeight": "1.2", + "fontWeight": "300" }, - "core\/pullquote": { - "typography": { - "fontSize": "var(--wp--preset--font-size--xx-large)", - "lineHeight": "1.2", - "fontWeight": "300" - }, - "elements": { - "cite": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "fontStyle": "normal" - } - } - }, - "spacing": { - "padding": { - "bottom": "var(--wp--preset--spacing--30)", - "top": "var(--wp--preset--spacing--30)" + "elements": { + "cite": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal" } - }, - "css": "& p:last-of-type {margin-bottom: var(--wp--preset--spacing--30);}" - }, - "core\/post-template": { - "spacing": { - "blockGap": null } }, - "core\/avatar": { - "border": { - "radius": "100px" + "spacing": { + "padding": { + "bottom": "var(--wp--preset--spacing--30)", + "top": "var(--wp--preset--spacing--30)" } }, - "core\/buttons": { - "spacing": { - "blockGap": "16px" - } + "css": "& p:last-of-type {margin-bottom: var(--wp--preset--spacing--30);}" + }, + "core/post-template": { + "spacing": { + "blockGap": null + } + }, + "core/avatar": { + "border": { + "radius": "100px" + } + }, + "core/buttons": { + "spacing": { + "blockGap": "16px" + } + }, + "core/code": { + "typography": { + "fontFamily": "var(--wp--preset--font-family--fira-code)", + "fontSize": "var(--wp--preset--font-size--medium)", + "fontWeight": "300" }, - "core\/code": { - "typography": { - "fontFamily": "var(--wp--preset--font-family--fira-code)", - "fontSize": "var(--wp--preset--font-size--medium)", - "fontWeight": "300" - }, - "color": { - "background": "var(--wp--preset--color--accent-5)", - "text": "var(--wp--preset--color--contrast)" - }, - "spacing": { - "padding": { - "right": "var(--wp--preset--spacing--40)", - "bottom": "var(--wp--preset--spacing--40)", - "left": "var(--wp--preset--spacing--40)", - "top": "var(--wp--preset--spacing--40)" - } + "color": { + "background": "var(--wp--preset--color--accent-5)", + "text": "var(--wp--preset--color--contrast)" + }, + "spacing": { + "padding": { + "right": "var(--wp--preset--spacing--40)", + "bottom": "var(--wp--preset--spacing--40)", + "left": "var(--wp--preset--spacing--40)", + "top": "var(--wp--preset--spacing--40)" } + } + }, + "core/comment-author-name": { + "color": { + "text": "var(--wp--preset--color--accent-4)" }, - "core\/comment-author-name": { - "color": { - "text": "var(--wp--preset--color--accent-4)" - }, - "elements": { - "link": { - "color": { - "text": "var(--wp--preset--color--accent-4)" - }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--accent-4)" + }, + "typography": { + "textDecoration": "none" + }, + ":hover": { "typography": { - "textDecoration": "none" - }, - ":hover": { - "typography": { - "textDecoration": "underline" - } + "textDecoration": "underline" } } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--small)" - }, - "spacing": { - "margin": { - "top": "5px", - "bottom": "0px" - } } }, - "core\/comment-content": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - }, - "spacing": { - "margin": { - "top": "var(--wp--preset--spacing--30)", - "bottom": "var(--wp--preset--spacing--30)" - } - } + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" }, - "core\/comment-date": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)" - }, - "color": { - "text": "var(--wp--preset--color--contrast)" - }, - "elements": { - "link": { - "color": { - "text": "var(--wp--preset--color--contrast)" - } - } + "spacing": { + "margin": { + "top": "5px", + "bottom": "0px" } + } + }, + "core/comment-content": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" }, - "core\/comment-edit-link": { - "elements": { - "link": { - "color": { - "text": "var(--wp--preset--color--contrast)" - } - } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--small)" + "spacing": { + "margin": { + "top": "var(--wp--preset--spacing--30)", + "bottom": "var(--wp--preset--spacing--30)" } + } + }, + "core/comment-date": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" }, - "core\/comment-reply-link": { - "elements": { - "link": { - "color": { - "text": "var(--wp--preset--color--contrast)" - } + "color": { + "text": "var(--wp--preset--color--contrast)" + }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--small)" } - }, - "core\/post-comments-form": { - "css": "& textarea, input:not([type=submit]){border-radius:.25rem; border-color: var(--wp--preset--color--accent-6) !important;} & input[type=checkbox]{margin:0 .2rem 0 0 !important;} & label {font-size: var(--wp--preset--font-size--small); }", - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - }, - "spacing": { - "padding": { - "top": "var(--wp--preset--spacing--40)", - "bottom": "var(--wp--preset--spacing--40)" + } + }, + "core/comment-edit-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" } } }, - "core\/comments-pagination": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - }, - "spacing": { - "margin": { - "top": "var(--wp--preset--spacing--40)", - "bottom": "var(--wp--preset--spacing--40)" + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/comment-reply-link": { + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--contrast)" } } }, - "core\/comments-pagination-next": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - } + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-comments-form": { + "css": "& textarea, input:not([type=submit]){border-radius:.25rem; border-color: var(--wp--preset--color--accent-6) !important;} & input[type=checkbox]{margin:0 .2rem 0 0 !important;} & label {font-size: var(--wp--preset--font-size--small); }", + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" }, - "core\/comments-pagination-numbers": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" + "spacing": { + "padding": { + "top": "var(--wp--preset--spacing--40)", + "bottom": "var(--wp--preset--spacing--40)" } + } + }, + "core/comments-pagination": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" }, - "core\/comments-pagination-previous": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" + "spacing": { + "margin": { + "top": "var(--wp--preset--spacing--40)", + "bottom": "var(--wp--preset--spacing--40)" } + } + }, + "core/comments-pagination-next": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/comments-pagination-numbers": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/comments-pagination-previous": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/post-date": { + "color": { + "text": "var(--wp--preset--color--accent-4)" }, - "core\/post-date": { - "color": { - "text": "var(--wp--preset--color--accent-4)" - }, - "elements": { - "link": { - "color": { - "text": "var(--wp--preset--color--accent-4)" - }, - ":hover": { - "typography": { - "textDecoration": "underline" - } - }, + "elements": { + "link": { + "color": { + "text": "var(--wp--preset--color--accent-4)" + }, + ":hover": { "typography": { - "textDecoration": "none" + "textDecoration": "underline" } + }, + "typography": { + "textDecoration": "none" } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--small)" } }, - "core\/post-navigation-link": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - } + "typography": { + "fontSize": "var(--wp--preset--font-size--small)" + } + }, + "core/post-navigation-link": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/post-terms": { + "css": "& a { white-space: nowrap; }", + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "600" }, - "core\/post-terms": { - "css": "& a { white-space: nowrap; }", - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "fontWeight": "600" - }, - "variations": { - "post-terms-1": { - "elements": { - "link": { - "border": { - "color": "var(--wp--preset--color--accent-6)", - "radius": "20px", - "width": "0.8px", - "style": "solid" - }, - "spacing": { - "padding": { - "top": "5px", - "right": "10px", - "bottom": "5px", - "left": "10px" - } - }, + "variations": { + "post-terms-1": { + "elements": { + "link": { + "border": { + "color": "var(--wp--preset--color--accent-6)", + "radius": "20px", + "width": "0.8px", + "style": "solid" + }, + "spacing": { + "padding": { + "top": "5px", + "right": "10px", + "bottom": "5px", + "left": "10px" + } + }, + "typography": { + "fontWeight": "400", + "lineHeight": "2.8", + "textDecoration": "none" + }, + ":hover": { "typography": { - "fontWeight": "400", - "lineHeight": "2.8", - "textDecoration": "none" - }, - ":hover": { - "typography": { - "textDecoration": "underline" - } + "textDecoration": "underline" } } } } } - }, - "core\/post-title": { - "elements": { - "link": { - ":hover": { - "typography": { - "textDecoration": "underline" - } - }, + } + }, + "core/post-title": { + "elements": { + "link": { + ":hover": { "typography": { - "textDecoration": "none" + "textDecoration": "underline" } + }, + "typography": { + "textDecoration": "none" } } + } + }, + "core/quote": { + "border": { + "style": "solid", + "width": "0 0 0 2px", + "color": "currentColor" }, - "core\/quote": { - "border": { - "style": "solid", - "width": "0 0 0 2px", - "color": "currentColor" - }, - "spacing": { - "blockGap": "var(--wp--preset--spacing--30)", - "margin": { - "left": "0", - "right": "0" - }, - "padding": { - "top": "var(--wp--preset--spacing--30)", - "right": "var(--wp--preset--spacing--40)", - "bottom": "var(--wp--preset--spacing--30)", - "left": "var(--wp--preset--spacing--40)" - } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--large)", - "fontWeight": "300" + "spacing": { + "blockGap": "var(--wp--preset--spacing--30)", + "margin": { + "left": "0", + "right": "0" }, - "elements": { - "cite": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "fontStyle": "normal", - "fontWeight": "300" - }, - "css": "& sub { font-size: 0.65em }" - } - }, - "css": "&.has-text-align-right { border-width: 0 2px 0 0; } &.has-text-align-center { border-width: 0;border-inline: 0; padding-inline: 0; }", - "variations": { - "plain": { - "border": { - "color": "transparent", - "style": "none", - "width": "0", - "radius": "0" - }, - "spacing": { - "padding": { - "top": "0", - "right": "0", - "bottom": "0", - "left": "0" - } - } - } + "padding": { + "top": "var(--wp--preset--spacing--30)", + "right": "var(--wp--preset--spacing--40)", + "bottom": "var(--wp--preset--spacing--30)", + "left": "var(--wp--preset--spacing--40)" } }, - "core\/query-pagination": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)", - "fontWeight": "500" + "typography": { + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "300" + }, + "elements": { + "cite": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontStyle": "normal", + "fontWeight": "300" + }, + "css": "& sub { font-size: 0.65em }" } }, - "core\/search": { - "css": "& .wp-block-search__input{border-radius:3.125rem;padding-left:1.5625rem;padding-right:1.5625rem;border-color:var(--wp--preset--color--accent-6);}", - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)", - "lineHeight": "1.6" - }, - "elements": { - "button": { - "border": { - "radius": "3.125rem" - }, - "spacing": { - "margin": { - "left": "1.125rem" - } - }, - ":hover": { - "border": { - "color": "transparent" - } + "css": "&.has-text-align-right { border-width: 0 2px 0 0; } &.has-text-align-center { border-width: 0;border-inline: 0; padding-inline: 0; }", + "variations": { + "plain": { + "border": { + "color": "transparent", + "style": "none", + "width": "0", + "radius": "0" + }, + "spacing": { + "padding": { + "top": "0", + "right": "0", + "bottom": "0", + "left": "0" } } } + } + }, + "core/query-pagination": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontWeight": "500" + } + }, + "core/search": { + "css": "& .wp-block-search__input{border-radius:3.125rem;padding-left:1.5625rem;padding-right:1.5625rem;border-color:var(--wp--preset--color--accent-6);}", + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "lineHeight": "1.6" }, - "core\/separator": { - "border": { - "color": "currentColor", - "style": "solid", - "width": "0 0 1px 0" - }, - "color": { - "text": "var(--wp--preset--color--accent-6)" - }, - "variations": { - "wide": { - "css": " &:not(.alignfull){max-width: var(--wp--style--global--wide-size) !important;}" + "elements": { + "button": { + "border": { + "radius": "3.125rem" + }, + "spacing": { + "margin": { + "left": "1.125rem" + } + }, + ":hover": { + "border": { + "color": "transparent" + } } } + } + }, + "core/separator": { + "border": { + "color": "currentColor", + "style": "solid", + "width": "0 0 1px 0" }, - "core\/site-tagline": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" + "color": { + "text": "var(--wp--preset--color--accent-6)" + }, + "variations": { + "wide": { + "css": " &:not(.alignfull){max-width: var(--wp--style--global--wide-size) !important;}" } + } + }, + "core/site-tagline": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/site-title": { + "typography": { + "fontWeight": "700", + "letterSpacing": "-.5px" }, - "core\/site-title": { - "typography": { - "fontWeight": "700", - "letterSpacing": "-.5px" - }, - "elements": { - "link": { + "elements": { + "link": { + "typography": { + "textDecoration": "none" + }, + ":hover": { "typography": { - "textDecoration": "none" - }, - ":hover": { - "typography": { - "textDecoration": "underline" - } + "textDecoration": "underline" } } } + } + }, + "core/term-description": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "core/navigation": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" }, - "core\/term-description": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - } - }, - "core\/navigation": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" - }, - "elements": { - "link": { - ":hover": { - "typography": { - "textDecoration": "underline" - } - }, + "elements": { + "link": { + ":hover": { "typography": { - "textDecoration": "none" + "textDecoration": "underline" } + }, + "typography": { + "textDecoration": "none" } } - }, - "core\/list": { - "css": "& li{margin-top: 0.5rem;}" - }, - "core\/heading": { - "variations": { - "text-display": { - "typography": { - "fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)", - "lineHeight": "1.2" - } + } + }, + "core/list": { + "css": "& li{margin-top: 0.5rem;}" + }, + "core/heading": { + "variations": { + "text-display": { + "typography": { + "fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)", + "lineHeight": "1.2" + } + }, + "text-subtitle": { + "typography": { + "fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)", + "lineHeight": "1.2" + } + }, + "text-annotation": { + "css": "width: fit-content", + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "lineHeight": "1.5", + "letterSpacing": "normal" }, - "text-subtitle": { - "typography": { - "fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)", - "lineHeight": "1.2" + "border": { + "color": "currentColor", + "style": "solid", + "width": "1px", + "radius": "16px" + }, + "spacing": { + "padding": { + "top": "0.2rem", + "right": "0.6rem", + "bottom": "0.25rem", + "left": "0.6rem" } }, - "text-annotation": { - "css": "width: fit-content", - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "lineHeight": "1.5", - "letterSpacing": "normal" - }, - "border": { - "color": "currentColor", - "style": "solid", - "width": "1px", - "radius": "16px" - }, - "spacing": { - "padding": { - "top": "0.2rem", - "right": "0.6rem", - "bottom": "0.25rem", - "left": "0.6rem" - } - }, - "elements": { - "link": { - "typography": { - "textDecoration": "none" - } + "elements": { + "link": { + "typography": { + "textDecoration": "none" } } } } - }, - "core\/paragraph": { - "variations": { - "text-display": { - "typography": { - "fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)", - "lineHeight": "1.2" - } + } + }, + "core/paragraph": { + "variations": { + "text-display": { + "typography": { + "fontSize": "clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 1.333), 3.5rem)", + "lineHeight": "1.2" + } + }, + "text-subtitle": { + "typography": { + "fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)", + "lineHeight": "1.2" + } + }, + "text-annotation": { + "css": "width: fit-content", + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "lineHeight": "1.5", + "letterSpacing": "normal" }, - "text-subtitle": { - "typography": { - "fontSize": "clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.392), 1.75rem)", - "lineHeight": "1.2" + "border": { + "color": "currentColor", + "style": "solid", + "width": "1px", + "radius": "16px" + }, + "spacing": { + "padding": { + "top": "0.2rem", + "right": "0.6rem", + "bottom": "0.25rem", + "left": "0.6rem" } }, - "text-annotation": { - "css": "width: fit-content", - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "lineHeight": "1.5", - "letterSpacing": "normal" - }, - "border": { - "color": "currentColor", - "style": "solid", - "width": "1px", - "radius": "16px" - }, - "spacing": { - "padding": { - "top": "0.2rem", - "right": "0.6rem", - "bottom": "0.25rem", - "left": "0.6rem" - } - }, - "elements": { - "link": { - "typography": { - "textDecoration": "none" - } + "elements": { + "link": { + "typography": { + "textDecoration": "none" } } } } - }, - "core\/group": { - "variations": { - "section-1": { - "color": { - "background": "var(--wp--preset--color--accent-5)", - "text": "var(--wp--preset--color--contrast)" - }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + } + }, + "core/group": { + "variations": { + "section-1": { + "color": { + "background": "var(--wp--preset--color--accent-5)", + "text": "var(--wp--preset--color--contrast)" + }, + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } + }, + "core/site-title": { + "color": { + "text": "currentColor" }, - "core\/site-title": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-2": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--contrast)" }, - "section-2": { - "color": { - "background": "var(--wp--preset--color--accent-2)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-3": { + "color": { + "background": "var(--wp--preset--color--accent-1)", + "text": "var(--wp--preset--color--contrast)" }, - "section-3": { - "color": { - "background": "var(--wp--preset--color--accent-1)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-4": { + "color": { + "background": "var(--wp--preset--color--accent-3)", + "text": "var(--wp--preset--color--accent-2)" }, - "section-4": { - "color": { - "background": "var(--wp--preset--color--accent-3)", - "text": "var(--wp--preset--color--accent-2)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--accent-3)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--accent-2)", + "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", "text": "var(--wp--preset--color--accent-3)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", - "text": "var(--wp--preset--color--accent-3)" - } } } } + } + }, + "section-5": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" }, - "section-5": { - "color": { - "background": "var(--wp--preset--color--contrast)", - "text": "var(--wp--preset--color--base)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--base)", + "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", "text": "var(--wp--preset--color--contrast)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", - "text": "var(--wp--preset--color--contrast)" - } } } } } } - }, - "core\/column": { - "variations": { - "section-1": { - "color": { - "background": "var(--wp--preset--color--accent-5)", - "text": "var(--wp--preset--color--contrast)" - }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } - }, - "core\/site-title": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } - } - } - }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } - } - } + } + }, + "core/column": { + "variations": { + "section-1": { + "color": { + "background": "var(--wp--preset--color--accent-5)", + "text": "var(--wp--preset--color--contrast)" + }, + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } + }, + "core/site-title": { + "color": { + "text": "currentColor" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/pullquote": { - "color": { - "text": "currentColor" + "elements": { + "link": { + "color": { + "text": "currentColor" + } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/quote": { - "color": { - "text": "currentColor" + "elements": { + "link": { + "color": { + "text": "currentColor" + } } } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } } + } + }, + "section-2": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--contrast)" }, - "section-2": { - "color": { - "background": "var(--wp--preset--color--accent-2)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-3": { + "color": { + "background": "var(--wp--preset--color--accent-1)", + "text": "var(--wp--preset--color--contrast)" }, - "section-3": { - "color": { - "background": "var(--wp--preset--color--accent-1)", - "text": "var(--wp--preset--color--contrast)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } + } + }, + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" } } + } + }, + "section-4": { + "color": { + "background": "var(--wp--preset--color--accent-3)", + "text": "var(--wp--preset--color--accent-2)" }, - "section-4": { - "color": { - "background": "var(--wp--preset--color--accent-3)", - "text": "var(--wp--preset--color--accent-2)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--accent-2)", + "text": "var(--wp--preset--color--accent-3)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--accent-2)", + "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", "text": "var(--wp--preset--color--accent-3)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--accent-2) 85%, transparent)", - "text": "var(--wp--preset--color--accent-3)" - } } } } + } + }, + "section-5": { + "color": { + "background": "var(--wp--preset--color--contrast)", + "text": "var(--wp--preset--color--base)" }, - "section-5": { - "color": { - "background": "var(--wp--preset--color--contrast)", - "text": "var(--wp--preset--color--base)" + "blocks": { + "core/separator": { + "color": { + "text": "color-mix(in srgb, currentColor 25%, transparent)" + } }, - "blocks": { - "core\/separator": { - "color": { - "text": "color-mix(in srgb, currentColor 25%, transparent)" - } + "core/post-author-name": { + "color": { + "text": "currentColor" }, - "core\/post-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/post-date": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" }, - "core\/post-date": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - }, - "elements": { - "link": { - "color": { - "text": "color-mix(in srgb, currentColor 85%, transparent)" - } + "elements": { + "link": { + "color": { + "text": "color-mix(in srgb, currentColor 85%, transparent)" } } + } + }, + "core/post-terms": { + "color": { + "text": "currentColor" }, - "core\/post-terms": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-author-name": { + "color": { + "text": "currentColor" }, - "core\/comment-author-name": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-date": { + "color": { + "text": "currentColor" }, - "core\/comment-date": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-edit-link": { + "color": { + "text": "currentColor" }, - "core\/comment-edit-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } + } + }, + "core/comment-reply-link": { + "color": { + "text": "currentColor" }, - "core\/comment-reply-link": { - "color": { - "text": "currentColor" - }, - "elements": { - "link": { - "color": { - "text": "currentColor" - } + "elements": { + "link": { + "color": { + "text": "currentColor" } } - }, - "core\/pullquote": { - "color": { - "text": "currentColor" - } - }, - "core\/quote": { - "color": { - "text": "currentColor" - } } }, - "elements": { - "button": { + "core/pullquote": { + "color": { + "text": "currentColor" + } + }, + "core/quote": { + "color": { + "text": "currentColor" + } + } + }, + "elements": { + "button": { + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + ":hover": { "color": { - "background": "var(--wp--preset--color--base)", + "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", "text": "var(--wp--preset--color--contrast)" - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--base) 80%, transparent)", - "text": "var(--wp--preset--color--contrast)" - } } } } } } } - }, - "elements": { - "button": { - "color": { - "text": "var(--wp--preset--color--base)", - "background": "var(--wp--preset--color--contrast)" - }, - "spacing": { - "padding": { - "top": "1rem", - "right": "2.25rem", - "bottom": "1rem", - "left": "2.25rem" - } - }, - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)", - "fontFamily": "inherit", - "fontStyle": "inherit", - "fontWeight": "inherit", - "letterSpacing": "inherit", - "textTransform": "inherit", - "lineHeight": "inherit", - "textDecoration": "none" - }, - "border": { - "width": "0" - }, - ":focus": { - "outline": { - "color": "var(--wp--preset--color--accent-4)", - "offset": "2px" - } - }, - ":hover": { - "color": { - "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)", - "text": "var(--wp--preset--color--base)" - }, - "border": { - "color": "transparent" - } - } - }, - "link": { - "typography": { - "textDecoration": "underline" - }, - "color": { - "text": "currentColor" - }, - ":hover": { - "typography": { - "textDecoration": "none" - } - } - }, - "caption": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "lineHeight": "1.4" - } + } + }, + "elements": { + "button": { + "color": { + "text": "var(--wp--preset--color--base)", + "background": "var(--wp--preset--color--contrast)" }, - "h1": { - "typography": { - "fontSize": "var(--wp--preset--font-size--xx-large)" + "spacing": { + "padding": { + "top": "1rem", + "right": "2.25rem", + "bottom": "1rem", + "left": "2.25rem" } }, - "h2": { - "typography": { - "fontSize": "var(--wp--preset--font-size--x-large)" - } + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)", + "fontFamily": "inherit", + "fontStyle": "inherit", + "fontWeight": "inherit", + "letterSpacing": "inherit", + "textTransform": "inherit", + "lineHeight": "inherit", + "textDecoration": "none" }, - "h3": { - "typography": { - "fontSize": "var(--wp--preset--font-size--large)" - } + "border": { + "width": "0" }, - "h4": { - "typography": { - "fontSize": "var(--wp--preset--font-size--medium)" + ":focus": { + "outline": { + "color": "var(--wp--preset--color--accent-4)", + "offset": "2px" } }, - "h5": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "letterSpacing": "0.5px" + ":hover": { + "color": { + "background": "color-mix(in srgb, var(--wp--preset--color--contrast) 85%, transparent)", + "text": "var(--wp--preset--color--base)" + }, + "border": { + "color": "transparent" } + } + }, + "link": { + "typography": { + "textDecoration": "underline" }, - "h6": { - "typography": { - "fontSize": "var(--wp--preset--font-size--small)", - "fontWeight": "700", - "letterSpacing": "1.4px", - "textTransform": "uppercase" - } + "color": { + "text": "currentColor" }, - "heading": { + ":hover": { "typography": { - "fontWeight": "400", - "lineHeight": "1.125", - "letterSpacing": "-0.1px" + "textDecoration": "none" } } }, - "spacing": { - "blockGap": "1.2rem", - "padding": { - "top": "0px", - "right": "var(--wp--preset--spacing--50)", - "bottom": "0px", - "left": "var(--wp--preset--spacing--50)" + "caption": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "lineHeight": "1.4" + } + }, + "h1": { + "typography": { + "fontSize": "var(--wp--preset--font-size--xx-large)" + } + }, + "h2": { + "typography": { + "fontSize": "var(--wp--preset--font-size--x-large)" + } + }, + "h3": { + "typography": { + "fontSize": "var(--wp--preset--font-size--large)" + } + }, + "h4": { + "typography": { + "fontSize": "var(--wp--preset--font-size--medium)" + } + }, + "h5": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "letterSpacing": "0.5px" } }, - "color": { - "background": "var(--wp--preset--color--base)", - "text": "var(--wp--preset--color--contrast)" + "h6": { + "typography": { + "fontSize": "var(--wp--preset--font-size--small)", + "fontWeight": "700", + "letterSpacing": "1.4px", + "textTransform": "uppercase" + } }, - "typography": { - "fontFamily": "var(--wp--preset--font-family--manrope)", - "fontSize": "var(--wp--preset--font-size--large)", - "fontWeight": "300", - "letterSpacing": "-0.1px", - "lineHeight": "1.4" + "heading": { + "typography": { + "fontWeight": "400", + "lineHeight": "1.125", + "letterSpacing": "-0.1px" + } + } + }, + "spacing": { + "blockGap": "1.2rem", + "padding": { + "top": "0px", + "right": "var(--wp--preset--spacing--50)", + "bottom": "0px", + "left": "var(--wp--preset--spacing--50)" } }, - "__experimentalEnableQuoteBlockV2": true, - "__experimentalEnableListBlockV2": true - } + "color": { + "background": "var(--wp--preset--color--base)", + "text": "var(--wp--preset--color--contrast)" + }, + "typography": { + "fontFamily": "var(--wp--preset--font-family--manrope)", + "fontSize": "var(--wp--preset--font-size--large)", + "fontWeight": "300", + "letterSpacing": "-0.1px", + "lineHeight": "1.4" + } + }, + "__experimentalEnableQuoteBlockV2": true, + "__experimentalEnableListBlockV2": true +} diff --git a/wp_api/tests/wpcom/me/v1.1-me-01.json b/wp_api/tests/wpcom/me/v1.1-me-01.json index d66865a38..c4b911915 100644 --- a/wp_api/tests/wpcom/me/v1.1-me-01.json +++ b/wp_api/tests/wpcom/me/v1.1-me-01.json @@ -1,51 +1,51 @@ { - "ID": 742098, - "display_name": "Test User", - "username": "testuser", - "email": "test.user@example.com", - "primary_blog": 654321, - "primary_blog_url": "http://testuser.example.com", - "primary_blog_is_jetpack": false, - "has_jetpack_partner_access": false, - "language": "en", - "locale_variant": "", - "token_site_id": false, - "token_scope": "global", - "token_client_id": -1, - "avatar_URL": "https://example.com/avatar.png", - "profile_URL": "http://gravatar.com/testuser", - "verified": true, - "email_verified": true, - "date": "2000-01-01T00:00:00+00:00", - "site_count": 10, - "jetpack_site_count": 1, - "atomic_site_count": 1, - "visible_site_count": 5, - "jetpack_visible_site_count": 1, - "atomic_visible_site_count": 1, - "has_unseen_notes": false, - "newest_note_type": "comment", - "phone_account": false, - "meta": { - "links": { - "self": "https://public-api.wordpress.com/rest/v1.1/me", - "help": "https://public-api.wordpress.com/rest/v1.1/me/help", - "site": "https://public-api.wordpress.com/rest/v1.1/sites/654321", - "flags": "https://public-api.wordpress.com/rest/v1.1/me/flags" - }, - "marketing_price_group": false, - "plans_reorder_abtest_variation": "control" + "ID": 742098, + "display_name": "Test User", + "username": "testuser", + "email": "test.user@example.com", + "primary_blog": 654321, + "primary_blog_url": "http://testuser.example.com", + "primary_blog_is_jetpack": false, + "has_jetpack_partner_access": false, + "language": "en", + "locale_variant": "", + "token_site_id": false, + "token_scope": "global", + "token_client_id": -1, + "avatar_URL": "https://example.com/avatar.png", + "profile_URL": "http://gravatar.com/testuser", + "verified": true, + "email_verified": true, + "date": "2000-01-01T00:00:00+00:00", + "site_count": 10, + "jetpack_site_count": 1, + "atomic_site_count": 1, + "visible_site_count": 5, + "jetpack_visible_site_count": 1, + "atomic_visible_site_count": 1, + "has_unseen_notes": false, + "newest_note_type": "comment", + "phone_account": false, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.1/me", + "help": "https://public-api.wordpress.com/rest/v1.1/me/help", + "site": "https://public-api.wordpress.com/rest/v1.1/sites/654321", + "flags": "https://public-api.wordpress.com/rest/v1.1/me/flags" }, - "is_valid_google_apps_country": true, - "user_ip_country_code": "US", - "logout_URL": "https://wordpress.com/wp-login.php?action=logout&_wpnonce=asdf1234&redirect_to=https%3A%2F%2Fwordpress.com%2F", - "social_login_connections": null, - "social_signup_service": null, - "abtests": {}, - "lasagna_jwt": "test.jwt.token", - "i18n_empathy_mode": false, - "use_fallback_for_incomplete_languages": false, - "is_google_domain_owner": false, - "had_hosting_trial": false, - "is_subscription_only": false - } + "marketing_price_group": false, + "plans_reorder_abtest_variation": "control" + }, + "is_valid_google_apps_country": true, + "user_ip_country_code": "US", + "logout_URL": "https://wordpress.com/wp-login.php?action=logout&_wpnonce=asdf1234&redirect_to=https%3A%2F%2Fwordpress.com%2F", + "social_login_connections": null, + "social_signup_service": null, + "abtests": {}, + "lasagna_jwt": "test.jwt.token", + "i18n_empathy_mode": false, + "use_fallback_for_incomplete_languages": false, + "is_google_domain_owner": false, + "had_hosting_trial": false, + "is_subscription_only": false +} diff --git a/wp_api/tests/wpcom/me/v1.1-me-02.json b/wp_api/tests/wpcom/me/v1.1-me-02.json index c09670dc1..1afa7db1c 100644 --- a/wp_api/tests/wpcom/me/v1.1-me-02.json +++ b/wp_api/tests/wpcom/me/v1.1-me-02.json @@ -1,56 +1,56 @@ { - "ID": 158350866, - "display_name": "Test User", - "username": "testuser", - "email": "test.user@example.com", - "primary_blog": 200000001, - "primary_blog_url": "https:\/\/testuser.example.blog", - "primary_blog_is_jetpack": false, - "has_jetpack_partner_access": false, - "language": "en", - "locale_variant": "", - "token_site_id": 0, - "token_scope": "global", - "token_client_id": 11, - "avatar_URL": "https:\/\/0.gravatar.com\/avatar\/0000000000000000000000000000000000000000000000000000000000000000?s=96&d=identicon", - "profile_URL": "http:\/\/gravatar.com\/testuser", - "verified": true, - "email_verified": true, - "date": "2019-05-31T23:38:40+00:00", - "site_count": 6, - "jetpack_site_count": 1, - "atomic_site_count": 1, - "visible_site_count": 6, - "jetpack_visible_site_count": 1, - "atomic_visible_site_count": 1, - "has_unseen_notes": false, - "newest_note_type": "", - "phone_account": false, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/me", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/me\/help", - "site": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100000002", - "flags": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/me\/flags" - }, - "marketing_price_group": false, - "plans_reorder_abtest_variation": "control" + "ID": 158350866, + "display_name": "Test User", + "username": "testuser", + "email": "test.user@example.com", + "primary_blog": 200000001, + "primary_blog_url": "https://testuser.example.blog", + "primary_blog_is_jetpack": false, + "has_jetpack_partner_access": false, + "language": "en", + "locale_variant": "", + "token_site_id": 0, + "token_scope": "global", + "token_client_id": 11, + "avatar_URL": "https://0.gravatar.com/avatar/0000000000000000000000000000000000000000000000000000000000000000?s=96&d=identicon", + "profile_URL": "http://gravatar.com/testuser", + "verified": true, + "email_verified": true, + "date": "2019-05-31T23:38:40+00:00", + "site_count": 6, + "jetpack_site_count": 1, + "atomic_site_count": 1, + "visible_site_count": 6, + "jetpack_visible_site_count": 1, + "atomic_visible_site_count": 1, + "has_unseen_notes": false, + "newest_note_type": "", + "phone_account": false, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.1/me", + "help": "https://public-api.wordpress.com/rest/v1.1/me/help", + "site": "https://public-api.wordpress.com/rest/v1.1/sites/100000002", + "flags": "https://public-api.wordpress.com/rest/v1.1/me/flags" }, - "is_valid_google_apps_country": true, - "user_ip_country_code": "US", - "logout_URL": "https:\/\/wordpress.com\/wp-login.php?action=logout&_wpnonce=0000000000&redirect_to=https%3A%2F%2Fwordpress.com%2F", - "social_login_connections": [ - { - "service": "google", - "service_user_email": "testuser@email.com", - "service_user_id": "999999999999999999999" - } - ], - "social_signup_service": "google", - "abtests": {}, - "i18n_empathy_mode": false, - "use_fallback_for_incomplete_languages": false, - "is_google_domain_owner": false, - "had_hosting_trial": false, - "is_subscription_only": false - } + "marketing_price_group": false, + "plans_reorder_abtest_variation": "control" + }, + "is_valid_google_apps_country": true, + "user_ip_country_code": "US", + "logout_URL": "https://wordpress.com/wp-login.php?action=logout&_wpnonce=0000000000&redirect_to=https%3A%2F%2Fwordpress.com%2F", + "social_login_connections": [ + { + "service": "google", + "service_user_email": "testuser@email.com", + "service_user_id": "999999999999999999999" + } + ], + "social_signup_service": "google", + "abtests": {}, + "i18n_empathy_mode": false, + "use_fallback_for_incomplete_languages": false, + "is_google_domain_owner": false, + "had_hosting_trial": false, + "is_subscription_only": false +} diff --git a/wp_api/tests/wpcom/oauth2/invalid-token-info.json b/wp_api/tests/wpcom/oauth2/invalid-token-info.json index 23b9b7cb4..d6c0a87dd 100644 --- a/wp_api/tests/wpcom/oauth2/invalid-token-info.json +++ b/wp_api/tests/wpcom/oauth2/invalid-token-info.json @@ -1 +1,4 @@ -{"error":"invalid_request","error_description":"The specified token is invalid."} \ No newline at end of file +{ + "error": "invalid_request", + "error_description": "The specified token is invalid." +} diff --git a/wp_api/tests/wpcom/sites/v1.2-me-sites-01.json b/wp_api/tests/wpcom/sites/v1.2-me-sites-01.json index 561109521..48b8b7f8c 100644 --- a/wp_api/tests/wpcom/sites/v1.2-me-sites-01.json +++ b/wp_api/tests/wpcom/sites/v1.2-me-sites-01.json @@ -1,632 +1,467 @@ { - "sites": [ - { - "ID": 100001001, - "slug": "testuser1.home.blog", - "name": "Test User 1's Blog", - "description": "", - "URL": "http:\/\/testuser1.home.blog", - "user_can_manage": false, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": false, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": true, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": false, - "remove_users": true, - "own_site": true, - "view_stats": true, - "activate_plugins": true, - "update_plugins": false, - "export": true, - "import": true - }, - "jetpack": false, - "jetpack_connection": false, - "is_multisite": true, - "site_owner": 200001001, - "post_count": 65, - "subscribers_count": 2, - "lang": "en", - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": false, - "is_vip": false, - "is_following": true, - "organization_id": 0, - "options": { - "timezone": "", - "gmt_offset": 0, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": false, - "login_url": "https:\/\/testuser1home.wordpress.com\/wp-login.php", - "admin_url": "https:\/\/testuser1home.wordpress.com\/wp-admin\/", - "is_mapped_domain": true, - "is_redirect": false, - "unmapped_url": "https:\/\/testuser1home.wordpress.com", - "featured_images_enabled": true, - "theme_slug": "pub\/twentytwentyfive", - "theme_errors": [], - "header_image": false, - "background_color": false, - "image_default_link_type": "none", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "standard", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc" - ], - "show_on_front": "posts", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.2-alpha-60439", - "created_at": "2019-05-31T23:39:47+00:00", - "updated_at": "2024-07-04T19:49:13+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "a1b2c3d4e5", - "jetpack_frame_nonce": "a1b2c3d4e5", - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": null, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": null, - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": 2, - "import_engine": "wordpress", - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": null, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": false, - "launchpad_checklist_tasks_statuses": { - "first_post_published": true, - "site_title": true, - "site_launched": true, - "verify_email": true, - "mobile_app_installed": true, - "write_3_posts": true, - "add_new_page": true, - "edit_page": true, - "site_theme_selected": true + "sites": [ + { + "ID": 100001001, + "slug": "testuser1.home.blog", + "name": "Test User 1's Blog", + "description": "", + "URL": "http://testuser1.home.blog", + "user_can_manage": false, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": false, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": true, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": false, + "remove_users": true, + "own_site": true, + "view_stats": true, + "activate_plugins": true, + "update_plugins": false, + "export": true, + "import": true + }, + "jetpack": false, + "jetpack_connection": false, + "is_multisite": true, + "site_owner": 200001001, + "post_count": 65, + "subscribers_count": 2, + "lang": "en", + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": false, + "is_vip": false, + "is_following": true, + "organization_id": 0, + "options": { + "timezone": "", + "gmt_offset": 0, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": false, + "login_url": "https://testuser1home.wordpress.com/wp-login.php", + "admin_url": "https://testuser1home.wordpress.com/wp-admin/", + "is_mapped_domain": true, + "is_redirect": false, + "unmapped_url": "https://testuser1home.wordpress.com", + "featured_images_enabled": true, + "theme_slug": "pub/twentytwentyfive", + "theme_errors": [], + "header_image": false, + "background_color": false, + "image_default_link_type": "none", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "standard", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc" + ], + "show_on_front": "posts", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.2-alpha-60439", + "created_at": "2019-05-31T23:39:47+00:00", + "updated_at": "2024-07-04T19:49:13+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "a1b2c3d4e5", + "jetpack_frame_nonce": "a1b2c3d4e5", + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": null, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": null, + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": 2, + "import_engine": "wordpress", + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": null, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": null, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false - }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 1, - "product_slug": "free_plan", - "product_name_short": "Free", - "expired": false, - "user_is_owner": false, - "is_free": true, - "features": { - "active": [ - "akismet", - "donations", - "free-blog", - "recurring-payments", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "stats-free", - "stats-basic", - "support" - ] - } + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "products": [], - "zendesk_site_meta": { - "plan": "free", - "addon": [] + "launchpad_screen": false, + "launchpad_checklist_tasks_statuses": { + "first_post_published": true, + "site_title": true, + "site_launched": true, + "verify_email": true, + "mobile_app_installed": true, + "write_3_posts": true, + "add_new_page": true, + "edit_page": true, + "site_theme_selected": true }, - "jetpack_modules": null, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001001", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001001\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001001\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001001\/comments\/", - "xmlrpc": "https:\/\/testuser1home.wordpress.com\/xmlrpc.php" - } - }, - "quota": { - "space_allowed": 3221225472, - "space_used": 8705793, - "percent_used": 0.270263385027647, - "space_available": 3212519679 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": true, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "user_interactions": [ - "2024-07-04" - ], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": null, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false }, - { - "ID": 100001002, - "slug": "testwidgets.wpcomstaging.com", - "name": "Test Widgets", - "description": "", - "URL": "https:\/\/testwidgets.wpcomstaging.com", - "user_can_manage": true, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": true, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": false, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": true, - "remove_users": true, - "own_site": false, - "view_stats": true, - "activate_plugins": true, - "update_plugins": true, - "export": true, - "import": true - }, - "jetpack": true, - "jetpack_connection": true, - "is_multisite": false, - "site_owner": 200001002, - "post_count": 3, - "subscribers_count": 0, - "lang": "en-US", - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": true, - "is_coming_soon": false, - "single_user_site": false, - "is_vip": false, - "is_following": false, - "organization_id": 0, - "options": { - "timezone": "", - "gmt_offset": 0, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": true, - "login_url": "https:\/\/testwidgets.wpcomstaging.com\/wp-login.php", - "admin_url": "https:\/\/testwidgets.wpcomstaging.com\/wp-admin\/", - "is_mapped_domain": true, - "is_redirect": false, - "unmapped_url": "https:\/\/testwidgets.wpcomstaging.com", - "featured_images_enabled": false, - "theme_slug": "storefront", - "theme_errors": [ - { - "name": "e2e-tests-twilio-webhook", - "errors": [ - "The theme defines itself as its parent theme. Please check the <code>Template<\/code> header." - ] - }, - { - "name": "a-test-theme", - "errors": [ - "Template is missing. Standalone themes need to have a <code>templates\/index.html<\/code> or <code>index.php<\/code> template file. <a href=\"https:\/\/developer.wordpress.org\/themes\/advanced-topics\/child-themes\/\">Child themes<\/a> need to have a <code>Template<\/code> header in the <code>style.css<\/code> stylesheet." - ] - } - ], - "header_image": false, - "background_color": false, - "image_default_link_type": "none", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "standard", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc", - "mp3", - "m4a", - "wav", - "ogg", - "zip", - "txt", - "tiff", - "bmp", - "ogv", - "mp4", - "m4v", - "mov", - "wmv", - "avi", - "mpg", - "3gp", - "3g2" - ], - "show_on_front": "page", - "default_likes_enabled": false, - "default_sharing_status": true, - "default_comment_status": false, - "default_ping_status": true, - "software_version": "6.8.3", - "created_at": "2019-04-25T21:13:15+00:00", - "updated_at": "2025-05-08T00:25:11+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "f6g7h8i9j0", - "jetpack_frame_nonce": "1234567890:200001002:abcdef1234567890abcdef1234567890", - "page_on_front": 2, - "page_for_posts": 3, - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": false, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": [], - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": true, - "is_wpcom_atomic": true, - "is_wpcom_store": true, - "woocommerce_is_active": true, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": false, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": false, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": false, - "launchpad_checklist_tasks_statuses": { - "install_custom_plugin": true, - "mobile_app_installed": true, - "review_plugins": true - }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": true, - "is_commercial_reasons": [ - "ecommerce" - ], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false, - "jetpack_version": "15.1-a.11", - "main_network_site": "https:\/\/testwidgets.wpcomstaging.com", - "active_modules": [ - "carousel", - "comment-likes", - "comments", - "contact-form", - "copy-post", - "custom-content-types", - "gravatar-hovercards", - "infinite-scroll", - "latex", - "likes", - "notes", - "post-by-email", - "protect", - "shortcodes", - "shortlinks", - "sso", - "stats", - "subscriptions", - "tiled-gallery", - "widget-visibility", - "widgets", - "woocommerce-analytics", - "google-fonts", - "blaze", - "blocks", - "account-protection" - ], - "max_upload_size": false, - "wp_memory_limit": "536870912", - "wp_max_memory_limit": "536870912", - "is_multi_network": false, - "is_multi_site": false, - "file_mod_disabled": [ - "wp_auto_update_core_disabled" - ], - "jetpack_connection_active_plugins": [ - "jetpack", - "blaze-ads", - "woocommerce", - "woocommerce-services" + "p2_thumbnail_elements": null, + "plan": { + "product_id": 1, + "product_slug": "free_plan", + "product_name_short": "Free", + "expired": false, + "user_is_owner": false, + "is_free": true, + "features": { + "active": [ + "akismet", + "donations", + "free-blog", + "recurring-payments", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "stats-free", + "stats-basic", + "support" ] - }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 1011, - "product_slug": "ecommerce-bundle", - "product_name_short": "Commerce", - "expired": false, - "user_is_owner": false, - "is_free": false, - "features": { - "active": [ - "ai-assistant", - "ai-seo-enhancer", - "ad-credit", - "advanced-seo", - "akismet", - "antispam", - "atomic", - "backups", - "restore", - "calendly", - "cdn", - "search", - "cloudflare-analytics", - "cloudflare-cdn", - "concierge", - "copy-site", - "core\/audio", - "core\/cover", - "core\/video", - "credit-vouchers", - "custom-design", - "custom-domain", - "domain-mapping", - "donations", - "ecommerce-managed-plugins", - "ecommerce-managed-plugins-medium", - "edit-plugins", - "edit-themes", - "email-forwards-extended-limit", - "field-file", - "multistep-form", - "free-blog", - "full-activity-log", - "global-styles", - "google-analytics", - "google-my-business", - "install-plugins", - "install-purchased-plugins", - "install-themes", - "jetpack-dashboard", - "list-installed-plugins", - "live_support", - "mailpoet-business", - "manage-plugins", - "no-adverts\/no-adverts.php", - "no-wpcom-branding", - "opentable", - "options-permalink", - "payments", - "premium-content\/container", - "personal-themes", - "premium-themes", - "partner-themes", - "community-themes", - "woocommerce-themes", - "sensei-themes", - "priority_support", - "private_whois", - "real-time-backups", - "recurring-payments", - "republicize", - "scan", - "scan-managed", - "scheduled-updates", - "security-settings", - "seo-preview-tools", - "send-a-message", - "set-primary-custom-domain", - "sftp", - "ssh", - "simple-payments", - "site-preview-links", - "social-enhanced-publishing", - "social-image-generator", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "space-upgraded-storage", - "staging-sites", - "stats-free", - "stats-basic", - "stats-paid", - "stats-commercial", - "studio-sync", - "subscriber-unlimited-imports", - "subscription-gifting", - "support", - "upgraded_upload_filetypes", - "upload-audio-files", - "upload-plugins", - "upload-space-200gb", - "upload-space-unlimited", - "upload-themes", - "upload-video-files", - "video-hosting", - "videopress", - "videopress\/video", - "whatsapp-button", - "woop", - "wordads", - "wordads-jetpack" + } + }, + "products": [], + "zendesk_site_meta": { + "plan": "free", + "addon": [] + }, + "jetpack_modules": null, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001001", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001001/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001001/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001001/comments/", + "xmlrpc": "https://testuser1home.wordpress.com/xmlrpc.php" + } + }, + "quota": { + "space_allowed": 3221225472, + "space_used": 8705793, + "percent_used": 0.270263385027647, + "space_available": 3212519679 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": true, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "user_interactions": [ + "2024-07-04" + ], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null + }, + { + "ID": 100001002, + "slug": "testwidgets.wpcomstaging.com", + "name": "Test Widgets", + "description": "", + "URL": "https://testwidgets.wpcomstaging.com", + "user_can_manage": true, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": true, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": false, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": true, + "remove_users": true, + "own_site": false, + "view_stats": true, + "activate_plugins": true, + "update_plugins": true, + "export": true, + "import": true + }, + "jetpack": true, + "jetpack_connection": true, + "is_multisite": false, + "site_owner": 200001002, + "post_count": 3, + "subscribers_count": 0, + "lang": "en-US", + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": true, + "is_coming_soon": false, + "single_user_site": false, + "is_vip": false, + "is_following": false, + "organization_id": 0, + "options": { + "timezone": "", + "gmt_offset": 0, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": true, + "login_url": "https://testwidgets.wpcomstaging.com/wp-login.php", + "admin_url": "https://testwidgets.wpcomstaging.com/wp-admin/", + "is_mapped_domain": true, + "is_redirect": false, + "unmapped_url": "https://testwidgets.wpcomstaging.com", + "featured_images_enabled": false, + "theme_slug": "storefront", + "theme_errors": [ + { + "name": "e2e-tests-twilio-webhook", + "errors": [ + "The theme defines itself as its parent theme. Please check the <code>Template</code> header." + ] + }, + { + "name": "a-test-theme", + "errors": [ + "Template is missing. Standalone themes need to have a <code>templates/index.html</code> or <code>index.php</code> template file. <a href=\"https://developer.wordpress.org/themes/advanced-topics/child-themes/\">Child themes</a> need to have a <code>Template</code> header in the <code>style.css</code> stylesheet." ] } + ], + "header_image": false, + "background_color": false, + "image_default_link_type": "none", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "standard", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc", + "mp3", + "m4a", + "wav", + "ogg", + "zip", + "txt", + "tiff", + "bmp", + "ogv", + "mp4", + "m4v", + "mov", + "wmv", + "avi", + "mpg", + "3gp", + "3g2" + ], + "show_on_front": "page", + "default_likes_enabled": false, + "default_sharing_status": true, + "default_comment_status": false, + "default_ping_status": true, + "software_version": "6.8.3", + "created_at": "2019-04-25T21:13:15+00:00", + "updated_at": "2025-05-08T00:25:11+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "f6g7h8i9j0", + "jetpack_frame_nonce": "1234567890:200001002:abcdef1234567890abcdef1234567890", + "page_on_front": 2, + "page_for_posts": 3, + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": false, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": [], + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": true, + "is_wpcom_atomic": true, + "is_wpcom_store": true, + "woocommerce_is_active": true, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": false, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": false, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false + }, + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "products": [], - "zendesk_site_meta": { - "plan": "ecommerce", - "addon": [] + "launchpad_screen": false, + "launchpad_checklist_tasks_statuses": { + "install_custom_plugin": true, + "mobile_app_installed": true, + "review_plugins": true }, - "jetpack_modules": [ + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": true, + "is_commercial_reasons": [ + "ecommerce" + ], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false, + "jetpack_version": "15.1-a.11", + "main_network_site": "https://testwidgets.wpcomstaging.com", + "active_modules": [ "carousel", "comment-likes", "comments", @@ -654,650 +489,699 @@ "blocks", "account-protection" ], - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001002", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001002\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001002\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001002\/comments\/", - "xmlrpc": "https:\/\/testwidgets.wpcomstaging.com\/xmlrpc.php" - } - }, - "quota": { - "space_allowed": 2100373225472, - "space_used": 364583, - "percent_used": 1.7358010261155856e-5, - "space_available": 2100372860889 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": false, - "is_wpcom_atomic": true, - "is_wpcom_staging_site": false, - "user_interactions": [], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null, - "updates": { - "wordpress": 0, - "plugins": 4, - "themes": 0, - "translations": 0, - "total": 4 + "max_upload_size": false, + "wp_memory_limit": "536870912", + "wp_max_memory_limit": "536870912", + "is_multi_network": false, + "is_multi_site": false, + "file_mod_disabled": [ + "wp_auto_update_core_disabled" + ], + "jetpack_connection_active_plugins": [ + "jetpack", + "blaze-ads", + "woocommerce", + "woocommerce-services" + ] + }, + "p2_thumbnail_elements": null, + "plan": { + "product_id": 1011, + "product_slug": "ecommerce-bundle", + "product_name_short": "Commerce", + "expired": false, + "user_is_owner": false, + "is_free": false, + "features": { + "active": [ + "ai-assistant", + "ai-seo-enhancer", + "ad-credit", + "advanced-seo", + "akismet", + "antispam", + "atomic", + "backups", + "restore", + "calendly", + "cdn", + "search", + "cloudflare-analytics", + "cloudflare-cdn", + "concierge", + "copy-site", + "core/audio", + "core/cover", + "core/video", + "credit-vouchers", + "custom-design", + "custom-domain", + "domain-mapping", + "donations", + "ecommerce-managed-plugins", + "ecommerce-managed-plugins-medium", + "edit-plugins", + "edit-themes", + "email-forwards-extended-limit", + "field-file", + "multistep-form", + "free-blog", + "full-activity-log", + "global-styles", + "google-analytics", + "google-my-business", + "install-plugins", + "install-purchased-plugins", + "install-themes", + "jetpack-dashboard", + "list-installed-plugins", + "live_support", + "mailpoet-business", + "manage-plugins", + "no-adverts/no-adverts.php", + "no-wpcom-branding", + "opentable", + "options-permalink", + "payments", + "premium-content/container", + "personal-themes", + "premium-themes", + "partner-themes", + "community-themes", + "woocommerce-themes", + "sensei-themes", + "priority_support", + "private_whois", + "real-time-backups", + "recurring-payments", + "republicize", + "scan", + "scan-managed", + "scheduled-updates", + "security-settings", + "seo-preview-tools", + "send-a-message", + "set-primary-custom-domain", + "sftp", + "ssh", + "simple-payments", + "site-preview-links", + "social-enhanced-publishing", + "social-image-generator", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "space-upgraded-storage", + "staging-sites", + "stats-free", + "stats-basic", + "stats-paid", + "stats-commercial", + "studio-sync", + "subscriber-unlimited-imports", + "subscription-gifting", + "support", + "upgraded_upload_filetypes", + "upload-audio-files", + "upload-plugins", + "upload-space-200gb", + "upload-space-unlimited", + "upload-themes", + "upload-video-files", + "video-hosting", + "videopress", + "videopress/video", + "whatsapp-button", + "woop", + "wordads", + "wordads-jetpack" + ] } }, - { - "ID": 100001003, - "slug": "testuser2.wordpress.com", - "name": "Test User 2", - "description": "Just another WordPress.com weblog", - "URL": "https:\/\/testuser2.wordpress.com", - "user_can_manage": false, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": false, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": false, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": false, - "remove_users": true, - "own_site": false, - "view_stats": true, - "activate_plugins": true, - "update_plugins": false, - "export": true, - "import": true - }, - "jetpack": false, - "jetpack_connection": false, - "is_multisite": true, - "site_owner": 200001003, - "post_count": 31, - "subscribers_count": 30, - "lang": "en", - "icon": { - "img": "https:\/\/testuser2.wordpress.com\/wp-content\/uploads\/2019\/02\/cropped-wordpress-logotype-wmark-1.png?w=96", - "ico": "https:\/\/testuser2.wordpress.com\/wp-content\/uploads\/2019\/02\/cropped-wordpress-logotype-wmark-1.png?w=96", - "media_id": 300001001 - }, - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": false, - "is_vip": false, - "is_following": false, - "organization_id": 0, - "options": { - "timezone": "America\/Edmonton", - "gmt_offset": -6, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": true, - "login_url": "https:\/\/testuser2.wordpress.com\/wp-login.php", - "admin_url": "https:\/\/testuser2.wordpress.com\/wp-admin\/", - "is_mapped_domain": false, - "is_redirect": false, - "unmapped_url": "https:\/\/testuser2.wordpress.com", - "featured_images_enabled": true, - "theme_slug": "pub\/independent-publisher-2", - "theme_errors": [], - "header_image": false, - "background_color": false, - "image_default_link_type": "file", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "standard", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc", - "mp3", - "m4a", - "wav", - "ogg", - "zip", - "txt", - "tiff", - "bmp" - ], - "show_on_front": "posts", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.2-alpha-60439", - "created_at": "2007-08-21T22:35:40+00:00", - "updated_at": "2020-09-08T23:04:45+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "k1l2m3n4o5", - "jetpack_frame_nonce": "k1l2m3n4o5", - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": null, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": null, - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": null, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": null, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": "off", - "launchpad_checklist_tasks_statuses": { - "first_post_published": true, - "site_title": true, - "post_sharing_enabled": true, - "site_launched": true, - "verify_email": true, - "mobile_app_installed": true, - "subscribers_added": true + "products": [], + "zendesk_site_meta": { + "plan": "ecommerce", + "addon": [] + }, + "jetpack_modules": [ + "carousel", + "comment-likes", + "comments", + "contact-form", + "copy-post", + "custom-content-types", + "gravatar-hovercards", + "infinite-scroll", + "latex", + "likes", + "notes", + "post-by-email", + "protect", + "shortcodes", + "shortlinks", + "sso", + "stats", + "subscriptions", + "tiled-gallery", + "widget-visibility", + "widgets", + "woocommerce-analytics", + "google-fonts", + "blaze", + "blocks", + "account-protection" + ], + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001002", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001002/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001002/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001002/comments/", + "xmlrpc": "https://testwidgets.wpcomstaging.com/xmlrpc.php" + } + }, + "quota": { + "space_allowed": 2100373225472, + "space_used": 364583, + "percent_used": 0.000017358010261155856, + "space_available": 2100372860889 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": false, + "is_wpcom_atomic": true, + "is_wpcom_staging_site": false, + "user_interactions": [], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null, + "updates": { + "wordpress": 0, + "plugins": 4, + "themes": 0, + "translations": 0, + "total": 4 + } + }, + { + "ID": 100001003, + "slug": "testuser2.wordpress.com", + "name": "Test User 2", + "description": "Just another WordPress.com weblog", + "URL": "https://testuser2.wordpress.com", + "user_can_manage": false, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": false, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": false, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": false, + "remove_users": true, + "own_site": false, + "view_stats": true, + "activate_plugins": true, + "update_plugins": false, + "export": true, + "import": true + }, + "jetpack": false, + "jetpack_connection": false, + "is_multisite": true, + "site_owner": 200001003, + "post_count": 31, + "subscribers_count": 30, + "lang": "en", + "icon": { + "img": "https://testuser2.wordpress.com/wp-content/uploads/2019/02/cropped-wordpress-logotype-wmark-1.png?w=96", + "ico": "https://testuser2.wordpress.com/wp-content/uploads/2019/02/cropped-wordpress-logotype-wmark-1.png?w=96", + "media_id": 300001001 + }, + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": false, + "is_vip": false, + "is_following": false, + "organization_id": 0, + "options": { + "timezone": "America/Edmonton", + "gmt_offset": -6, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": true, + "login_url": "https://testuser2.wordpress.com/wp-login.php", + "admin_url": "https://testuser2.wordpress.com/wp-admin/", + "is_mapped_domain": false, + "is_redirect": false, + "unmapped_url": "https://testuser2.wordpress.com", + "featured_images_enabled": true, + "theme_slug": "pub/independent-publisher-2", + "theme_errors": [], + "header_image": false, + "background_color": false, + "image_default_link_type": "file", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "standard", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc", + "mp3", + "m4a", + "wav", + "ogg", + "zip", + "txt", + "tiff", + "bmp" + ], + "show_on_front": "posts", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.2-alpha-60439", + "created_at": "2007-08-21T22:35:40+00:00", + "updated_at": "2020-09-08T23:04:45+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "k1l2m3n4o5", + "jetpack_frame_nonce": "k1l2m3n4o5", + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": null, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": null, + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": null, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": null, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": false, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false - }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 1009, - "product_slug": "personal-bundle", - "product_name_short": "Personal", - "expired": false, - "user_is_owner": false, - "is_free": false, - "features": { - "active": [ - "ai-assistant", - "akismet", - "core\/audio", - "custom-domain", - "domain-mapping", - "donations", - "field-file", - "multistep-form", - "free-blog", - "full-activity-log", - "no-adverts\/no-adverts.php", - "payments", - "premium-content\/container", - "personal-themes", - "recurring-payments", - "set-primary-custom-domain", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "space-upgraded-storage", - "stats-free", - "stats-basic", - "stats-paid", - "subscriber-unlimited-imports", - "subscription-gifting", - "support", - "upgraded_upload_filetypes" - ] - } + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "products": [], - "zendesk_site_meta": { - "plan": "personal", - "addon": [] + "launchpad_screen": "off", + "launchpad_checklist_tasks_statuses": { + "first_post_published": true, + "site_title": true, + "post_sharing_enabled": true, + "site_launched": true, + "verify_email": true, + "mobile_app_installed": true, + "subscribers_added": true }, - "jetpack_modules": null, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001003\/comments\/", - "xmlrpc": "https:\/\/testuser2.wordpress.com\/xmlrpc.php", - "site_icon": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/media\/300001001" - } - }, - "quota": { - "space_allowed": 6442450944, - "space_used": 131662441, - "percent_used": 2.0436700588713093, - "space_available": 6310788503 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": false, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "user_interactions": [], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": false, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false }, - { - "ID": 100001004, - "slug": "testjetpack.example.com", - "name": "testjetpack.example.com", - "description": "", - "URL": "https:\/\/testjetpack.example.com", - "user_can_manage": false, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": true, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": false, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": true, - "remove_users": true, - "own_site": false, - "view_stats": true, - "activate_plugins": true, - "update_plugins": true, - "export": true, - "import": true - }, - "jetpack": true, - "jetpack_connection": true, - "is_multisite": false, - "site_owner": 200001004, - "post_count": 2, - "subscribers_count": 2, - "lang": "en-US", - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": false, - "is_vip": false, - "is_following": false, - "organization_id": 0, - "options": { - "timezone": "", - "gmt_offset": 0, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": true, - "login_url": "https:\/\/testjetpack.example.com\/wp-login.php", - "admin_url": "https:\/\/testjetpack.example.com\/wp-admin\/", - "is_mapped_domain": true, - "is_redirect": false, - "unmapped_url": "https:\/\/testjetpack.example.com", - "featured_images_enabled": false, - "theme_slug": "twentytwentyfour", - "theme_errors": [ - { - "name": "e2e-tests-twilio-webhook", - "errors": [ - "The theme defines itself as its parent theme. Please check the <code>Template<\/code> header." - ] - }, - { - "name": "a-test-theme", - "errors": [ - "Template is missing. Standalone themes need to have a <code>templates\/index.html<\/code> or <code>index.php<\/code> template file. <a href=\"https:\/\/developer.wordpress.org\/themes\/advanced-topics\/child-themes\/\">Child themes<\/a> need to have a <code>Template<\/code> header in the <code>style.css<\/code> stylesheet." - ] - } - ], - "header_image": false, - "background_color": false, - "image_default_link_type": "none", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%postname%\/", - "post_formats": [], - "default_post_format": "0", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc", - "mp3", - "m4a", - "wav", - "ogg", - "zip", - "txt", - "tiff", - "bmp", - "ogv", - "mp4", - "m4v", - "mov", - "wmv", - "avi", - "mpg", - "3gp", - "3g2" - ], - "show_on_front": "posts", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.3", - "created_at": "2024-08-15T02:04:45+00:00", - "updated_at": "2025-05-27T23:37:01+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "p6q7r8s9t0", - "jetpack_frame_nonce": "0987654321:3:fedcba0987654321fedcba0987654321", - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": false, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": [], - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": false, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "is_cloud_eligible": true, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 24.7, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": false, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": false, - "launchpad_checklist_tasks_statuses": { - "front_page_updated": true - }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": false, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false, - "jetpack_version": "15.0", - "main_network_site": "https:\/\/testjetpack.example.com", - "active_modules": [ - "blaze", - "contact-form", - "json-api", - "stats", - "verification-tools", - "woocommerce-analytics", - "notes", - "comments", - "photon", - "tiled-gallery", - "markdown", - "monitor", - "blocks", - "account-protection", - "sso", - "videopress", - "search" - ], - "max_upload_size": false, - "wp_memory_limit": "41943040", - "wp_max_memory_limit": "536870912", - "is_multi_network": false, - "is_multi_site": false, - "file_mod_disabled": false, - "jetpack_connection_active_plugins": [ - "jetpack", - "jetpack-boost" + "p2_thumbnail_elements": null, + "plan": { + "product_id": 1009, + "product_slug": "personal-bundle", + "product_name_short": "Personal", + "expired": false, + "user_is_owner": false, + "is_free": false, + "features": { + "active": [ + "ai-assistant", + "akismet", + "core/audio", + "custom-domain", + "domain-mapping", + "donations", + "field-file", + "multistep-form", + "free-blog", + "full-activity-log", + "no-adverts/no-adverts.php", + "payments", + "premium-content/container", + "personal-themes", + "recurring-payments", + "set-primary-custom-domain", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "space-upgraded-storage", + "stats-free", + "stats-basic", + "stats-paid", + "subscriber-unlimited-imports", + "subscription-gifting", + "support", + "upgraded_upload_filetypes" ] - }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 2014, - "product_slug": "jetpack_complete", - "product_name_short": "Complete", - "expired": false, - "user_is_owner": false, - "is_free": false, - "features": { - "active": [ - "ai-assistant", - "ai-seo-enhancer", - "advanced-seo", - "akismet", - "antispam", - "backups", - "backups-daily", - "cdn", - "search", - "cloud-critical-css", - "cornerstone-10-pages", - "cloudflare-analytics", - "cloudflare-cdn", - "core\/audio", - "donations", - "field-file", - "multistep-form", - "full-activity-log", - "google-analytics", - "google-my-business", - "image-cdn-liar", - "image-cdn-quality", - "image-size-analysis", - "install-themes", - "instant-search", - "jetpack-dashboard", - "performance-history", - "priority_support", - "real-time-backups", - "recurring-payments", - "republicize", - "scan", - "security-settings", - "seo-preview-tools", - "send-a-message", - "simple-payments", - "social-shares-1000", - "social-enhanced-publishing", - "social-image-generator", - "social-connections-management", - "stats-free", - "stats-paid", - "stats-commercial", - "subscriber-unlimited-imports", - "support", - "upload-audio-files", - "upload-video-files", - "vaultpress-backups", - "video-hosting", - "videopress", - "videopress-1tb-storage", - "whatsapp-button", - "wordads", - "wordads-jetpack", - "social-image-auto-convert", - "social-admin-page", - "social-share-status", - "social-editor-preview" + } + }, + "products": [], + "zendesk_site_meta": { + "plan": "personal", + "addon": [] + }, + "jetpack_modules": null, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001003", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001003/comments/", + "xmlrpc": "https://testuser2.wordpress.com/xmlrpc.php", + "site_icon": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/media/300001001" + } + }, + "quota": { + "space_allowed": 6442450944, + "space_used": 131662441, + "percent_used": 2.0436700588713093, + "space_available": 6310788503 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": false, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "user_interactions": [], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null + }, + { + "ID": 100001004, + "slug": "testjetpack.example.com", + "name": "testjetpack.example.com", + "description": "", + "URL": "https://testjetpack.example.com", + "user_can_manage": false, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": true, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": false, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": true, + "remove_users": true, + "own_site": false, + "view_stats": true, + "activate_plugins": true, + "update_plugins": true, + "export": true, + "import": true + }, + "jetpack": true, + "jetpack_connection": true, + "is_multisite": false, + "site_owner": 200001004, + "post_count": 2, + "subscribers_count": 2, + "lang": "en-US", + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": false, + "is_vip": false, + "is_following": false, + "organization_id": 0, + "options": { + "timezone": "", + "gmt_offset": 0, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": true, + "login_url": "https://testjetpack.example.com/wp-login.php", + "admin_url": "https://testjetpack.example.com/wp-admin/", + "is_mapped_domain": true, + "is_redirect": false, + "unmapped_url": "https://testjetpack.example.com", + "featured_images_enabled": false, + "theme_slug": "twentytwentyfour", + "theme_errors": [ + { + "name": "e2e-tests-twilio-webhook", + "errors": [ + "The theme defines itself as its parent theme. Please check the <code>Template</code> header." ] - } - }, - "products": [ + }, { - "product_id": "2219", - "product_slug": "jetpack_stats_yearly", - "product_name": "Jetpack Stats (Commercial license)", - "product_name_short": "Stats", - "product_type": "jetpack", - "expired": false, - "user_is_owner": false + "name": "a-test-theme", + "errors": [ + "Template is missing. Standalone themes need to have a <code>templates/index.html</code> or <code>index.php</code> template file. <a href=\"https://developer.wordpress.org/themes/advanced-topics/child-themes/\">Child themes</a> need to have a <code>Template</code> header in the <code>style.css</code> stylesheet." + ] } ], - "zendesk_site_meta": { - "plan": "jp_complete", - "addon": [] + "header_image": false, + "background_color": false, + "image_default_link_type": "none", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%postname%/", + "post_formats": [], + "default_post_format": "0", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc", + "mp3", + "m4a", + "wav", + "ogg", + "zip", + "txt", + "tiff", + "bmp", + "ogv", + "mp4", + "m4v", + "mov", + "wmv", + "avi", + "mpg", + "3gp", + "3g2" + ], + "show_on_front": "posts", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.3", + "created_at": "2024-08-15T02:04:45+00:00", + "updated_at": "2025-05-27T23:37:01+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "p6q7r8s9t0", + "jetpack_frame_nonce": "0987654321:3:fedcba0987654321fedcba0987654321", + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": false, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": [], + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": false, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "is_cloud_eligible": true, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 24.7, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": false, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false + }, + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "jetpack_modules": [ + "launchpad_screen": false, + "launchpad_checklist_tasks_statuses": { + "front_page_updated": true + }, + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": false, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false, + "jetpack_version": "15.0", + "main_network_site": "https://testjetpack.example.com", + "active_modules": [ "blaze", "contact-form", "json-api", @@ -1316,547 +1200,663 @@ "videopress", "search" ], - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001004", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001004\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001004\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001004\/comments\/", - "xmlrpc": "https:\/\/testjetpack.example.com\/xmlrpc.php" - } - }, - "quota": { - "space_allowed": 1099511627776, - "space_used": 25897885, - "percent_used": 0.002355398919462459, - "space_available": 1099485729891 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": true, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "user_interactions": [], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null, - "updates": { - "wordpress": 0, - "plugins": 3, - "themes": 4, - "translations": 0, - "total": 7 + "max_upload_size": false, + "wp_memory_limit": "41943040", + "wp_max_memory_limit": "536870912", + "is_multi_network": false, + "is_multi_site": false, + "file_mod_disabled": false, + "jetpack_connection_active_plugins": [ + "jetpack", + "jetpack-boost" + ] + }, + "p2_thumbnail_elements": null, + "plan": { + "product_id": 2014, + "product_slug": "jetpack_complete", + "product_name_short": "Complete", + "expired": false, + "user_is_owner": false, + "is_free": false, + "features": { + "active": [ + "ai-assistant", + "ai-seo-enhancer", + "advanced-seo", + "akismet", + "antispam", + "backups", + "backups-daily", + "cdn", + "search", + "cloud-critical-css", + "cornerstone-10-pages", + "cloudflare-analytics", + "cloudflare-cdn", + "core/audio", + "donations", + "field-file", + "multistep-form", + "full-activity-log", + "google-analytics", + "google-my-business", + "image-cdn-liar", + "image-cdn-quality", + "image-size-analysis", + "install-themes", + "instant-search", + "jetpack-dashboard", + "performance-history", + "priority_support", + "real-time-backups", + "recurring-payments", + "republicize", + "scan", + "security-settings", + "seo-preview-tools", + "send-a-message", + "simple-payments", + "social-shares-1000", + "social-enhanced-publishing", + "social-image-generator", + "social-connections-management", + "stats-free", + "stats-paid", + "stats-commercial", + "subscriber-unlimited-imports", + "support", + "upload-audio-files", + "upload-video-files", + "vaultpress-backups", + "video-hosting", + "videopress", + "videopress-1tb-storage", + "whatsapp-button", + "wordads", + "wordads-jetpack", + "social-image-auto-convert", + "social-admin-page", + "social-share-status", + "social-editor-preview" + ] } }, - { - "ID": 100001005, - "slug": "testfoodsite.wordpress.com", - "name": "Test Food Site", - "description": "", - "URL": "https:\/\/testfoodsite.wordpress.com", - "user_can_manage": false, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": false, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": true, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": false, - "remove_users": true, - "own_site": true, - "view_stats": true, - "activate_plugins": true, - "update_plugins": false, - "export": true, - "import": true - }, - "jetpack": false, - "jetpack_connection": false, - "is_multisite": true, - "site_owner": 200001006, - "post_count": 0, - "subscribers_count": 1, - "lang": "en", - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": true, - "is_vip": false, - "is_following": true, - "organization_id": 0, - "options": { - "timezone": "America\/Los_Angeles", - "gmt_offset": -7, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": false, - "login_url": "https:\/\/testfoodsite.wordpress.com\/wp-login.php", - "admin_url": "https:\/\/testfoodsite.wordpress.com\/wp-admin\/", - "is_mapped_domain": false, - "is_redirect": false, - "unmapped_url": "https:\/\/testfoodsite.wordpress.com", - "featured_images_enabled": true, - "theme_slug": "pub\/twentytwentyfour", - "theme_errors": [], - "header_image": false, - "background_color": false, - "image_default_link_type": "none", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "0", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc" - ], - "show_on_front": "page", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.2-alpha-60439", - "created_at": "2024-09-17T19:00:58+00:00", - "updated_at": "2024-09-17T19:02:50+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "u5v6w7x8y9", - "jetpack_frame_nonce": "u5v6w7x8y9", - "page_on_front": 0, - "page_for_posts": 6, - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": null, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": null, - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": null, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "site_creation_flow": "mobile", - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": null, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": false, - "launchpad_checklist_tasks_statuses": { - "add_new_page": true, - "site_theme_selected": true, - "front_page_updated": true, - "site_title": true, - "setup_free": true, - "setup_general": true - }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": null, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false - }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 1, - "product_slug": "free_plan", - "product_name_short": "Free", + "products": [ + { + "product_id": "2219", + "product_slug": "jetpack_stats_yearly", + "product_name": "Jetpack Stats (Commercial license)", + "product_name_short": "Stats", + "product_type": "jetpack", "expired": false, - "user_is_owner": false, - "is_free": true, - "features": { - "active": [ - "akismet", - "donations", - "free-blog", - "recurring-payments", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "stats-basic", - "support" - ] - } - }, - "products": [], - "zendesk_site_meta": { - "plan": "free", - "addon": [] - }, - "jetpack_modules": null, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001005", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001005\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001005\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001005\/comments\/", - "xmlrpc": "https:\/\/testfoodsite.wordpress.com\/xmlrpc.php" - } - }, - "quota": { - "space_allowed": 3221225472, - "space_used": 0, - "percent_used": 0, - "space_available": 3221225472 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": true, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "user_interactions": [ - "2024-09-17" - ], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null + "user_is_owner": false + } + ], + "zendesk_site_meta": { + "plan": "jp_complete", + "addon": [] }, - { - "ID": 100001006, - "slug": "testblog6520.wordpress.com", - "name": "Test Blog Title", - "description": "", - "URL": "https:\/\/testblog6520.wordpress.com", - "user_can_manage": false, - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": false, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": true, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": false, - "remove_users": true, - "own_site": true, - "view_stats": true, - "activate_plugins": true, - "update_plugins": false, - "export": true, - "import": true - }, - "jetpack": false, - "jetpack_connection": false, - "is_multisite": true, - "site_owner": 200001006, - "post_count": 0, - "subscribers_count": 1, - "lang": "en", - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": true, - "is_vip": false, - "is_following": true, - "organization_id": 0, - "options": { - "timezone": "America\/Edmonton", - "gmt_offset": -6, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": false, - "login_url": "https:\/\/testblog6520.wordpress.com\/wp-login.php", - "admin_url": "https:\/\/testblog6520.wordpress.com\/wp-admin\/", - "is_mapped_domain": false, - "is_redirect": false, - "unmapped_url": "https:\/\/testblog6520.wordpress.com", - "featured_images_enabled": true, - "theme_slug": "pub\/quadrat-white", - "theme_errors": [], - "header_image": false, - "background_color": false, - "image_default_link_type": "none", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "0", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc" - ], - "show_on_front": "page", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.2-alpha-60439", - "created_at": "2024-07-22T21:42:07+00:00", - "updated_at": "2024-07-22T21:42:07+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "z9a8b7c6d5", - "jetpack_frame_nonce": "z9a8b7c6d5", - "page_on_front": 2, - "page_for_posts": 0, - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": null, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": null, - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": null, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "site_creation_flow": "mobile", - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": null, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": false, - "prompts_card_opted_in": false - }, - "launchpad_screen": false, - "launchpad_checklist_tasks_statuses": { - "site_theme_selected": true + "jetpack_modules": [ + "blaze", + "contact-form", + "json-api", + "stats", + "verification-tools", + "woocommerce-analytics", + "notes", + "comments", + "photon", + "tiled-gallery", + "markdown", + "monitor", + "blocks", + "account-protection", + "sso", + "videopress", + "search" + ], + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001004", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001004/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001004/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001004/comments/", + "xmlrpc": "https://testjetpack.example.com/xmlrpc.php" + } + }, + "quota": { + "space_allowed": 1099511627776, + "space_used": 25897885, + "percent_used": 0.002355398919462459, + "space_available": 1099485729891 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": true, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "user_interactions": [], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null, + "updates": { + "wordpress": 0, + "plugins": 3, + "themes": 4, + "translations": 0, + "total": 7 + } + }, + { + "ID": 100001005, + "slug": "testfoodsite.wordpress.com", + "name": "Test Food Site", + "description": "", + "URL": "https://testfoodsite.wordpress.com", + "user_can_manage": false, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": false, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": true, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": false, + "remove_users": true, + "own_site": true, + "view_stats": true, + "activate_plugins": true, + "update_plugins": false, + "export": true, + "import": true + }, + "jetpack": false, + "jetpack_connection": false, + "is_multisite": true, + "site_owner": 200001006, + "post_count": 0, + "subscribers_count": 1, + "lang": "en", + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": true, + "is_vip": false, + "is_following": true, + "organization_id": 0, + "options": { + "timezone": "America/Los_Angeles", + "gmt_offset": -7, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": false, + "login_url": "https://testfoodsite.wordpress.com/wp-login.php", + "admin_url": "https://testfoodsite.wordpress.com/wp-admin/", + "is_mapped_domain": false, + "is_redirect": false, + "unmapped_url": "https://testfoodsite.wordpress.com", + "featured_images_enabled": true, + "theme_slug": "pub/twentytwentyfour", + "theme_errors": [], + "header_image": false, + "background_color": false, + "image_default_link_type": "none", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "0", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc" + ], + "show_on_front": "page", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.2-alpha-60439", + "created_at": "2024-09-17T19:00:58+00:00", + "updated_at": "2024-09-17T19:02:50+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "u5v6w7x8y9", + "jetpack_frame_nonce": "u5v6w7x8y9", + "page_on_front": 0, + "page_for_posts": 6, + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": null, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": null, + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": null, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "site_creation_flow": "mobile", + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": null, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": null, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "p2_thumbnail_elements": null, - "plan": { - "product_id": 1, - "product_slug": "free_plan", - "product_name_short": "Free", - "expired": false, - "user_is_owner": false, - "is_free": true, - "features": { - "active": [ - "akismet", - "donations", - "free-blog", - "recurring-payments", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "stats-basic", - "support" - ] - } - }, - "products": [], - "zendesk_site_meta": { - "plan": "free", - "addon": [] + "launchpad_screen": false, + "launchpad_checklist_tasks_statuses": { + "add_new_page": true, + "site_theme_selected": true, + "front_page_updated": true, + "site_title": true, + "setup_free": true, + "setup_general": true }, - "jetpack_modules": null, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001006", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001006\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001006\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001006\/comments\/", - "xmlrpc": "https:\/\/testblog6520.wordpress.com\/xmlrpc.php" - } - }, - "quota": { - "space_allowed": 3221225472, - "space_used": 226099, - "percent_used": 0.007019036759932836, - "space_available": 3220999373 + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": null, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false + }, + "p2_thumbnail_elements": null, + "plan": { + "product_id": 1, + "product_slug": "free_plan", + "product_name_short": "Free", + "expired": false, + "user_is_owner": false, + "is_free": true, + "features": { + "active": [ + "akismet", + "donations", + "free-blog", + "recurring-payments", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "stats-basic", + "support" + ] + } + }, + "products": [], + "zendesk_site_meta": { + "plan": "free", + "addon": [] + }, + "jetpack_modules": null, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001005", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001005/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001005/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001005/comments/", + "xmlrpc": "https://testfoodsite.wordpress.com/xmlrpc.php" + } + }, + "quota": { + "space_allowed": 3221225472, + "space_used": 0, + "percent_used": 0, + "space_available": 3221225472 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": true, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "user_interactions": [ + "2024-09-17" + ], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null + }, + { + "ID": 100001006, + "slug": "testblog6520.wordpress.com", + "name": "Test Blog Title", + "description": "", + "URL": "https://testblog6520.wordpress.com", + "user_can_manage": false, + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": false, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": true, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": false, + "remove_users": true, + "own_site": true, + "view_stats": true, + "activate_plugins": true, + "update_plugins": false, + "export": true, + "import": true + }, + "jetpack": false, + "jetpack_connection": false, + "is_multisite": true, + "site_owner": 200001006, + "post_count": 0, + "subscribers_count": 1, + "lang": "en", + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": true, + "is_vip": false, + "is_following": true, + "organization_id": 0, + "options": { + "timezone": "America/Edmonton", + "gmt_offset": -6, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": false, + "login_url": "https://testblog6520.wordpress.com/wp-login.php", + "admin_url": "https://testblog6520.wordpress.com/wp-admin/", + "is_mapped_domain": false, + "is_redirect": false, + "unmapped_url": "https://testblog6520.wordpress.com", + "featured_images_enabled": true, + "theme_slug": "pub/quadrat-white", + "theme_errors": [], + "header_image": false, + "background_color": false, + "image_default_link_type": "none", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "0", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc" + ], + "show_on_front": "page", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.2-alpha-60439", + "created_at": "2024-07-22T21:42:07+00:00", + "updated_at": "2024-07-22T21:42:07+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "z9a8b7c6d5", + "jetpack_frame_nonce": "z9a8b7c6d5", + "page_on_front": 2, + "page_for_posts": 0, + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": null, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": null, + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": null, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "site_creation_flow": "mobile", + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": null, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false + }, + "reminders_time": "10.00", + "is_potential_blogging_site": false, + "prompts_card_opted_in": false }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false + "launchpad_screen": false, + "launchpad_checklist_tasks_statuses": { + "site_theme_selected": true }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": true, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "user_interactions": [ - "2024-07-22" - ], - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false, - "is_garden": false, - "garden_name": null, - "garden_partner": null, - "garden_is_provisioned": null - } - ] - } + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": null, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false + }, + "p2_thumbnail_elements": null, + "plan": { + "product_id": 1, + "product_slug": "free_plan", + "product_name_short": "Free", + "expired": false, + "user_is_owner": false, + "is_free": true, + "features": { + "active": [ + "akismet", + "donations", + "free-blog", + "recurring-payments", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "stats-basic", + "support" + ] + } + }, + "products": [], + "zendesk_site_meta": { + "plan": "free", + "addon": [] + }, + "jetpack_modules": null, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001006", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001006/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001006/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001006/comments/", + "xmlrpc": "https://testblog6520.wordpress.com/xmlrpc.php" + } + }, + "quota": { + "space_allowed": 3221225472, + "space_used": 226099, + "percent_used": 0.007019036759932836, + "space_available": 3220999373 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": true, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "user_interactions": [ + "2024-07-22" + ], + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false, + "is_garden": false, + "garden_name": null, + "garden_partner": null, + "garden_is_provisioned": null + } + ] +} diff --git a/wp_api/tests/wpcom/sites/v1.2-sites-01.json b/wp_api/tests/wpcom/sites/v1.2-sites-01.json index 72acd0870..a94393ed4 100644 --- a/wp_api/tests/wpcom/sites/v1.2-sites-01.json +++ b/wp_api/tests/wpcom/sites/v1.2-sites-01.json @@ -1,2346 +1,2346 @@ { - "ID": 100001003, - "name": "Test User 2", - "description": "Just another WordPress.com weblog", - "URL": "https:\/\/testuser2.wordpress.com", - "capabilities": { - "edit_pages": true, - "edit_posts": true, - "edit_others_posts": true, - "edit_others_pages": true, - "delete_posts": true, - "delete_others_posts": true, - "edit_theme_options": true, - "edit_users": false, - "list_users": true, - "manage_categories": true, - "manage_options": true, - "moderate_comments": true, - "activate_wordads": true, - "promote_users": true, - "publish_posts": true, - "upload_files": true, - "delete_users": false, - "remove_users": true, - "own_site": true, - "view_stats": true, - "activate_plugins": true, - "update_plugins": false, - "export": true, - "import": true - }, - "jetpack": false, - "jetpack_connection": false, - "is_multisite": true, - "site_owner": 200001003, - "post_count": 31, - "subscribers_count": 30, - "locale": "en", - "icon": { - "img": "https:\/\/testuser2.wordpress.com\/wp-content\/uploads\/2019\/02\/cropped-wordpress-logotype-wmark-1.png?w=96", - "ico": "https:\/\/testuser2.wordpress.com\/wp-content\/uploads\/2019\/02\/cropped-wordpress-logotype-wmark-1.png?w=96", - "media_id": 300001001 - }, - "logo": { - "id": 0, - "sizes": [], - "url": "" - }, - "visible": true, - "is_private": false, - "is_coming_soon": false, - "single_user_site": false, - "is_vip": false, - "is_following": true, - "organization_id": 0, - "options": { - "timezone": "America\/Edmonton", - "gmt_offset": -6, - "blog_public": 1, - "videopress_enabled": false, - "upgraded_filetypes_enabled": true, - "login_url": "https:\/\/testuser2.wordpress.com\/wp-login.php", - "admin_url": "https:\/\/testuser2.wordpress.com\/wp-admin\/", - "is_mapped_domain": false, - "is_redirect": false, - "unmapped_url": "https:\/\/testuser2.wordpress.com", - "featured_images_enabled": true, - "theme_slug": "pub\/independent-publisher-2", - "theme_errors": [], - "header_image": false, - "background_color": false, - "image_default_link_type": "file", - "image_thumbnail_width": 150, - "image_thumbnail_height": 150, - "image_thumbnail_crop": 0, - "image_medium_width": 300, - "image_medium_height": 300, - "image_large_width": 1024, - "image_large_height": 1024, - "permalink_structure": "\/%year%\/%monthnum%\/%day%\/%postname%\/", - "post_formats": [], - "default_post_format": "standard", - "default_category": 1, - "allowed_file_types": [ - "jpg", - "jpeg", - "png", - "gif", - "pdf", - "doc", - "ppt", - "odt", - "pptx", - "docx", - "pps", - "ppsx", - "xls", - "xlsx", - "key", - "webp", - "heic", - "heif", - "asc", - "mp3", - "m4a", - "wav", - "ogg", - "zip", - "txt", - "tiff", - "bmp" - ], - "show_on_front": "posts", - "default_likes_enabled": true, - "default_sharing_status": true, - "default_comment_status": true, - "default_ping_status": true, - "software_version": "6.8.2-alpha-60439", - "created_at": "2007-08-21T22:35:40+00:00", - "updated_at": "2020-09-08T23:04:45+00:00", - "wordads": false, - "publicize_permanently_disabled": false, - "frame_nonce": "k1l2m3n4o5", - "jetpack_frame_nonce": "k1l2m3n4o5", - "headstart": false, - "headstart_is_fresh": false, - "ak_vp_bundle_enabled": null, - "advanced_seo_front_page_description": "", - "advanced_seo_title_formats": [], - "verification_services_codes": null, - "podcasting_archive": null, - "is_domain_only": false, - "is_automated_transfer": false, - "is_wpcom_atomic": false, - "is_wpcom_store": false, - "woocommerce_is_active": false, - "editing_toolkit_is_active": true, - "design_type": null, - "site_goals": [], - "site_segment": null, - "import_engine": null, - "is_pending_plan": false, - "is_wpforteams_site": false, - "p2_hub_blog_id": null, - "is_cloud_eligible": false, - "anchor_podcast": false, - "was_created_with_blank_canvas_design": false, - "videopress_storage_used": 0, - "is_difm_lite_in_progress": false, - "is_summer_special_2025": false, - "site_intent": "", - "site_partner_bundle": "", - "onboarding_segment": "", - "site_vertical_id": null, - "blogging_prompts_settings": { - "prompts_reminders_opted_in": false, - "reminders_days": { - "monday": false, - "tuesday": false, - "wednesday": false, - "thursday": false, - "friday": false, - "saturday": false, - "sunday": false - }, - "reminders_time": "10.00", - "is_potential_blogging_site": true, - "prompts_card_opted_in": true - }, - "launchpad_screen": "off", - "launchpad_checklist_tasks_statuses": { - "first_post_published": true, - "site_title": true, - "post_sharing_enabled": true, - "site_launched": true, - "verify_email": true, - "mobile_app_installed": true, - "subscribers_added": true + "ID": 100001003, + "name": "Test User 2", + "description": "Just another WordPress.com weblog", + "URL": "https://testuser2.wordpress.com", + "capabilities": { + "edit_pages": true, + "edit_posts": true, + "edit_others_posts": true, + "edit_others_pages": true, + "delete_posts": true, + "delete_others_posts": true, + "edit_theme_options": true, + "edit_users": false, + "list_users": true, + "manage_categories": true, + "manage_options": true, + "moderate_comments": true, + "activate_wordads": true, + "promote_users": true, + "publish_posts": true, + "upload_files": true, + "delete_users": false, + "remove_users": true, + "own_site": true, + "view_stats": true, + "activate_plugins": true, + "update_plugins": false, + "export": true, + "import": true + }, + "jetpack": false, + "jetpack_connection": false, + "is_multisite": true, + "site_owner": 200001003, + "post_count": 31, + "subscribers_count": 30, + "locale": "en", + "icon": { + "img": "https://testuser2.wordpress.com/wp-content/uploads/2019/02/cropped-wordpress-logotype-wmark-1.png?w=96", + "ico": "https://testuser2.wordpress.com/wp-content/uploads/2019/02/cropped-wordpress-logotype-wmark-1.png?w=96", + "media_id": 300001001 + }, + "logo": { + "id": 0, + "sizes": [], + "url": "" + }, + "visible": true, + "is_private": false, + "is_coming_soon": false, + "single_user_site": false, + "is_vip": false, + "is_following": true, + "organization_id": 0, + "options": { + "timezone": "America/Edmonton", + "gmt_offset": -6, + "blog_public": 1, + "videopress_enabled": false, + "upgraded_filetypes_enabled": true, + "login_url": "https://testuser2.wordpress.com/wp-login.php", + "admin_url": "https://testuser2.wordpress.com/wp-admin/", + "is_mapped_domain": false, + "is_redirect": false, + "unmapped_url": "https://testuser2.wordpress.com", + "featured_images_enabled": true, + "theme_slug": "pub/independent-publisher-2", + "theme_errors": [], + "header_image": false, + "background_color": false, + "image_default_link_type": "file", + "image_thumbnail_width": 150, + "image_thumbnail_height": 150, + "image_thumbnail_crop": 0, + "image_medium_width": 300, + "image_medium_height": 300, + "image_large_width": 1024, + "image_large_height": 1024, + "permalink_structure": "/%year%/%monthnum%/%day%/%postname%/", + "post_formats": [], + "default_post_format": "standard", + "default_category": 1, + "allowed_file_types": [ + "jpg", + "jpeg", + "png", + "gif", + "pdf", + "doc", + "ppt", + "odt", + "pptx", + "docx", + "pps", + "ppsx", + "xls", + "xlsx", + "key", + "webp", + "heic", + "heif", + "asc", + "mp3", + "m4a", + "wav", + "ogg", + "zip", + "txt", + "tiff", + "bmp" + ], + "show_on_front": "posts", + "default_likes_enabled": true, + "default_sharing_status": true, + "default_comment_status": true, + "default_ping_status": true, + "software_version": "6.8.2-alpha-60439", + "created_at": "2007-08-21T22:35:40+00:00", + "updated_at": "2020-09-08T23:04:45+00:00", + "wordads": false, + "publicize_permanently_disabled": false, + "frame_nonce": "k1l2m3n4o5", + "jetpack_frame_nonce": "k1l2m3n4o5", + "headstart": false, + "headstart_is_fresh": false, + "ak_vp_bundle_enabled": null, + "advanced_seo_front_page_description": "", + "advanced_seo_title_formats": [], + "verification_services_codes": null, + "podcasting_archive": null, + "is_domain_only": false, + "is_automated_transfer": false, + "is_wpcom_atomic": false, + "is_wpcom_store": false, + "woocommerce_is_active": false, + "editing_toolkit_is_active": true, + "design_type": null, + "site_goals": [], + "site_segment": null, + "import_engine": null, + "is_pending_plan": false, + "is_wpforteams_site": false, + "p2_hub_blog_id": null, + "is_cloud_eligible": false, + "anchor_podcast": false, + "was_created_with_blank_canvas_design": false, + "videopress_storage_used": 0, + "is_difm_lite_in_progress": false, + "is_summer_special_2025": false, + "site_intent": "", + "site_partner_bundle": "", + "onboarding_segment": "", + "site_vertical_id": null, + "blogging_prompts_settings": { + "prompts_reminders_opted_in": false, + "reminders_days": { + "monday": false, + "tuesday": false, + "wednesday": false, + "thursday": false, + "friday": false, + "saturday": false, + "sunday": false }, - "migration_source_site_domain": "", - "wpcom_production_blog_id": 0, - "wpcom_staging_blog_ids": [], - "can_blaze": true, - "wpcom_site_setup": false, - "is_commercial": false, - "is_commercial_reasons": [], - "wpcom_admin_interface": "", - "wpcom_classic_early_release": false - }, - "plan": { - "product_id": 1009, - "product_slug": "personal-bundle", - "product_name": "WordPress.com Personal", - "product_name_short": "Personal", - "expired": false, - "billing_period": "Yearly", - "user_is_owner": true, - "is_free": false, - "license_key": "", - "subscribed_date": "2019-08-29 16:38:05", - "features": { - "active": [ - "ai-assistant", - "akismet", - "core\/audio", - "custom-domain", - "domain-mapping", - "donations", - "field-file", - "multistep-form", - "free-blog", - "full-activity-log", - "no-adverts\/no-adverts.php", - "payments", - "premium-content\/container", - "personal-themes", - "recurring-payments", - "set-primary-custom-domain", - "social-admin-page", - "social-connections-management", - "social-editor-preview", - "social-share-status", - "social-image-auto-convert", - "space", - "space-upgraded-storage", - "stats-free", - "stats-basic", - "stats-paid", - "subscriber-unlimited-imports", - "subscription-gifting", - "support", - "upgraded_upload_filetypes" - ], - "available": { - "ai-assistant": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "big-sky": [ - "value_bundle", - "business-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "wp_com_hundred_year_bundle_centennially" - ], - "calendly": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "cloudflare-analytics": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "cloudflare-cdn": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "core\/audio": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "core\/cover": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "core\/video": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "credit-vouchers": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "custom-design": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "custom-domain": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "domain-mapping": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "field-file": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "multistep-form": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "full-activity-log": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "global-styles": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "google-analytics": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "live_support": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-2y", - "pro-plan" - ], - "no-adverts\/no-adverts.php": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "opentable": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "payments": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "premium-content\/container": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "personal-themes": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "premium-themes": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "private_whois": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "republicize": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "send-a-message": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "set-primary-custom-domain": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "simple-payments": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "space-upgraded-storage": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "stats-paid": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "stats-commercial": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "subscriber-unlimited-imports": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "subscription-gifting": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "upgraded_upload_filetypes": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "personal-bundle-2y", - "personal-bundle-3y", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "blogger-bundle", - "blogger-bundle-2y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "personal-bundle-monthly", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "upload-audio-files": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "upload-video-files": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "video-hosting": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "videopress": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "videopress\/video": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "whatsapp-button": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "wordads": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "wordads-jetpack": [ - "value_bundle", - "business-bundle", - "ecommerce-bundle", - "value_bundle-2y", - "value_bundle-3y", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "value_bundle_monthly", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "ai-seo-enhancer": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "ad-credit": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "advanced-seo": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "antispam": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "atomic": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "backups": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "restore": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "cdn": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "search": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "concierge": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wp_com_hundred_year_bundle_centennially" - ], - "concierge-business": [ - "business-bundle", - "business-bundle-2y", - "business-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "wp_com_hundred_year_bundle_centennially" - ], - "copy-site": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wp_com_hundred_year_bundle_centennially" - ], - "edit-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "edit-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "email-forwards-extended-limit": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "google-my-business": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "install-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "install-purchased-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "install-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "jetpack-dashboard": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "list-installed-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "starter-plan", - "pro-plan" - ], - "manage-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "no-wpcom-branding": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "options-permalink": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "partner-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "community-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "woocommerce-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "sensei-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "priority_support": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "real-time-backups": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "scan": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "scan-managed": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "scheduled-updates": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "security-settings": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "seo-preview-tools": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "sftp": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "ssh": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "site-preview-links": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "social-enhanced-publishing": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "social-image-generator": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "staging-sites": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "studio-sync": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "wp_com_hundred_year_bundle_centennially" - ], - "upload-plugins": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "upload-themes": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "woop": [ - "business-bundle", - "ecommerce-bundle", - "business-bundle-2y", - "business-bundle-3y", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "business-bundle-monthly", - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly", - "pro-plan-monthly", - "pro-plan-2y", - "wp_com_hundred_year_bundle_centennially", - "pro-plan" - ], - "ecommerce-managed-plugins": [ - "ecommerce-bundle", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "ecommerce-bundle-monthly", - "ecommerce-trial-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly" - ], - "ecommerce-managed-plugins-medium": [ - "ecommerce-bundle", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-medium-bundle-yearly" - ], - "mailpoet-business": [ - "ecommerce-bundle", - "ecommerce-bundle-2y", - "ecommerce-bundle-3y", - "ecommerce-bundle-monthly", - "wooexpress-medium-bundle-monthly", - "wooexpress-small-bundle-monthly", - "wooexpress-medium-bundle-yearly", - "wooexpress-small-bundle-yearly" - ], - "blog-domain-only": [ - "blogger-bundle", - "blogger-bundle-2y" - ], - "reduced-email-priority": [ - "wp_bundle_migration_trial_monthly", - "wp_bundle_hosting_trial_monthly", - "ecommerce-trial-bundle-monthly" - ], - "ecommerce-managed-plugins-trial": [ - "ecommerce-trial-bundle-monthly" - ], - "install-woo-onboarding-plugins": [ - "ecommerce-trial-bundle-monthly" - ], - "ecommerce-managed-plugins-small": [ - "wooexpress-small-bundle-monthly", - "wooexpress-small-bundle-yearly" - ], - "artificial-50gb-storage-limit": [ - "pro-plan-monthly", - "pro-plan-2y", - "pro-plan" - ], - "archive-content": [ - "wp_com_hundred_year_bundle_centennially" - ], - "legacy-contact": [ - "wp_com_hundred_year_bundle_centennially" - ], - "locked-mode": [ - "wp_com_hundred_year_bundle_centennially" - ] - } - } + "reminders_time": "10.00", + "is_potential_blogging_site": true, + "prompts_card_opted_in": true }, - "products": [], - "zendesk_site_meta": { - "plan": "personal", - "addon": [] + "launchpad_screen": "off", + "launchpad_checklist_tasks_statuses": { + "first_post_published": true, + "site_title": true, + "post_sharing_enabled": true, + "site_launched": true, + "verify_email": true, + "mobile_app_installed": true, + "subscribers_added": true }, - "jetpack_modules": null, - "meta": { - "links": { - "self": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003", - "help": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/help", - "posts": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/posts\/", - "comments": "https:\/\/public-api.wordpress.com\/rest\/v1.1\/sites\/100001003\/comments\/", - "xmlrpc": "https:\/\/testuser2.wordpress.com\/xmlrpc.php", - "site_icon": "https:\/\/public-api.wordpress.com\/rest\/v1.2\/sites\/100001003\/media\/300001001" + "migration_source_site_domain": "", + "wpcom_production_blog_id": 0, + "wpcom_staging_blog_ids": [], + "can_blaze": true, + "wpcom_site_setup": false, + "is_commercial": false, + "is_commercial_reasons": [], + "wpcom_admin_interface": "", + "wpcom_classic_early_release": false + }, + "plan": { + "product_id": 1009, + "product_slug": "personal-bundle", + "product_name": "WordPress.com Personal", + "product_name_short": "Personal", + "expired": false, + "billing_period": "Yearly", + "user_is_owner": true, + "is_free": false, + "license_key": "", + "subscribed_date": "2019-08-29 16:38:05", + "features": { + "active": [ + "ai-assistant", + "akismet", + "core/audio", + "custom-domain", + "domain-mapping", + "donations", + "field-file", + "multistep-form", + "free-blog", + "full-activity-log", + "no-adverts/no-adverts.php", + "payments", + "premium-content/container", + "personal-themes", + "recurring-payments", + "set-primary-custom-domain", + "social-admin-page", + "social-connections-management", + "social-editor-preview", + "social-share-status", + "social-image-auto-convert", + "space", + "space-upgraded-storage", + "stats-free", + "stats-basic", + "stats-paid", + "subscriber-unlimited-imports", + "subscription-gifting", + "support", + "upgraded_upload_filetypes" + ], + "available": { + "ai-assistant": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "big-sky": [ + "value_bundle", + "business-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "wp_com_hundred_year_bundle_centennially" + ], + "calendly": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "cloudflare-analytics": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "cloudflare-cdn": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "core/audio": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "core/cover": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "core/video": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "credit-vouchers": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "custom-design": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "custom-domain": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "domain-mapping": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "field-file": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "multistep-form": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "full-activity-log": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "global-styles": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "google-analytics": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "live_support": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-2y", + "pro-plan" + ], + "no-adverts/no-adverts.php": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "opentable": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "payments": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "premium-content/container": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "personal-themes": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "premium-themes": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "private_whois": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "republicize": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "send-a-message": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "set-primary-custom-domain": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "simple-payments": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "space-upgraded-storage": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "stats-paid": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "stats-commercial": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "subscriber-unlimited-imports": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "subscription-gifting": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "upgraded_upload_filetypes": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "personal-bundle-2y", + "personal-bundle-3y", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "blogger-bundle", + "blogger-bundle-2y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "personal-bundle-monthly", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "upload-audio-files": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "upload-video-files": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "video-hosting": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "videopress": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "videopress/video": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "whatsapp-button": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "wordads": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "wordads-jetpack": [ + "value_bundle", + "business-bundle", + "ecommerce-bundle", + "value_bundle-2y", + "value_bundle-3y", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "value_bundle_monthly", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "ai-seo-enhancer": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "ad-credit": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "advanced-seo": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "antispam": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "atomic": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "backups": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "restore": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "cdn": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "search": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "concierge": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wp_com_hundred_year_bundle_centennially" + ], + "concierge-business": [ + "business-bundle", + "business-bundle-2y", + "business-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "wp_com_hundred_year_bundle_centennially" + ], + "copy-site": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wp_com_hundred_year_bundle_centennially" + ], + "edit-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "edit-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "email-forwards-extended-limit": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "google-my-business": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "install-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "install-purchased-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "install-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "jetpack-dashboard": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "list-installed-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "starter-plan", + "pro-plan" + ], + "manage-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "no-wpcom-branding": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "options-permalink": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "partner-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "community-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "woocommerce-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "sensei-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "priority_support": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "real-time-backups": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "scan": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "scan-managed": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "scheduled-updates": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "security-settings": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "seo-preview-tools": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "sftp": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "ssh": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "site-preview-links": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "social-enhanced-publishing": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "social-image-generator": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "staging-sites": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "studio-sync": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "wp_com_hundred_year_bundle_centennially" + ], + "upload-plugins": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "upload-themes": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "woop": [ + "business-bundle", + "ecommerce-bundle", + "business-bundle-2y", + "business-bundle-3y", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "business-bundle-monthly", + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly", + "pro-plan-monthly", + "pro-plan-2y", + "wp_com_hundred_year_bundle_centennially", + "pro-plan" + ], + "ecommerce-managed-plugins": [ + "ecommerce-bundle", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "ecommerce-bundle-monthly", + "ecommerce-trial-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly" + ], + "ecommerce-managed-plugins-medium": [ + "ecommerce-bundle", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-medium-bundle-yearly" + ], + "mailpoet-business": [ + "ecommerce-bundle", + "ecommerce-bundle-2y", + "ecommerce-bundle-3y", + "ecommerce-bundle-monthly", + "wooexpress-medium-bundle-monthly", + "wooexpress-small-bundle-monthly", + "wooexpress-medium-bundle-yearly", + "wooexpress-small-bundle-yearly" + ], + "blog-domain-only": [ + "blogger-bundle", + "blogger-bundle-2y" + ], + "reduced-email-priority": [ + "wp_bundle_migration_trial_monthly", + "wp_bundle_hosting_trial_monthly", + "ecommerce-trial-bundle-monthly" + ], + "ecommerce-managed-plugins-trial": [ + "ecommerce-trial-bundle-monthly" + ], + "install-woo-onboarding-plugins": [ + "ecommerce-trial-bundle-monthly" + ], + "ecommerce-managed-plugins-small": [ + "wooexpress-small-bundle-monthly", + "wooexpress-small-bundle-yearly" + ], + "artificial-50gb-storage-limit": [ + "pro-plan-monthly", + "pro-plan-2y", + "pro-plan" + ], + "archive-content": [ + "wp_com_hundred_year_bundle_centennially" + ], + "legacy-contact": [ + "wp_com_hundred_year_bundle_centennially" + ], + "locked-mode": [ + "wp_com_hundred_year_bundle_centennially" + ] } - }, - "quota": { - "space_allowed": 6442450944, - "space_used": 131662441, - "percent_used": 2.0436700588713093, - "space_available": 6310788503 - }, - "launch_status": false, - "site_migration": { - "is_complete": false, - "in_progress": false - }, - "is_fse_active": false, - "is_fse_eligible": false, - "is_core_site_editor_enabled": false, - "is_wpcom_atomic": false, - "is_wpcom_staging_site": false, - "was_ecommerce_trial": false, - "was_upgraded_from_trial": false, - "was_migration_trial": false, - "was_hosting_trial": false, - "is_deleted": false, - "is_a4a_client": false, - "is_a4a_dev_site": false - } + } + }, + "products": [], + "zendesk_site_meta": { + "plan": "personal", + "addon": [] + }, + "jetpack_modules": null, + "meta": { + "links": { + "self": "https://public-api.wordpress.com/rest/v1.2/sites/100001003", + "help": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/help", + "posts": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/posts/", + "comments": "https://public-api.wordpress.com/rest/v1.1/sites/100001003/comments/", + "xmlrpc": "https://testuser2.wordpress.com/xmlrpc.php", + "site_icon": "https://public-api.wordpress.com/rest/v1.2/sites/100001003/media/300001001" + } + }, + "quota": { + "space_allowed": 6442450944, + "space_used": 131662441, + "percent_used": 2.0436700588713093, + "space_available": 6310788503 + }, + "launch_status": false, + "site_migration": { + "is_complete": false, + "in_progress": false + }, + "is_fse_active": false, + "is_fse_eligible": false, + "is_core_site_editor_enabled": false, + "is_wpcom_atomic": false, + "is_wpcom_staging_site": false, + "was_ecommerce_trial": false, + "was_upgraded_from_trial": false, + "was_migration_trial": false, + "was_hosting_trial": false, + "is_deleted": false, + "is_a4a_client": false, + "is_a4a_dev_site": false +} diff --git a/wp_api/tests/wpcom/stats_city_views/no-summary-01.json b/wp_api/tests/wpcom/stats_city_views/no-summary-01.json index d17a3b562..a6e40f85e 100644 --- a/wp_api/tests/wpcom/stats_city_views/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_city_views/no-summary-01.json @@ -1,196 +1,196 @@ { - "date": "2026-02-05", - "days": { - "2026-02-05": { - "views": [ - { - "location": "Seattle", - "views": 72, - "country_code": "US", - "coordinates": { - "latitude": "47.604309", - "longitude": "-122.329845" - } - }, - { - "location": "Madrid", - "views": 50, - "country_code": "ES", - "coordinates": { - "latitude": "40.416818", - "longitude": "-3.684733" - } - }, - { - "location": "London", - "views": 38, - "country_code": "GB", - "coordinates": { - "latitude": "51.50853", - "longitude": "-0.12574" - } - }, - { - "location": "Singapore", - "views": 34, - "country_code": "SG", - "coordinates": { - "latitude": "1.289987", - "longitude": "103.850281" - } - }, - { - "location": "Sydney", - "views": 30, - "country_code": "AU", - "coordinates": { - "latitude": "-33.86778", - "longitude": "151.207052" - } - } - ], - "other_views": 168, - "total_views": 505 + "date": "2026-02-05", + "days": { + "2026-02-05": { + "views": [ + { + "location": "Seattle", + "views": 72, + "country_code": "US", + "coordinates": { + "latitude": "47.604309", + "longitude": "-122.329845" + } }, - "2026-02-04": { - "views": [ - { - "location": "Seattle", - "views": 123, - "country_code": "US", - "coordinates": { - "latitude": "47.604309", - "longitude": "-122.329845" - } - }, - { - "location": "Chicago", - "views": 121, - "country_code": "US", - "coordinates": { - "latitude": "41.875772", - "longitude": "-87.620606" - } - }, - { - "location": "London", - "views": 85, - "country_code": "GB", - "coordinates": { - "latitude": "51.50853", - "longitude": "-0.12574" - } - }, - { - "location": "Toronto", - "views": 80, - "country_code": "CA", - "coordinates": { - "latitude": "43.653661", - "longitude": "-79.382924" - } - }, - { - "location": "Madrid", - "views": 74, - "country_code": "ES", - "coordinates": { - "latitude": "40.416818", - "longitude": "-3.684733" - } - } - ], - "other_views": 600, - "total_views": 1382 + { + "location": "Madrid", + "views": 50, + "country_code": "ES", + "coordinates": { + "latitude": "40.416818", + "longitude": "-3.684733" + } }, - "2026-02-03": { - "views": [ - { - "location": "Seattle", - "views": 168, - "country_code": "US", - "coordinates": { - "latitude": "47.604309", - "longitude": "-122.329845" - } - }, - { - "location": "Toronto", - "views": 115, - "country_code": "CA", - "coordinates": { - "latitude": "43.653661", - "longitude": "-79.382924" - } - }, - { - "location": "Chicago", - "views": 93, - "country_code": "US", - "coordinates": { - "latitude": "41.875772", - "longitude": "-87.620606" - } - }, - { - "location": "Ashburn", - "views": 91, - "country_code": "US", - "coordinates": { - "latitude": "39.039474", - "longitude": "-77.491809" - } - }, - { - "location": "New York City", - "views": 80, - "country_code": "US", - "coordinates": { - "latitude": "40.713192", - "longitude": "-74.006065" - } - } - ], - "other_views": 505, - "total_views": 1363 + { + "location": "London", + "views": 38, + "country_code": "GB", + "coordinates": { + "latitude": "51.50853", + "longitude": "-0.12574" + } + }, + { + "location": "Singapore", + "views": 34, + "country_code": "SG", + "coordinates": { + "latitude": "1.289987", + "longitude": "103.850281" + } + }, + { + "location": "Sydney", + "views": 30, + "country_code": "AU", + "coordinates": { + "latitude": "-33.86778", + "longitude": "151.207052" + } } + ], + "other_views": 168, + "total_views": 505 }, - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" + "2026-02-04": { + "views": [ + { + "location": "Seattle", + "views": 123, + "country_code": "US", + "coordinates": { + "latitude": "47.604309", + "longitude": "-122.329845" + } + }, + { + "location": "Chicago", + "views": 121, + "country_code": "US", + "coordinates": { + "latitude": "41.875772", + "longitude": "-87.620606" + } + }, + { + "location": "London", + "views": 85, + "country_code": "GB", + "coordinates": { + "latitude": "51.50853", + "longitude": "-0.12574" + } }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" + { + "location": "Toronto", + "views": 80, + "country_code": "CA", + "coordinates": { + "latitude": "43.653661", + "longitude": "-79.382924" + } + }, + { + "location": "Madrid", + "views": 74, + "country_code": "ES", + "coordinates": { + "latitude": "40.416818", + "longitude": "-3.684733" + } + } + ], + "other_views": 600, + "total_views": 1382 + }, + "2026-02-03": { + "views": [ + { + "location": "Seattle", + "views": 168, + "country_code": "US", + "coordinates": { + "latitude": "47.604309", + "longitude": "-122.329845" + } }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" + { + "location": "Toronto", + "views": 115, + "country_code": "CA", + "coordinates": { + "latitude": "43.653661", + "longitude": "-79.382924" + } }, - "SG": { - "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", - "country_full": "Singapore", - "map_region": "035" + { + "location": "Chicago", + "views": 93, + "country_code": "US", + "coordinates": { + "latitude": "41.875772", + "longitude": "-87.620606" + } }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" + { + "location": "Ashburn", + "views": 91, + "country_code": "US", + "coordinates": { + "latitude": "39.039474", + "longitude": "-77.491809" + } }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" + { + "location": "New York City", + "views": 80, + "country_code": "US", + "coordinates": { + "latitude": "40.713192", + "longitude": "-74.006065" + } } + ], + "other_views": 505, + "total_views": 1363 + } + }, + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" + }, + "SG": { + "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", + "country_full": "Singapore", + "map_region": "035" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" } + } } diff --git a/wp_api/tests/wpcom/stats_city_views/summarized-01-day.json b/wp_api/tests/wpcom/stats_city_views/summarized-01-day.json index d3b4f0753..66635cc1c 100644 --- a/wp_api/tests/wpcom/stats_city_views/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_city_views/summarized-01-day.json @@ -1,161 +1,161 @@ { - "date": "2026-02-05", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" - }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" - }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" - }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" - }, - "IT": { - "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", - "country_full": "Italy", - "map_region": "039" - }, - "BR": { - "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", - "country_full": "Brazil", - "map_region": "005" - }, - "NL": { - "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", - "country_full": "Netherlands", - "map_region": "155" - }, - "AT": { - "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", - "country_full": "Austria", - "map_region": "155" - }, - "IN": { - "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", - "country_full": "India", - "map_region": "034" - } + "date": "2026-02-05", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" + }, + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" }, - "summary": { - "views": [ - { - "location": "Seattle", - "views": 598, - "country_code": "US", - "coordinates": { - "latitude": "47.604309", - "longitude": "-122.329845" - } - }, - { - "location": "Toronto", - "views": 422, - "country_code": "CA", - "coordinates": { - "latitude": "43.653661", - "longitude": "-79.382924" - } - }, - { - "location": "New York City", - "views": 413, - "country_code": "US", - "coordinates": { - "latitude": "40.713192", - "longitude": "-74.006065" - } - }, - { - "location": "Chicago", - "views": 395, - "country_code": "US", - "coordinates": { - "latitude": "41.875772", - "longitude": "-87.620606" - } - }, - { - "location": "Madrid", - "views": 327, - "country_code": "ES", - "coordinates": { - "latitude": "40.416818", - "longitude": "-3.684733" - } - }, - { - "location": "Sydney", - "views": 321, - "country_code": "AU", - "coordinates": { - "latitude": "-33.86778", - "longitude": "151.207052" - } - }, - { - "location": "London", - "views": 313, - "country_code": "GB", - "coordinates": { - "latitude": "51.50853", - "longitude": "-0.12574" - } - }, - { - "location": "Milan", - "views": 252, - "country_code": "IT", - "coordinates": { - "latitude": "45.464336", - "longitude": "9.188547" - } - }, - { - "location": "Sao Paulo", - "views": 237, - "country_code": "BR", - "coordinates": { - "latitude": "-23.547121", - "longitude": "-46.637186" - } - }, - { - "location": "Amsterdam", - "views": 226, - "country_code": "NL", - "coordinates": { - "latitude": "52.378502", - "longitude": "4.89998" - } - } - ], - "other_views": 0, - "total_views": 0 + "IT": { + "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", + "country_full": "Italy", + "map_region": "039" + }, + "BR": { + "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", + "country_full": "Brazil", + "map_region": "005" + }, + "NL": { + "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", + "country_full": "Netherlands", + "map_region": "155" + }, + "AT": { + "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", + "country_full": "Austria", + "map_region": "155" + }, + "IN": { + "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", + "country_full": "India", + "map_region": "034" } + }, + "summary": { + "views": [ + { + "location": "Seattle", + "views": 598, + "country_code": "US", + "coordinates": { + "latitude": "47.604309", + "longitude": "-122.329845" + } + }, + { + "location": "Toronto", + "views": 422, + "country_code": "CA", + "coordinates": { + "latitude": "43.653661", + "longitude": "-79.382924" + } + }, + { + "location": "New York City", + "views": 413, + "country_code": "US", + "coordinates": { + "latitude": "40.713192", + "longitude": "-74.006065" + } + }, + { + "location": "Chicago", + "views": 395, + "country_code": "US", + "coordinates": { + "latitude": "41.875772", + "longitude": "-87.620606" + } + }, + { + "location": "Madrid", + "views": 327, + "country_code": "ES", + "coordinates": { + "latitude": "40.416818", + "longitude": "-3.684733" + } + }, + { + "location": "Sydney", + "views": 321, + "country_code": "AU", + "coordinates": { + "latitude": "-33.86778", + "longitude": "151.207052" + } + }, + { + "location": "London", + "views": 313, + "country_code": "GB", + "coordinates": { + "latitude": "51.50853", + "longitude": "-0.12574" + } + }, + { + "location": "Milan", + "views": 252, + "country_code": "IT", + "coordinates": { + "latitude": "45.464336", + "longitude": "9.188547" + } + }, + { + "location": "Sao Paulo", + "views": 237, + "country_code": "BR", + "coordinates": { + "latitude": "-23.547121", + "longitude": "-46.637186" + } + }, + { + "location": "Amsterdam", + "views": 226, + "country_code": "NL", + "coordinates": { + "latitude": "52.378502", + "longitude": "4.89998" + } + } + ], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_city_views/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_city_views/summarized-02-day-with-nulls.json index 28c617894..ac33352fa 100644 --- a/wp_api/tests/wpcom/stats_city_views/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_city_views/summarized-02-day-with-nulls.json @@ -1,44 +1,44 @@ { - "date": "2026-02-05", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "XX": { - "flag_icon": null, - "flat_flag_icon": null, - "country_full": null, - "map_region": null - } + "date": "2026-02-05", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" }, - "summary": { - "views": [ - { - "location": null, - "views": null, - "country_code": null, - "coordinates": null - }, - { - "location": "Seattle", - "views": 100, - "country_code": "US", - "coordinates": { - "latitude": "47.604309", - "longitude": "-122.329845" - } - }, - { - "location": null, - "views": 50, - "country_code": "XX", - "coordinates": null - } - ], - "other_views": 0, - "total_views": 150 + "XX": { + "flag_icon": null, + "flat_flag_icon": null, + "country_full": null, + "map_region": null } + }, + "summary": { + "views": [ + { + "location": null, + "views": null, + "country_code": null, + "coordinates": null + }, + { + "location": "Seattle", + "views": 100, + "country_code": "US", + "coordinates": { + "latitude": "47.604309", + "longitude": "-122.329845" + } + }, + { + "location": null, + "views": 50, + "country_code": "XX", + "coordinates": null + } + ], + "other_views": 0, + "total_views": 150 + } } diff --git a/wp_api/tests/wpcom/stats_city_views/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_city_views/summarized-03-day-empty-response.json index c448ea452..5af3e48c9 100644 --- a/wp_api/tests/wpcom/stats_city_views/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_city_views/summarized-03-day-empty-response.json @@ -1,9 +1,9 @@ { - "date": "2026-02-05", - "country-info": [], - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-02-05", + "country-info": [], + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_city_views/summarized-04-day-empty-null.json b/wp_api/tests/wpcom/stats_city_views/summarized-04-day-empty-null.json index 462d17a07..319b10a44 100644 --- a/wp_api/tests/wpcom/stats_city_views/summarized-04-day-empty-null.json +++ b/wp_api/tests/wpcom/stats_city_views/summarized-04-day-empty-null.json @@ -1,9 +1,9 @@ { - "date": "2026-02-05", - "country-info": null, - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-02-05", + "country-info": null, + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_clicks/no-summary-01.json b/wp_api/tests/wpcom/stats_clicks/no-summary-01.json index 1bd105c32..b896a1fb3 100644 --- a/wp_api/tests/wpcom/stats_clicks/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_clicks/no-summary-01.json @@ -1,24 +1,24 @@ { - "date": "2026-02-18", - "days": { - "2026-02-18": { - "clicks": [], - "other_clicks": 0, - "total_clicks": 0 - }, - "2026-02-11": { - "clicks": [ - { - "icon": "https://secure.gravatar.com/blavatar/example1?s=48", - "url": "https://href.li/?https://example.com/page", - "name": "example.com/page", - "views": 1, - "children": null - } - ], - "other_clicks": 0, - "total_clicks": 1 - } + "date": "2026-02-18", + "days": { + "2026-02-18": { + "clicks": [], + "other_clicks": 0, + "total_clicks": 0 }, - "period": "day" -} \ No newline at end of file + "2026-02-11": { + "clicks": [ + { + "icon": "https://secure.gravatar.com/blavatar/example1?s=48", + "url": "https://href.li/?https://example.com/page", + "name": "example.com/page", + "views": 1, + "children": null + } + ], + "other_clicks": 0, + "total_clicks": 1 + } + }, + "period": "day" +} diff --git a/wp_api/tests/wpcom/stats_clicks/summarized-01-day.json b/wp_api/tests/wpcom/stats_clicks/summarized-01-day.json index e88a7285c..8e5466a89 100644 --- a/wp_api/tests/wpcom/stats_clicks/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_clicks/summarized-01-day.json @@ -1,46 +1,46 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "clicks": [ - { - "icon": "https://secure.gravatar.com/blavatar/example1?s=48", - "url": null, - "name": "href.li", - "views": 17, - "children": [ - { - "url": "https://href.li/?https://www.example.com/page1", - "name": "example.com/page1", - "views": 2 - }, - { - "url": "https://href.li/?https://www.example.com/page2", - "name": "example.com/page2", - "views": 1 - } - ] - }, - { - "icon": "https://secure.gravatar.com/blavatar/example2?s=48", - "url": null, - "name": "example.automattic.com", - "views": 3, - "children": [ - { - "url": "https://example.automattic.com/wp-content/uploads/2019/05/image.png", - "name": "example.automattic.com/wp-content/uploads/2019/05/image.png", - "views": 2 - }, - { - "url": "https://example.automattic.com/wp-content/uploads/2019/05/image2.png", - "name": "example.automattic.com/wp-content/uploads/2019/05/image2.png", - "views": 1 - } - ] - } - ], - "other_clicks": 0, - "total_clicks": 20 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "clicks": [ + { + "icon": "https://secure.gravatar.com/blavatar/example1?s=48", + "url": null, + "name": "href.li", + "views": 17, + "children": [ + { + "url": "https://href.li/?https://www.example.com/page1", + "name": "example.com/page1", + "views": 2 + }, + { + "url": "https://href.li/?https://www.example.com/page2", + "name": "example.com/page2", + "views": 1 + } + ] + }, + { + "icon": "https://secure.gravatar.com/blavatar/example2?s=48", + "url": null, + "name": "example.automattic.com", + "views": 3, + "children": [ + { + "url": "https://example.automattic.com/wp-content/uploads/2019/05/image.png", + "name": "example.automattic.com/wp-content/uploads/2019/05/image.png", + "views": 2 + }, + { + "url": "https://example.automattic.com/wp-content/uploads/2019/05/image2.png", + "name": "example.automattic.com/wp-content/uploads/2019/05/image2.png", + "views": 1 + } + ] + } + ], + "other_clicks": 0, + "total_clicks": 20 + } +} diff --git a/wp_api/tests/wpcom/stats_clicks/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_clicks/summarized-02-day-with-nulls.json index a7ff6e45e..e0fca42f3 100644 --- a/wp_api/tests/wpcom/stats_clicks/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_clicks/summarized-02-day-with-nulls.json @@ -1,35 +1,35 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "clicks": [ - { - "icon": null, - "url": null, - "name": null, - "views": null, - "children": null - }, - { - "icon": "https://example.com/icon.png", - "url": "https://example.com", - "name": "example.com", - "views": 5, - "children": [ - { - "url": null, - "name": null, - "views": null - }, - { - "url": "https://example.com/page", - "name": "example.com/page", - "views": 3 - } - ] - } - ], - "other_clicks": 0, - "total_clicks": 5 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "clicks": [ + { + "icon": null, + "url": null, + "name": null, + "views": null, + "children": null + }, + { + "icon": "https://example.com/icon.png", + "url": "https://example.com", + "name": "example.com", + "views": 5, + "children": [ + { + "url": null, + "name": null, + "views": null + }, + { + "url": "https://example.com/page", + "name": "example.com/page", + "views": 3 + } + ] + } + ], + "other_clicks": 0, + "total_clicks": 5 + } +} diff --git a/wp_api/tests/wpcom/stats_clicks/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_clicks/summarized-03-day-empty-response.json index 44d495870..e095d3881 100644 --- a/wp_api/tests/wpcom/stats_clicks/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_clicks/summarized-03-day-empty-response.json @@ -1,9 +1,9 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "clicks": [], - "other_clicks": 0, - "total_clicks": 0 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "clicks": [], + "other_clicks": 0, + "total_clicks": 0 + } +} diff --git a/wp_api/tests/wpcom/stats_country_views/no-summary-01.json b/wp_api/tests/wpcom/stats_country_views/no-summary-01.json index 2b7bc6474..814f51f5f 100644 --- a/wp_api/tests/wpcom/stats_country_views/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_country_views/no-summary-01.json @@ -1,502 +1,502 @@ { - "date": "2026-01-29", - "days": { - "2026-01-29": { - "views": [ - { - "location": "United States", - "views": 228, - "country_code": "US" - }, - { - "location": "Australia", - "views": 96, - "country_code": "AU" - }, - { - "location": "Spain", - "views": 29, - "country_code": "ES" - }, - { - "location": "India", - "views": 28, - "country_code": "IN" - }, - { - "location": "United Kingdom", - "views": 19, - "country_code": "GB" - }, - { - "location": "Japan", - "views": 16, - "country_code": "JP" - }, - { - "location": "Singapore", - "views": 15, - "country_code": "SG" - }, - { - "location": "Italy", - "views": 13, - "country_code": "IT" - }, - { - "location": "South Africa", - "views": 10, - "country_code": "ZA" - }, - { - "location": "Hong Kong SAR China", - "views": 10, - "country_code": "HK" - } - ], - "other_views": 61, - "total_views": 525 - }, - "2026-01-28": { - "views": [ - { - "location": "United States", - "views": 758, - "country_code": "US" - }, - { - "location": "Canada", - "views": 108, - "country_code": "CA" - }, - { - "location": "United Kingdom", - "views": 83, - "country_code": "GB" - }, - { - "location": "Spain", - "views": 83, - "country_code": "ES" - }, - { - "location": "Australia", - "views": 80, - "country_code": "AU" - }, - { - "location": "India", - "views": 79, - "country_code": "IN" - }, - { - "location": "Austria", - "views": 71, - "country_code": "AT" - }, - { - "location": "Italy", - "views": 70, - "country_code": "IT" - }, - { - "location": "Brazil", - "views": 54, - "country_code": "BR" - }, - { - "location": "Germany", - "views": 34, - "country_code": "DE" - } - ], - "other_views": 208, - "total_views": 1628 - }, - "2026-01-27": { - "views": [ - { - "location": "United States", - "views": 729, - "country_code": "US" - }, - { - "location": "Spain", - "views": 145, - "country_code": "ES" - }, - { - "location": "Canada", - "views": 109, - "country_code": "CA" - }, - { - "location": "United Kingdom", - "views": 87, - "country_code": "GB" - }, - { - "location": "Australia", - "views": 83, - "country_code": "AU" - }, - { - "location": "Kenya", - "views": 66, - "country_code": "KE" - }, - { - "location": "India", - "views": 59, - "country_code": "IN" - }, - { - "location": "Austria", - "views": 52, - "country_code": "AT" - }, - { - "location": "Italy", - "views": 49, - "country_code": "IT" - }, - { - "location": "Brazil", - "views": 43, - "country_code": "BR" - } - ], - "other_views": 181, - "total_views": 1603 - }, - "2026-01-26": { - "views": [ - { - "location": "United States", - "views": 559, - "country_code": "US" - }, - { - "location": "Spain", - "views": 85, - "country_code": "ES" - }, - { - "location": "United Kingdom", - "views": 56, - "country_code": "GB" - }, - { - "location": "Austria", - "views": 54, - "country_code": "AT" - }, - { - "location": "Canada", - "views": 44, - "country_code": "CA" - }, - { - "location": "Brazil", - "views": 38, - "country_code": "BR" - }, - { - "location": "Australia", - "views": 38, - "country_code": "AU" - }, - { - "location": "Netherlands", - "views": 33, - "country_code": "NL" - }, - { - "location": "Germany", - "views": 30, - "country_code": "DE" - } - ], - "other_views": 145, - "total_views": 1082 - }, - "2026-01-25": { - "views": [ - { - "location": "United States", - "views": 73, - "country_code": "US" - }, - { - "location": "United Kingdom", - "views": 18, - "country_code": "GB" - }, - { - "location": "Canada", - "views": 13, - "country_code": "CA" - }, - { - "location": "India", - "views": 11, - "country_code": "IN" - }, - { - "location": "Australia", - "views": 9, - "country_code": "AU" - }, - { - "location": "Serbia", - "views": 8, - "country_code": "RS" - }, - { - "location": "Brazil", - "views": 6, - "country_code": "BR" - }, - { - "location": "Austria", - "views": 6, - "country_code": "AT" - }, - { - "location": "Turkiye", - "views": 5, - "country_code": "TR" - }, - { - "location": "Spain", - "views": 5, - "country_code": "ES" - } - ], - "other_views": 20, - "total_views": 174 - }, - "2026-01-24": { - "views": [ - { - "location": "United States", - "views": 239, - "country_code": "US" - }, - { - "location": "Spain", - "views": 21, - "country_code": "ES" - }, - { - "location": "Brazil", - "views": 21, - "country_code": "BR" - }, - { - "location": "Canada", - "views": 19, - "country_code": "CA" - }, - { - "location": "Singapore", - "views": 14, - "country_code": "SG" - }, - { - "location": "Japan", - "views": 14, - "country_code": "JP" - }, - { - "location": "United Kingdom", - "views": 13, - "country_code": "GB" - }, - { - "location": "India", - "views": 7, - "country_code": "IN" - }, - { - "location": "Australia", - "views": 6, - "country_code": "AU" - }, - { - "location": "Germany", - "views": 5, - "country_code": "DE" - } - ], - "other_views": 9, - "total_views": 368 - }, - "2026-01-23": { - "views": [ - { - "location": "United States", - "views": 524, - "country_code": "US" - }, - { - "location": "United Kingdom", - "views": 108, - "country_code": "GB" - }, - { - "location": "Brazil", - "views": 74, - "country_code": "BR" - }, - { - "location": "Canada", - "views": 67, - "country_code": "CA" - }, - { - "location": "Spain", - "views": 63, - "country_code": "ES" - }, - { - "location": "India", - "views": 54, - "country_code": "IN" - }, - { - "location": "Australia", - "views": 46, - "country_code": "AU" - }, - { - "location": "Netherlands", - "views": 38, - "country_code": "NL" - }, - { - "location": "Austria", - "views": 27, - "country_code": "AT" - }, - { - "location": "Germany", - "views": 22, - "country_code": "DE" - } - ], - "other_views": 78, - "total_views": 1101 + "date": "2026-01-29", + "days": { + "2026-01-29": { + "views": [ + { + "location": "United States", + "views": 228, + "country_code": "US" + }, + { + "location": "Australia", + "views": 96, + "country_code": "AU" + }, + { + "location": "Spain", + "views": 29, + "country_code": "ES" + }, + { + "location": "India", + "views": 28, + "country_code": "IN" + }, + { + "location": "United Kingdom", + "views": 19, + "country_code": "GB" + }, + { + "location": "Japan", + "views": 16, + "country_code": "JP" + }, + { + "location": "Singapore", + "views": 15, + "country_code": "SG" + }, + { + "location": "Italy", + "views": 13, + "country_code": "IT" + }, + { + "location": "South Africa", + "views": 10, + "country_code": "ZA" + }, + { + "location": "Hong Kong SAR China", + "views": 10, + "country_code": "HK" + } + ], + "other_views": 61, + "total_views": 525 + }, + "2026-01-28": { + "views": [ + { + "location": "United States", + "views": 758, + "country_code": "US" + }, + { + "location": "Canada", + "views": 108, + "country_code": "CA" + }, + { + "location": "United Kingdom", + "views": 83, + "country_code": "GB" + }, + { + "location": "Spain", + "views": 83, + "country_code": "ES" + }, + { + "location": "Australia", + "views": 80, + "country_code": "AU" + }, + { + "location": "India", + "views": 79, + "country_code": "IN" + }, + { + "location": "Austria", + "views": 71, + "country_code": "AT" + }, + { + "location": "Italy", + "views": 70, + "country_code": "IT" + }, + { + "location": "Brazil", + "views": 54, + "country_code": "BR" + }, + { + "location": "Germany", + "views": 34, + "country_code": "DE" + } + ], + "other_views": 208, + "total_views": 1628 + }, + "2026-01-27": { + "views": [ + { + "location": "United States", + "views": 729, + "country_code": "US" + }, + { + "location": "Spain", + "views": 145, + "country_code": "ES" + }, + { + "location": "Canada", + "views": 109, + "country_code": "CA" + }, + { + "location": "United Kingdom", + "views": 87, + "country_code": "GB" + }, + { + "location": "Australia", + "views": 83, + "country_code": "AU" + }, + { + "location": "Kenya", + "views": 66, + "country_code": "KE" + }, + { + "location": "India", + "views": 59, + "country_code": "IN" + }, + { + "location": "Austria", + "views": 52, + "country_code": "AT" + }, + { + "location": "Italy", + "views": 49, + "country_code": "IT" + }, + { + "location": "Brazil", + "views": 43, + "country_code": "BR" + } + ], + "other_views": 181, + "total_views": 1603 + }, + "2026-01-26": { + "views": [ + { + "location": "United States", + "views": 559, + "country_code": "US" + }, + { + "location": "Spain", + "views": 85, + "country_code": "ES" + }, + { + "location": "United Kingdom", + "views": 56, + "country_code": "GB" + }, + { + "location": "Austria", + "views": 54, + "country_code": "AT" + }, + { + "location": "Canada", + "views": 44, + "country_code": "CA" + }, + { + "location": "Brazil", + "views": 38, + "country_code": "BR" + }, + { + "location": "Australia", + "views": 38, + "country_code": "AU" + }, + { + "location": "Netherlands", + "views": 33, + "country_code": "NL" + }, + { + "location": "Germany", + "views": 30, + "country_code": "DE" + } + ], + "other_views": 145, + "total_views": 1082 + }, + "2026-01-25": { + "views": [ + { + "location": "United States", + "views": 73, + "country_code": "US" + }, + { + "location": "United Kingdom", + "views": 18, + "country_code": "GB" + }, + { + "location": "Canada", + "views": 13, + "country_code": "CA" + }, + { + "location": "India", + "views": 11, + "country_code": "IN" + }, + { + "location": "Australia", + "views": 9, + "country_code": "AU" + }, + { + "location": "Serbia", + "views": 8, + "country_code": "RS" + }, + { + "location": "Brazil", + "views": 6, + "country_code": "BR" + }, + { + "location": "Austria", + "views": 6, + "country_code": "AT" + }, + { + "location": "Turkiye", + "views": 5, + "country_code": "TR" + }, + { + "location": "Spain", + "views": 5, + "country_code": "ES" } + ], + "other_views": 20, + "total_views": 174 }, - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" - }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" - }, - "IN": { - "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", - "country_full": "India", - "map_region": "034" - }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" - }, - "JP": { - "flag_icon": "https://secure.gravatar.com/blavatar/8611a3c58942eb26572a6a01722b3baa88c537c379941a61136bb6ddba932cba?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/3184f4bcca41ac6779565bf9df77b1488448aaed1ef0ba364f4f3e9532a24bd5?s=48", - "country_full": "Japan", - "map_region": "030" - }, - "SG": { - "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", - "country_full": "Singapore", - "map_region": "035" - }, - "IT": { - "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", - "country_full": "Italy", - "map_region": "039" - }, - "ZA": { - "flag_icon": "https://secure.gravatar.com/blavatar/2c83cd13472945991c36f8c2b16a19f31d770201523dcf835de960ed6a9cc0eb?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9364d398ed2f19365f98cb93d663718d1d444937a55aa1f17b601a2bcd606ddf?s=48", - "country_full": "South Africa", - "map_region": "018" - }, - "HK": { - "flag_icon": "https://secure.gravatar.com/blavatar/2b6b0d6462cfefe1ee75c84ab2dd0b684a65f12a86a884859ec34820b3773473?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/da5d68131a56cf4e0f7a8094477545183d7d001011138110487741e3c2439f06?s=48", - "country_full": "Hong Kong SAR China", - "map_region": "030" - }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" - }, - "AT": { - "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", - "country_full": "Austria", - "map_region": "155" - }, - "BR": { - "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", - "country_full": "Brazil", - "map_region": "005" - }, - "DE": { - "flag_icon": "https://secure.gravatar.com/blavatar/75f4f0807b42025444df4fc914087a3f1b626b2b57342e546e8460b0c55da749?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb9db25d99826a912f9f49c0e06978d4513806a2683b988d850ec1fe0c4e1431?s=48", - "country_full": "Germany", - "map_region": "155" - }, - "KE": { - "flag_icon": "https://secure.gravatar.com/blavatar/7a6ad8e80545fd7fdfdf0b94267c0272e99858cbd931e43430051554441f8aa2?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c723ab04ad37894423d4f37b926d64eb8ad8aebc0cb62ac1b2a1aa5950d93f6c?s=48", - "country_full": "Kenya", - "map_region": "014" - }, - "NL": { - "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", - "country_full": "Netherlands", - "map_region": "155" - }, - "RS": { - "flag_icon": "https://secure.gravatar.com/blavatar/f0e7d4fcc247542c75b10509ac2a0bd56fd85301bfaf1694437886be8bf03a37?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/5663a7094af51b3350028edd5b52ee660c2b5e10d9d171466b1f3621753a280f?s=48", - "country_full": "Serbia", - "map_region": "039" - }, - "TR": { - "flag_icon": "https://secure.gravatar.com/blavatar/fcbd5fbf0361eae86d5b2297db7944131f7635459ea447e9d3ad22327ac2b424?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9f706d1ddbb48ad5ec7380028f2a121e9032032247bc8e3c8dad3108eed0d23a?s=48", - "country_full": "Turkiye", - "map_region": "145" + "2026-01-24": { + "views": [ + { + "location": "United States", + "views": 239, + "country_code": "US" + }, + { + "location": "Spain", + "views": 21, + "country_code": "ES" + }, + { + "location": "Brazil", + "views": 21, + "country_code": "BR" + }, + { + "location": "Canada", + "views": 19, + "country_code": "CA" + }, + { + "location": "Singapore", + "views": 14, + "country_code": "SG" + }, + { + "location": "Japan", + "views": 14, + "country_code": "JP" + }, + { + "location": "United Kingdom", + "views": 13, + "country_code": "GB" + }, + { + "location": "India", + "views": 7, + "country_code": "IN" + }, + { + "location": "Australia", + "views": 6, + "country_code": "AU" + }, + { + "location": "Germany", + "views": 5, + "country_code": "DE" } + ], + "other_views": 9, + "total_views": 368 + }, + "2026-01-23": { + "views": [ + { + "location": "United States", + "views": 524, + "country_code": "US" + }, + { + "location": "United Kingdom", + "views": 108, + "country_code": "GB" + }, + { + "location": "Brazil", + "views": 74, + "country_code": "BR" + }, + { + "location": "Canada", + "views": 67, + "country_code": "CA" + }, + { + "location": "Spain", + "views": 63, + "country_code": "ES" + }, + { + "location": "India", + "views": 54, + "country_code": "IN" + }, + { + "location": "Australia", + "views": 46, + "country_code": "AU" + }, + { + "location": "Netherlands", + "views": 38, + "country_code": "NL" + }, + { + "location": "Austria", + "views": 27, + "country_code": "AT" + }, + { + "location": "Germany", + "views": 22, + "country_code": "DE" + } + ], + "other_views": 78, + "total_views": 1101 + } + }, + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "IN": { + "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", + "country_full": "India", + "map_region": "034" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" + }, + "JP": { + "flag_icon": "https://secure.gravatar.com/blavatar/8611a3c58942eb26572a6a01722b3baa88c537c379941a61136bb6ddba932cba?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/3184f4bcca41ac6779565bf9df77b1488448aaed1ef0ba364f4f3e9532a24bd5?s=48", + "country_full": "Japan", + "map_region": "030" + }, + "SG": { + "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", + "country_full": "Singapore", + "map_region": "035" + }, + "IT": { + "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", + "country_full": "Italy", + "map_region": "039" + }, + "ZA": { + "flag_icon": "https://secure.gravatar.com/blavatar/2c83cd13472945991c36f8c2b16a19f31d770201523dcf835de960ed6a9cc0eb?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9364d398ed2f19365f98cb93d663718d1d444937a55aa1f17b601a2bcd606ddf?s=48", + "country_full": "South Africa", + "map_region": "018" + }, + "HK": { + "flag_icon": "https://secure.gravatar.com/blavatar/2b6b0d6462cfefe1ee75c84ab2dd0b684a65f12a86a884859ec34820b3773473?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/da5d68131a56cf4e0f7a8094477545183d7d001011138110487741e3c2439f06?s=48", + "country_full": "Hong Kong SAR China", + "map_region": "030" + }, + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" + }, + "AT": { + "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", + "country_full": "Austria", + "map_region": "155" + }, + "BR": { + "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", + "country_full": "Brazil", + "map_region": "005" + }, + "DE": { + "flag_icon": "https://secure.gravatar.com/blavatar/75f4f0807b42025444df4fc914087a3f1b626b2b57342e546e8460b0c55da749?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb9db25d99826a912f9f49c0e06978d4513806a2683b988d850ec1fe0c4e1431?s=48", + "country_full": "Germany", + "map_region": "155" + }, + "KE": { + "flag_icon": "https://secure.gravatar.com/blavatar/7a6ad8e80545fd7fdfdf0b94267c0272e99858cbd931e43430051554441f8aa2?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c723ab04ad37894423d4f37b926d64eb8ad8aebc0cb62ac1b2a1aa5950d93f6c?s=48", + "country_full": "Kenya", + "map_region": "014" + }, + "NL": { + "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", + "country_full": "Netherlands", + "map_region": "155" + }, + "RS": { + "flag_icon": "https://secure.gravatar.com/blavatar/f0e7d4fcc247542c75b10509ac2a0bd56fd85301bfaf1694437886be8bf03a37?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/5663a7094af51b3350028edd5b52ee660c2b5e10d9d171466b1f3621753a280f?s=48", + "country_full": "Serbia", + "map_region": "039" + }, + "TR": { + "flag_icon": "https://secure.gravatar.com/blavatar/fcbd5fbf0361eae86d5b2297db7944131f7635459ea447e9d3ad22327ac2b424?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9f706d1ddbb48ad5ec7380028f2a121e9032032247bc8e3c8dad3108eed0d23a?s=48", + "country_full": "Turkiye", + "map_region": "145" } + } } diff --git a/wp_api/tests/wpcom/stats_country_views/summarized-01-day.json b/wp_api/tests/wpcom/stats_country_views/summarized-01-day.json index 5e6a6c212..28e4c295f 100644 --- a/wp_api/tests/wpcom/stats_country_views/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_country_views/summarized-01-day.json @@ -1,253 +1,253 @@ { - "date": "2026-01-29", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" - }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" - }, - "IN": { - "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", - "country_full": "India", - "map_region": "034" - }, - "JP": { - "flag_icon": "https://secure.gravatar.com/blavatar/8611a3c58942eb26572a6a01722b3baa88c537c379941a61136bb6ddba932cba?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/3184f4bcca41ac6779565bf9df77b1488448aaed1ef0ba364f4f3e9532a24bd5?s=48", - "country_full": "Japan", - "map_region": "030" - }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" - }, - "SG": { - "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", - "country_full": "Singapore", - "map_region": "035" - }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" - }, - "IT": { - "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", - "country_full": "Italy", - "map_region": "039" - }, - "ZA": { - "flag_icon": "https://secure.gravatar.com/blavatar/2c83cd13472945991c36f8c2b16a19f31d770201523dcf835de960ed6a9cc0eb?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9364d398ed2f19365f98cb93d663718d1d444937a55aa1f17b601a2bcd606ddf?s=48", - "country_full": "South Africa", - "map_region": "018" - }, - "HK": { - "flag_icon": "https://secure.gravatar.com/blavatar/2b6b0d6462cfefe1ee75c84ab2dd0b684a65f12a86a884859ec34820b3773473?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/da5d68131a56cf4e0f7a8094477545183d7d001011138110487741e3c2439f06?s=48", - "country_full": "Hong Kong SAR China", - "map_region": "030" - }, - "AT": { - "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", - "country_full": "Austria", - "map_region": "155" - }, - "BR": { - "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", - "country_full": "Brazil", - "map_region": "005" - }, - "SE": { - "flag_icon": "https://secure.gravatar.com/blavatar/25216e8bcc7210902c7f9ee64e8a8ab5ae6ba36dd044c2bfcec76c46dfb64c14?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cf39d6c067f5e2ee82951ae14e24ad72111fb36b5f843297dfb4146364db7a68?s=48", - "country_full": "Sweden", - "map_region": "154" - }, - "NL": { - "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", - "country_full": "Netherlands", - "map_region": "155" - }, - "VI": { - "flag_icon": "https://secure.gravatar.com/blavatar/05d357b627b33c218df50e12fc2df9e93128f7a91e181d3c46571a7189be7643?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/08f735d2140a5d1d27fc9d5162f4168b6e8b367d1f5560a21c15eb819eced5fc?s=48", - "country_full": "U.S. Virgin Islands", - "map_region": "029" - }, - "FR": { - "flag_icon": "https://secure.gravatar.com/blavatar/2e3b0a91cceb6b2fd61a0e0357b5f85f24eaf60a1cbf5360037082eda7dd663f?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/6ddc24bbf9057a42701fd6c278274912bde6412bf6a1b0f6b894e7cd9fdfe4da?s=48", - "country_full": "France", - "map_region": "155" - }, - "PT": { - "flag_icon": "https://secure.gravatar.com/blavatar/0c05305c9bcd668879737085d23403c9d014c0b28528d8b732a9095ab072c710?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/3cfb3b14b00f578e09a2e9082534fc1d5c1e53f3d295f29369c73353ffbf241c?s=48", - "country_full": "Portugal", - "map_region": "039" - }, - "DE": { - "flag_icon": "https://secure.gravatar.com/blavatar/75f4f0807b42025444df4fc914087a3f1b626b2b57342e546e8460b0c55da749?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb9db25d99826a912f9f49c0e06978d4513806a2683b988d850ec1fe0c4e1431?s=48", - "country_full": "Germany", - "map_region": "155" - }, - "TW": { - "flag_icon": "https://secure.gravatar.com/blavatar/5df0a678541fefae4c8262e820bf93478b056ee74c155a35651d327f35f25599?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/04f544256b96267a2abbd7e7372a9534de9e366cc62111956fdd400cd9f27ecb?s=48", - "country_full": "Taiwan", - "map_region": "030" - }, - "KE": { - "flag_icon": "https://secure.gravatar.com/blavatar/7a6ad8e80545fd7fdfdf0b94267c0272e99858cbd931e43430051554441f8aa2?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c723ab04ad37894423d4f37b926d64eb8ad8aebc0cb62ac1b2a1aa5950d93f6c?s=48", - "country_full": "Kenya", - "map_region": "014" - }, - "GR": { - "flag_icon": "https://secure.gravatar.com/blavatar/1164140825c2590024a0f638f77a3eca6cb8c2fc44f98c44ff305b06463f4b37?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/019f734452d08cc746808733e186c009618d551baf8992cfbd959319bfb4db01?s=48", - "country_full": "Greece", - "map_region": "039" - } - }, - "summary": { - "views": [ - { - "location": "United States", - "views": 228, - "country_code": "US" - }, - { - "location": "Australia", - "views": 96, - "country_code": "AU" - }, - { - "location": "Spain", - "views": 29, - "country_code": "ES" - }, - { - "location": "India", - "views": 28, - "country_code": "IN" - }, - { - "location": "Japan", - "views": 19, - "country_code": "JP" - }, - { - "location": "United Kingdom", - "views": 19, - "country_code": "GB" - }, - { - "location": "Singapore", - "views": 15, - "country_code": "SG" - }, - { - "location": "Canada", - "views": 14, - "country_code": "CA" - }, - { - "location": "Italy", - "views": 13, - "country_code": "IT" - }, - { - "location": "South Africa", - "views": 10, - "country_code": "ZA" - }, - { - "location": "Hong Kong SAR China", - "views": 10, - "country_code": "HK" - }, - { - "location": "Austria", - "views": 10, - "country_code": "AT" - }, - { - "location": "Brazil", - "views": 9, - "country_code": "BR" - }, - { - "location": "Sweden", - "views": 8, - "country_code": "SE" - }, - { - "location": "Netherlands", - "views": 4, - "country_code": "NL" - }, - { - "location": "U.S. Virgin Islands", - "views": 3, - "country_code": "VI" - }, - { - "location": "France", - "views": 3, - "country_code": "FR" - }, - { - "location": "Portugal", - "views": 2, - "country_code": "PT" - }, - { - "location": "Germany", - "views": 2, - "country_code": "DE" - }, - { - "location": "Taiwan", - "views": 1, - "country_code": "TW" - }, - { - "location": "Kenya", - "views": 1, - "country_code": "KE" - }, - { - "location": "Greece", - "views": 1, - "country_code": "GR" - } - ], - "other_views": 0, - "total_views": 0 + "date": "2026-01-29", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "IN": { + "flag_icon": "https://secure.gravatar.com/blavatar/897cf89656acb4fded93aa7e326bd5b3cdd1745d7e88d05a67315393bc9b6896?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/b25dd4cacc153362451cdd6ed8264c2f747f3154a0e40ff66f49750627fdb853?s=48", + "country_full": "India", + "map_region": "034" + }, + "JP": { + "flag_icon": "https://secure.gravatar.com/blavatar/8611a3c58942eb26572a6a01722b3baa88c537c379941a61136bb6ddba932cba?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/3184f4bcca41ac6779565bf9df77b1488448aaed1ef0ba364f4f3e9532a24bd5?s=48", + "country_full": "Japan", + "map_region": "030" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" + }, + "SG": { + "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", + "country_full": "Singapore", + "map_region": "035" + }, + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" + }, + "IT": { + "flag_icon": "https://secure.gravatar.com/blavatar/547b4085563620aea9375046fac616bff0c77bff096aafbfb3ea030776e44182?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c65c6e4c117d7fdcff026eba91770d6105832ff59e6adc952b66afd718064469?s=48", + "country_full": "Italy", + "map_region": "039" + }, + "ZA": { + "flag_icon": "https://secure.gravatar.com/blavatar/2c83cd13472945991c36f8c2b16a19f31d770201523dcf835de960ed6a9cc0eb?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9364d398ed2f19365f98cb93d663718d1d444937a55aa1f17b601a2bcd606ddf?s=48", + "country_full": "South Africa", + "map_region": "018" + }, + "HK": { + "flag_icon": "https://secure.gravatar.com/blavatar/2b6b0d6462cfefe1ee75c84ab2dd0b684a65f12a86a884859ec34820b3773473?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/da5d68131a56cf4e0f7a8094477545183d7d001011138110487741e3c2439f06?s=48", + "country_full": "Hong Kong SAR China", + "map_region": "030" + }, + "AT": { + "flag_icon": "https://secure.gravatar.com/blavatar/abdad097726bceb3fcd6aa348b0eaf549608fa577928a49b77a6724a718a807b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/2a74b7811814232e5520a97fc35ce25722f0c467fb6e960f3a5b073efbe49847?s=48", + "country_full": "Austria", + "map_region": "155" + }, + "BR": { + "flag_icon": "https://secure.gravatar.com/blavatar/125c845fe7f54b4b28b4d86c665d72acf8511f53edc4a798319fbdf529a35179?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/dfd78932da55b72a015faa1161b6b9ba7fa3e326a2eb10c31c8baf691834b5e3?s=48", + "country_full": "Brazil", + "map_region": "005" + }, + "SE": { + "flag_icon": "https://secure.gravatar.com/blavatar/25216e8bcc7210902c7f9ee64e8a8ab5ae6ba36dd044c2bfcec76c46dfb64c14?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cf39d6c067f5e2ee82951ae14e24ad72111fb36b5f843297dfb4146364db7a68?s=48", + "country_full": "Sweden", + "map_region": "154" + }, + "NL": { + "flag_icon": "https://secure.gravatar.com/blavatar/ccf412630dadb1f0d5bcb108ae19a335afdfa9b318c96202e73531437632ae2e?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/5ce80e051629b0e89f07bbf46b8aef4469e4f66f08fbeb07b99d016073c061e5?s=48", + "country_full": "Netherlands", + "map_region": "155" + }, + "VI": { + "flag_icon": "https://secure.gravatar.com/blavatar/05d357b627b33c218df50e12fc2df9e93128f7a91e181d3c46571a7189be7643?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/08f735d2140a5d1d27fc9d5162f4168b6e8b367d1f5560a21c15eb819eced5fc?s=48", + "country_full": "U.S. Virgin Islands", + "map_region": "029" + }, + "FR": { + "flag_icon": "https://secure.gravatar.com/blavatar/2e3b0a91cceb6b2fd61a0e0357b5f85f24eaf60a1cbf5360037082eda7dd663f?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/6ddc24bbf9057a42701fd6c278274912bde6412bf6a1b0f6b894e7cd9fdfe4da?s=48", + "country_full": "France", + "map_region": "155" + }, + "PT": { + "flag_icon": "https://secure.gravatar.com/blavatar/0c05305c9bcd668879737085d23403c9d014c0b28528d8b732a9095ab072c710?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/3cfb3b14b00f578e09a2e9082534fc1d5c1e53f3d295f29369c73353ffbf241c?s=48", + "country_full": "Portugal", + "map_region": "039" + }, + "DE": { + "flag_icon": "https://secure.gravatar.com/blavatar/75f4f0807b42025444df4fc914087a3f1b626b2b57342e546e8460b0c55da749?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb9db25d99826a912f9f49c0e06978d4513806a2683b988d850ec1fe0c4e1431?s=48", + "country_full": "Germany", + "map_region": "155" + }, + "TW": { + "flag_icon": "https://secure.gravatar.com/blavatar/5df0a678541fefae4c8262e820bf93478b056ee74c155a35651d327f35f25599?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/04f544256b96267a2abbd7e7372a9534de9e366cc62111956fdd400cd9f27ecb?s=48", + "country_full": "Taiwan", + "map_region": "030" + }, + "KE": { + "flag_icon": "https://secure.gravatar.com/blavatar/7a6ad8e80545fd7fdfdf0b94267c0272e99858cbd931e43430051554441f8aa2?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c723ab04ad37894423d4f37b926d64eb8ad8aebc0cb62ac1b2a1aa5950d93f6c?s=48", + "country_full": "Kenya", + "map_region": "014" + }, + "GR": { + "flag_icon": "https://secure.gravatar.com/blavatar/1164140825c2590024a0f638f77a3eca6cb8c2fc44f98c44ff305b06463f4b37?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/019f734452d08cc746808733e186c009618d551baf8992cfbd959319bfb4db01?s=48", + "country_full": "Greece", + "map_region": "039" } + }, + "summary": { + "views": [ + { + "location": "United States", + "views": 228, + "country_code": "US" + }, + { + "location": "Australia", + "views": 96, + "country_code": "AU" + }, + { + "location": "Spain", + "views": 29, + "country_code": "ES" + }, + { + "location": "India", + "views": 28, + "country_code": "IN" + }, + { + "location": "Japan", + "views": 19, + "country_code": "JP" + }, + { + "location": "United Kingdom", + "views": 19, + "country_code": "GB" + }, + { + "location": "Singapore", + "views": 15, + "country_code": "SG" + }, + { + "location": "Canada", + "views": 14, + "country_code": "CA" + }, + { + "location": "Italy", + "views": 13, + "country_code": "IT" + }, + { + "location": "South Africa", + "views": 10, + "country_code": "ZA" + }, + { + "location": "Hong Kong SAR China", + "views": 10, + "country_code": "HK" + }, + { + "location": "Austria", + "views": 10, + "country_code": "AT" + }, + { + "location": "Brazil", + "views": 9, + "country_code": "BR" + }, + { + "location": "Sweden", + "views": 8, + "country_code": "SE" + }, + { + "location": "Netherlands", + "views": 4, + "country_code": "NL" + }, + { + "location": "U.S. Virgin Islands", + "views": 3, + "country_code": "VI" + }, + { + "location": "France", + "views": 3, + "country_code": "FR" + }, + { + "location": "Portugal", + "views": 2, + "country_code": "PT" + }, + { + "location": "Germany", + "views": 2, + "country_code": "DE" + }, + { + "location": "Taiwan", + "views": 1, + "country_code": "TW" + }, + { + "location": "Kenya", + "views": 1, + "country_code": "KE" + }, + { + "location": "Greece", + "views": 1, + "country_code": "GR" + } + ], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_country_views/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_country_views/summarized-02-day-with-nulls.json index c47499934..a62483c04 100644 --- a/wp_api/tests/wpcom/stats_country_views/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_country_views/summarized-02-day-with-nulls.json @@ -1,38 +1,38 @@ { - "date": "2026-01-29", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "XX": { - "flag_icon": null, - "flat_flag_icon": null, - "country_full": null, - "map_region": null - } + "date": "2026-01-29", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" }, - "summary": { - "views": [ - { - "location": null, - "views": null, - "country_code": null - }, - { - "location": "United States", - "views": 100, - "country_code": "US" - }, - { - "location": null, - "views": 50, - "country_code": "XX" - } - ], - "other_views": 0, - "total_views": 150 + "XX": { + "flag_icon": null, + "flat_flag_icon": null, + "country_full": null, + "map_region": null } + }, + "summary": { + "views": [ + { + "location": null, + "views": null, + "country_code": null + }, + { + "location": "United States", + "views": 100, + "country_code": "US" + }, + { + "location": null, + "views": 50, + "country_code": "XX" + } + ], + "other_views": 0, + "total_views": 150 + } } diff --git a/wp_api/tests/wpcom/stats_country_views/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_country_views/summarized-03-day-empty-response.json index 76fdcda6d..130370378 100644 --- a/wp_api/tests/wpcom/stats_country_views/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_country_views/summarized-03-day-empty-response.json @@ -1,9 +1,9 @@ { - "date": "2026-01-29", - "country-info": [], - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-01-29", + "country-info": [], + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_country_views/summarized-04-day-empty-null.json b/wp_api/tests/wpcom/stats_country_views/summarized-04-day-empty-null.json index d074dbd70..b781e04ca 100644 --- a/wp_api/tests/wpcom/stats_country_views/summarized-04-day-empty-null.json +++ b/wp_api/tests/wpcom/stats_country_views/summarized-04-day-empty-null.json @@ -1,9 +1,9 @@ { - "date": "2026-01-29", - "country-info": null, - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-01-29", + "country-info": null, + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_devices_browser/no-summary-01.json b/wp_api/tests/wpcom/stats_devices_browser/no-summary-01.json index 6c305b16b..49138514b 100644 --- a/wp_api/tests/wpcom/stats_devices_browser/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_devices_browser/no-summary-01.json @@ -1,9 +1,9 @@ { - "top_values": { - "chrome": 6431, - "firefox": 563, - "safari": 259, - "edge": 107, - "other": 13 - } + "top_values": { + "chrome": 6431, + "firefox": 563, + "safari": 259, + "edge": 107, + "other": 13 + } } diff --git a/wp_api/tests/wpcom/stats_devices_browser/summarized-01-day.json b/wp_api/tests/wpcom/stats_devices_browser/summarized-01-day.json index 6c305b16b..49138514b 100644 --- a/wp_api/tests/wpcom/stats_devices_browser/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_devices_browser/summarized-01-day.json @@ -1,9 +1,9 @@ { - "top_values": { - "chrome": 6431, - "firefox": 563, - "safari": 259, - "edge": 107, - "other": 13 - } + "top_values": { + "chrome": 6431, + "firefox": 563, + "safari": 259, + "edge": 107, + "other": 13 + } } diff --git a/wp_api/tests/wpcom/stats_devices_browser/summarized-02-day-empty-response.json b/wp_api/tests/wpcom/stats_devices_browser/summarized-02-day-empty-response.json index d2ccfc3d5..a1a35d783 100644 --- a/wp_api/tests/wpcom/stats_devices_browser/summarized-02-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_devices_browser/summarized-02-day-empty-response.json @@ -1,3 +1,3 @@ { - "top_values": [] + "top_values": [] } diff --git a/wp_api/tests/wpcom/stats_devices_platform/no-summary-01.json b/wp_api/tests/wpcom/stats_devices_platform/no-summary-01.json index e4b39822f..a7beab1b4 100644 --- a/wp_api/tests/wpcom/stats_devices_platform/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_devices_platform/no-summary-01.json @@ -1,10 +1,10 @@ { - "top_values": { - "mac": 6956, - "windows": 142, - "linux": 113, - "android": 82, - "iphone": 80, - "ipad": 2 - } + "top_values": { + "mac": 6956, + "windows": 142, + "linux": 113, + "android": 82, + "iphone": 80, + "ipad": 2 + } } diff --git a/wp_api/tests/wpcom/stats_devices_platform/summarized-01-day.json b/wp_api/tests/wpcom/stats_devices_platform/summarized-01-day.json index 601578903..3414ccec5 100644 --- a/wp_api/tests/wpcom/stats_devices_platform/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_devices_platform/summarized-01-day.json @@ -1,10 +1,10 @@ { - "top_values": { - "mac": 6955, - "windows": 141, - "linux": 113, - "android": 82, - "iphone": 80, - "ipad": 2 - } + "top_values": { + "mac": 6955, + "windows": 141, + "linux": 113, + "android": 82, + "iphone": 80, + "ipad": 2 + } } diff --git a/wp_api/tests/wpcom/stats_devices_platform/summarized-02-day-empty-response.json b/wp_api/tests/wpcom/stats_devices_platform/summarized-02-day-empty-response.json index d2ccfc3d5..a1a35d783 100644 --- a/wp_api/tests/wpcom/stats_devices_platform/summarized-02-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_devices_platform/summarized-02-day-empty-response.json @@ -1,3 +1,3 @@ { - "top_values": [] + "top_values": [] } diff --git a/wp_api/tests/wpcom/stats_devices_screensize/no-summary-01.json b/wp_api/tests/wpcom/stats_devices_screensize/no-summary-01.json index 1b984c3c5..e660da518 100644 --- a/wp_api/tests/wpcom/stats_devices_screensize/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_devices_screensize/no-summary-01.json @@ -1,7 +1,7 @@ { - "top_values": { - "desktop": 97.8, - "mobile": 2.2, - "tablet": 0 - } + "top_values": { + "desktop": 97.8, + "mobile": 2.2, + "tablet": 0 + } } diff --git a/wp_api/tests/wpcom/stats_devices_screensize/summarized-01-day.json b/wp_api/tests/wpcom/stats_devices_screensize/summarized-01-day.json index 1b984c3c5..e660da518 100644 --- a/wp_api/tests/wpcom/stats_devices_screensize/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_devices_screensize/summarized-01-day.json @@ -1,7 +1,7 @@ { - "top_values": { - "desktop": 97.8, - "mobile": 2.2, - "tablet": 0 - } + "top_values": { + "desktop": 97.8, + "mobile": 2.2, + "tablet": 0 + } } diff --git a/wp_api/tests/wpcom/stats_devices_screensize/summarized-02-day-empty-response.json b/wp_api/tests/wpcom/stats_devices_screensize/summarized-02-day-empty-response.json index d2ccfc3d5..a1a35d783 100644 --- a/wp_api/tests/wpcom/stats_devices_screensize/summarized-02-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_devices_screensize/summarized-02-day-empty-response.json @@ -1,3 +1,3 @@ { - "top_values": [] + "top_values": [] } diff --git a/wp_api/tests/wpcom/stats_devices_screensize/summarized-03-day-all-zero.json b/wp_api/tests/wpcom/stats_devices_screensize/summarized-03-day-all-zero.json index fc411703b..d756832ba 100644 --- a/wp_api/tests/wpcom/stats_devices_screensize/summarized-03-day-all-zero.json +++ b/wp_api/tests/wpcom/stats_devices_screensize/summarized-03-day-all-zero.json @@ -1,7 +1,7 @@ { - "top_values": { - "desktop": 0, - "mobile": 0, - "tablet": 0 - } + "top_values": { + "desktop": 0, + "mobile": 0, + "tablet": 0 + } } diff --git a/wp_api/tests/wpcom/stats_emails_summary/response-01-with-posts.json b/wp_api/tests/wpcom/stats_emails_summary/response-01-with-posts.json index 49c750e10..4f3bacc9a 100644 --- a/wp_api/tests/wpcom/stats_emails_summary/response-01-with-posts.json +++ b/wp_api/tests/wpcom/stats_emails_summary/response-01-with-posts.json @@ -1,46 +1,46 @@ { - "posts": [ - { - "id": 210454, - "href": "https://example.com/post-1", - "date": "2023-08-17 15:40:59", - "title": "Example Post Title", - "type": "post", - "opens": 13, - "clicks": 1, - "opens_rate": 0, - "clicks_rate": 0, - "unique_opens": 0, - "unique_clicks": 0, - "total_sends": 4 - }, - { - "id": 210642, - "href": "https://example.com/post-2", - "date": "2023-08-21 09:12:48", - "title": "Another Post Title", - "type": "post", - "opens": 2, - "clicks": 1, - "opens_rate": 0, - "clicks_rate": 0, - "unique_opens": 0, - "unique_clicks": 0, - "total_sends": 3 - }, - { - "id": 210796, - "href": "https://example.com/post-3", - "date": "2023-08-23 12:37:53", - "title": "Post With Rates", - "type": "post", - "opens": 2, - "clicks": 1, - "opens_rate": 33.33, - "clicks_rate": 0, - "unique_opens": 1, - "unique_clicks": 0, - "total_sends": 3 - } - ] + "posts": [ + { + "id": 210454, + "href": "https://example.com/post-1", + "date": "2023-08-17 15:40:59", + "title": "Example Post Title", + "type": "post", + "opens": 13, + "clicks": 1, + "opens_rate": 0, + "clicks_rate": 0, + "unique_opens": 0, + "unique_clicks": 0, + "total_sends": 4 + }, + { + "id": 210642, + "href": "https://example.com/post-2", + "date": "2023-08-21 09:12:48", + "title": "Another Post Title", + "type": "post", + "opens": 2, + "clicks": 1, + "opens_rate": 0, + "clicks_rate": 0, + "unique_opens": 0, + "unique_clicks": 0, + "total_sends": 3 + }, + { + "id": 210796, + "href": "https://example.com/post-3", + "date": "2023-08-23 12:37:53", + "title": "Post With Rates", + "type": "post", + "opens": 2, + "clicks": 1, + "opens_rate": 33.33, + "clicks_rate": 0, + "unique_opens": 1, + "unique_clicks": 0, + "total_sends": 3 + } + ] } diff --git a/wp_api/tests/wpcom/stats_emails_summary/response-02-empty.json b/wp_api/tests/wpcom/stats_emails_summary/response-02-empty.json index 31aafa907..646ea8bbd 100644 --- a/wp_api/tests/wpcom/stats_emails_summary/response-02-empty.json +++ b/wp_api/tests/wpcom/stats_emails_summary/response-02-empty.json @@ -1,3 +1,3 @@ { - "posts": [] + "posts": [] } diff --git a/wp_api/tests/wpcom/stats_emails_summary/response-03-with-nulls.json b/wp_api/tests/wpcom/stats_emails_summary/response-03-with-nulls.json index ac666439d..04667753d 100644 --- a/wp_api/tests/wpcom/stats_emails_summary/response-03-with-nulls.json +++ b/wp_api/tests/wpcom/stats_emails_summary/response-03-with-nulls.json @@ -1,32 +1,32 @@ { - "posts": [ - { - "id": 100, - "href": null, - "date": null, - "title": null, - "type": null, - "opens": null, - "clicks": null, - "opens_rate": null, - "clicks_rate": null, - "unique_opens": null, - "unique_clicks": null, - "total_sends": null - }, - { - "id": 200, - "href": "https://example.com/post", - "date": "2023-09-01 10:00:00", - "title": "A Post", - "type": "post", - "opens": 5, - "clicks": 2, - "opens_rate": 50.0, - "clicks_rate": 25.0, - "unique_opens": 3, - "unique_clicks": 1, - "total_sends": 10 - } - ] + "posts": [ + { + "id": 100, + "href": null, + "date": null, + "title": null, + "type": null, + "opens": null, + "clicks": null, + "opens_rate": null, + "clicks_rate": null, + "unique_opens": null, + "unique_clicks": null, + "total_sends": null + }, + { + "id": 200, + "href": "https://example.com/post", + "date": "2023-09-01 10:00:00", + "title": "A Post", + "type": "post", + "opens": 5, + "clicks": 2, + "opens_rate": 50.0, + "clicks_rate": 25.0, + "unique_opens": 3, + "unique_clicks": 1, + "total_sends": 10 + } + ] } diff --git a/wp_api/tests/wpcom/stats_file_downloads/no-summary-01.json b/wp_api/tests/wpcom/stats_file_downloads/no-summary-01.json index 8e180648f..38a117a8e 100644 --- a/wp_api/tests/wpcom/stats_file_downloads/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_file_downloads/no-summary-01.json @@ -1,47 +1,47 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "2026-02-18": { - "files": [ - { - "filename": "automattic-w-9.pdf", - "relative_url": "/2025/01/automattic-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", - "downloads": 4 - }, - { - "filename": "wpvip-w-9.pdf", - "relative_url": "/2025/01/wpvip-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", - "downloads": 3 - }, - { - "filename": "report.pdf", - "relative_url": "/2026/02/report.pdf", - "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", - "downloads": 2 - } - ], - "other_downloads": 0, - "total_downloads": 34 + "date": "2026-02-18", + "period": "day", + "days": { + "2026-02-18": { + "files": [ + { + "filename": "automattic-w-9.pdf", + "relative_url": "/2025/01/automattic-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", + "downloads": 4 }, - "2026-02-14": { - "files": [], - "other_downloads": 0, - "total_downloads": 0 + { + "filename": "wpvip-w-9.pdf", + "relative_url": "/2025/01/wpvip-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", + "downloads": 3 }, - "2026-02-13": { - "files": [ - { - "filename": "contract.pdf", - "relative_url": "/2023/07/contract.pdf", - "download_url": "https://example.files.wordpress.com/2023/07/contract.pdf", - "downloads": 3 - } - ], - "other_downloads": 0, - "total_downloads": 14 + { + "filename": "report.pdf", + "relative_url": "/2026/02/report.pdf", + "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", + "downloads": 2 } + ], + "other_downloads": 0, + "total_downloads": 34 + }, + "2026-02-14": { + "files": [], + "other_downloads": 0, + "total_downloads": 0 + }, + "2026-02-13": { + "files": [ + { + "filename": "contract.pdf", + "relative_url": "/2023/07/contract.pdf", + "download_url": "https://example.files.wordpress.com/2023/07/contract.pdf", + "downloads": 3 + } + ], + "other_downloads": 0, + "total_downloads": 14 } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_file_downloads/summarized-01-day.json b/wp_api/tests/wpcom/stats_file_downloads/summarized-01-day.json index 0115b0ce2..769f614db 100644 --- a/wp_api/tests/wpcom/stats_file_downloads/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_file_downloads/summarized-01-day.json @@ -1,72 +1,72 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "2026-02-18": { - "files": [ - { - "filename": "automattic-w-9.pdf", - "relative_url": "/2025/01/automattic-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", - "downloads": 4 - }, - { - "filename": "wpvip-w-9.pdf", - "relative_url": "/2025/01/wpvip-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", - "downloads": 3 - } - ], - "other_downloads": 0, - "total_downloads": 7 + "date": "2026-02-18", + "period": "day", + "days": { + "2026-02-18": { + "files": [ + { + "filename": "automattic-w-9.pdf", + "relative_url": "/2025/01/automattic-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", + "downloads": 4 }, - "2026-02-17": { - "files": [ - { - "filename": "report.pdf", - "relative_url": "/2026/02/report.pdf", - "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", - "downloads": 2 - } - ], - "other_downloads": 0, - "total_downloads": 2 + { + "filename": "wpvip-w-9.pdf", + "relative_url": "/2025/01/wpvip-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", + "downloads": 3 } + ], + "other_downloads": 0, + "total_downloads": 7 }, - "summary": { - "files": [ - { - "filename": "automattic-w-9.pdf", - "relative_url": "/2025/01/automattic-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", - "downloads": 5 - }, - { - "filename": "wpvip-w-9.pdf", - "relative_url": "/2025/01/wpvip-w-9.pdf", - "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", - "downloads": 5 - }, - { - "filename": "report.pdf", - "relative_url": "/2026/02/report.pdf", - "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", - "downloads": 3 - }, - { - "filename": "archive.zip", - "relative_url": "/2025/05/archive.zip", - "download_url": "https://example.files.wordpress.com/2025/05/archive.zip", - "downloads": 1 - }, - { - "filename": "handbook.pdf", - "relative_url": "/2025/05/handbook.pdf", - "download_url": "https://example.files.wordpress.com/2025/05/handbook.pdf", - "downloads": 1 - } - ], - "total_downloads": 83, - "other_downloads": 0 + "2026-02-17": { + "files": [ + { + "filename": "report.pdf", + "relative_url": "/2026/02/report.pdf", + "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", + "downloads": 2 + } + ], + "other_downloads": 0, + "total_downloads": 2 } -} \ No newline at end of file + }, + "summary": { + "files": [ + { + "filename": "automattic-w-9.pdf", + "relative_url": "/2025/01/automattic-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/automattic-w-9.pdf", + "downloads": 5 + }, + { + "filename": "wpvip-w-9.pdf", + "relative_url": "/2025/01/wpvip-w-9.pdf", + "download_url": "https://example.files.wordpress.com/2025/01/wpvip-w-9.pdf", + "downloads": 5 + }, + { + "filename": "report.pdf", + "relative_url": "/2026/02/report.pdf", + "download_url": "https://example.files.wordpress.com/2026/02/report.pdf", + "downloads": 3 + }, + { + "filename": "archive.zip", + "relative_url": "/2025/05/archive.zip", + "download_url": "https://example.files.wordpress.com/2025/05/archive.zip", + "downloads": 1 + }, + { + "filename": "handbook.pdf", + "relative_url": "/2025/05/handbook.pdf", + "download_url": "https://example.files.wordpress.com/2025/05/handbook.pdf", + "downloads": 1 + } + ], + "total_downloads": 83, + "other_downloads": 0 + } +} diff --git a/wp_api/tests/wpcom/stats_file_downloads/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_file_downloads/summarized-02-day-with-nulls.json index 753e5fbeb..68c540ded 100644 --- a/wp_api/tests/wpcom/stats_file_downloads/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_file_downloads/summarized-02-day-with-nulls.json @@ -1,22 +1,22 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "files": [ - { - "filename": null, - "relative_url": null, - "download_url": null, - "downloads": null - }, - { - "filename": "example-file.pdf", - "relative_url": "/2026/02/example-file.pdf", - "download_url": "https://example.files.wordpress.com/2026/02/example-file.pdf", - "downloads": 10 - } - ], - "other_downloads": 0, - "total_downloads": 10 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "files": [ + { + "filename": null, + "relative_url": null, + "download_url": null, + "downloads": null + }, + { + "filename": "example-file.pdf", + "relative_url": "/2026/02/example-file.pdf", + "download_url": "https://example.files.wordpress.com/2026/02/example-file.pdf", + "downloads": 10 + } + ], + "other_downloads": 0, + "total_downloads": 10 + } +} diff --git a/wp_api/tests/wpcom/stats_file_downloads/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_file_downloads/summarized-03-day-empty-response.json index 2201d79cc..b2775b5a4 100644 --- a/wp_api/tests/wpcom/stats_file_downloads/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_file_downloads/summarized-03-day-empty-response.json @@ -1,9 +1,9 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "files": [], - "other_downloads": 0, - "total_downloads": 0 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "files": [], + "other_downloads": 0, + "total_downloads": 0 + } +} diff --git a/wp_api/tests/wpcom/stats_insights/response-01.json b/wp_api/tests/wpcom/stats_insights/response-01.json index f3a6f1569..079b7eeca 100644 --- a/wp_api/tests/wpcom/stats_insights/response-01.json +++ b/wp_api/tests/wpcom/stats_insights/response-01.json @@ -1,129 +1,129 @@ { - "highest_hour": 16, - "highest_hour_percent": 9.588268471517203, - "highest_day_of_week": 0, - "highest_day_percent": 24.946865037194474, - "days": { - "0": 939, - "4": 882, - "3": 732, - "2": 526, - "1": 452, - "5": 156, - "6": 77 + "highest_hour": 16, + "highest_hour_percent": 9.588268471517203, + "highest_day_of_week": 0, + "highest_day_percent": 24.946865037194474, + "days": { + "0": 939, + "4": 882, + "3": 732, + "2": 526, + "1": 452, + "5": 156, + "6": 77 + }, + "hours": { + "16": 340, + "14": 333, + "15": 330, + "19": 312, + "18": 309, + "17": 269, + "20": 240, + "13": 210, + "12": 185, + "21": 149, + "11": 130, + "10": 109, + "23": 94, + "00": 83, + "22": 71, + "02": 71, + "08": 70, + "09": 68, + "01": 47, + "07": 36, + "03": 35, + "06": 23, + "04": 17, + "05": 15 + }, + "hourly_views": { + "2026-03-04 15:00:00": 1, + "2026-03-04 16:00:00": 13, + "2026-03-04 17:00:00": 4, + "2026-03-04 18:00:00": 0, + "2026-03-04 19:00:00": 3, + "2026-03-04 20:00:00": 7, + "2026-03-04 21:00:00": 0, + "2026-03-04 22:00:00": 1, + "2026-03-04 23:00:00": 1, + "2026-03-05 00:00:00": 0, + "2026-03-05 01:00:00": 0, + "2026-03-05 02:00:00": 1, + "2026-03-05 03:00:00": 0, + "2026-03-05 04:00:00": 0, + "2026-03-05 05:00:00": 0, + "2026-03-05 06:00:00": 0, + "2026-03-05 07:00:00": 0, + "2026-03-05 08:00:00": 0, + "2026-03-05 09:00:00": 1, + "2026-03-05 10:00:00": 0, + "2026-03-05 11:00:00": 0, + "2026-03-05 12:00:00": 14, + "2026-03-05 13:00:00": 10, + "2026-03-05 14:00:00": 0, + "2026-03-05 15:00:00": 1, + "2026-03-05 16:00:00": 0, + "2026-03-05 17:00:00": 8, + "2026-03-05 18:00:00": 0, + "2026-03-05 19:00:00": 6, + "2026-03-05 20:00:00": 0, + "2026-03-05 21:00:00": 6, + "2026-03-05 22:00:00": 0, + "2026-03-05 23:00:00": 0, + "2026-03-06 00:00:00": 3, + "2026-03-06 01:00:00": 0, + "2026-03-06 02:00:00": 0, + "2026-03-06 03:00:00": 0, + "2026-03-06 04:00:00": 0, + "2026-03-06 05:00:00": 0, + "2026-03-06 06:00:00": 0, + "2026-03-06 07:00:00": 0, + "2026-03-06 08:00:00": 0, + "2026-03-06 09:00:00": 0, + "2026-03-06 10:00:00": 0, + "2026-03-06 11:00:00": 5, + "2026-03-06 12:00:00": 7, + "2026-03-06 13:00:00": 8, + "2026-03-06 14:00:00": 10 + }, + "years": [ + { + "year": "2024", + "total_posts": 54, + "total_words": 17252, + "avg_words": 319.5, + "total_likes": 464, + "avg_likes": 8.6, + "total_comments": 361, + "avg_comments": 6.7, + "total_images": 26, + "avg_images": 1.9 }, - "hours": { - "16": 340, - "14": 333, - "15": 330, - "19": 312, - "18": 309, - "17": 269, - "20": 240, - "13": 210, - "12": 185, - "21": 149, - "11": 130, - "10": 109, - "23": 94, - "00": 83, - "22": 71, - "02": 71, - "08": 70, - "09": 68, - "01": 47, - "07": 36, - "03": 35, - "06": 23, - "04": 17, - "05": 15 + { + "year": "2025", + "total_posts": 268, + "total_words": 60226, + "avg_words": 224.7, + "total_likes": 987, + "avg_likes": 3.7, + "total_comments": 1505, + "avg_comments": 5.6, + "total_images": 162, + "avg_images": 3.6 }, - "hourly_views": { - "2026-03-04 15:00:00": 1, - "2026-03-04 16:00:00": 13, - "2026-03-04 17:00:00": 4, - "2026-03-04 18:00:00": 0, - "2026-03-04 19:00:00": 3, - "2026-03-04 20:00:00": 7, - "2026-03-04 21:00:00": 0, - "2026-03-04 22:00:00": 1, - "2026-03-04 23:00:00": 1, - "2026-03-05 00:00:00": 0, - "2026-03-05 01:00:00": 0, - "2026-03-05 02:00:00": 1, - "2026-03-05 03:00:00": 0, - "2026-03-05 04:00:00": 0, - "2026-03-05 05:00:00": 0, - "2026-03-05 06:00:00": 0, - "2026-03-05 07:00:00": 0, - "2026-03-05 08:00:00": 0, - "2026-03-05 09:00:00": 1, - "2026-03-05 10:00:00": 0, - "2026-03-05 11:00:00": 0, - "2026-03-05 12:00:00": 14, - "2026-03-05 13:00:00": 10, - "2026-03-05 14:00:00": 0, - "2026-03-05 15:00:00": 1, - "2026-03-05 16:00:00": 0, - "2026-03-05 17:00:00": 8, - "2026-03-05 18:00:00": 0, - "2026-03-05 19:00:00": 6, - "2026-03-05 20:00:00": 0, - "2026-03-05 21:00:00": 6, - "2026-03-05 22:00:00": 0, - "2026-03-05 23:00:00": 0, - "2026-03-06 00:00:00": 3, - "2026-03-06 01:00:00": 0, - "2026-03-06 02:00:00": 0, - "2026-03-06 03:00:00": 0, - "2026-03-06 04:00:00": 0, - "2026-03-06 05:00:00": 0, - "2026-03-06 06:00:00": 0, - "2026-03-06 07:00:00": 0, - "2026-03-06 08:00:00": 0, - "2026-03-06 09:00:00": 0, - "2026-03-06 10:00:00": 0, - "2026-03-06 11:00:00": 5, - "2026-03-06 12:00:00": 7, - "2026-03-06 13:00:00": 8, - "2026-03-06 14:00:00": 10 - }, - "years": [ - { - "year": "2024", - "total_posts": 54, - "total_words": 17252, - "avg_words": 319.5, - "total_likes": 464, - "avg_likes": 8.6, - "total_comments": 361, - "avg_comments": 6.7, - "total_images": 26, - "avg_images": 1.9 - }, - { - "year": "2025", - "total_posts": 268, - "total_words": 60226, - "avg_words": 224.7, - "total_likes": 987, - "avg_likes": 3.7, - "total_comments": 1505, - "avg_comments": 5.6, - "total_images": 162, - "avg_images": 3.6 - }, - { - "year": "2026", - "total_posts": 72, - "total_words": 20970, - "avg_words": 291.3, - "total_likes": 330, - "avg_likes": 4.6, - "total_comments": 373, - "avg_comments": 5.2, - "total_images": 62, - "avg_images": 4.8 - } - ] + { + "year": "2026", + "total_posts": 72, + "total_words": 20970, + "avg_words": 291.3, + "total_likes": 330, + "avg_likes": 4.6, + "total_comments": 373, + "avg_comments": 5.2, + "total_images": 62, + "avg_images": 4.8 + } + ] } diff --git a/wp_api/tests/wpcom/stats_insights/response-02-empty.json b/wp_api/tests/wpcom/stats_insights/response-02-empty.json index 44464d05a..7ab757e25 100644 --- a/wp_api/tests/wpcom/stats_insights/response-02-empty.json +++ b/wp_api/tests/wpcom/stats_insights/response-02-empty.json @@ -1,10 +1,10 @@ { - "highest_hour": 0, - "highest_hour_percent": 0.0, - "highest_day_of_week": 0, - "highest_day_percent": 0.0, - "days": [], - "hours": [], - "hourly_views": [], - "years": [] + "highest_hour": 0, + "highest_hour_percent": 0.0, + "highest_day_of_week": 0, + "highest_day_percent": 0.0, + "days": [], + "hours": [], + "hourly_views": [], + "years": [] } diff --git a/wp_api/tests/wpcom/stats_insights/response-03-integer-fields.json b/wp_api/tests/wpcom/stats_insights/response-03-integer-fields.json index 02456d9cd..a438209ea 100644 --- a/wp_api/tests/wpcom/stats_insights/response-03-integer-fields.json +++ b/wp_api/tests/wpcom/stats_insights/response-03-integer-fields.json @@ -1,10 +1,10 @@ { - "highest_hour": 0, - "highest_hour_percent": 0.0, - "highest_day_of_week": 0, - "highest_day_percent": 0.0, - "days": 0, - "hours": 0, - "hourly_views": 0, - "years": [] + "highest_hour": 0, + "highest_hour_percent": 0.0, + "highest_day_of_week": 0, + "highest_day_percent": 0.0, + "days": 0, + "hours": 0, + "hourly_views": 0, + "years": [] } diff --git a/wp_api/tests/wpcom/stats_insights/response-04-null-fields.json b/wp_api/tests/wpcom/stats_insights/response-04-null-fields.json index 07a960892..9d5e3329d 100644 --- a/wp_api/tests/wpcom/stats_insights/response-04-null-fields.json +++ b/wp_api/tests/wpcom/stats_insights/response-04-null-fields.json @@ -1,10 +1,10 @@ { - "highest_hour": 0, - "highest_hour_percent": 0.0, - "highest_day_of_week": 0, - "highest_day_percent": 0.0, - "days": null, - "hours": null, - "hourly_views": null, - "years": [] + "highest_hour": 0, + "highest_hour_percent": 0.0, + "highest_day_of_week": 0, + "highest_day_percent": 0.0, + "days": null, + "hours": null, + "hourly_views": null, + "years": [] } diff --git a/wp_api/tests/wpcom/stats_insights/response-05-false-fields.json b/wp_api/tests/wpcom/stats_insights/response-05-false-fields.json index 3e5c7dd28..e88fc852b 100644 --- a/wp_api/tests/wpcom/stats_insights/response-05-false-fields.json +++ b/wp_api/tests/wpcom/stats_insights/response-05-false-fields.json @@ -1,10 +1,10 @@ { - "highest_hour": 0, - "highest_hour_percent": 0.0, - "highest_day_of_week": 0, - "highest_day_percent": 0.0, - "days": false, - "hours": false, - "hourly_views": false, - "years": [] + "highest_hour": 0, + "highest_hour_percent": 0.0, + "highest_day_of_week": 0, + "highest_day_percent": 0.0, + "days": false, + "hours": false, + "hourly_views": false, + "years": [] } diff --git a/wp_api/tests/wpcom/stats_referrers/no-summary-01.json b/wp_api/tests/wpcom/stats_referrers/no-summary-01.json index 767bda9e1..8b6993325 100644 --- a/wp_api/tests/wpcom/stats_referrers/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_referrers/no-summary-01.json @@ -1,54 +1,54 @@ { - "date": "2026-01-26", - "days": { - "2026-01-26": { - "groups": [ - { - "group": "WordPress.com Reader", - "name": "WordPress.com Reader", - "url": "https://wordpress.com/reader/", - "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", - "total": 8, - "follow_data": null, - "results": { - "views": 8 - } - }, - { - "group": "Search Engines", - "name": "Search Engines", - "icon": "https://wordpress.com/i/stats/search-engine.png", - "total": 3, - "follow_data": null, - "results": [ - { - "name": "Google Search", - "url": "http://www.google.com/", - "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", - "views": 3 - } - ] - } - ], - "other_views": 2, - "total_views": 13 + "date": "2026-01-26", + "days": { + "2026-01-26": { + "groups": [ + { + "group": "WordPress.com Reader", + "name": "WordPress.com Reader", + "url": "https://wordpress.com/reader/", + "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", + "total": 8, + "follow_data": null, + "results": { + "views": 8 + } }, - "2026-01-25": { - "groups": [ - { - "group": "matticspace.a8c.com", - "name": "matticspace.a8c.com", - "url": "https://matticspace.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", - "total": 5, - "follow_data": null, - "results": { - "views": 5 - } - } - ], - "other_views": 0, - "total_views": 5 + { + "group": "Search Engines", + "name": "Search Engines", + "icon": "https://wordpress.com/i/stats/search-engine.png", + "total": 3, + "follow_data": null, + "results": [ + { + "name": "Google Search", + "url": "http://www.google.com/", + "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", + "views": 3 + } + ] } + ], + "other_views": 2, + "total_views": 13 + }, + "2026-01-25": { + "groups": [ + { + "group": "matticspace.a8c.com", + "name": "matticspace.a8c.com", + "url": "https://matticspace.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", + "total": 5, + "follow_data": null, + "results": { + "views": 5 + } + } + ], + "other_views": 0, + "total_views": 5 } + } } diff --git a/wp_api/tests/wpcom/stats_referrers/summarized-01-day.json b/wp_api/tests/wpcom/stats_referrers/summarized-01-day.json index e02489c42..9e7f52ab5 100644 --- a/wp_api/tests/wpcom/stats_referrers/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_referrers/summarized-01-day.json @@ -1,94 +1,94 @@ { - "date": "2026-01-26", - "period": "day", - "summary": { - "groups": [ - { - "group": "WordPress.com Reader", - "name": "WordPress.com Reader", - "url": "https://wordpress.com/reader/", - "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", - "total": 12, - "follow_data": null, - "results": { - "views": 12 - } - }, - { - "group": "matticspace.a8c.com", - "name": "matticspace.a8c.com", - "url": "https://matticspace.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", - "total": 5, - "follow_data": null, - "results": { - "views": 5 - } - }, - { - "group": "chat.a8c.com", - "name": "chat.a8c.com", - "url": "https://chat.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/2c4db91eefe96556407df6171a361e7b2fb622fa1c86e1f704d29dd5e1c841da?s=48", - "total": 2, - "follow_data": null, - "results": { - "views": 2 - } - }, - { - "group": "Search Engines", - "name": "Search Engines", - "icon": "https://wordpress.com/i/stats/search-engine.png", - "total": 1, - "follow_data": null, - "results": [ - { - "name": "Google Search", - "url": "http://www.google.com/", - "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", - "views": 1 - } - ] - }, - { - "group": "automattic.com", - "name": "automattic.com", - "url": "https://automattic.com/", - "icon": "https://secure.gravatar.com/blavatar/b2213008f44f68731f22ff50ee359e9fc09c06c219fb1d6d587754812b5be2a1?s=48", - "total": 1, - "follow_data": null, - "results": { - "views": 1 - } - }, - { - "group": "dotcom.wordpress.com", - "name": "dotcom.wordpress.com", - "url": "https://dotcom.wordpress.com/", - "icon": "https://secure.gravatar.com/blavatar/ad2c02b463c00d2157a9ea744b0c13e7a1dbf69fd0cecf5aedaa3fd28801b675?s=48", - "total": 1, - "follow_data": { - "params": { - "stat-source": "stats_referrer", - "follow-text": "Follow", - "following-text": "Following", - "following-hover-text": "Unfollow", - "blog_domain": "dotcom.wordpress.com", - "blog_url": "http://dotcom.wordpress.com", - "blog_id": 19734, - "site_id": 19734, - "blog_title": "Dotcom P2", - "is_following": true - }, - "type": "follow" - }, - "results": { - "views": 1 - } - } - ], - "other_views": 0, - "total_views": 22 - } + "date": "2026-01-26", + "period": "day", + "summary": { + "groups": [ + { + "group": "WordPress.com Reader", + "name": "WordPress.com Reader", + "url": "https://wordpress.com/reader/", + "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", + "total": 12, + "follow_data": null, + "results": { + "views": 12 + } + }, + { + "group": "matticspace.a8c.com", + "name": "matticspace.a8c.com", + "url": "https://matticspace.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", + "total": 5, + "follow_data": null, + "results": { + "views": 5 + } + }, + { + "group": "chat.a8c.com", + "name": "chat.a8c.com", + "url": "https://chat.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/2c4db91eefe96556407df6171a361e7b2fb622fa1c86e1f704d29dd5e1c841da?s=48", + "total": 2, + "follow_data": null, + "results": { + "views": 2 + } + }, + { + "group": "Search Engines", + "name": "Search Engines", + "icon": "https://wordpress.com/i/stats/search-engine.png", + "total": 1, + "follow_data": null, + "results": [ + { + "name": "Google Search", + "url": "http://www.google.com/", + "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", + "views": 1 + } + ] + }, + { + "group": "automattic.com", + "name": "automattic.com", + "url": "https://automattic.com/", + "icon": "https://secure.gravatar.com/blavatar/b2213008f44f68731f22ff50ee359e9fc09c06c219fb1d6d587754812b5be2a1?s=48", + "total": 1, + "follow_data": null, + "results": { + "views": 1 + } + }, + { + "group": "dotcom.wordpress.com", + "name": "dotcom.wordpress.com", + "url": "https://dotcom.wordpress.com/", + "icon": "https://secure.gravatar.com/blavatar/ad2c02b463c00d2157a9ea744b0c13e7a1dbf69fd0cecf5aedaa3fd28801b675?s=48", + "total": 1, + "follow_data": { + "params": { + "stat-source": "stats_referrer", + "follow-text": "Follow", + "following-text": "Following", + "following-hover-text": "Unfollow", + "blog_domain": "dotcom.wordpress.com", + "blog_url": "http://dotcom.wordpress.com", + "blog_id": 19734, + "site_id": 19734, + "blog_title": "Dotcom P2", + "is_following": true + }, + "type": "follow" + }, + "results": { + "views": 1 + } + } + ], + "other_views": 0, + "total_views": 22 + } } diff --git a/wp_api/tests/wpcom/stats_referrers/summarized-02-day-follow-data-false.json b/wp_api/tests/wpcom/stats_referrers/summarized-02-day-follow-data-false.json index 12a90e5cc..65447f194 100644 --- a/wp_api/tests/wpcom/stats_referrers/summarized-02-day-follow-data-false.json +++ b/wp_api/tests/wpcom/stats_referrers/summarized-02-day-follow-data-false.json @@ -1,32 +1,32 @@ { - "date": "2026-01-28", - "period": "day", - "summary": { - "groups": [ - { - "group": "WordPress.com Reader", - "name": "WordPress.com Reader", - "url": "https://wordpress.com/reader/", - "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", - "total": 10, - "follow_data": null, - "results": { - "views": 10 - } - }, - { - "group": "domainsuniversity.wordpress.com", - "name": "domainsuniversity.wordpress.com", - "url": "https://domainsuniversity.wordpress.com/", - "icon": null, - "total": 3, - "follow_data": false, - "results": { - "views": 3 - } - } - ], - "other_views": 0, - "total_views": 13 - } + "date": "2026-01-28", + "period": "day", + "summary": { + "groups": [ + { + "group": "WordPress.com Reader", + "name": "WordPress.com Reader", + "url": "https://wordpress.com/reader/", + "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", + "total": 10, + "follow_data": null, + "results": { + "views": 10 + } + }, + { + "group": "domainsuniversity.wordpress.com", + "name": "domainsuniversity.wordpress.com", + "url": "https://domainsuniversity.wordpress.com/", + "icon": null, + "total": 3, + "follow_data": false, + "results": { + "views": 3 + } + } + ], + "other_views": 0, + "total_views": 13 + } } diff --git a/wp_api/tests/wpcom/stats_referrers/summarized-03-day-many-groups.json b/wp_api/tests/wpcom/stats_referrers/summarized-03-day-many-groups.json index 9703c759c..c36b1cdbc 100644 --- a/wp_api/tests/wpcom/stats_referrers/summarized-03-day-many-groups.json +++ b/wp_api/tests/wpcom/stats_referrers/summarized-03-day-many-groups.json @@ -1,138 +1,138 @@ { - "date": "2026-01-24", - "period": "day", - "summary": { - "groups": [ - { - "group": "chat.a8c.com", - "name": "chat.a8c.com", - "url": "https://chat.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/2c4db91eefe96556407df6171a361e7b2fb622fa1c86e1f704d29dd5e1c841da?s=48", - "total": 55, - "follow_data": null, - "results": { - "views": 55 - } - }, - { - "group": "WordPress.com Reader", - "name": "WordPress.com Reader", - "url": "https://wordpress.com/reader/", - "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", - "total": 46, - "follow_data": null, - "results": { - "views": 46 - } - }, - { - "group": "Search Engines", - "name": "Search Engines", - "icon": "https://wordpress.com/i/stats/search-engine.png", - "total": 10, - "follow_data": null, - "results": [ - { - "name": "Google Search", - "url": "http://www.google.com/", - "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", - "views": 10 - } - ] - }, - { - "group": "mail.google.com", - "name": "Gmail", - "url": "https://mail.google.com/", - "icon": null, - "total": 7, - "follow_data": null, - "results": { - "views": 7 - } - }, - { - "group": "matticspace.a8c.com", - "name": "matticspace.a8c.com", - "url": "https://matticspace.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", - "total": 7, - "follow_data": null, - "results": { - "views": 7 - } - }, - { - "group": "looker.a8c.com", - "name": "looker.a8c.com", - "url": "https://looker.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/df0869bebd92d555ef33475b487931bc6217d83c3280e5cacd00d653058a3bc6?s=48", - "total": 4, - "follow_data": null, - "results": { - "views": 4 - } - }, - { - "group": "jptools.wordpress.com", - "name": "jptools.wordpress.com", - "url": "https://jptools.wordpress.com/", - "icon": null, - "total": 2, - "follow_data": { - "params": { - "stat-source": "stats_referrer", - "follow-text": "Follow", - "following-text": "Following", - "following-hover-text": "Unfollow", - "blog_domain": "jptools.wordpress.com", - "blog_url": "http://jptools.wordpress.com", - "blog_id": 179655692, - "site_id": 179655692, - "blog_title": "Jetpack Tools", - "is_following": false - }, - "type": "follow" - }, - "results": { - "views": 2 - } - }, - { - "group": "chatgpt.com", - "name": "chatgpt.com", - "url": "https://chatgpt.com/", - "icon": "https://secure.gravatar.com/blavatar/c6240ca88eed5b237451d4ceab51a5df1e8bc3b0a4a0e099fbe4b9f0d5cf23a2?s=48", - "total": 1, - "follow_data": null, - "results": { - "views": 1 - } - }, - { - "group": "experiments.a8c.com", - "name": "experiments.a8c.com", - "url": "https://experiments.a8c.com/", - "icon": "https://secure.gravatar.com/blavatar/bb47306c966e1b9943ea8870ac01a0ac05a14db235d259e0d4ffa2ae2eb9e1b4?s=48", - "total": 1, - "follow_data": null, - "results": { - "views": 1 - } - }, - { - "group": "docs.google.com", - "name": "docs.google.com", - "url": "https://docs.google.com/", - "icon": null, - "total": 1, - "follow_data": null, - "results": { - "views": 1 - } - } - ], - "other_views": 0, - "total_views": 142 - } + "date": "2026-01-24", + "period": "day", + "summary": { + "groups": [ + { + "group": "chat.a8c.com", + "name": "chat.a8c.com", + "url": "https://chat.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/2c4db91eefe96556407df6171a361e7b2fb622fa1c86e1f704d29dd5e1c841da?s=48", + "total": 55, + "follow_data": null, + "results": { + "views": 55 + } + }, + { + "group": "WordPress.com Reader", + "name": "WordPress.com Reader", + "url": "https://wordpress.com/reader/", + "icon": "https://secure.gravatar.com/blavatar/c5ba929e1803dd1d2865d53b671e5d0a1f64071ecd9d720d7377dce63fdab0a2?s=48", + "total": 46, + "follow_data": null, + "results": { + "views": 46 + } + }, + { + "group": "Search Engines", + "name": "Search Engines", + "icon": "https://wordpress.com/i/stats/search-engine.png", + "total": 10, + "follow_data": null, + "results": [ + { + "name": "Google Search", + "url": "http://www.google.com/", + "icon": "https://secure.gravatar.com/blavatar/426d27def7eef69afd58ab5280173a02e50c3a2f9d0b9ebce3fb453a69af2b44?s=48", + "views": 10 + } + ] + }, + { + "group": "mail.google.com", + "name": "Gmail", + "url": "https://mail.google.com/", + "icon": null, + "total": 7, + "follow_data": null, + "results": { + "views": 7 + } + }, + { + "group": "matticspace.a8c.com", + "name": "matticspace.a8c.com", + "url": "https://matticspace.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/4c96b73e50179bce58e929ad02c356facb884b16cf51eec883ccd7e2347754a8?s=48", + "total": 7, + "follow_data": null, + "results": { + "views": 7 + } + }, + { + "group": "looker.a8c.com", + "name": "looker.a8c.com", + "url": "https://looker.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/df0869bebd92d555ef33475b487931bc6217d83c3280e5cacd00d653058a3bc6?s=48", + "total": 4, + "follow_data": null, + "results": { + "views": 4 + } + }, + { + "group": "jptools.wordpress.com", + "name": "jptools.wordpress.com", + "url": "https://jptools.wordpress.com/", + "icon": null, + "total": 2, + "follow_data": { + "params": { + "stat-source": "stats_referrer", + "follow-text": "Follow", + "following-text": "Following", + "following-hover-text": "Unfollow", + "blog_domain": "jptools.wordpress.com", + "blog_url": "http://jptools.wordpress.com", + "blog_id": 179655692, + "site_id": 179655692, + "blog_title": "Jetpack Tools", + "is_following": false + }, + "type": "follow" + }, + "results": { + "views": 2 + } + }, + { + "group": "chatgpt.com", + "name": "chatgpt.com", + "url": "https://chatgpt.com/", + "icon": "https://secure.gravatar.com/blavatar/c6240ca88eed5b237451d4ceab51a5df1e8bc3b0a4a0e099fbe4b9f0d5cf23a2?s=48", + "total": 1, + "follow_data": null, + "results": { + "views": 1 + } + }, + { + "group": "experiments.a8c.com", + "name": "experiments.a8c.com", + "url": "https://experiments.a8c.com/", + "icon": "https://secure.gravatar.com/blavatar/bb47306c966e1b9943ea8870ac01a0ac05a14db235d259e0d4ffa2ae2eb9e1b4?s=48", + "total": 1, + "follow_data": null, + "results": { + "views": 1 + } + }, + { + "group": "docs.google.com", + "name": "docs.google.com", + "url": "https://docs.google.com/", + "icon": null, + "total": 1, + "follow_data": null, + "results": { + "views": 1 + } + } + ], + "other_views": 0, + "total_views": 142 + } } diff --git a/wp_api/tests/wpcom/stats_referrers/summarized-04-day-with-nulls.json b/wp_api/tests/wpcom/stats_referrers/summarized-04-day-with-nulls.json index 4bea8cfa0..e7dfd6bdf 100644 --- a/wp_api/tests/wpcom/stats_referrers/summarized-04-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_referrers/summarized-04-day-with-nulls.json @@ -1,63 +1,63 @@ { - "date": "2026-01-28", - "period": "day", - "summary": { - "groups": [ - { - "group": null, - "name": null, - "url": null, - "icon": null, - "total": null, - "follow_data": null, - "results": null - }, - { - "group": "WordPress.com Reader", - "name": "WordPress.com Reader", - "url": "https://wordpress.com/reader/", - "icon": "https://example.com/icon.png", - "total": 100, - "follow_data": null, - "results": { - "views": 100 - } - }, - { - "group": "Search Engines", - "name": "Search Engines", - "url": null, - "icon": null, - "total": 50, - "follow_data": null, - "results": [ - { - "name": null, - "url": null, - "icon": null, - "views": null - }, - { - "name": "Google Search", - "url": "http://www.google.com/", - "icon": "https://example.com/google.png", - "views": 25 - } - ] - }, - { - "group": "partial.example.com", - "name": null, - "url": null, - "icon": null, - "total": 10, - "follow_data": null, - "results": { - "views": null - } - } - ], - "other_views": 0, - "total_views": 160 - } + "date": "2026-01-28", + "period": "day", + "summary": { + "groups": [ + { + "group": null, + "name": null, + "url": null, + "icon": null, + "total": null, + "follow_data": null, + "results": null + }, + { + "group": "WordPress.com Reader", + "name": "WordPress.com Reader", + "url": "https://wordpress.com/reader/", + "icon": "https://example.com/icon.png", + "total": 100, + "follow_data": null, + "results": { + "views": 100 + } + }, + { + "group": "Search Engines", + "name": "Search Engines", + "url": null, + "icon": null, + "total": 50, + "follow_data": null, + "results": [ + { + "name": null, + "url": null, + "icon": null, + "views": null + }, + { + "name": "Google Search", + "url": "http://www.google.com/", + "icon": "https://example.com/google.png", + "views": 25 + } + ] + }, + { + "group": "partial.example.com", + "name": null, + "url": null, + "icon": null, + "total": 10, + "follow_data": null, + "results": { + "views": null + } + } + ], + "other_views": 0, + "total_views": 160 + } } diff --git a/wp_api/tests/wpcom/stats_region_views/no-summary-01.json b/wp_api/tests/wpcom/stats_region_views/no-summary-01.json index 10743c615..76f14b291 100644 --- a/wp_api/tests/wpcom/stats_region_views/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_region_views/no-summary-01.json @@ -1,136 +1,136 @@ { - "date": "2026-02-05", - "days": { - "2026-02-05": { - "views": [ - { - "location": "Washington", - "views": 73, - "country_code": "US" - }, - { - "location": "Madrid, Comunidad de", - "views": 49, - "country_code": "ES" - }, - { - "location": "England", - "views": 39, - "country_code": "GB" - }, - { - "location": "Singapore", - "views": 34, - "country_code": "SG" - }, - { - "location": "New South Wales", - "views": 30, - "country_code": "AU" - } - ], - "other_views": 157, - "total_views": 504 + "date": "2026-02-05", + "days": { + "2026-02-05": { + "views": [ + { + "location": "Washington", + "views": 73, + "country_code": "US" }, - "2026-02-04": { - "views": [ - { - "location": "Washington", - "views": 123, - "country_code": "US" - }, - { - "location": "Illinois", - "views": 121, - "country_code": "US" - }, - { - "location": "California", - "views": 103, - "country_code": "US" - }, - { - "location": "England", - "views": 85, - "country_code": "GB" - }, - { - "location": "Ontario", - "views": 80, - "country_code": "CA" - } - ], - "other_views": 546, - "total_views": 1382 + { + "location": "Madrid, Comunidad de", + "views": 49, + "country_code": "ES" }, - "2026-02-03": { - "views": [ - { - "location": "Washington", - "views": 168, - "country_code": "US" - }, - { - "location": "Ontario", - "views": 123, - "country_code": "CA" - }, - { - "location": "Virginia", - "views": 95, - "country_code": "US" - }, - { - "location": "Illinois", - "views": 93, - "country_code": "US" - }, - { - "location": "New York", - "views": 83, - "country_code": "US" - } - ], - "other_views": 489, - "total_views": 1363 + { + "location": "England", + "views": 39, + "country_code": "GB" + }, + { + "location": "Singapore", + "views": 34, + "country_code": "SG" + }, + { + "location": "New South Wales", + "views": 30, + "country_code": "AU" } + ], + "other_views": 157, + "total_views": 504 }, - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" + "2026-02-04": { + "views": [ + { + "location": "Washington", + "views": 123, + "country_code": "US" + }, + { + "location": "Illinois", + "views": 121, + "country_code": "US" + }, + { + "location": "California", + "views": 103, + "country_code": "US" }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" + { + "location": "England", + "views": 85, + "country_code": "GB" + }, + { + "location": "Ontario", + "views": 80, + "country_code": "CA" + } + ], + "other_views": 546, + "total_views": 1382 + }, + "2026-02-03": { + "views": [ + { + "location": "Washington", + "views": 168, + "country_code": "US" }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" + { + "location": "Ontario", + "views": 123, + "country_code": "CA" }, - "SG": { - "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", - "country_full": "Singapore", - "map_region": "035" + { + "location": "Virginia", + "views": 95, + "country_code": "US" }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" + { + "location": "Illinois", + "views": 93, + "country_code": "US" }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" + { + "location": "New York", + "views": 83, + "country_code": "US" } + ], + "other_views": 489, + "total_views": 1363 + } + }, + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" + }, + "SG": { + "flag_icon": "https://secure.gravatar.com/blavatar/9aa06d58384440db23a879f5f1f9fab43a81b93a0c87b7354c61eb107c4a4f90?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/7b5fe6c9c2b3bdcf5b1ebfd331a470a57d525d3d703f447e19dd8795b7eae782?s=48", + "country_full": "Singapore", + "map_region": "035" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" } + } } diff --git a/wp_api/tests/wpcom/stats_region_views/summarized-01-day.json b/wp_api/tests/wpcom/stats_region_views/summarized-01-day.json index 1f92f52a6..80a1e4278 100644 --- a/wp_api/tests/wpcom/stats_region_views/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_region_views/summarized-01-day.json @@ -1,91 +1,91 @@ { - "date": "2026-02-05", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "CA": { - "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", - "country_full": "Canada", - "map_region": "021" - }, - "ES": { - "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", - "country_full": "Spain", - "map_region": "039" - }, - "AU": { - "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", - "country_full": "Australia", - "map_region": "053" - }, - "GB": { - "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", - "country_full": "United Kingdom", - "map_region": "154" - } + "date": "2026-02-05", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" }, - "summary": { - "views": [ - { - "location": "Washington", - "views": 613, - "country_code": "US" - }, - { - "location": "California", - "views": 471, - "country_code": "US" - }, - { - "location": "Ontario", - "views": 430, - "country_code": "CA" - }, - { - "location": "New York", - "views": 422, - "country_code": "US" - }, - { - "location": "Illinois", - "views": 395, - "country_code": "US" - }, - { - "location": "Madrid, Comunidad de", - "views": 326, - "country_code": "ES" - }, - { - "location": "New South Wales", - "views": 321, - "country_code": "AU" - }, - { - "location": "England", - "views": 318, - "country_code": "GB" - }, - { - "location": "Georgia", - "views": 296, - "country_code": "US" - }, - { - "location": "Virginia", - "views": 259, - "country_code": "US" - } - ], - "other_views": 0, - "total_views": 0 + "CA": { + "flag_icon": "https://secure.gravatar.com/blavatar/8f783538a662f4b416a3e91154e417f38e0dec3eec8e0b5dbe4c8eb861d26e74?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/cb3ca1445705c8820c0c1398fff2716127d8b7f1eb17b8dbc7522fa4d08ca5f3?s=48", + "country_full": "Canada", + "map_region": "021" + }, + "ES": { + "flag_icon": "https://secure.gravatar.com/blavatar/0060781554370ebece2445877930a4b374d8312ecad053883dbd38e5f271d295?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/9e650d102b495ceba9fb6577a6435f1d23a036d409acefe09c0606b181272ffc?s=48", + "country_full": "Spain", + "map_region": "039" + }, + "AU": { + "flag_icon": "https://secure.gravatar.com/blavatar/971effecb7738aac20120105101d7edbb81d07ec76c7040e392591d0b6bec071?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f7f5263143e568cdd10cd7ad7a3b48c05b0a57296941ddf119191d93156e8c34?s=48", + "country_full": "Australia", + "map_region": "053" + }, + "GB": { + "flag_icon": "https://secure.gravatar.com/blavatar/ea62907b7e45633b3f9daac0771db98d40cfd749fd0ef28313224e2618468367?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/f8c11df368971fc1b3e2a7e9a2093bee00b3ae20c14298cea0c9ea8dde177141?s=48", + "country_full": "United Kingdom", + "map_region": "154" } + }, + "summary": { + "views": [ + { + "location": "Washington", + "views": 613, + "country_code": "US" + }, + { + "location": "California", + "views": 471, + "country_code": "US" + }, + { + "location": "Ontario", + "views": 430, + "country_code": "CA" + }, + { + "location": "New York", + "views": 422, + "country_code": "US" + }, + { + "location": "Illinois", + "views": 395, + "country_code": "US" + }, + { + "location": "Madrid, Comunidad de", + "views": 326, + "country_code": "ES" + }, + { + "location": "New South Wales", + "views": 321, + "country_code": "AU" + }, + { + "location": "England", + "views": 318, + "country_code": "GB" + }, + { + "location": "Georgia", + "views": 296, + "country_code": "US" + }, + { + "location": "Virginia", + "views": 259, + "country_code": "US" + } + ], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_region_views/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_region_views/summarized-02-day-with-nulls.json index 06da477a3..c5dfb3fcb 100644 --- a/wp_api/tests/wpcom/stats_region_views/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_region_views/summarized-02-day-with-nulls.json @@ -1,38 +1,38 @@ { - "date": "2026-02-05", - "country-info": { - "US": { - "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", - "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", - "country_full": "United States", - "map_region": "021" - }, - "XX": { - "flag_icon": null, - "flat_flag_icon": null, - "country_full": null, - "map_region": null - } + "date": "2026-02-05", + "country-info": { + "US": { + "flag_icon": "https://secure.gravatar.com/blavatar/d0c9ee2dfb5087992fc9b2fc36c2d78311887d82934678b3118815d1f240951b?s=48", + "flat_flag_icon": "https://secure.gravatar.com/blavatar/c582a850fc3fea67cbf9e88f7755a85870239bcf4138c9cf3a6f7c53e5a658ea?s=48", + "country_full": "United States", + "map_region": "021" }, - "summary": { - "views": [ - { - "location": null, - "views": null, - "country_code": null - }, - { - "location": "Washington", - "views": 100, - "country_code": "US" - }, - { - "location": null, - "views": 50, - "country_code": "XX" - } - ], - "other_views": 0, - "total_views": 150 + "XX": { + "flag_icon": null, + "flat_flag_icon": null, + "country_full": null, + "map_region": null } + }, + "summary": { + "views": [ + { + "location": null, + "views": null, + "country_code": null + }, + { + "location": "Washington", + "views": 100, + "country_code": "US" + }, + { + "location": null, + "views": 50, + "country_code": "XX" + } + ], + "other_views": 0, + "total_views": 150 + } } diff --git a/wp_api/tests/wpcom/stats_region_views/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_region_views/summarized-03-day-empty-response.json index c448ea452..5af3e48c9 100644 --- a/wp_api/tests/wpcom/stats_region_views/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_region_views/summarized-03-day-empty-response.json @@ -1,9 +1,9 @@ { - "date": "2026-02-05", - "country-info": [], - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-02-05", + "country-info": [], + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_region_views/summarized-04-day-empty-null.json b/wp_api/tests/wpcom/stats_region_views/summarized-04-day-empty-null.json index 462d17a07..319b10a44 100644 --- a/wp_api/tests/wpcom/stats_region_views/summarized-04-day-empty-null.json +++ b/wp_api/tests/wpcom/stats_region_views/summarized-04-day-empty-null.json @@ -1,9 +1,9 @@ { - "date": "2026-02-05", - "country-info": null, - "summary": { - "views": [], - "other_views": 0, - "total_views": 0 - } + "date": "2026-02-05", + "country-info": null, + "summary": { + "views": [], + "other_views": 0, + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_search_terms/no-summary-01.json b/wp_api/tests/wpcom/stats_search_terms/no-summary-01.json index 9907109d4..9f3aab0e9 100644 --- a/wp_api/tests/wpcom/stats_search_terms/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_search_terms/no-summary-01.json @@ -1,23 +1,23 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "2026-02-18": { - "search_terms": [], - "encrypted_search_terms": 0, - "other_search_terms": 0, - "total_search_terms": 0 - }, - "2026-02-17": { - "search_terms": [ - { - "term": "example search", - "views": 5 - } - ], - "encrypted_search_terms": 2, - "other_search_terms": 1, - "total_search_terms": 8 + "date": "2026-02-18", + "period": "day", + "days": { + "2026-02-18": { + "search_terms": [], + "encrypted_search_terms": 0, + "other_search_terms": 0, + "total_search_terms": 0 + }, + "2026-02-17": { + "search_terms": [ + { + "term": "example search", + "views": 5 } + ], + "encrypted_search_terms": 2, + "other_search_terms": 1, + "total_search_terms": 8 } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_search_terms/summarized-01-day.json b/wp_api/tests/wpcom/stats_search_terms/summarized-01-day.json index fcefe35d7..c756221fc 100644 --- a/wp_api/tests/wpcom/stats_search_terms/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_search_terms/summarized-01-day.json @@ -1,23 +1,23 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "search_terms": [ - { - "term": "https://example.com/support-tools/", - "views": 12 - }, - { - "term": "https://example.com/security-best-practices/", - "views": 11 - }, - { - "term": "search query example", - "views": 4 - } - ], - "encrypted_search_terms": 14, - "other_search_terms": -429, - "total_search_terms": 0 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "search_terms": [ + { + "term": "https://example.com/support-tools/", + "views": 12 + }, + { + "term": "https://example.com/security-best-practices/", + "views": 11 + }, + { + "term": "search query example", + "views": 4 + } + ], + "encrypted_search_terms": 14, + "other_search_terms": -429, + "total_search_terms": 0 + } +} diff --git a/wp_api/tests/wpcom/stats_search_terms/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_search_terms/summarized-02-day-with-nulls.json index 50e89f4cb..8945ea668 100644 --- a/wp_api/tests/wpcom/stats_search_terms/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_search_terms/summarized-02-day-with-nulls.json @@ -1,19 +1,19 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "search_terms": [ - { - "term": null, - "views": null - }, - { - "term": "example query", - "views": 10 - } - ], - "encrypted_search_terms": 5, - "other_search_terms": 0, - "total_search_terms": 15 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "search_terms": [ + { + "term": null, + "views": null + }, + { + "term": "example query", + "views": 10 + } + ], + "encrypted_search_terms": 5, + "other_search_terms": 0, + "total_search_terms": 15 + } +} diff --git a/wp_api/tests/wpcom/stats_search_terms/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_search_terms/summarized-03-day-empty-response.json index 499a6d5bd..087918e14 100644 --- a/wp_api/tests/wpcom/stats_search_terms/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_search_terms/summarized-03-day-empty-response.json @@ -1,10 +1,10 @@ { - "date": "2026-02-18", - "period": "day", - "summary": { - "search_terms": [], - "encrypted_search_terms": 0, - "other_search_terms": 0, - "total_search_terms": 0 - } -} \ No newline at end of file + "date": "2026-02-18", + "period": "day", + "summary": { + "search_terms": [], + "encrypted_search_terms": 0, + "other_search_terms": 0, + "total_search_terms": 0 + } +} diff --git a/wp_api/tests/wpcom/stats_subscribers/response-01-day.json b/wp_api/tests/wpcom/stats_subscribers/response-01-day.json index 6f7b2b7ce..995db3051 100644 --- a/wp_api/tests/wpcom/stats_subscribers/response-01-day.json +++ b/wp_api/tests/wpcom/stats_subscribers/response-01-day.json @@ -1,16 +1,16 @@ { - "date": "2026-01-27", - "unit": "day", - "fields": [ - "period", - "subscribers", - "subscribers_paid" - ], - "data": [ - [ - "2026-01-27", - 89, - 0 - ] + "date": "2026-01-27", + "unit": "day", + "fields": [ + "period", + "subscribers", + "subscribers_paid" + ], + "data": [ + [ + "2026-01-27", + 89, + 0 ] + ] } diff --git a/wp_api/tests/wpcom/stats_subscribers/response-02-week.json b/wp_api/tests/wpcom/stats_subscribers/response-02-week.json index fc89d3f75..20fa5fe92 100644 --- a/wp_api/tests/wpcom/stats_subscribers/response-02-week.json +++ b/wp_api/tests/wpcom/stats_subscribers/response-02-week.json @@ -1,23 +1,71 @@ { - "date": "2026-02-26", - "unit": "week", - "fields": [ - "period", - "subscribers", - "subscribers_paid" - ], - "data": [ - ["2026W02W23", 89, 0], - ["2026W02W16", 89, 0], - ["2026W02W09", 89, 0], - ["2026W02W02", 89, 0], - ["2026W01W26", 89, 0], - ["2026W01W19", 89, 0], - ["2026W01W12", 89, 0], - ["2026W01W05", 89, 0], - ["2025W12W29", 89, 0], - ["2025W12W22", 89, 0], - ["2025W12W15", 89, 0], - ["2025W12W08", 89, 0] + "date": "2026-02-26", + "unit": "week", + "fields": [ + "period", + "subscribers", + "subscribers_paid" + ], + "data": [ + [ + "2026W02W23", + 89, + 0 + ], + [ + "2026W02W16", + 89, + 0 + ], + [ + "2026W02W09", + 89, + 0 + ], + [ + "2026W02W02", + 89, + 0 + ], + [ + "2026W01W26", + 89, + 0 + ], + [ + "2026W01W19", + 89, + 0 + ], + [ + "2026W01W12", + 89, + 0 + ], + [ + "2026W01W05", + 89, + 0 + ], + [ + "2025W12W29", + 89, + 0 + ], + [ + "2025W12W22", + 89, + 0 + ], + [ + "2025W12W15", + 89, + 0 + ], + [ + "2025W12W08", + 89, + 0 ] + ] } diff --git a/wp_api/tests/wpcom/stats_subscribers/response-03-month.json b/wp_api/tests/wpcom/stats_subscribers/response-03-month.json index f127216a0..2c0392399 100644 --- a/wp_api/tests/wpcom/stats_subscribers/response-03-month.json +++ b/wp_api/tests/wpcom/stats_subscribers/response-03-month.json @@ -1,17 +1,41 @@ { - "date": "2026-02-26", - "unit": "month", - "fields": [ - "period", - "subscribers", - "subscribers_paid" + "date": "2026-02-26", + "unit": "month", + "fields": [ + "period", + "subscribers", + "subscribers_paid" + ], + "data": [ + [ + "2026-02-01", + 89, + 0 ], - "data": [ - ["2026-02-01", 89, 0], - ["2026-01-01", 89, 0], - ["2025-12-01", 89, 0], - ["2025-11-01", 90, 0], - ["2025-10-01", 91, 0], - ["2025-09-01", 93, 0] + [ + "2026-01-01", + 89, + 0 + ], + [ + "2025-12-01", + 89, + 0 + ], + [ + "2025-11-01", + 90, + 0 + ], + [ + "2025-10-01", + 91, + 0 + ], + [ + "2025-09-01", + 93, + 0 ] + ] } diff --git a/wp_api/tests/wpcom/stats_subscribers/response-04-year.json b/wp_api/tests/wpcom/stats_subscribers/response-04-year.json index 46d103693..5ff2f4b4e 100644 --- a/wp_api/tests/wpcom/stats_subscribers/response-04-year.json +++ b/wp_api/tests/wpcom/stats_subscribers/response-04-year.json @@ -1,14 +1,26 @@ { - "date": "2026-02-26", - "unit": "year", - "fields": [ - "period", - "subscribers", - "subscribers_paid" + "date": "2026-02-26", + "unit": "year", + "fields": [ + "period", + "subscribers", + "subscribers_paid" + ], + "data": [ + [ + "2026", + 89, + 0 ], - "data": [ - ["2026", 89, 0], - ["2025", 89, 0], - ["2024", 114, 0] + [ + "2025", + 89, + 0 + ], + [ + "2024", + 114, + 0 ] + ] } diff --git a/wp_api/tests/wpcom/stats_subscribers/response-05-empty.json b/wp_api/tests/wpcom/stats_subscribers/response-05-empty.json index 77c85642f..d1d11c1c9 100644 --- a/wp_api/tests/wpcom/stats_subscribers/response-05-empty.json +++ b/wp_api/tests/wpcom/stats_subscribers/response-05-empty.json @@ -1,10 +1,10 @@ { - "date": "2026-02-26", - "unit": "day", - "fields": [ - "period", - "subscribers", - "subscribers_paid" - ], - "data": [] + "date": "2026-02-26", + "unit": "day", + "fields": [ + "period", + "subscribers", + "subscribers_paid" + ], + "data": [] } diff --git a/wp_api/tests/wpcom/stats_summary/response-01.json b/wp_api/tests/wpcom/stats_summary/response-01.json index 0c1d0cf62..f21d153a0 100644 --- a/wp_api/tests/wpcom/stats_summary/response-01.json +++ b/wp_api/tests/wpcom/stats_summary/response-01.json @@ -1,65 +1,185 @@ { + "date": "2026-03-10", + "stats": { + "visitors_today": 222, + "visitors_yesterday": 345, + "visitors": 154791, + "views_today": 745, + "views_yesterday": 1405, + "views_best_day": "2022-02-22", + "views_best_day_total": 4615, + "views": 6782783, + "comments": 0, + "posts": 2, + "followers_blog": 89, + "followers_comments": 4, + "comments_per_month": 0, + "comments_most_active_recent_day": "", + "comments_most_active_time": "N/A", + "comments_spam": 0, + "categories": 473, + "tags": 1403, + "shares": 1 + }, + "visits": { "date": "2026-03-10", - "stats": { - "visitors_today": 222, - "visitors_yesterday": 345, - "visitors": 154791, - "views_today": 745, - "views_yesterday": 1405, - "views_best_day": "2022-02-22", - "views_best_day_total": 4615, - "views": 6782783, - "comments": 0, - "posts": 2, - "followers_blog": 89, - "followers_comments": 4, - "comments_per_month": 0, - "comments_most_active_recent_day": "", - "comments_most_active_time": "N/A", - "comments_spam": 0, - "categories": 473, - "tags": 1403, - "shares": 1 - }, - "visits": { - "date": "2026-03-10", - "unit": "day", - "fields": [ - "period", - "views", - "visitors" - ], - "data": [ - ["2026-02-09", 1384, 376], - ["2026-02-10", 1344, 358], - ["2026-02-11", 1644, 426], - ["2026-02-12", 1628, 420], - ["2026-02-13", 1717, 424], - ["2026-02-14", 428, 116], - ["2026-02-15", 246, 73], - ["2026-02-16", 1408, 350], - ["2026-02-17", 1548, 383], - ["2026-02-18", 1603, 420], - ["2026-02-19", 1565, 426], - ["2026-02-20", 1476, 387], - ["2026-02-21", 281, 90], - ["2026-02-22", 305, 87], - ["2026-02-23", 1490, 385], - ["2026-02-24", 1611, 421], - ["2026-02-25", 1650, 397], - ["2026-02-26", 1752, 417], - ["2026-02-27", 1346, 344], - ["2026-02-28", 373, 93], - ["2026-03-01", 266, 69], - ["2026-03-02", 1467, 356], - ["2026-03-03", 1758, 417], - ["2026-03-04", 1969, 426], - ["2026-03-05", 1523, 400], - ["2026-03-06", 1398, 343], - ["2026-03-07", 436, 110], - ["2026-03-08", 282, 76], - ["2026-03-09", 1405, 345], - ["2026-03-10", 745, 222] - ] - } + "unit": "day", + "fields": [ + "period", + "views", + "visitors" + ], + "data": [ + [ + "2026-02-09", + 1384, + 376 + ], + [ + "2026-02-10", + 1344, + 358 + ], + [ + "2026-02-11", + 1644, + 426 + ], + [ + "2026-02-12", + 1628, + 420 + ], + [ + "2026-02-13", + 1717, + 424 + ], + [ + "2026-02-14", + 428, + 116 + ], + [ + "2026-02-15", + 246, + 73 + ], + [ + "2026-02-16", + 1408, + 350 + ], + [ + "2026-02-17", + 1548, + 383 + ], + [ + "2026-02-18", + 1603, + 420 + ], + [ + "2026-02-19", + 1565, + 426 + ], + [ + "2026-02-20", + 1476, + 387 + ], + [ + "2026-02-21", + 281, + 90 + ], + [ + "2026-02-22", + 305, + 87 + ], + [ + "2026-02-23", + 1490, + 385 + ], + [ + "2026-02-24", + 1611, + 421 + ], + [ + "2026-02-25", + 1650, + 397 + ], + [ + "2026-02-26", + 1752, + 417 + ], + [ + "2026-02-27", + 1346, + 344 + ], + [ + "2026-02-28", + 373, + 93 + ], + [ + "2026-03-01", + 266, + 69 + ], + [ + "2026-03-02", + 1467, + 356 + ], + [ + "2026-03-03", + 1758, + 417 + ], + [ + "2026-03-04", + 1969, + 426 + ], + [ + "2026-03-05", + 1523, + 400 + ], + [ + "2026-03-06", + 1398, + 343 + ], + [ + "2026-03-07", + 436, + 110 + ], + [ + "2026-03-08", + 282, + 76 + ], + [ + "2026-03-09", + 1405, + 345 + ], + [ + "2026-03-10", + 745, + 222 + ] + ] + } } diff --git a/wp_api/tests/wpcom/stats_summary/response-02-zero-stats.json b/wp_api/tests/wpcom/stats_summary/response-02-zero-stats.json index a22514a45..0e533f456 100644 --- a/wp_api/tests/wpcom/stats_summary/response-02-zero-stats.json +++ b/wp_api/tests/wpcom/stats_summary/response-02-zero-stats.json @@ -1,34 +1,34 @@ { + "date": "2026-03-10", + "stats": { + "visitors_today": 0, + "visitors_yesterday": 0, + "visitors": 0, + "views_today": 0, + "views_yesterday": 0, + "views_best_day": "", + "views_best_day_total": 0, + "views": 0, + "comments": 0, + "posts": 0, + "followers_blog": 0, + "followers_comments": 0, + "comments_per_month": 0, + "comments_most_active_recent_day": "", + "comments_most_active_time": "N/A", + "comments_spam": 0, + "categories": 0, + "tags": 0, + "shares": 0 + }, + "visits": { "date": "2026-03-10", - "stats": { - "visitors_today": 0, - "visitors_yesterday": 0, - "visitors": 0, - "views_today": 0, - "views_yesterday": 0, - "views_best_day": "", - "views_best_day_total": 0, - "views": 0, - "comments": 0, - "posts": 0, - "followers_blog": 0, - "followers_comments": 0, - "comments_per_month": 0, - "comments_most_active_recent_day": "", - "comments_most_active_time": "N/A", - "comments_spam": 0, - "categories": 0, - "tags": 0, - "shares": 0 - }, - "visits": { - "date": "2026-03-10", - "unit": "day", - "fields": [ - "period", - "views", - "visitors" - ], - "data": [] - } + "unit": "day", + "fields": [ + "period", + "views", + "visitors" + ], + "data": [] + } } diff --git a/wp_api/tests/wpcom/stats_tags/tags-01.json b/wp_api/tests/wpcom/stats_tags/tags-01.json index e13cd57db..6ff220e45 100644 --- a/wp_api/tests/wpcom/stats_tags/tags-01.json +++ b/wp_api/tests/wpcom/stats_tags/tags-01.json @@ -1,35 +1,35 @@ { - "date": "2026-03-12", - "tags": [ + "date": "2026-03-12", + "tags": [ + { + "tags": [ { - "tags": [ - { - "type": "category", - "name": "Uncategorized", - "link": "https://wpmobilep2.wordpress.com/category/uncategorized/" - } - ], - "views": 98 - }, + "type": "category", + "name": "Uncategorized", + "link": "https://wpmobilep2.wordpress.com/category/uncategorized/" + } + ], + "views": 98 + }, + { + "tags": [ { - "tags": [ - { - "type": "tag", - "name": "snaps", - "link": "https://wpmobilep2.wordpress.com/tag/snaps/" - } - ], - "views": 15 - }, + "type": "tag", + "name": "snaps", + "link": "https://wpmobilep2.wordpress.com/tag/snaps/" + } + ], + "views": 15 + }, + { + "tags": [ { - "tags": [ - { - "type": "tag", - "name": "whatcustomersaresaying", - "link": "https://wpmobilep2.wordpress.com/tag/whatcustomersaresaying/" - } - ], - "views": 1 + "type": "tag", + "name": "whatcustomersaresaying", + "link": "https://wpmobilep2.wordpress.com/tag/whatcustomersaresaying/" } - ] + ], + "views": 1 + } + ] } diff --git a/wp_api/tests/wpcom/stats_tags/tags-02-empty.json b/wp_api/tests/wpcom/stats_tags/tags-02-empty.json index 2985e4175..2ef15276c 100644 --- a/wp_api/tests/wpcom/stats_tags/tags-02-empty.json +++ b/wp_api/tests/wpcom/stats_tags/tags-02-empty.json @@ -1,4 +1,4 @@ { - "date": "2026-03-12", - "tags": [] + "date": "2026-03-12", + "tags": [] } diff --git a/wp_api/tests/wpcom/stats_top_authors/no-summary-01.json b/wp_api/tests/wpcom/stats_top_authors/no-summary-01.json index 52697dd4c..362004fd0 100644 --- a/wp_api/tests/wpcom/stats_top_authors/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_top_authors/no-summary-01.json @@ -1,133 +1,133 @@ { - "date": "2026-02-05", - "days": { - "2026-02-05": { - "authors": [ - { - "name": "Jane Developer", - "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", - "views": 450, - "posts": [ - { - "id": 12345, - "title": "Getting Started with WordPress REST API", - "url": "https://example.com/getting-started-rest-api", - "views": 300 - }, - { - "id": 12346, - "title": "Advanced API Authentication", - "url": "https://example.com/advanced-api-auth", - "views": 150 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98765, - "blog_id": 9288856 - } - }, - "author_id": 1001, - "other_views": 0 - }, - { - "name": "John Writer", - "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", - "views": 280, - "posts": [ - { - "id": 12350, - "title": "Content Strategy Best Practices", - "url": "https://example.com/content-strategy", - "views": 280 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98766, - "blog_id": 9288856 - } - }, - "author_id": 1002, - "other_views": 0 - } - ] + "date": "2026-02-05", + "days": { + "2026-02-05": { + "authors": [ + { + "name": "Jane Developer", + "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", + "views": 450, + "posts": [ + { + "id": 12345, + "title": "Getting Started with WordPress REST API", + "url": "https://example.com/getting-started-rest-api", + "views": 300 + }, + { + "id": 12346, + "title": "Advanced API Authentication", + "url": "https://example.com/advanced-api-auth", + "views": 150 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98765, + "blog_id": 9288856 + } + }, + "author_id": 1001, + "other_views": 0 }, - "2026-02-04": { - "authors": [ - { - "name": "Jane Developer", - "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", - "views": 380, - "posts": [ - { - "id": 12345, - "title": "Getting Started with WordPress REST API", - "url": "https://example.com/getting-started-rest-api", - "views": 250 - }, - { - "id": 12347, - "title": "Building Custom Endpoints", - "url": "https://example.com/custom-endpoints", - "views": 130 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98765, - "blog_id": 9288856 - } - }, - "author_id": 1001, - "other_views": 0 - }, - { - "name": "Alice Engineer", - "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", - "views": 210, - "posts": [ - { - "id": 12360, - "title": "Debugging WordPress Plugins", - "url": "https://example.com/debugging-plugins", - "views": 210 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98767, - "blog_id": 9288856 - } - }, - "author_id": 1003, - "other_views": 0 - } - ] + { + "name": "John Writer", + "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", + "views": 280, + "posts": [ + { + "id": 12350, + "title": "Content Strategy Best Practices", + "url": "https://example.com/content-strategy", + "views": 280 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98766, + "blog_id": 9288856 + } + }, + "author_id": 1002, + "other_views": 0 + } + ] + }, + "2026-02-04": { + "authors": [ + { + "name": "Jane Developer", + "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", + "views": 380, + "posts": [ + { + "id": 12345, + "title": "Getting Started with WordPress REST API", + "url": "https://example.com/getting-started-rest-api", + "views": 250 + }, + { + "id": 12347, + "title": "Building Custom Endpoints", + "url": "https://example.com/custom-endpoints", + "views": 130 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98765, + "blog_id": 9288856 + } + }, + "author_id": 1001, + "other_views": 0 }, - "2026-02-03": { - "authors": [ - { - "name": "John Writer", - "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", - "views": 195, - "posts": [ - { - "id": 12351, - "title": "SEO Fundamentals", - "url": "https://example.com/seo-fundamentals", - "views": 195 - } - ], - "follow_data": null, - "author_id": 1002, - "other_views": 0 - } - ] + { + "name": "Alice Engineer", + "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", + "views": 210, + "posts": [ + { + "id": 12360, + "title": "Debugging WordPress Plugins", + "url": "https://example.com/debugging-plugins", + "views": 210 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98767, + "blog_id": 9288856 + } + }, + "author_id": 1003, + "other_views": 0 + } + ] + }, + "2026-02-03": { + "authors": [ + { + "name": "John Writer", + "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", + "views": 195, + "posts": [ + { + "id": 12351, + "title": "SEO Fundamentals", + "url": "https://example.com/seo-fundamentals", + "views": 195 + } + ], + "follow_data": null, + "author_id": 1002, + "other_views": 0 } + ] } + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-01-day.json b/wp_api/tests/wpcom/stats_top_authors/summarized-01-day.json index b432bdcfb..8ec945f56 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-01-day.json @@ -1,136 +1,136 @@ { - "date": "2026-02-05", - "period": "day", - "summary": { - "authors": [ - { - "name": "Jane Developer", - "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", - "views": 1250, - "posts": [ - { - "id": 12345, - "title": "Getting Started with WordPress REST API", - "url": "https://example.com/getting-started-rest-api", - "views": 800 - }, - { - "id": 12346, - "title": "Advanced API Authentication", - "url": "https://example.com/advanced-api-auth", - "views": 350 - }, - { - "id": 12347, - "title": "Building Custom Endpoints", - "url": "https://example.com/custom-endpoints", - "views": 100 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98765, - "blog_id": 9288856 - } - }, - "author_id": 1001, - "other_views": 0 - }, - { - "name": "John Writer", - "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", - "views": 890, - "posts": [ - { - "id": 12350, - "title": "Content Strategy Best Practices", - "url": "https://example.com/content-strategy", - "views": 540 - }, - { - "id": 12351, - "title": "SEO Fundamentals", - "url": "https://example.com/seo-fundamentals", - "views": 350 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98766, - "blog_id": 9288856 - } - }, - "author_id": 1002, - "other_views": 0 - }, - { - "name": "Alice Engineer", - "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", - "views": 650, - "posts": [ - { - "id": 12360, - "title": "Debugging WordPress Plugins", - "url": "https://example.com/debugging-plugins", - "views": 400 - }, - { - "id": 12361, - "title": "Performance Optimization Tips", - "url": "https://example.com/performance-tips", - "views": 250 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98767, - "blog_id": 9288856 - } - }, - "author_id": 1003, - "other_views": 0 - }, - { - "name": "Bob Designer", - "avatar": "https://0.gravatar.com/avatar/designer456?s=64&d=mm&r=G", - "views": 420, - "posts": [ - { - "id": 12370, - "title": "Theme Development Guide", - "url": "https://example.com/theme-development", - "views": 420 - } - ], - "follow_data": null, - "author_id": 1004, - "other_views": 0 - }, - { - "name": "Carol Contributor", - "avatar": null, - "views": 180, - "posts": [ - { - "id": 12380, - "title": "User Experience Improvements", - "url": "https://example.com/ux-improvements", - "views": 180 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98769, - "blog_id": 9288856 - } - }, - "author_id": 1005, - "other_views": 0 - } - ] - } + "date": "2026-02-05", + "period": "day", + "summary": { + "authors": [ + { + "name": "Jane Developer", + "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", + "views": 1250, + "posts": [ + { + "id": 12345, + "title": "Getting Started with WordPress REST API", + "url": "https://example.com/getting-started-rest-api", + "views": 800 + }, + { + "id": 12346, + "title": "Advanced API Authentication", + "url": "https://example.com/advanced-api-auth", + "views": 350 + }, + { + "id": 12347, + "title": "Building Custom Endpoints", + "url": "https://example.com/custom-endpoints", + "views": 100 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98765, + "blog_id": 9288856 + } + }, + "author_id": 1001, + "other_views": 0 + }, + { + "name": "John Writer", + "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", + "views": 890, + "posts": [ + { + "id": 12350, + "title": "Content Strategy Best Practices", + "url": "https://example.com/content-strategy", + "views": 540 + }, + { + "id": 12351, + "title": "SEO Fundamentals", + "url": "https://example.com/seo-fundamentals", + "views": 350 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98766, + "blog_id": 9288856 + } + }, + "author_id": 1002, + "other_views": 0 + }, + { + "name": "Alice Engineer", + "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", + "views": 650, + "posts": [ + { + "id": 12360, + "title": "Debugging WordPress Plugins", + "url": "https://example.com/debugging-plugins", + "views": 400 + }, + { + "id": 12361, + "title": "Performance Optimization Tips", + "url": "https://example.com/performance-tips", + "views": 250 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98767, + "blog_id": 9288856 + } + }, + "author_id": 1003, + "other_views": 0 + }, + { + "name": "Bob Designer", + "avatar": "https://0.gravatar.com/avatar/designer456?s=64&d=mm&r=G", + "views": 420, + "posts": [ + { + "id": 12370, + "title": "Theme Development Guide", + "url": "https://example.com/theme-development", + "views": 420 + } + ], + "follow_data": null, + "author_id": 1004, + "other_views": 0 + }, + { + "name": "Carol Contributor", + "avatar": null, + "views": 180, + "posts": [ + { + "id": 12380, + "title": "User Experience Improvements", + "url": "https://example.com/ux-improvements", + "views": 180 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98769, + "blog_id": 9288856 + } + }, + "author_id": 1005, + "other_views": 0 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-02-week.json b/wp_api/tests/wpcom/stats_top_authors/summarized-02-week.json index 89d502d81..73daf24ca 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-02-week.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-02-week.json @@ -1,110 +1,110 @@ { - "date": "2026-02-05", - "period": "week", - "summary": { - "authors": [ - { - "name": "Jane Developer", - "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", - "views": 5420, - "posts": [ - { - "id": 12345, - "title": "Getting Started with WordPress REST API", - "url": "https://example.com/getting-started-rest-api", - "views": 2800 - }, - { - "id": 12346, - "title": "Advanced API Authentication", - "url": "https://example.com/advanced-api-auth", - "views": 1450 - }, - { - "id": 12347, - "title": "Building Custom Endpoints", - "url": "https://example.com/custom-endpoints", - "views": 870 - }, - { - "id": 12348, - "title": "API Rate Limiting Strategies", - "url": "https://example.com/rate-limiting", - "views": 300 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98765, - "blog_id": 9288856 - } - }, - "author_id": 1001, - "other_views": 120 - }, - { - "name": "John Writer", - "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", - "views": 3250, - "posts": [ - { - "id": 12350, - "title": "Content Strategy Best Practices", - "url": "https://example.com/content-strategy", - "views": 1800 - }, - { - "id": 12351, - "title": "SEO Fundamentals", - "url": "https://example.com/seo-fundamentals", - "views": 950 - }, - { - "id": 12352, - "title": "Writing for the Web", - "url": "https://example.com/writing-web", - "views": 500 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98766, - "blog_id": 9288856 - } - }, - "author_id": 1002, - "other_views": 85 - }, - { - "name": "Alice Engineer", - "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", - "views": 2100, - "posts": [ - { - "id": 12360, - "title": "Debugging WordPress Plugins", - "url": "https://example.com/debugging-plugins", - "views": 1200 - }, - { - "id": 12361, - "title": "Performance Optimization Tips", - "url": "https://example.com/performance-tips", - "views": 900 - } - ], - "follow_data": { - "type": "wpcom", - "params": { - "feed_id": 98767, - "blog_id": 9288856 - } - }, - "author_id": 1003, - "other_views": 0 - } - ] - } + "date": "2026-02-05", + "period": "week", + "summary": { + "authors": [ + { + "name": "Jane Developer", + "avatar": "https://0.gravatar.com/avatar/abc123def456?s=64&d=mm&r=G", + "views": 5420, + "posts": [ + { + "id": 12345, + "title": "Getting Started with WordPress REST API", + "url": "https://example.com/getting-started-rest-api", + "views": 2800 + }, + { + "id": 12346, + "title": "Advanced API Authentication", + "url": "https://example.com/advanced-api-auth", + "views": 1450 + }, + { + "id": 12347, + "title": "Building Custom Endpoints", + "url": "https://example.com/custom-endpoints", + "views": 870 + }, + { + "id": 12348, + "title": "API Rate Limiting Strategies", + "url": "https://example.com/rate-limiting", + "views": 300 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98765, + "blog_id": 9288856 + } + }, + "author_id": 1001, + "other_views": 120 + }, + { + "name": "John Writer", + "avatar": "https://0.gravatar.com/avatar/789xyz?s=64&d=mm&r=G", + "views": 3250, + "posts": [ + { + "id": 12350, + "title": "Content Strategy Best Practices", + "url": "https://example.com/content-strategy", + "views": 1800 + }, + { + "id": 12351, + "title": "SEO Fundamentals", + "url": "https://example.com/seo-fundamentals", + "views": 950 + }, + { + "id": 12352, + "title": "Writing for the Web", + "url": "https://example.com/writing-web", + "views": 500 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98766, + "blog_id": 9288856 + } + }, + "author_id": 1002, + "other_views": 85 + }, + { + "name": "Alice Engineer", + "avatar": "https://0.gravatar.com/avatar/engineer123?s=64&d=mm&r=G", + "views": 2100, + "posts": [ + { + "id": 12360, + "title": "Debugging WordPress Plugins", + "url": "https://example.com/debugging-plugins", + "views": 1200 + }, + { + "id": 12361, + "title": "Performance Optimization Tips", + "url": "https://example.com/performance-tips", + "views": 900 + } + ], + "follow_data": { + "type": "wpcom", + "params": { + "feed_id": 98767, + "blog_id": 9288856 + } + }, + "author_id": 1003, + "other_views": 0 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_top_authors/summarized-03-day-empty-response.json index 6fd023b9d..9956c0910 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-03-day-empty-response.json @@ -1,7 +1,7 @@ { - "date": "2026-02-05", - "period": "day", - "summary": { - "authors": [] - } + "date": "2026-02-05", + "period": "day", + "summary": { + "authors": [] + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-04-day-with-nulls.json b/wp_api/tests/wpcom/stats_top_authors/summarized-04-day-with-nulls.json index a45a0524b..695db0154 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-04-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-04-day-with-nulls.json @@ -1,36 +1,36 @@ { - "date": "2026-02-05", - "period": "day", - "summary": { - "authors": [ - { - "name": "Null Author", - "avatar": null, - "views": 100, - "posts": [], - "follow_data": null, - "author_id": 2001, - "other_views": null - }, - { - "name": "Partial Author", - "avatar": "https://0.gravatar.com/avatar/partial?s=64&d=mm&r=G", - "views": 50, - "posts": [ - { - "id": 99999, - "title": null, - "url": null, - "views": 50 - } - ], - "follow_data": { - "type": null, - "params": null - }, - "author_id": null, - "other_views": 0 - } - ] - } + "date": "2026-02-05", + "period": "day", + "summary": { + "authors": [ + { + "name": "Null Author", + "avatar": null, + "views": 100, + "posts": [], + "follow_data": null, + "author_id": 2001, + "other_views": null + }, + { + "name": "Partial Author", + "avatar": "https://0.gravatar.com/avatar/partial?s=64&d=mm&r=G", + "views": 50, + "posts": [ + { + "id": 99999, + "title": null, + "url": null, + "views": 50 + } + ], + "follow_data": { + "type": null, + "params": null + }, + "author_id": null, + "other_views": 0 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-05-day-with-false-follow-data.json b/wp_api/tests/wpcom/stats_top_authors/summarized-05-day-with-false-follow-data.json index 19cabd694..5f73aebbc 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-05-day-with-false-follow-data.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-05-day-with-false-follow-data.json @@ -1,46 +1,46 @@ { - "date": "2026-02-09", - "period": "day", - "summary": { - "authors": [ - { - "name": "Author With Follow Data", - "avatar": "https://0.gravatar.com/avatar/test?s=64&d=mm&r=G", - "views": 50, - "posts": [ - { - "id": 12345, - "title": "Test Post", - "url": "https://example.com/?p=12345", - "views": 50 - } - ], - "follow_data": { - "type": "follow", - "params": { - "feed_id": 100, - "blog_id": 200 - } - }, - "author_id": 3001, - "other_views": 0 - }, - { - "name": "Author With False Follow Data", - "avatar": "https://0.gravatar.com/avatar/test2?s=64&d=mm&r=G", - "views": 30, - "posts": [ - { - "id": 67890, - "title": "Another Post", - "url": "https://example.com/?p=67890", - "views": 30 - } - ], - "follow_data": false, - "author_id": 3002, - "other_views": 0 - } - ] - } + "date": "2026-02-09", + "period": "day", + "summary": { + "authors": [ + { + "name": "Author With Follow Data", + "avatar": "https://0.gravatar.com/avatar/test?s=64&d=mm&r=G", + "views": 50, + "posts": [ + { + "id": 12345, + "title": "Test Post", + "url": "https://example.com/?p=12345", + "views": 50 + } + ], + "follow_data": { + "type": "follow", + "params": { + "feed_id": 100, + "blog_id": 200 + } + }, + "author_id": 3001, + "other_views": 0 + }, + { + "name": "Author With False Follow Data", + "avatar": "https://0.gravatar.com/avatar/test2?s=64&d=mm&r=G", + "views": 30, + "posts": [ + { + "id": 67890, + "title": "Another Post", + "url": "https://example.com/?p=67890", + "views": 30 + } + ], + "follow_data": false, + "author_id": 3002, + "other_views": 0 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_top_authors/summarized-06-day-mixed-follow-data.json b/wp_api/tests/wpcom/stats_top_authors/summarized-06-day-mixed-follow-data.json index 1b8d49fa8..1a014f1b0 100644 --- a/wp_api/tests/wpcom/stats_top_authors/summarized-06-day-mixed-follow-data.json +++ b/wp_api/tests/wpcom/stats_top_authors/summarized-06-day-mixed-follow-data.json @@ -132,7 +132,7 @@ "other_views": 0 }, { - "name": "Fernando P\u00e9rez", + "name": "Fernando Pérez", "avatar": "https://0.gravatar.com/avatar/6b0adf442850b0d03cab3e034c174cdde30cd3b4b331431803444c283d7c5627?s=64&d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G", "views": 2, "posts": [ @@ -161,7 +161,7 @@ "blog_url": "https://fernandojose.es", "blog_id": 193083962, "site_id": 193083962, - "blog_title": "Fernando P\u00e9rez", + "blog_title": "Fernando Pérez", "is_following": false }, "type": "follow" @@ -218,7 +218,7 @@ "other_views": 0 }, { - "name": "Andrija Vu\u010dini\u0107", + "name": "Andrija Vučinić", "avatar": "https://0.gravatar.com/avatar/344727138fd160c5f134203d486363c74b912d3982383f73af7be67f456b4d60?s=64&d=https%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D64&r=G", "views": 1, "posts": [ diff --git a/wp_api/tests/wpcom/stats_top_posts/no-summary-01.json b/wp_api/tests/wpcom/stats_top_posts/no-summary-01.json index 68c539923..933da8482 100644 --- a/wp_api/tests/wpcom/stats_top_posts/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_top_posts/no-summary-01.json @@ -1,63 +1,65 @@ { - "date": "2026-01-26", - "days": { - "2026-01-26": { - "postviews": [ - { - "id": 269, - "href": "https://fieldguide.automattic.com/the-chaos-theory/", - "date": "2009-09-04 07:56:46", - "title": "Welcome to Automattic", - "type": "page", - "status": "publish", - "public": true, - "views": 150, - "video_play": false - }, - { - "id": 3973, - "href": "https://fieldguide.automattic.com/my-computers/computer-purchases/", - "date": "2011-06-22 06:51:23", - "title": "Computer & Monitor Purchase Guidelines", - "type": "page", - "status": "publish", - "public": true, - "views": 20, - "video_play": false - }, - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "date": null, - "title": "Home page / Archives", - "type": "homepage", - "status": null, - "public": false, - "views": 50, - "video_play": false - } - ], - "total_views": 220, - "dropped_ids": [], - "other_views": 10 + "date": "2026-01-26", + "days": { + "2026-01-26": { + "postviews": [ + { + "id": 269, + "href": "https://fieldguide.automattic.com/the-chaos-theory/", + "date": "2009-09-04 07:56:46", + "title": "Welcome to Automattic", + "type": "page", + "status": "publish", + "public": true, + "views": 150, + "video_play": false }, - "2026-01-25": { - "postviews": [ - { - "id": 269, - "href": "https://fieldguide.automattic.com/the-chaos-theory/", - "date": "2009-09-04 07:56:46", - "title": "Welcome to Automattic", - "type": "page", - "status": "publish", - "public": true, - "views": 120, - "video_play": false - } - ], - "total_views": 180, - "dropped_ids": [12345], - "other_views": 60 + { + "id": 3973, + "href": "https://fieldguide.automattic.com/my-computers/computer-purchases/", + "date": "2011-06-22 06:51:23", + "title": "Computer & Monitor Purchase Guidelines", + "type": "page", + "status": "publish", + "public": true, + "views": 20, + "video_play": false + }, + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "date": null, + "title": "Home page / Archives", + "type": "homepage", + "status": null, + "public": false, + "views": 50, + "video_play": false + } + ], + "total_views": 220, + "dropped_ids": [], + "other_views": 10 + }, + "2026-01-25": { + "postviews": [ + { + "id": 269, + "href": "https://fieldguide.automattic.com/the-chaos-theory/", + "date": "2009-09-04 07:56:46", + "title": "Welcome to Automattic", + "type": "page", + "status": "publish", + "public": true, + "views": 120, + "video_play": false } + ], + "total_views": 180, + "dropped_ids": [ + 12345 + ], + "other_views": 60 } + } } diff --git a/wp_api/tests/wpcom/stats_top_posts/summarized-01-week.json b/wp_api/tests/wpcom/stats_top_posts/summarized-01-week.json index 83417077d..302ce5cbb 100644 --- a/wp_api/tests/wpcom/stats_top_posts/summarized-01-week.json +++ b/wp_api/tests/wpcom/stats_top_posts/summarized-01-week.json @@ -1,120 +1,120 @@ { - "date": "2026-01-25", - "period": "week", - "summary": { - "postviews": [ - { - "id": 269, - "href": "https://fieldguide.automattic.com/the-chaos-theory/", - "date": "2009-09-04 07:56:46", - "title": "Welcome to Automattic", - "type": "page", - "status": "publish", - "public": true, - "views": 417, - "video_play": false - }, - { - "id": 0, - "href": null, - "date": null, - "title": "Home page / Archives", - "type": "homepage", - "status": null, - "public": false, - "views": 244, - "video_play": false - }, - { - "id": 265324, - "href": "https://fieldguide.automattic.com/expense-guidelines/travel-guidelines/", - "date": "2025-04-26 00:07:04", - "title": "Travel Guidelines", - "type": "page", - "status": "publish", - "public": true, - "views": 58, - "video_play": false - }, - { - "id": 24362, - "href": "https://fieldguide.automattic.com/expense-guidelines/", - "date": "2015-12-10 23:10:39", - "title": "Expense Guidelines", - "type": "page", - "status": "publish", - "public": true, - "views": 42, - "video_play": false - }, - { - "id": 275671, - "href": "https://fieldguide.automattic.com/getting-started-with-claude-code-a-comprehensive-tutorial/", - "date": "2025-09-22 21:29:37", - "title": "Getting Started with Claude Code: A Comprehensive Tutorial", - "type": "page", - "status": "publish", - "public": true, - "views": 38, - "video_play": false - }, - { - "id": 198942, - "href": "https://fieldguide.automattic.com/github-enterprise-for-automattic/", - "date": "2023-03-27 15:06:00", - "title": "GitHub Enterprise for Automattic", - "type": "page", - "status": "publish", - "public": true, - "views": 35, - "video_play": false - }, - { - "id": 280301, - "href": "https://fieldguide.automattic.com/librechat/", - "date": "2025-12-12 06:02:54", - "title": "LibreChat", - "type": "page", - "status": "publish", - "public": true, - "views": 34, - "video_play": false - }, - { - "id": 278875, - "href": "https://fieldguide.automattic.com/ai-tools-and-resources/", - "date": "2025-11-20 10:07:03", - "title": "AI Tools & Resource Hub", - "type": "page", - "status": "publish", - "public": true, - "views": 31, - "video_play": false - }, - { - "id": 53972, - "href": "https://fieldguide.automattic.com/expense-guidelines/travel-guidelines/travel-upgrades/", - "date": "2018-06-22 21:44:42", - "title": "Travel Upgrade", - "type": "page", - "status": "publish", - "public": true, - "views": 30, - "video_play": false - }, - { - "id": 209990, - "href": "https://fieldguide.automattic.com/travel-flight-delays-disruptions/", - "date": "2023-08-10 23:27:27", - "title": "Travel - Flight Delays & Disruptions", - "type": "page", - "status": "publish", - "public": true, - "views": 27, - "video_play": false - } - ], - "total_views": 2996, - "dropped_ids": [] - } + "date": "2026-01-25", + "period": "week", + "summary": { + "postviews": [ + { + "id": 269, + "href": "https://fieldguide.automattic.com/the-chaos-theory/", + "date": "2009-09-04 07:56:46", + "title": "Welcome to Automattic", + "type": "page", + "status": "publish", + "public": true, + "views": 417, + "video_play": false + }, + { + "id": 0, + "href": null, + "date": null, + "title": "Home page / Archives", + "type": "homepage", + "status": null, + "public": false, + "views": 244, + "video_play": false + }, + { + "id": 265324, + "href": "https://fieldguide.automattic.com/expense-guidelines/travel-guidelines/", + "date": "2025-04-26 00:07:04", + "title": "Travel Guidelines", + "type": "page", + "status": "publish", + "public": true, + "views": 58, + "video_play": false + }, + { + "id": 24362, + "href": "https://fieldguide.automattic.com/expense-guidelines/", + "date": "2015-12-10 23:10:39", + "title": "Expense Guidelines", + "type": "page", + "status": "publish", + "public": true, + "views": 42, + "video_play": false + }, + { + "id": 275671, + "href": "https://fieldguide.automattic.com/getting-started-with-claude-code-a-comprehensive-tutorial/", + "date": "2025-09-22 21:29:37", + "title": "Getting Started with Claude Code: A Comprehensive Tutorial", + "type": "page", + "status": "publish", + "public": true, + "views": 38, + "video_play": false + }, + { + "id": 198942, + "href": "https://fieldguide.automattic.com/github-enterprise-for-automattic/", + "date": "2023-03-27 15:06:00", + "title": "GitHub Enterprise for Automattic", + "type": "page", + "status": "publish", + "public": true, + "views": 35, + "video_play": false + }, + { + "id": 280301, + "href": "https://fieldguide.automattic.com/librechat/", + "date": "2025-12-12 06:02:54", + "title": "LibreChat", + "type": "page", + "status": "publish", + "public": true, + "views": 34, + "video_play": false + }, + { + "id": 278875, + "href": "https://fieldguide.automattic.com/ai-tools-and-resources/", + "date": "2025-11-20 10:07:03", + "title": "AI Tools & Resource Hub", + "type": "page", + "status": "publish", + "public": true, + "views": 31, + "video_play": false + }, + { + "id": 53972, + "href": "https://fieldguide.automattic.com/expense-guidelines/travel-guidelines/travel-upgrades/", + "date": "2018-06-22 21:44:42", + "title": "Travel Upgrade", + "type": "page", + "status": "publish", + "public": true, + "views": 30, + "video_play": false + }, + { + "id": 209990, + "href": "https://fieldguide.automattic.com/travel-flight-delays-disruptions/", + "date": "2023-08-10 23:27:27", + "title": "Travel - Flight Delays & Disruptions", + "type": "page", + "status": "publish", + "public": true, + "views": 27, + "video_play": false + } + ], + "total_views": 2996, + "dropped_ids": [] + } } diff --git a/wp_api/tests/wpcom/stats_top_posts/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_top_posts/summarized-02-day-with-nulls.json index f44fee146..23289d192 100644 --- a/wp_api/tests/wpcom/stats_top_posts/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_top_posts/summarized-02-day-with-nulls.json @@ -1,43 +1,43 @@ { - "date": "2026-01-28", - "period": "day", - "summary": { - "postviews": [ - { - "id": 0, - "href": null, - "date": null, - "title": null, - "type": null, - "status": null, - "public": null, - "views": null, - "video_play": null - }, - { - "id": 123, - "href": "https://example.com/post", - "date": "2026-01-28 10:00:00", - "title": "A Post With All Fields", - "type": "post", - "status": "publish", - "public": true, - "views": 100, - "video_play": false - }, - { - "id": 456, - "href": null, - "date": null, - "title": "Partial Null Post", - "type": "post", - "status": null, - "public": false, - "views": 50, - "video_play": null - } - ], - "total_views": 150, - "dropped_ids": [] - } + "date": "2026-01-28", + "period": "day", + "summary": { + "postviews": [ + { + "id": 0, + "href": null, + "date": null, + "title": null, + "type": null, + "status": null, + "public": null, + "views": null, + "video_play": null + }, + { + "id": 123, + "href": "https://example.com/post", + "date": "2026-01-28 10:00:00", + "title": "A Post With All Fields", + "type": "post", + "status": "publish", + "public": true, + "views": 100, + "video_play": false + }, + { + "id": 456, + "href": null, + "date": null, + "title": "Partial Null Post", + "type": "post", + "status": null, + "public": false, + "views": 50, + "video_play": null + } + ], + "total_views": 150, + "dropped_ids": [] + } } diff --git a/wp_api/tests/wpcom/stats_top_posts/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_top_posts/summarized-03-day-empty-response.json index 1b1a1387a..9f933a45f 100644 --- a/wp_api/tests/wpcom/stats_top_posts/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_top_posts/summarized-03-day-empty-response.json @@ -1,8 +1,8 @@ { - "date": "2026-01-28", - "period": "day", - "summary": { - "postviews": [], - "total_views": 0 - } + "date": "2026-01-28", + "period": "day", + "summary": { + "postviews": [], + "total_views": 0 + } } diff --git a/wp_api/tests/wpcom/stats_utm/empty-arrays-response.json b/wp_api/tests/wpcom/stats_utm/empty-arrays-response.json index 735363bab..a60b359c6 100644 --- a/wp_api/tests/wpcom/stats_utm/empty-arrays-response.json +++ b/wp_api/tests/wpcom/stats_utm/empty-arrays-response.json @@ -1,4 +1,4 @@ { - "top_utm_values": [], - "top_posts": [] + "top_utm_values": [], + "top_posts": [] } diff --git a/wp_api/tests/wpcom/stats_utm/empty-response.json b/wp_api/tests/wpcom/stats_utm/empty-response.json index c42dab131..4a052b3dd 100644 --- a/wp_api/tests/wpcom/stats_utm/empty-response.json +++ b/wp_api/tests/wpcom/stats_utm/empty-response.json @@ -1,4 +1,4 @@ { - "top_utm_values": {}, - "top_posts": {} + "top_utm_values": {}, + "top_posts": {} } diff --git a/wp_api/tests/wpcom/stats_utm/missing-top-posts.json b/wp_api/tests/wpcom/stats_utm/missing-top-posts.json index 90c9c7097..6f1c41b95 100644 --- a/wp_api/tests/wpcom/stats_utm/missing-top-posts.json +++ b/wp_api/tests/wpcom/stats_utm/missing-top-posts.json @@ -1 +1,3 @@ -{"top_utm_values":[]} +{ + "top_utm_values": [] +} diff --git a/wp_api/tests/wpcom/stats_utm/multiple-keys.json b/wp_api/tests/wpcom/stats_utm/multiple-keys.json index 2c43c0420..e30fa20de 100644 --- a/wp_api/tests/wpcom/stats_utm/multiple-keys.json +++ b/wp_api/tests/wpcom/stats_utm/multiple-keys.json @@ -1,30 +1,30 @@ { - "top_utm_values": { - "[\"impact\",\"affiliate\"]": 5, - "[\"trustpilot\",\"company_profile\"]": 1 - }, - "top_posts": { - "[\"impact\",\"affiliate\"]": [ - { - "id": 146836, - "href": "https://fieldguide.automattic.com/my-computers/country-specific-purchasing-and-trade-in-buyback-instructions/computer-purchasing-instructions-for-united-states/", - "title": "US - Computer Purchasing Instructions", - "views": 3 - }, - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 2 - } - ], - "[\"trustpilot\",\"company_profile\"]": [ - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 1 - } - ] - } + "top_utm_values": { + "[\"impact\",\"affiliate\"]": 5, + "[\"trustpilot\",\"company_profile\"]": 1 + }, + "top_posts": { + "[\"impact\",\"affiliate\"]": [ + { + "id": 146836, + "href": "https://fieldguide.automattic.com/my-computers/country-specific-purchasing-and-trade-in-buyback-instructions/computer-purchasing-instructions-for-united-states/", + "title": "US - Computer Purchasing Instructions", + "views": 3 + }, + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 2 + } + ], + "[\"trustpilot\",\"company_profile\"]": [ + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 1 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_utm/single-key.json b/wp_api/tests/wpcom/stats_utm/single-key.json index 4d0a4cb4e..3e7d35ec8 100644 --- a/wp_api/tests/wpcom/stats_utm/single-key.json +++ b/wp_api/tests/wpcom/stats_utm/single-key.json @@ -1,39 +1,39 @@ { - "top_utm_values": { - "impact": 5, - "trustpilot": 1, - "hovercard": 1 - }, - "top_posts": { - "impact": [ - { - "id": 146836, - "href": "https://fieldguide.automattic.com/my-computers/country-specific-purchasing-and-trade-in-buyback-instructions/computer-purchasing-instructions-for-united-states/", - "title": "US - Computer Purchasing Instructions", - "views": 3 - }, - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 2 - } - ], - "trustpilot": [ - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 1 - } - ], - "hovercard": [ - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 1 - } - ] - } + "top_utm_values": { + "impact": 5, + "trustpilot": 1, + "hovercard": 1 + }, + "top_posts": { + "impact": [ + { + "id": 146836, + "href": "https://fieldguide.automattic.com/my-computers/country-specific-purchasing-and-trade-in-buyback-instructions/computer-purchasing-instructions-for-united-states/", + "title": "US - Computer Purchasing Instructions", + "views": 3 + }, + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 2 + } + ], + "trustpilot": [ + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 1 + } + ], + "hovercard": [ + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 1 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_utm/triple-keys.json b/wp_api/tests/wpcom/stats_utm/triple-keys.json index f5282cef9..e7ac80485 100644 --- a/wp_api/tests/wpcom/stats_utm/triple-keys.json +++ b/wp_api/tests/wpcom/stats_utm/triple-keys.json @@ -1,15 +1,15 @@ { - "top_utm_values": { - "[\"logo_click\",\"trustpilot\",\"company_profile\"]": 1 - }, - "top_posts": { - "[\"logo_click\",\"trustpilot\",\"company_profile\"]": [ - { - "id": 0, - "href": "https://fieldguide.automattic.com/", - "title": "Home page / Archives", - "views": 1 - } - ] - } + "top_utm_values": { + "[\"logo_click\",\"trustpilot\",\"company_profile\"]": 1 + }, + "top_posts": { + "[\"logo_click\",\"trustpilot\",\"company_profile\"]": [ + { + "id": 0, + "href": "https://fieldguide.automattic.com/", + "title": "Home page / Archives", + "views": 1 + } + ] + } } diff --git a/wp_api/tests/wpcom/stats_video_plays/no-summary-01.json b/wp_api/tests/wpcom/stats_video_plays/no-summary-01.json index 070062f7a..6a7e34c4f 100644 --- a/wp_api/tests/wpcom/stats_video_plays/no-summary-01.json +++ b/wp_api/tests/wpcom/stats_video_plays/no-summary-01.json @@ -1,23 +1,23 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "summary": { - "data": [ - { - "post_id": 282653, - "title": "example_video_1", - "views": 10, - "impressions": 71, - "watch_time": 0.06972222222222223, - "retention_rate": 33.0 - } - ], - "total": { - "impressions": 71, - "views": 10, - "watch_time": 0.06972222222222223 - } + "date": "2026-02-18", + "period": "day", + "days": { + "summary": { + "data": [ + { + "post_id": 282653, + "title": "example_video_1", + "views": 10, + "impressions": 71, + "watch_time": 0.06972222222222223, + "retention_rate": 33.0 } + ], + "total": { + "impressions": 71, + "views": 10, + "watch_time": 0.06972222222222223 + } } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_video_plays/summarized-01-day.json b/wp_api/tests/wpcom/stats_video_plays/summarized-01-day.json index d8e3a6bcf..06c908c9e 100644 --- a/wp_api/tests/wpcom/stats_video_plays/summarized-01-day.json +++ b/wp_api/tests/wpcom/stats_video_plays/summarized-01-day.json @@ -1,39 +1,39 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "summary": { - "data": [ - { - "post_id": 282653, - "title": "example_video_1", - "views": 10, - "impressions": 71, - "watch_time": 0.06972222222222223, - "retention_rate": 33.0 - }, - { - "post_id": 11602, - "title": "Example Video 2", - "views": 7, - "impressions": 859, - "watch_time": 0.12194444444444444, - "retention_rate": 78.4 - }, - { - "post_id": 143268, - "title": "example-video-3", - "views": 2, - "impressions": 5, - "watch_time": 0.013333333333333334, - "retention_rate": 61.5 - } - ], - "total": { - "impressions": 1172, - "views": 31, - "watch_time": 0.6936111111111113 - } + "date": "2026-02-18", + "period": "day", + "days": { + "summary": { + "data": [ + { + "post_id": 282653, + "title": "example_video_1", + "views": 10, + "impressions": 71, + "watch_time": 0.06972222222222223, + "retention_rate": 33.0 + }, + { + "post_id": 11602, + "title": "Example Video 2", + "views": 7, + "impressions": 859, + "watch_time": 0.12194444444444444, + "retention_rate": 78.4 + }, + { + "post_id": 143268, + "title": "example-video-3", + "views": 2, + "impressions": 5, + "watch_time": 0.013333333333333334, + "retention_rate": 61.5 } + ], + "total": { + "impressions": 1172, + "views": 31, + "watch_time": 0.6936111111111113 + } } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_video_plays/summarized-02-day-with-nulls.json b/wp_api/tests/wpcom/stats_video_plays/summarized-02-day-with-nulls.json index 67a378abb..8a691e797 100644 --- a/wp_api/tests/wpcom/stats_video_plays/summarized-02-day-with-nulls.json +++ b/wp_api/tests/wpcom/stats_video_plays/summarized-02-day-with-nulls.json @@ -1,31 +1,31 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "summary": { - "data": [ - { - "post_id": 0, - "title": null, - "views": null, - "impressions": null, - "watch_time": null, - "retention_rate": null - }, - { - "post_id": 282653, - "title": "example_video", - "views": 10, - "impressions": 71, - "watch_time": 0.07, - "retention_rate": 33.0 - } - ], - "total": { - "impressions": 71, - "views": 10, - "watch_time": 0.07 - } + "date": "2026-02-18", + "period": "day", + "days": { + "summary": { + "data": [ + { + "post_id": 0, + "title": null, + "views": null, + "impressions": null, + "watch_time": null, + "retention_rate": null + }, + { + "post_id": 282653, + "title": "example_video", + "views": 10, + "impressions": 71, + "watch_time": 0.07, + "retention_rate": 33.0 } + ], + "total": { + "impressions": 71, + "views": 10, + "watch_time": 0.07 + } } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_video_plays/summarized-03-day-empty-response.json b/wp_api/tests/wpcom/stats_video_plays/summarized-03-day-empty-response.json index 748ae7c49..d82b7e45f 100644 --- a/wp_api/tests/wpcom/stats_video_plays/summarized-03-day-empty-response.json +++ b/wp_api/tests/wpcom/stats_video_plays/summarized-03-day-empty-response.json @@ -1,14 +1,14 @@ { - "date": "2026-02-18", - "period": "day", - "days": { - "summary": { - "data": [], - "total": { - "impressions": 0, - "views": 0, - "watch_time": 0 - } - } + "date": "2026-02-18", + "period": "day", + "days": { + "summary": { + "data": [], + "total": { + "impressions": 0, + "views": 0, + "watch_time": 0 + } } -} \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/stats_visits/visits-02-day.json b/wp_api/tests/wpcom/stats_visits/visits-02-day.json index a440380f1..57f53142e 100644 --- a/wp_api/tests/wpcom/stats_visits/visits-02-day.json +++ b/wp_api/tests/wpcom/stats_visits/visits-02-day.json @@ -11,35 +11,275 @@ "posts" ], "data": [ - ["2025-12-21", 67, 60, 0, 0, 0, 0], - ["2025-12-22", 59, 57, 0, 0, 0, 0], - ["2025-12-23", 62, 60, 0, 0, 0, 0], - ["2025-12-24", 59, 54, 0, 0, 0, 0], - ["2025-12-25", 50, 40, 0, 0, 0, 0], - ["2025-12-26", 55, 49, 0, 0, 0, 0], - ["2025-12-27", 60, 56, 0, 0, 0, 0], - ["2025-12-28", 67, 62, 0, 0, 0, 0], - ["2025-12-29", 60, 60, 0, 0, 0, 0], - ["2025-12-30", 53, 49, 0, 0, 0, 0], - ["2025-12-31", 65, 64, 0, 0, 0, 0], - ["2026-01-01", 61, 60, 0, 0, 0, 0], - ["2026-01-02", 55, 50, 0, 0, 0, 0], - ["2026-01-03", 61, 60, 0, 0, 0, 0], - ["2026-01-04", 58, 54, 0, 0, 0, 0], - ["2026-01-05", 55, 53, 1, 0, 0, 0], - ["2026-01-06", 66, 63, 0, 0, 0, 0], - ["2026-01-07", 45, 43, 0, 0, 0, 0], - ["2026-01-08", 54, 51, 0, 0, 0, 0], - ["2026-01-09", 59, 59, 0, 0, 0, 0], - ["2026-01-10", 57, 50, 0, 0, 0, 0], - ["2026-01-11", 98, 87, 0, 0, 0, 0], - ["2026-01-12", 66, 60, 0, 0, 0, 0], - ["2026-01-13", 63, 61, 0, 0, 0, 0], - ["2026-01-14", 49, 49, 0, 0, 0, 0], - ["2026-01-15", 64, 59, 0, 0, 0, 0], - ["2026-01-16", 48, 45, 0, 0, 0, 0], - ["2026-01-17", 58, 52, 0, 0, 0, 0], - ["2026-01-18", 60, 57, 0, 0, 0, 0], - ["2026-01-19", 50, 47, 0, 0, 0, 0] + [ + "2025-12-21", + 67, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-22", + 59, + 57, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-23", + 62, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-24", + 59, + 54, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-25", + 50, + 40, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-26", + 55, + 49, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-27", + 60, + 56, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-28", + 67, + 62, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-29", + 60, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-30", + 53, + 49, + 0, + 0, + 0, + 0 + ], + [ + "2025-12-31", + 65, + 64, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-01", + 61, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-02", + 55, + 50, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-03", + 61, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-04", + 58, + 54, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-05", + 55, + 53, + 1, + 0, + 0, + 0 + ], + [ + "2026-01-06", + 66, + 63, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-07", + 45, + 43, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-08", + 54, + 51, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-09", + 59, + 59, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-10", + 57, + 50, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-11", + 98, + 87, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-12", + 66, + 60, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-13", + 63, + 61, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-14", + 49, + 49, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-15", + 64, + 59, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-16", + 48, + 45, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-17", + 58, + 52, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-18", + 60, + 57, + 0, + 0, + 0, + 0 + ], + [ + "2026-01-19", + 50, + 47, + 0, + 0, + 0, + 0 + ] ] } diff --git a/wp_api/tests/wpcom/subscribers/add-subscriber-response.json b/wp_api/tests/wpcom/subscribers/add-subscriber-response.json index 4ee9e73ea..b2eea68ad 100644 --- a/wp_api/tests/wpcom/subscribers/add-subscriber-response.json +++ b/wp_api/tests/wpcom/subscribers/add-subscriber-response.json @@ -1,3 +1,3 @@ { - "upload_id": 147487442134 -} \ No newline at end of file + "upload_id": 147487442134 +} diff --git a/wp_api/tests/wpcom/subscribers/subscriber-list-not-authorized.json b/wp_api/tests/wpcom/subscribers/subscriber-list-not-authorized.json index db1b65d5f..a0f6c7b0e 100644 --- a/wp_api/tests/wpcom/subscribers/subscriber-list-not-authorized.json +++ b/wp_api/tests/wpcom/subscribers/subscriber-list-not-authorized.json @@ -1,7 +1,7 @@ { - "code": "authorization_required", - "message": "Only users with the permission to edit posts can access this endpoint.", - "data": { - "status": 401 - } - } \ No newline at end of file + "code": "authorization_required", + "message": "Only users with the permission to edit posts can access this endpoint.", + "data": { + "status": 401 + } +} diff --git a/wp_api/tests/wpcom/subscribers/subscriber-stats.json b/wp_api/tests/wpcom/subscribers/subscriber-stats.json index f2bcd4c3a..e82d56fce 100644 --- a/wp_api/tests/wpcom/subscribers/subscriber-stats.json +++ b/wp_api/tests/wpcom/subscribers/subscriber-stats.json @@ -1,249 +1,249 @@ { - "counts": { - "email_subscribers": 26, - "all_subscribers": 30, - "paid_subscribers": 0 - }, - "aggregate": { - "2025-05-14": { - "all": 30, - "paid": 0 - }, - "2025-05-13": { - "all": 30, - "paid": 0 - }, - "2025-05-12": { - "all": 30, - "paid": 0 - }, - "2025-05-11": { - "all": 30, - "paid": 0 - }, - "2025-05-10": { - "all": 30, - "paid": 0 - }, - "2025-05-09": { - "all": 30, - "paid": 0 - }, - "2025-05-08": { - "all": 30, - "paid": 0 - }, - "2025-05-07": { - "all": 30, - "paid": 0 - }, - "2025-05-06": { - "all": 30, - "paid": 0 - }, - "2025-05-05": { - "all": 30, - "paid": 0 - }, - "2025-05-04": { - "all": 30, - "paid": 0 - }, - "2025-05-03": { - "all": 30, - "paid": 0 - }, - "2025-05-02": { - "all": 30, - "paid": 0 - }, - "2025-05-01": { - "all": 30, - "paid": 0 - }, - "2025-04-30": { - "all": 30, - "paid": 0 - }, - "2025-04-29": { - "all": 30, - "paid": 0 - }, - "2025-04-28": { - "all": 30, - "paid": 0 - }, - "2025-04-27": { - "all": 30, - "paid": 0 - }, - "2025-04-26": { - "all": 30, - "paid": 0 - }, - "2025-04-25": { - "all": 30, - "paid": 0 - }, - "2025-04-24": { - "all": 30, - "paid": 0 - }, - "2025-04-23": { - "all": 30, - "paid": 0 - }, - "2025-04-22": { - "all": 30, - "paid": 0 - }, - "2025-04-21": { - "all": 30, - "paid": 0 - }, - "2025-04-20": { - "all": 30, - "paid": 0 - }, - "2025-04-19": { - "all": 30, - "paid": 0 - }, - "2025-04-18": { - "all": 30, - "paid": 0 - }, - "2025-04-17": { - "all": 30, - "paid": 0 - }, - "2025-04-16": { - "all": 30, - "paid": 0 - }, - "2025-04-15": { - "all": 30, - "paid": 0 - }, - "2025-04-14": { - "all": 30, - "paid": 0 - }, - "2025-04-13": { - "all": 30, - "paid": 0 - }, - "2025-04-12": { - "all": 30, - "paid": 0 - }, - "2025-04-11": { - "all": 30, - "paid": 0 - }, - "2025-04-10": { - "all": 30, - "paid": 0 - }, - "2025-04-09": { - "all": 30, - "paid": 0 - }, - "2025-04-08": { - "all": 30, - "paid": 0 - }, - "2025-04-07": { - "all": 30, - "paid": 0 - }, - "2025-04-06": { - "all": 30, - "paid": 0 - }, - "2025-04-05": { - "all": 30, - "paid": 0 - }, - "2025-04-04": { - "all": 30, - "paid": 0 - }, - "2025-04-03": { - "all": 30, - "paid": 0 - }, - "2025-04-02": { - "all": 30, - "paid": 0 - }, - "2025-04-01": { - "all": 30, - "paid": 0 - }, - "2025-03-31": { - "all": 30, - "paid": 0 - }, - "2025-03-30": { - "all": 30, - "paid": 0 - }, - "2025-03-29": { - "all": 30, - "paid": 0 - }, - "2025-03-28": { - "all": 30, - "paid": 0 - }, - "2025-03-27": { - "all": 30, - "paid": 0 - }, - "2025-03-26": { - "all": 30, - "paid": 0 - }, - "2025-03-25": { - "all": 30, - "paid": 0 - }, - "2025-03-24": { - "all": 30, - "paid": 0 - }, - "2025-03-23": { - "all": 30, - "paid": 0 - }, - "2025-03-22": { - "all": 30, - "paid": 0 - }, - "2025-03-21": { - "all": 30, - "paid": 0 - }, - "2025-03-20": { - "all": 30, - "paid": 0 - }, - "2025-03-19": { - "all": 30, - "paid": 0 - }, - "2025-03-18": { - "all": 30, - "paid": 0 - }, - "2025-03-17": { - "all": 30, - "paid": 0 - }, - "2025-03-16": { - "all": 30, - "paid": 0 - } + "counts": { + "email_subscribers": 26, + "all_subscribers": 30, + "paid_subscribers": 0 + }, + "aggregate": { + "2025-05-14": { + "all": 30, + "paid": 0 + }, + "2025-05-13": { + "all": 30, + "paid": 0 + }, + "2025-05-12": { + "all": 30, + "paid": 0 + }, + "2025-05-11": { + "all": 30, + "paid": 0 + }, + "2025-05-10": { + "all": 30, + "paid": 0 + }, + "2025-05-09": { + "all": 30, + "paid": 0 + }, + "2025-05-08": { + "all": 30, + "paid": 0 + }, + "2025-05-07": { + "all": 30, + "paid": 0 + }, + "2025-05-06": { + "all": 30, + "paid": 0 + }, + "2025-05-05": { + "all": 30, + "paid": 0 + }, + "2025-05-04": { + "all": 30, + "paid": 0 + }, + "2025-05-03": { + "all": 30, + "paid": 0 + }, + "2025-05-02": { + "all": 30, + "paid": 0 + }, + "2025-05-01": { + "all": 30, + "paid": 0 + }, + "2025-04-30": { + "all": 30, + "paid": 0 + }, + "2025-04-29": { + "all": 30, + "paid": 0 + }, + "2025-04-28": { + "all": 30, + "paid": 0 + }, + "2025-04-27": { + "all": 30, + "paid": 0 + }, + "2025-04-26": { + "all": 30, + "paid": 0 + }, + "2025-04-25": { + "all": 30, + "paid": 0 + }, + "2025-04-24": { + "all": 30, + "paid": 0 + }, + "2025-04-23": { + "all": 30, + "paid": 0 + }, + "2025-04-22": { + "all": 30, + "paid": 0 + }, + "2025-04-21": { + "all": 30, + "paid": 0 + }, + "2025-04-20": { + "all": 30, + "paid": 0 + }, + "2025-04-19": { + "all": 30, + "paid": 0 + }, + "2025-04-18": { + "all": 30, + "paid": 0 + }, + "2025-04-17": { + "all": 30, + "paid": 0 + }, + "2025-04-16": { + "all": 30, + "paid": 0 + }, + "2025-04-15": { + "all": 30, + "paid": 0 + }, + "2025-04-14": { + "all": 30, + "paid": 0 + }, + "2025-04-13": { + "all": 30, + "paid": 0 + }, + "2025-04-12": { + "all": 30, + "paid": 0 + }, + "2025-04-11": { + "all": 30, + "paid": 0 + }, + "2025-04-10": { + "all": 30, + "paid": 0 + }, + "2025-04-09": { + "all": 30, + "paid": 0 + }, + "2025-04-08": { + "all": 30, + "paid": 0 + }, + "2025-04-07": { + "all": 30, + "paid": 0 + }, + "2025-04-06": { + "all": 30, + "paid": 0 + }, + "2025-04-05": { + "all": 30, + "paid": 0 + }, + "2025-04-04": { + "all": 30, + "paid": 0 + }, + "2025-04-03": { + "all": 30, + "paid": 0 + }, + "2025-04-02": { + "all": 30, + "paid": 0 + }, + "2025-04-01": { + "all": 30, + "paid": 0 + }, + "2025-03-31": { + "all": 30, + "paid": 0 + }, + "2025-03-30": { + "all": 30, + "paid": 0 + }, + "2025-03-29": { + "all": 30, + "paid": 0 + }, + "2025-03-28": { + "all": 30, + "paid": 0 + }, + "2025-03-27": { + "all": 30, + "paid": 0 + }, + "2025-03-26": { + "all": 30, + "paid": 0 + }, + "2025-03-25": { + "all": 30, + "paid": 0 + }, + "2025-03-24": { + "all": 30, + "paid": 0 + }, + "2025-03-23": { + "all": 30, + "paid": 0 + }, + "2025-03-22": { + "all": 30, + "paid": 0 + }, + "2025-03-21": { + "all": 30, + "paid": 0 + }, + "2025-03-20": { + "all": 30, + "paid": 0 + }, + "2025-03-19": { + "all": 30, + "paid": 0 + }, + "2025-03-18": { + "all": 30, + "paid": 0 + }, + "2025-03-17": { + "all": 30, + "paid": 0 + }, + "2025-03-16": { + "all": 30, + "paid": 0 } - } \ No newline at end of file + } +} diff --git a/wp_api/tests/wpcom/subscribers/subscriber-with-paid-plans.json b/wp_api/tests/wpcom/subscribers/subscriber-with-paid-plans.json index 2a6572880..a7ebba27d 100644 --- a/wp_api/tests/wpcom/subscribers/subscriber-with-paid-plans.json +++ b/wp_api/tests/wpcom/subscribers/subscriber-with-paid-plans.json @@ -1,43 +1,43 @@ { - "user_id": 123, - "subscription_id": 123, - "email_address": "test@example.com", - "date_subscribed": "2025-04-17T14:40:00+00:00", - "is_email_subscriber": false, - "subscription_status": "Subscribed", - "avatar": "https://example.com/avatar", - "display_name": "Foo", - "url": "http://example.wordpress.com", - "country": { - "code": "US", - "name": "United States" + "user_id": 123, + "subscription_id": 123, + "email_address": "test@example.com", + "date_subscribed": "2025-04-17T14:40:00+00:00", + "is_email_subscriber": false, + "subscription_status": "Subscribed", + "avatar": "https://example.com/avatar", + "display_name": "Foo", + "url": "http://example.wordpress.com", + "country": { + "code": "US", + "name": "United States" + }, + "plans": [ + { + "is_gift": false, + "gift_id": null, + "paid_subscription_id": "12422686", + "status": "active", + "title": "Newsletter Tier", + "currency": "USD", + "renew_interval": "1 month", + "inactive_renew_interval": null, + "renewal_price": 0.5, + "start_date": "2025-01-13T18:51:55+00:00", + "end_date": "2025-02-13T18:51:55+00:00" }, - "plans": [ - { - "is_gift": false, - "gift_id": null, - "paid_subscription_id": "12422686", - "status": "active", - "title": "Newsletter Tier", - "currency": "USD", - "renew_interval": "1 month", - "inactive_renew_interval": null, - "renewal_price": 0.5, - "start_date": "2025-01-13T18:51:55+00:00", - "end_date": "2025-02-13T18:51:55+00:00" - }, - { - "is_gift": true, - "gift_id": 31, - "paid_subscription_id": null, - "status": "active", - "title": "Newsletter Tier 3", - "currency": "USD", - "renew_interval": "one-time", - "inactive_renew_interval": null, - "renewal_price": 0, - "start_date": "2025-05-08T14:50:28+00:00", - "end_date": "2025-06-07T14:50:28+00:00" - } - ] + { + "is_gift": true, + "gift_id": 31, + "paid_subscription_id": null, + "status": "active", + "title": "Newsletter Tier 3", + "currency": "USD", + "renew_interval": "one-time", + "inactive_renew_interval": null, + "renewal_price": 0, + "start_date": "2025-05-08T14:50:28+00:00", + "end_date": "2025-06-07T14:50:28+00:00" + } + ] } diff --git a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-empty.json b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-empty.json index f0762e385..fa27bd903 100644 --- a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-empty.json +++ b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-empty.json @@ -1,8 +1,8 @@ { - "total": 0, - "pages": 0, - "page": 1, - "per_page": 10, - "subscribers": [], - "is_owner_subscribed": false + "total": 0, + "pages": 0, + "page": 1, + "per_page": 10, + "subscribers": [], + "is_owner_subscribed": false } diff --git a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-with-invalid-date.json b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-with-invalid-date.json index 14284de67..600e45397 100644 --- a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-with-invalid-date.json +++ b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type-with-invalid-date.json @@ -1,31 +1,31 @@ { - "total": 88, - "pages": 9, - "page": 1, - "per_page": 10, - "subscribers": [ - { - "user_id": 33840434, - "subscription_id": 792200219, - "email_address": "user1@example.com", - "date_subscribed": "2024-12-26T10:08:55+00:00", - "is_email_subscriber": false, - "subscription_status": null, - "avatar": "https://0.gravatar.com/avatar/example1", - "display_name": "Nik", - "url": "https://nikhilc.dev" - }, - { - "user_id": 3251794, - "subscription_id": 10660, - "email_address": "olduser@example.com", - "date_subscribed": "-001-11-30T00:00:00+00:00", - "is_email_subscriber": false, - "subscription_status": null, - "avatar": "https://2.gravatar.com/avatar/example2", - "display_name": "Old Subscriber", - "url": "https://example.com" - } - ], - "is_owner_subscribed": false + "total": 88, + "pages": 9, + "page": 1, + "per_page": 10, + "subscribers": [ + { + "user_id": 33840434, + "subscription_id": 792200219, + "email_address": "user1@example.com", + "date_subscribed": "2024-12-26T10:08:55+00:00", + "is_email_subscriber": false, + "subscription_status": null, + "avatar": "https://0.gravatar.com/avatar/example1", + "display_name": "Nik", + "url": "https://nikhilc.dev" + }, + { + "user_id": 3251794, + "subscription_id": 10660, + "email_address": "olduser@example.com", + "date_subscribed": "-001-11-30T00:00:00+00:00", + "is_email_subscriber": false, + "subscription_status": null, + "avatar": "https://2.gravatar.com/avatar/example2", + "display_name": "Old Subscriber", + "url": "https://example.com" + } + ], + "is_owner_subscribed": false } diff --git a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type.json b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type.json index 23caf26f6..7868ccdd6 100644 --- a/wp_api/tests/wpcom/subscribers/subscribers-by-user-type.json +++ b/wp_api/tests/wpcom/subscribers/subscribers-by-user-type.json @@ -1,42 +1,42 @@ { - "total": 88, - "pages": 9, - "page": 1, - "per_page": 10, - "subscribers": [ - { - "user_id": 33840434, - "subscription_id": 792200219, - "email_address": "user1@example.com", - "date_subscribed": "2024-12-26T10:08:55+00:00", - "is_email_subscriber": false, - "subscription_status": null, - "avatar": "https://0.gravatar.com/avatar/example1", - "display_name": "Nik", - "url": "https://nikhilc.dev" - }, - { - "user_id": 257457202, - "subscription_id": 790270118, - "email_address": "user2@example.com", - "date_subscribed": "2024-12-02T14:34:36+00:00", - "is_email_subscriber": false, - "subscription_status": null, - "avatar": "https://2.gravatar.com/avatar/example2", - "display_name": "User Two", - "url": "https://example.com" - }, - { - "user_id": 179649005, - "subscription_id": 786241236, - "email_address": "user3@example.com", - "date_subscribed": "2024-10-19T10:32:44+00:00", - "is_email_subscriber": false, - "subscription_status": null, - "avatar": "https://0.gravatar.com/avatar/example3", - "display_name": "User Three", - "url": "https://example.org" - } - ], - "is_owner_subscribed": false + "total": 88, + "pages": 9, + "page": 1, + "per_page": 10, + "subscribers": [ + { + "user_id": 33840434, + "subscription_id": 792200219, + "email_address": "user1@example.com", + "date_subscribed": "2024-12-26T10:08:55+00:00", + "is_email_subscriber": false, + "subscription_status": null, + "avatar": "https://0.gravatar.com/avatar/example1", + "display_name": "Nik", + "url": "https://nikhilc.dev" + }, + { + "user_id": 257457202, + "subscription_id": 790270118, + "email_address": "user2@example.com", + "date_subscribed": "2024-12-02T14:34:36+00:00", + "is_email_subscriber": false, + "subscription_status": null, + "avatar": "https://2.gravatar.com/avatar/example2", + "display_name": "User Two", + "url": "https://example.com" + }, + { + "user_id": 179649005, + "subscription_id": 786241236, + "email_address": "user3@example.com", + "date_subscribed": "2024-10-19T10:32:44+00:00", + "is_email_subscriber": false, + "subscription_status": null, + "avatar": "https://0.gravatar.com/avatar/example3", + "display_name": "User Three", + "url": "https://example.org" + } + ], + "is_owner_subscribed": false } diff --git a/wp_api/tests/wpcom/subscribers/subscribers-import-jobs-list.json b/wp_api/tests/wpcom/subscribers/subscribers-import-jobs-list.json index 48e3b84d5..ff6e5c422 100644 --- a/wp_api/tests/wpcom/subscribers/subscribers-import-jobs-list.json +++ b/wp_api/tests/wpcom/subscribers/subscribers-import-jobs-list.json @@ -1,34 +1,34 @@ [ - { - "id": 1474805, - "categories": [], - "status": "imported", - "scheduled_at": "2025-05-14 12:39:06", - "timestamp": "1747247945", - "email_count": "1", - "subscribed_count": "0", - "already_subscribed_count": "0", - "failed_subscribed_count": 1, - "paid_subscribers_count": "0", - "platform": null, - "paid_subscribed_count": 0, - "paid_already_subscribed_count": 0, - "paid_failed_subscribed_count": 0 - }, - { - "id": 1474803, - "categories": [], - "status": "imported", - "scheduled_at": "2025-05-14 12:37:31", - "timestamp": "1747247849", - "email_count": "1", - "subscribed_count": "0", - "already_subscribed_count": "0", - "failed_subscribed_count": 1, - "paid_subscribers_count": "0", - "platform": null, - "paid_subscribed_count": 0, - "paid_already_subscribed_count": 0, - "paid_failed_subscribed_count": 0 - } - ] \ No newline at end of file + { + "id": 1474805, + "categories": [], + "status": "imported", + "scheduled_at": "2025-05-14 12:39:06", + "timestamp": "1747247945", + "email_count": "1", + "subscribed_count": "0", + "already_subscribed_count": "0", + "failed_subscribed_count": 1, + "paid_subscribers_count": "0", + "platform": null, + "paid_subscribed_count": 0, + "paid_already_subscribed_count": 0, + "paid_failed_subscribed_count": 0 + }, + { + "id": 1474803, + "categories": [], + "status": "imported", + "scheduled_at": "2025-05-14 12:37:31", + "timestamp": "1747247849", + "email_count": "1", + "subscribed_count": "0", + "already_subscribed_count": "0", + "failed_subscribed_count": 1, + "paid_subscribers_count": "0", + "platform": null, + "paid_subscribed_count": 0, + "paid_already_subscribed_count": 0, + "paid_failed_subscribed_count": 0 + } +] diff --git a/wp_api/tests/wpcom/support_bots/add-message-to-conversation-response.json b/wp_api/tests/wpcom/support_bots/add-message-to-conversation-response.json index cb67f5c20..af8249c88 100644 --- a/wp_api/tests/wpcom/support_bots/add-message-to-conversation-response.json +++ b/wp_api/tests/wpcom/support_bots/add-message-to-conversation-response.json @@ -1,115 +1,115 @@ { - "chat_id": 1965758, - "wpcom_user_id": 158350866, - "external_id": null, - "external_id_provider": null, - "session_id": "2da907bc-67dd-49f0-b8f8-09c47e63176b", - "bot_slug": "jetpack-chat-mobile", - "bot_version": "1.1.0", - "created_at": "2025-05-15 18:04:40", - "zendesk_ticket_id": null, - "messages": [ - { - "message_id": 5531592, - "content": "You're welcome! I'm still not sure what specific feature or functionality you'd like help with. Could you please share more details about what you're trying to do? This will help me provide you with the most relevant assistance.", - "role": "bot", - "created_at": "2025-05-15 20:04:19", - "context": { - "question_tags": { - "inquiry_type": "message-is-just-greeting", - "product": "unknown", - "is_legal_inquiry": "false", - "is_ai_question": "false", - "language": "en" + "chat_id": 1965758, + "wpcom_user_id": 158350866, + "external_id": null, + "external_id_provider": null, + "session_id": "2da907bc-67dd-49f0-b8f8-09c47e63176b", + "bot_slug": "jetpack-chat-mobile", + "bot_version": "1.1.0", + "created_at": "2025-05-15 18:04:40", + "zendesk_ticket_id": null, + "messages": [ + { + "message_id": 5531592, + "content": "You're welcome! I'm still not sure what specific feature or functionality you'd like help with. Could you please share more details about what you're trying to do? This will help me provide you with the most relevant assistance.", + "role": "bot", + "created_at": "2025-05-15 20:04:19", + "context": { + "question_tags": { + "inquiry_type": "message-is-just-greeting", + "product": "unknown", + "is_legal_inquiry": "false", + "is_ai_question": "false", + "language": "en" + }, + "sources": [ + { + "title": "SMS Sent", + "url": "https://apps.wordpress.com/mobile/sms-thanks/", + "heading": "Thanks — now go check your messages!", + "content": "## Thanks — now go check your messages!\n\n\nFor some help getting started, [check out our support resources.](https://apps.wordpress.com/support/)", + "blog_id": 108068616, + "post_id": 3851, + "score": 0.29833677, + "last_indexed_at": "2025-05-05T08:58:50.247591", + "railcar": { + "railcar": "R)!P&#lzhSo0", + "fetch_algo": "jetpack-chat-mobile-1.1.0", + "fetch_position": 0, + "rec_blog_id": 108068616, + "rec_post_id": 3851, + "rec_url": "https://apps.wordpress.com/mobile/sms-thanks/", + "fetch_lang": "en", + "fetch_query": "Thanks for the reply!" + } + }, + { + "title": "Contribute", + "url": "https://apps.wordpress.com/contribute/", + "heading": "User Feedback", + "content": "*Help shape the future of WordPress apps*\n## User Feedback\n\n\nIf you're a user or developer and would like to leave feedback about the WordPress mobile apps, contact us on our forums. Your feedback is invaluable and helps us to improve the experience, each and every day. We have *Requests and Feedback* forums for [WordPress for iOS](http://ios.forums.wordpress.org/forum/requests-and-feedback) and [WordPress for Android](http://android.forums.wordpress.org/forum/requests-and-feedback).\n\nYou can also send feedback directly in the app: Go to *Help & Support* on the Me (account) tab, and select *Contact us*.\n## Beta Testing\n\n\nDo you enjoy giving feedback on the WordPress apps and want to do more? If you like exploring the latest features and don't mind uncovering a few bugs in the process, join our beta testing program!\n### Mobile\n\n\nSign up for the [WordPress for iOS TestFlight beta program](https://testflight.apple.com/join/AkJQt8Pw), or go to [WordPress for Android](https://play.google.com/store/apps/details?id=org.wordpress.android) in the Google Play Store on your device and opt in to the beta program.\n\nFor details on what to test in each beta version, head to [Make WordPress Mobile](https://make.wordpress.org/mobile/). Leave feedback directly on that post (requires a WordPress.org account) or submit feedback through TestFlight (iOS) or the Google Play Store (Android).\n### Opting Out\n\n\n**iOS**\n\nOpen the Testflight app and select the app you want to stop testing from the list.  On the selected app page, tap **Stop Testing**. In the pop up, tap **Stop Testing** to confirm that you want to stop testing the app.\n\n**Android**\n\nOpen the Google Play Store and find the app you want to leave.  Tap the app to open the app page.  Scroll down and find the section on beta testing.  Tap **Leave**.\n### Desktop\n\n\nTo join the WordPress.com desktop app beta, first [download and install the app](https://apps.wordpress.com/desktop/). Then, open the app's Preferences. Next to “Release Channel,” switch from the Stable release to the Beta channel. After a short wait you will be prompted to install the latest beta version. You can [share your desktop app feedback on GitHub](https://github.com/Automattic/wp-desktop/issues).\n## Developers\n\n\n### GitHub repositories:\n\n\n* [WordPress for iOS](https://href.li/?https://github.com/wordpress-mobile/WordPress-iOS)\n* [WordPress for Android](https://href.li/?https://github.com/wordpress-mobile/WordPress-Android)\n* [WordPress.com desktop app](https://github.com/Automattic/wp-desktop)\n\n\nAre you passionate about mobile development? Do you want to work on projects that improve the mobile experiences of hundreds of thousands of users around the world?\n\nIf you are a mobile developer and have a passion for enhancing the user experience on small-screen portable devices, you can contribute to the WordPress mobile apps, which are **open-source** projects — this means anyone, including you, can play a part in its development.\n\nFor details on how to get involved in the WordPress mobile community, take a look at the [WordPress Mobile Development Handbook](https://href.li/?http://make.wordpress.org/mobile/handbook/): a guide on tools, code, style guidelines, and more.", + "blog_id": 108068616, + "post_id": 1843, + "score": 0.2302932, + "last_indexed_at": "2025-05-05T08:59:05.280753", + "railcar": { + "railcar": "TMAA!Lcp7TMq", + "fetch_algo": "jetpack-chat-mobile-1.1.0", + "fetch_position": 1, + "rec_blog_id": 108068616, + "rec_post_id": 1843, + "rec_url": "https://apps.wordpress.com/contribute/", + "fetch_lang": "en", + "fetch_query": "Thanks for the reply!" + } }, - "sources": [ - { - "title": "SMS Sent", - "url": "https:\/\/apps.wordpress.com\/mobile\/sms-thanks\/", - "heading": "Thanks \u2014 now go check your messages!", - "content": "## Thanks \u2014 now go check your messages!\n\n\nFor some help getting started, [check out our support resources.](https:\/\/apps.wordpress.com\/support\/)", - "blog_id": 108068616, - "post_id": 3851, - "score": 0.29833677, - "last_indexed_at": "2025-05-05T08:58:50.247591", - "railcar": { - "railcar": "R)!P&#lzhSo0", - "fetch_algo": "jetpack-chat-mobile-1.1.0", - "fetch_position": 0, - "rec_blog_id": 108068616, - "rec_post_id": 3851, - "rec_url": "https:\/\/apps.wordpress.com\/mobile\/sms-thanks\/", - "fetch_lang": "en", - "fetch_query": "Thanks for the reply!" - } - }, - { - "title": "Contribute", - "url": "https:\/\/apps.wordpress.com\/contribute\/", - "heading": "User Feedback", - "content": "*Help shape the future of WordPress\u00a0apps*\n## User Feedback\n\n\nIf you're a user or developer and would like to leave feedback about the WordPress mobile apps, contact us on our forums. Your feedback is invaluable and helps us to improve the experience, each and every day. We have\u00a0*Requests and Feedback* forums for [WordPress for iOS](http:\/\/ios.forums.wordpress.org\/forum\/requests-and-feedback) and [WordPress for Android](http:\/\/android.forums.wordpress.org\/forum\/requests-and-feedback).\n\nYou can also send feedback\u00a0directly in the app: Go to\u00a0*Help & Support* on the Me (account) tab, and select *Contact us*.\n## Beta Testing\n\n\nDo you enjoy\u00a0giving feedback on the WordPress apps and\u00a0want to do more? If you like exploring the latest features and don't mind uncovering a few bugs in the process, join our beta testing program!\n### Mobile\n\n\nSign up for the [WordPress for iOS TestFlight beta program](https:\/\/testflight.apple.com\/join\/AkJQt8Pw), or go to [WordPress for Android](https:\/\/play.google.com\/store\/apps\/details?id=org.wordpress.android) in the Google Play Store on your device and opt in to the beta program.\n\nFor details on what to test in each beta version, head to\u00a0[Make WordPress Mobile](https:\/\/make.wordpress.org\/mobile\/).\u00a0Leave feedback directly on that post (requires a WordPress.org account) or submit feedback through TestFlight (iOS) or the Google Play Store (Android).\n### Opting Out\n\n\n**iOS**\n\nOpen the Testflight app and select the app you want to stop testing from the list.\u00a0 On the selected app page, tap\u00a0**Stop Testing**. In the pop up, tap\u00a0**Stop Testing**\u00a0to\u00a0confirm that you want to stop testing the app.\n\n**Android**\n\nOpen the Google Play Store and find the app you want to leave.\u00a0 Tap the app to open the app page.\u00a0 Scroll down and find the section on beta testing.\u00a0 Tap **Leave**.\n### Desktop\n\n\nTo join the WordPress.com desktop app beta, first [download and install the app](https:\/\/apps.wordpress.com\/desktop\/). Then, open the app's Preferences.\u00a0Next to \u201cRelease Channel,\u201d switch from the Stable release to the Beta channel. After a short wait you will be prompted to install the latest beta version. You can [share your desktop app feedback on GitHub](https:\/\/github.com\/Automattic\/wp-desktop\/issues).\n## Developers\n\n\n### GitHub repositories:\n\n\n* [WordPress for iOS](https:\/\/href.li\/?https:\/\/github.com\/wordpress-mobile\/WordPress-iOS)\n* [WordPress for Android](https:\/\/href.li\/?https:\/\/github.com\/wordpress-mobile\/WordPress-Android)\n* [WordPress.com desktop app](https:\/\/github.com\/Automattic\/wp-desktop)\n\n\nAre you passionate about mobile development? Do you want to work on projects that improve the mobile experiences of hundreds of thousands of users around the world?\n\nIf you are a mobile developer and have a passion for enhancing the user experience on small-screen portable devices, you can contribute to the WordPress mobile apps, which are **open-source** projects \u2014 this means anyone, including you, can play a part in its development.\n\nFor details on how to get involved in the WordPress mobile community, take a look at the\u00a0[WordPress Mobile Development Handbook](https:\/\/href.li\/?http:\/\/make.wordpress.org\/mobile\/handbook\/): a guide on tools, code, style guidelines, and more.", - "blog_id": 108068616, - "post_id": 1843, - "score": 0.2302932, - "last_indexed_at": "2025-05-05T08:59:05.280753", - "railcar": { - "railcar": "TMAA!Lcp7TMq", - "fetch_algo": "jetpack-chat-mobile-1.1.0", - "fetch_position": 1, - "rec_blog_id": 108068616, - "rec_post_id": 1843, - "rec_url": "https:\/\/apps.wordpress.com\/contribute\/", - "fetch_lang": "en", - "fetch_query": "Thanks for the reply!" - } - }, - { - "title": "SMS Error", - "url": "https:\/\/apps.wordpress.com\/mobile\/sms-error\/", - "heading": "Hmm\u2026We weren't able to send a message to that number.", - "content": "## Hmm\u2026We weren't able to send a message to that number.\n\n\nTry using the buttons below to download the app.\n\n\n\n", - "blog_id": 108068616, - "post_id": 3853, - "score": 0.20303826, - "last_indexed_at": "2025-05-05T08:58:48.126769", - "railcar": { - "railcar": "zlLiBg@$cpfp", - "fetch_algo": "jetpack-chat-mobile-1.1.0", - "fetch_position": 2, - "rec_blog_id": 108068616, - "rec_post_id": 3853, - "rec_url": "https:\/\/apps.wordpress.com\/mobile\/sms-error\/", - "fetch_lang": "en", - "fetch_query": "Thanks for the reply!" - } - }, - { - "title": "Not receiving the verification code for login", - "url": "https:\/\/apps.wordpress.com\/support\/mobile\/login-signup\/i-cant-log-in-because-im-not-receiving-the-verification-code\/", - "heading": "If you are unable to access...", - "content": "\nIf you are unable to access your SMS code, please follow these steps to regain access to your account:\n\n\n1. **Send an email**: From the email address you used to register your WordPress.com account, send an email to help@wordpress.com.\n2. **Account verification**: In your email, include details that can help us verify your ownership of the account, such as your username and any other relevant information.\n\n\nOnce we receive your email and confirm that you are the account owner, we will provide you with a single-use code to regain access to your account. This process ensures that your account remains secure while allowing you to recover access efficiently.\n\n\n", - "blog_id": 108068616, - "post_id": 8523, - "score": 0.20049194, - "last_indexed_at": "2025-05-05T08:57:04.092336", - "railcar": { - "railcar": "!xGl2Ejs!wmb", - "fetch_algo": "jetpack-chat-mobile-1.1.0", - "fetch_position": 3, - "rec_blog_id": 108068616, - "rec_post_id": 8523, - "rec_url": "https:\/\/apps.wordpress.com\/support\/mobile\/login-signup\/i-cant-log-in-because-im-not-receiving-the-verification-code\/", - "fetch_lang": "en", - "fetch_query": "Thanks for the reply!" - } + { + "title": "SMS Error", + "url": "https://apps.wordpress.com/mobile/sms-error/", + "heading": "Hmm…We weren't able to send a message to that number.", + "content": "## Hmm…We weren't able to send a message to that number.\n\n\nTry using the buttons below to download the app.\n\n\n\n", + "blog_id": 108068616, + "post_id": 3853, + "score": 0.20303826, + "last_indexed_at": "2025-05-05T08:58:48.126769", + "railcar": { + "railcar": "zlLiBg@$cpfp", + "fetch_algo": "jetpack-chat-mobile-1.1.0", + "fetch_position": 2, + "rec_blog_id": 108068616, + "rec_post_id": 3853, + "rec_url": "https://apps.wordpress.com/mobile/sms-error/", + "fetch_lang": "en", + "fetch_query": "Thanks for the reply!" + } + }, + { + "title": "Not receiving the verification code for login", + "url": "https://apps.wordpress.com/support/mobile/login-signup/i-cant-log-in-because-im-not-receiving-the-verification-code/", + "heading": "If you are unable to access...", + "content": "\nIf you are unable to access your SMS code, please follow these steps to regain access to your account:\n\n\n1. **Send an email**: From the email address you used to register your WordPress.com account, send an email to help@wordpress.com.\n2. **Account verification**: In your email, include details that can help us verify your ownership of the account, such as your username and any other relevant information.\n\n\nOnce we receive your email and confirm that you are the account owner, we will provide you with a single-use code to regain access to your account. This process ensures that your account remains secure while allowing you to recover access efficiently.\n\n\n", + "blog_id": 108068616, + "post_id": 8523, + "score": 0.20049194, + "last_indexed_at": "2025-05-05T08:57:04.092336", + "railcar": { + "railcar": "!xGl2Ejs!wmb", + "fetch_algo": "jetpack-chat-mobile-1.1.0", + "fetch_position": 3, + "rec_blog_id": 108068616, + "rec_post_id": 8523, + "rec_url": "https://apps.wordpress.com/support/mobile/login-signup/i-cant-log-in-because-im-not-receiving-the-verification-code/", + "fetch_lang": "en", + "fetch_query": "Thanks for the reply!" } - ], - "flags": { - "forward_to_human_support": false, - "canned_response": false } - }, - "ts": 1747339459 - } - ] - } \ No newline at end of file + ], + "flags": { + "forward_to_human_support": false, + "canned_response": false + } + }, + "ts": 1747339459 + } + ] +} diff --git a/wp_api/tests/wpcom/support_bots/conversation-list-01.json b/wp_api/tests/wpcom/support_bots/conversation-list-01.json index 4a1c6797c..7df0322d4 100644 --- a/wp_api/tests/wpcom/support_bots/conversation-list-01.json +++ b/wp_api/tests/wpcom/support_bots/conversation-list-01.json @@ -1,11 +1,11 @@ [ - { - "chat_id": 1965758, - "created_at": "2025-05-15 18:04:40", - "last_message": { - "content": "Hi there! \ud83d\udc4b \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", - "role": "bot", - "created_at": "2025-05-15 18:04:47" - } + { + "chat_id": 1965758, + "created_at": "2025-05-15 18:04:40", + "last_message": { + "content": "Hi there! 👋 \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", + "role": "bot", + "created_at": "2025-05-15 18:04:47" } - ] \ No newline at end of file + } +] diff --git a/wp_api/tests/wpcom/support_bots/conversation-list-02.json b/wp_api/tests/wpcom/support_bots/conversation-list-02.json index c8a73215e..543eae067 100644 --- a/wp_api/tests/wpcom/support_bots/conversation-list-02.json +++ b/wp_api/tests/wpcom/support_bots/conversation-list-02.json @@ -1,11 +1,11 @@ [ - { - "chat_id": 1965758, - "created_at": "2025-10-16 18:41:19", - "first_message": { - "content": "oh hi there I have a new android tablet here", - "role": "user", - "created_at": "2025-10-16 18:41:20" - } + { + "chat_id": 1965758, + "created_at": "2025-10-16 18:41:19", + "first_message": { + "content": "oh hi there I have a new android tablet here", + "role": "user", + "created_at": "2025-10-16 18:41:20" } + } ] diff --git a/wp_api/tests/wpcom/support_bots/create-conversation-response.json b/wp_api/tests/wpcom/support_bots/create-conversation-response.json index af7b4a8a3..920cf3b01 100644 --- a/wp_api/tests/wpcom/support_bots/create-conversation-response.json +++ b/wp_api/tests/wpcom/support_bots/create-conversation-response.json @@ -1,34 +1,34 @@ { - "chat_id": 1965886, - "wpcom_user_id": 158350866, - "external_id": null, - "external_id_provider": null, - "session_id": "5e5e4361-695c-4349-87d1-bb929eebc47e", - "bot_slug": "jetpack-chat-mobile", - "bot_version": "1.1.0", - "created_at": "2025-05-15 18:32:51", - "zendesk_ticket_id": null, - "messages": [ - { - "message_id": 5530094, - "content": "Hi there! \ud83d\udc4b \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", - "role": "bot", - "created_at": "2025-05-15 18:32:57", - "context": { - "question_tags": { - "inquiry_type": "other", - "product": "unknown", - "is_legal_inquiry": "false", - "is_ai_question": "false", - "language": "en" - }, - "sources": [], - "flags": { - "forward_to_human_support": false, - "canned_response": false - } + "chat_id": 1965886, + "wpcom_user_id": 158350866, + "external_id": null, + "external_id_provider": null, + "session_id": "5e5e4361-695c-4349-87d1-bb929eebc47e", + "bot_slug": "jetpack-chat-mobile", + "bot_version": "1.1.0", + "created_at": "2025-05-15 18:32:51", + "zendesk_ticket_id": null, + "messages": [ + { + "message_id": 5530094, + "content": "Hi there! 👋 \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", + "role": "bot", + "created_at": "2025-05-15 18:32:57", + "context": { + "question_tags": { + "inquiry_type": "other", + "product": "unknown", + "is_legal_inquiry": "false", + "is_ai_question": "false", + "language": "en" }, - "ts": 1747333977 - } - ] - } \ No newline at end of file + "sources": [], + "flags": { + "forward_to_human_support": false, + "canned_response": false + } + }, + "ts": 1747333977 + } + ] +} diff --git a/wp_api/tests/wpcom/support_bots/single-conversation-01.json b/wp_api/tests/wpcom/support_bots/single-conversation-01.json index 8275aeb70..4a11677fd 100644 --- a/wp_api/tests/wpcom/support_bots/single-conversation-01.json +++ b/wp_api/tests/wpcom/support_bots/single-conversation-01.json @@ -1,58 +1,58 @@ { - "chat_id": 1965758, - "wpcom_user_id": 158350866, - "external_id": null, - "external_id_provider": null, - "session_id": "2da907bc-67dd-49f0-b8f8-09c47e63176b", - "bot_slug": "jetpack-chat-mobile", - "bot_version": "1.1.0", - "created_at": "2025-05-15 18:04:40", - "zendesk_ticket_id": null, - "messages": [ - { - "message_id": 5529625, - "content": "Hello, does this work?", - "role": "user", - "created_at": "2025-05-15 18:04:41", - "context": { - "selectedSiteId": 1234567890, - "wpcom_user_id": 1234567890, - "wpcom_user_name": "example-user", - "user_paid_support_eligibility": { - "is_user_eligible": true, - "wapuu_assistant_enabled": true, - "support_level": "ecommerce", - "user_field_flow_name": null - }, - "plan": { - "plan_name": "WordPress.com Free", - "is_free": true - }, - "products": [], - "plan_interface": false + "chat_id": 1965758, + "wpcom_user_id": 158350866, + "external_id": null, + "external_id_provider": null, + "session_id": "2da907bc-67dd-49f0-b8f8-09c47e63176b", + "bot_slug": "jetpack-chat-mobile", + "bot_version": "1.1.0", + "created_at": "2025-05-15 18:04:40", + "zendesk_ticket_id": null, + "messages": [ + { + "message_id": 5529625, + "content": "Hello, does this work?", + "role": "user", + "created_at": "2025-05-15 18:04:41", + "context": { + "selectedSiteId": 1234567890, + "wpcom_user_id": 1234567890, + "wpcom_user_name": "example-user", + "user_paid_support_eligibility": { + "is_user_eligible": true, + "wapuu_assistant_enabled": true, + "support_level": "ecommerce", + "user_field_flow_name": null }, - "ts": 1747332281 + "plan": { + "plan_name": "WordPress.com Free", + "is_free": true + }, + "products": [], + "plan_interface": false }, - { - "message_id": 5529627, - "content": "Hi there! \ud83d\udc4b \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", - "role": "bot", - "created_at": "2025-05-15 18:04:47", - "context": { - "question_tags": { - "inquiry_type": "other", - "product": "unknown", - "is_legal_inquiry": "false", - "is_ai_question": "false", - "language": "en" - }, - "sources": [], - "flags": { - "forward_to_human_support": false, - "canned_response": false - } + "ts": 1747332281 + }, + { + "message_id": 5529627, + "content": "Hi there! 👋 \n\nI'd be happy to help, but could you please provide more details about what you're trying to do? Are you referring to:\n\n- The Jetpack Mobile app?\n- The WordPress Mobile app?\n- A specific Jetpack feature?\n\nOnce you clarify, I'll be better able to assist you!", + "role": "bot", + "created_at": "2025-05-15 18:04:47", + "context": { + "question_tags": { + "inquiry_type": "other", + "product": "unknown", + "is_legal_inquiry": "false", + "is_ai_question": "false", + "language": "en" }, - "ts": 1747332287 - } - ] - } \ No newline at end of file + "sources": [], + "flags": { + "forward_to_human_support": false, + "canned_response": false + } + }, + "ts": 1747332287 + } + ] +} diff --git a/wp_api/tests/wpcom/support_bots/single-conversation-02.json b/wp_api/tests/wpcom/support_bots/single-conversation-02.json index 6bc012536..ac0b2c8df 100644 --- a/wp_api/tests/wpcom/support_bots/single-conversation-02.json +++ b/wp_api/tests/wpcom/support_bots/single-conversation-02.json @@ -1,34 +1,34 @@ { - "chat_id": 1234567, - "wpcom_user_id": 987654, - "external_id": null, - "external_id_provider": null, - "session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", - "bot_slug": "jetpack-chat-mobile", - "bot_version": "2.0.0", - "created_at": "2025-10-03 02:01:05", - "zendesk_ticket_id": null, - "messages": [ - { - "message_id": 2000001, - "content": "This is a test - is it working?", - "role": "user", - "created_at": "2025-10-03 02:01:05", - "context": { - "message": "This is a test - is it working?", - "wpcom_user_id": 987654, - "wpcom_user_name": "testuser", - "user_paid_support_eligibility": { - "is_user_eligible": true, - "wapuu_assistant_enabled": true, - "support_level": "p2-plus", - "user_field_flow_name": null - }, - "plan": [], - "products": [], - "plan_interface": false + "chat_id": 1234567, + "wpcom_user_id": 987654, + "external_id": null, + "external_id_provider": null, + "session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", + "bot_slug": "jetpack-chat-mobile", + "bot_version": "2.0.0", + "created_at": "2025-10-03 02:01:05", + "zendesk_ticket_id": null, + "messages": [ + { + "message_id": 2000001, + "content": "This is a test - is it working?", + "role": "user", + "created_at": "2025-10-03 02:01:05", + "context": { + "message": "This is a test - is it working?", + "wpcom_user_id": 987654, + "wpcom_user_name": "testuser", + "user_paid_support_eligibility": { + "is_user_eligible": true, + "wapuu_assistant_enabled": true, + "support_level": "p2-plus", + "user_field_flow_name": null }, - "ts": 1609459200 - } - ] - } + "plan": [], + "products": [], + "plan_interface": false + }, + "ts": 1609459200 + } + ] +} diff --git a/wp_api/tests/wpcom/support_tickets/conversation-list.json b/wp_api/tests/wpcom/support_tickets/conversation-list.json index f07097a83..171ae5bba 100644 --- a/wp_api/tests/wpcom/support_tickets/conversation-list.json +++ b/wp_api/tests/wpcom/support_tickets/conversation-list.json @@ -1,90 +1,90 @@ [ - { - "id": 9033503, - "title": "🎨 Theme Customization Help", - "description": "Hello! 👋\n\nI see you're having trouble with your theme customization. Let me help you with that!\n\nThe color picker issue you're experiencing is a known bug that we've fixed in the latest update. Please try updating your theme to version 2.3.1.\n\nIf you need any further assistance, I'm here to help!\n\nBest regards,\n\nTheme Support Team 🌟", - "status": "closed", - "created_at": "2024-03-15T14:30:22+00:00", - "updated_at": "2024-03-18T09:45:33+00:00" - }, - { - "id": 1698812, - "title": "🔒 Security Update Required", - "description": "مرحباً!\n\nلقد لاحظنا أن موقعك يحتاج إلى تحديث أمني. يرجى تحديث إصدار WordPress الخاص بك إلى أحدث إصدار متاح.\n\nيمكنك القيام بذلك من لوحة التحكم الخاصة بك.\n\nمع تحياتنا،\n\nفريق الدعم الأمني", - "status": "closed", - "created_at": "2024-03-10T09:15:45+00:00", - "updated_at": "2024-03-11T16:20:12+00:00" - }, - { - "id": 1629241, - "title": "🚀 Performance Optimization", - "description": "Bonjour!\n\nJe vois que vous souhaitez optimiser les performances de votre site. Voici quelques suggestions:\n\n1. Activez la mise en cache\n2. Optimisez vos images\n3. Utilisez un CDN\n\nVoulez-vous que je vous guide à travers ces étapes?\n\nCordialement,\n\nL'équipe de support", - "status": "closed", - "created_at": "2024-03-05T11:22:18+00:00", - "updated_at": "2024-03-07T14:33:29+00:00" - }, - { - "id": 1500710, - "title": "📱 Mobile App Feedback", - "description": "Hi there! 👋\n\nThank you for your feedback about our mobile app. We're constantly working to improve the user experience.\n\nYour suggestion about the navigation menu has been forwarded to our development team.\n\nKeep the feedback coming! 💪\n\nBest regards,\n\nMobile Support Team", - "status": "closed", - "created_at": "2024-02-28T15:40:55+00:00", - "updated_at": "2024-03-01T10:15:22+00:00" - }, - { - "id": 1499869, - "title": "🎯 SEO Optimization Help", - "description": "Hello!\n\nI'd be happy to help you with your SEO optimization. Here are some key areas we can focus on:\n\n1. Meta descriptions\n2. Image alt tags\n3. URL structure\n\nWould you like me to provide more specific guidance on any of these topics?\n\nBest regards,\n\nSEO Support Team", - "status": "closed", - "created_at": "2024-02-25T13:20:33+00:00", - "updated_at": "2024-02-27T09:45:11+00:00" - }, - { - "id": 1500203, - "title": "💰 Payment Gateway Setup", - "description": "Hi!\n\nI see you're setting up a new payment gateway. Let's make sure everything is configured correctly.\n\nPlease verify these settings:\n1. API keys\n2. Webhook endpoints\n3. Test mode status\n\nNeed any clarification? 🤔\n\nBest regards,\n\nPayment Support Team", - "status": "closed", - "created_at": "2024-02-20T10:15:44+00:00", - "updated_at": "2024-02-22T16:30:27+00:00" - }, - { - "id": 1698812, - "title": "🎨 Design Consultation", - "description": "Hello! 👋\n\nThank you for reaching out about your site's design. I'd be happy to help you achieve the look you're going for.\n\nWould you like to schedule a design consultation call? We can discuss:\n- Color schemes\n- Layout options\n- Typography\n\nLet me know what works best for you! ✨\n\nBest regards,\n\nDesign Support Team", - "status": "closed", - "created_at": "2024-02-15T09:30:22+00:00", - "updated_at": "2024-02-17T14:45:33+00:00" - }, - { - "id": 1629241, - "title": "📊 Analytics Integration", - "description": "Hi there!\n\nI see you're having trouble with your analytics integration. Let's get that sorted out.\n\nFirst, please verify that you've added the tracking code correctly to your site's header.\n\nNeed help finding where to add it? 🧐\n\nBest regards,\n\nAnalytics Support Team", - "status": "closed", - "created_at": "2024-02-10T11:20:18+00:00", - "updated_at": "2024-02-12T15:33:29+00:00" - }, - { - "id": 1500710, - "title": "🌐 Multilingual Setup", - "description": "Bonjour!\n\nJe vois que vous souhaitez configurer votre site en plusieurs langues. Voici les étapes à suivre:\n\n1. Installer le plugin de traduction\n2. Configurer les langues\n3. Traduire le contenu\n\nBesoin d'aide avec l'une de ces étapes? 🤝\n\nCordialement,\n\nL'équipe de support multilingue", - "status": "closed", - "created_at": "2024-02-05T13:40:55+00:00", - "updated_at": "2024-02-07T10:15:22+00:00" - }, - { - "id": 1499869, - "title": "🔧 Technical Support", - "description": "Hello! 👋\n\nI understand you're experiencing some technical issues. Let's troubleshoot this step by step.\n\nCould you please:\n1. Clear your browser cache\n2. Try a different browser\n3. Check your internet connection\n\nLet me know if you need help with any of these steps! 🛠️\n\nBest regards,\n\nTechnical Support Team", - "status": "closed", - "created_at": "2024-02-01T10:20:33+00:00", - "updated_at": "2024-02-03T09:45:11+00:00" - }, - { - "id": 1500203, - "title": "📝 Content Migration", - "description": "Hi there!\n\nI see you're planning to migrate your content. Let me help you with that process.\n\nWe can use our automated migration tool, or I can guide you through a manual migration.\n\nWhich option would you prefer? 🤔\n\nBest regards,\n\nMigration Support Team", - "status": "closed", - "created_at": "2024-01-28T09:15:44+00:00", - "updated_at": "2024-01-30T16:30:27+00:00" - } - ] + { + "id": 9033503, + "title": "🎨 Theme Customization Help", + "description": "Hello! 👋\n\nI see you're having trouble with your theme customization. Let me help you with that!\n\nThe color picker issue you're experiencing is a known bug that we've fixed in the latest update. Please try updating your theme to version 2.3.1.\n\nIf you need any further assistance, I'm here to help!\n\nBest regards,\n\nTheme Support Team 🌟", + "status": "closed", + "created_at": "2024-03-15T14:30:22+00:00", + "updated_at": "2024-03-18T09:45:33+00:00" + }, + { + "id": 1698812, + "title": "🔒 Security Update Required", + "description": "مرحباً!\n\nلقد لاحظنا أن موقعك يحتاج إلى تحديث أمني. يرجى تحديث إصدار WordPress الخاص بك إلى أحدث إصدار متاح.\n\nيمكنك القيام بذلك من لوحة التحكم الخاصة بك.\n\nمع تحياتنا،\n\nفريق الدعم الأمني", + "status": "closed", + "created_at": "2024-03-10T09:15:45+00:00", + "updated_at": "2024-03-11T16:20:12+00:00" + }, + { + "id": 1629241, + "title": "🚀 Performance Optimization", + "description": "Bonjour!\n\nJe vois que vous souhaitez optimiser les performances de votre site. Voici quelques suggestions:\n\n1. Activez la mise en cache\n2. Optimisez vos images\n3. Utilisez un CDN\n\nVoulez-vous que je vous guide à travers ces étapes?\n\nCordialement,\n\nL'équipe de support", + "status": "closed", + "created_at": "2024-03-05T11:22:18+00:00", + "updated_at": "2024-03-07T14:33:29+00:00" + }, + { + "id": 1500710, + "title": "📱 Mobile App Feedback", + "description": "Hi there! 👋\n\nThank you for your feedback about our mobile app. We're constantly working to improve the user experience.\n\nYour suggestion about the navigation menu has been forwarded to our development team.\n\nKeep the feedback coming! 💪\n\nBest regards,\n\nMobile Support Team", + "status": "closed", + "created_at": "2024-02-28T15:40:55+00:00", + "updated_at": "2024-03-01T10:15:22+00:00" + }, + { + "id": 1499869, + "title": "🎯 SEO Optimization Help", + "description": "Hello!\n\nI'd be happy to help you with your SEO optimization. Here are some key areas we can focus on:\n\n1. Meta descriptions\n2. Image alt tags\n3. URL structure\n\nWould you like me to provide more specific guidance on any of these topics?\n\nBest regards,\n\nSEO Support Team", + "status": "closed", + "created_at": "2024-02-25T13:20:33+00:00", + "updated_at": "2024-02-27T09:45:11+00:00" + }, + { + "id": 1500203, + "title": "💰 Payment Gateway Setup", + "description": "Hi!\n\nI see you're setting up a new payment gateway. Let's make sure everything is configured correctly.\n\nPlease verify these settings:\n1. API keys\n2. Webhook endpoints\n3. Test mode status\n\nNeed any clarification? 🤔\n\nBest regards,\n\nPayment Support Team", + "status": "closed", + "created_at": "2024-02-20T10:15:44+00:00", + "updated_at": "2024-02-22T16:30:27+00:00" + }, + { + "id": 1698812, + "title": "🎨 Design Consultation", + "description": "Hello! 👋\n\nThank you for reaching out about your site's design. I'd be happy to help you achieve the look you're going for.\n\nWould you like to schedule a design consultation call? We can discuss:\n- Color schemes\n- Layout options\n- Typography\n\nLet me know what works best for you! ✨\n\nBest regards,\n\nDesign Support Team", + "status": "closed", + "created_at": "2024-02-15T09:30:22+00:00", + "updated_at": "2024-02-17T14:45:33+00:00" + }, + { + "id": 1629241, + "title": "📊 Analytics Integration", + "description": "Hi there!\n\nI see you're having trouble with your analytics integration. Let's get that sorted out.\n\nFirst, please verify that you've added the tracking code correctly to your site's header.\n\nNeed help finding where to add it? 🧐\n\nBest regards,\n\nAnalytics Support Team", + "status": "closed", + "created_at": "2024-02-10T11:20:18+00:00", + "updated_at": "2024-02-12T15:33:29+00:00" + }, + { + "id": 1500710, + "title": "🌐 Multilingual Setup", + "description": "Bonjour!\n\nJe vois que vous souhaitez configurer votre site en plusieurs langues. Voici les étapes à suivre:\n\n1. Installer le plugin de traduction\n2. Configurer les langues\n3. Traduire le contenu\n\nBesoin d'aide avec l'une de ces étapes? 🤝\n\nCordialement,\n\nL'équipe de support multilingue", + "status": "closed", + "created_at": "2024-02-05T13:40:55+00:00", + "updated_at": "2024-02-07T10:15:22+00:00" + }, + { + "id": 1499869, + "title": "🔧 Technical Support", + "description": "Hello! 👋\n\nI understand you're experiencing some technical issues. Let's troubleshoot this step by step.\n\nCould you please:\n1. Clear your browser cache\n2. Try a different browser\n3. Check your internet connection\n\nLet me know if you need help with any of these steps! 🛠️\n\nBest regards,\n\nTechnical Support Team", + "status": "closed", + "created_at": "2024-02-01T10:20:33+00:00", + "updated_at": "2024-02-03T09:45:11+00:00" + }, + { + "id": 1500203, + "title": "📝 Content Migration", + "description": "Hi there!\n\nI see you're planning to migrate your content. Let me help you with that process.\n\nWe can use our automated migration tool, or I can guide you through a manual migration.\n\nWhich option would you prefer? 🤔\n\nBest regards,\n\nMigration Support Team", + "status": "closed", + "created_at": "2024-01-28T09:15:44+00:00", + "updated_at": "2024-01-30T16:30:27+00:00" + } +] diff --git a/wp_api/tests/wpcom/support_tickets/single-conversation-with-attachments.json b/wp_api/tests/wpcom/support_tickets/single-conversation-with-attachments.json index ff3f08d85..898c9405f 100644 --- a/wp_api/tests/wpcom/support_tickets/single-conversation-with-attachments.json +++ b/wp_api/tests/wpcom/support_tickets/single-conversation-with-attachments.json @@ -1,46 +1,46 @@ { - "id": 10000001, - "title": "Test Ticket", - "description": "Redacted for privacy", - "status": "new", - "messages": [ + "id": 10000001, + "title": "Test Ticket", + "description": "Redacted for privacy", + "status": "new", + "messages": [ + { + "id": 20000001, + "content": "Redacted for privacy", + "role": "user", + "author": { + "id": 30000001, + "name": "Test User", + "email": "test.user@example.com" + }, + "author_is_current_user": true, + "created_at": "2025-10-27T21:30:43+00:00", + "attachments": [ { - "id": 20000001, - "content": "Redacted for privacy", - "role": "user", - "author": { - "id": 30000001, - "name": "Test User", - "email": "test.user@example.com" - }, - "author_is_current_user": true, - "created_at": "2025-10-27T21:30:43+00:00", - "attachments": [ - { - "id": 40000001, - "filename": "sample-image-1.jpg", - "content_type": "image/jpeg", - "size": 123456, - "url": "https://example.com/attachments/token/token1/?name=sample-image-1.jpg", - "metadata": { - "width": 1000, - "height": 800 - } - }, - { - "id": 40000002, - "filename": "sample-image-2.jpg", - "content_type": "image/jpeg", - "size": 654321, - "url": "https://example.com/attachments/token/token2/?name=sample-image-2.jpg", - "metadata": { - "width": 2000, - "height": 1600 - } - } - ] + "id": 40000001, + "filename": "sample-image-1.jpg", + "content_type": "image/jpeg", + "size": 123456, + "url": "https://example.com/attachments/token/token1/?name=sample-image-1.jpg", + "metadata": { + "width": 1000, + "height": 800 + } + }, + { + "id": 40000002, + "filename": "sample-image-2.jpg", + "content_type": "image/jpeg", + "size": 654321, + "url": "https://example.com/attachments/token/token2/?name=sample-image-2.jpg", + "metadata": { + "width": 2000, + "height": 1600 + } } - ], - "created_at": "2025-10-27T21:30:43+00:00", - "updated_at": "2025-10-27T21:30:43+00:00" + ] + } + ], + "created_at": "2025-10-27T21:30:43+00:00", + "updated_at": "2025-10-27T21:30:43+00:00" } diff --git a/wp_api/tests/wpcom/support_tickets/single-conversation.json b/wp_api/tests/wpcom/support_tickets/single-conversation.json index 40ada997a..e9f68bf32 100644 --- a/wp_api/tests/wpcom/support_tickets/single-conversation.json +++ b/wp_api/tests/wpcom/support_tickets/single-conversation.json @@ -68,9 +68,9 @@ { "id": 37725924561684, "filename": "test_screenshot_1.jpeg", - "content_type": "image\/jpeg", + "content_type": "image/jpeg", "size": 246171, - "url": "https:\/\/a8c.zendesk.com\/attachments\/token\/nZ1I5S7NkM8J8lpf9wAA9V6BL\/?name=test_screenshot_1.jpeg", + "url": "https://a8c.zendesk.com/attachments/token/nZ1I5S7NkM8J8lpf9wAA9V6BL/?name=test_screenshot_1.jpeg", "metadata": { "width": 1179, "height": 2556 @@ -93,9 +93,9 @@ { "id": 37726025831316, "filename": "test_screenshot_2.jpeg", - "content_type": "image\/jpeg", + "content_type": "image/jpeg", "size": 246171, - "url": "https:\/\/a8c.zendesk.com\/attachments\/token\/nGyuwTgotHH3HAnm6WOCmfXuP\/?name=test_screenshot_2.jpeg", + "url": "https://a8c.zendesk.com/attachments/token/nGyuwTgotHH3HAnm6WOCmfXuP/?name=test_screenshot_2.jpeg", "metadata": { "width": 1179, "height": 2556 @@ -118,9 +118,9 @@ { "id": 37726236284948, "filename": "test_recording_1.mp4", - "content_type": "video\/mp4", + "content_type": "video/mp4", "size": 25897659, - "url": "https:\/\/a8c.zendesk.com\/attachments\/token\/pxM2QJE7errXpreLxEgFA4w5L\/?name=test_recording_1.mp4", + "url": "https://a8c.zendesk.com/attachments/token/pxM2QJE7errXpreLxEgFA4w5L/?name=test_recording_1.mp4", "metadata": {} } ]