diff --git a/BaseThunderstoreService.html b/BaseThunderstoreService.html index 985beb6264..71a2e8280d 100644 --- a/BaseThunderstoreService.html +++ b/BaseThunderstoreService.html @@ -398,7 +398,7 @@
diff --git a/badge-maker_lib_index.js.html b/badge-maker_lib_index.js.html index 1dc011b28a..e9a468d347 100644 --- a/badge-maker_lib_index.js.html +++ b/badge-maker_lib_index.js.html @@ -123,7 +123,7 @@ module.exports = {
diff --git a/badge-maker_lib_xml.js.html b/badge-maker_lib_xml.js.html index 648e930471..15ceeb4f96 100644 --- a/badge-maker_lib_xml.js.html +++ b/badge-maker_lib_xml.js.html @@ -138,7 +138,7 @@ module.exports = { escapeXml, stripXmlWhitespace, XmlElement, ElementList }
diff --git a/core_base-service_base-graphql.js.html b/core_base-service_base-graphql.js.html index 84dac779ed..f96c28b5e2 100644 --- a/core_base-service_base-graphql.js.html +++ b/core_base-service_base-graphql.js.html @@ -148,7 +148,7 @@ export default BaseGraphqlService
diff --git a/core_base-service_base-json.js.html b/core_base-service_base-json.js.html index 702001a605..5a9e58f85a 100644 --- a/core_base-service_base-json.js.html +++ b/core_base-service_base-json.js.html @@ -114,7 +114,7 @@ export default BaseJsonService
diff --git a/core_base-service_base-svg-scraping.js.html b/core_base-service_base-svg-scraping.js.html index 1cf64b7996..25765f1cb2 100644 --- a/core_base-service_base-svg-scraping.js.html +++ b/core_base-service_base-svg-scraping.js.html @@ -145,7 +145,7 @@ export default BaseSvgScrapingService
diff --git a/core_base-service_base-toml.js.html b/core_base-service_base-toml.js.html index 0b8af23630..1064a97d86 100644 --- a/core_base-service_base-toml.js.html +++ b/core_base-service_base-toml.js.html @@ -128,7 +128,7 @@ export default BaseTomlService
diff --git a/core_base-service_base-xml.js.html b/core_base-service_base-xml.js.html index 2c0be3020c..dba148b282 100644 --- a/core_base-service_base-xml.js.html +++ b/core_base-service_base-xml.js.html @@ -124,7 +124,7 @@ export default BaseXmlService
diff --git a/core_base-service_base-yaml.js.html b/core_base-service_base-yaml.js.html index a5a5d86b8e..d8c217f3b9 100644 --- a/core_base-service_base-yaml.js.html +++ b/core_base-service_base-yaml.js.html @@ -127,7 +127,7 @@ export default BaseYamlService
diff --git a/core_base-service_base.js.html b/core_base-service_base.js.html index 64bedca5e7..68337403e1 100644 --- a/core_base-service_base.js.html +++ b/core_base-service_base.js.html @@ -685,7 +685,7 @@ export default BaseService
diff --git a/core_base-service_errors.js.html b/core_base-service_errors.js.html index 56b022a5d0..625eb6cb9c 100644 --- a/core_base-service_errors.js.html +++ b/core_base-service_errors.js.html @@ -265,7 +265,7 @@ export {
diff --git a/core_base-service_graphql.js.html b/core_base-service_graphql.js.html index 34f9d9bf84..52038bc655 100644 --- a/core_base-service_graphql.js.html +++ b/core_base-service_graphql.js.html @@ -93,7 +93,7 @@ export { mergeQueries }
diff --git a/core_base-service_openapi.js.html b/core_base-service_openapi.js.html index 879a3f1fe3..815e522e35 100644 --- a/core_base-service_openapi.js.html +++ b/core_base-service_openapi.js.html @@ -226,7 +226,13 @@ function addGlobalProperties(endpoints) { return paths } -function services2openapi(services) { +function sortPaths(obj) { + const entries = Object.entries(obj) + entries.sort((a, b) => a[1].get.summary.localeCompare(b[1].get.summary)) + return Object.fromEntries(entries) +} + +function services2openapi(services, sort) { const paths = {} for (const service of services) { if (service.openApi) { @@ -249,10 +255,10 @@ function services2openapi(services) { } } } - return paths + return sort ? sortPaths(paths) : paths } -function category2openapi(category, services) { +function category2openapi({ category, services, sort = false }) { const spec = { openapi: '3.0.0', info: { @@ -362,7 +368,7 @@ function category2openapi(category, services) { }, }, }, - paths: services2openapi(services), + paths: services2openapi(services, sort), } return spec @@ -520,7 +526,7 @@ export {
diff --git a/core_base-service_resource-cache.js.html b/core_base-service_resource-cache.js.html index 3c1c53c9bb..67a3588796 100644 --- a/core_base-service_resource-cache.js.html +++ b/core_base-service_resource-cache.js.html @@ -111,7 +111,7 @@ export { getCachedResource, clearResourceCache }
diff --git a/core_server_prometheus-metrics.js.html b/core_server_prometheus-metrics.js.html index 17cace3e19..f98fbdb70c 100644 --- a/core_server_prometheus-metrics.js.html +++ b/core_server_prometheus-metrics.js.html @@ -127,7 +127,7 @@ export default class PrometheusMetrics {
diff --git a/core_server_server.js.html b/core_server_server.js.html index a94831b367..02e75903a2 100644 --- a/core_server_server.js.html +++ b/core_server_server.js.html @@ -649,7 +649,7 @@ export default Server
diff --git a/core_service-test-runner_create-service-tester.js.html b/core_service-test-runner_create-service-tester.js.html index e34861d0ea..3e4c478ca8 100644 --- a/core_service-test-runner_create-service-tester.js.html +++ b/core_service-test-runner_create-service-tester.js.html @@ -74,7 +74,7 @@ export default createServiceTester
diff --git a/core_service-test-runner_icedfrisby-shields.js.html b/core_service-test-runner_icedfrisby-shields.js.html index 1635751269..a32e2a4ecd 100644 --- a/core_service-test-runner_icedfrisby-shields.js.html +++ b/core_service-test-runner_icedfrisby-shields.js.html @@ -146,7 +146,7 @@ export default factory
diff --git a/core_service-test-runner_runner.js.html b/core_service-test-runner_runner.js.html index 0fa391080a..b86d254beb 100644 --- a/core_service-test-runner_runner.js.html +++ b/core_service-test-runner_runner.js.html @@ -118,7 +118,7 @@ export default Runner
diff --git a/core_service-test-runner_service-tester.js.html b/core_service-test-runner_service-tester.js.html index 99f8535490..b6d8ee6ef0 100644 --- a/core_service-test-runner_service-tester.js.html +++ b/core_service-test-runner_service-tester.js.html @@ -184,7 +184,7 @@ export default ServiceTester
diff --git a/core_service-test-runner_services-for-title.js.html b/core_service-test-runner_services-for-title.js.html index 3dabef40c6..3b362b6ad5 100644 --- a/core_service-test-runner_services-for-title.js.html +++ b/core_service-test-runner_services-for-title.js.html @@ -75,7 +75,7 @@ export default servicesForTitle
diff --git a/core_token-pooling_token-pool.js.html b/core_token-pooling_token-pool.js.html index afafeeab4c..d7987b90d3 100644 --- a/core_token-pooling_token-pool.js.html +++ b/core_token-pooling_token-pool.js.html @@ -379,7 +379,7 @@ export { sanitizeToken, Token, TokenPool }
diff --git a/global.html b/global.html index 3f36aa1119..9de7f6c835 100644 --- a/global.html +++ b/global.html @@ -684,7 +684,7 @@
diff --git a/index.html b/index.html index 046897ca05..0203f9d513 100644 --- a/index.html +++ b/index.html @@ -127,7 +127,7 @@ Tests need to pass in Node 20 and 21. itself (using nodemon). When the frontend files change, the frontend dev server (docusaurus start) should also automatically reload. However the badge definitions are built only before the server first starts. To regenerate those, -either run npm run defs or manually restart the server.

+either run npm run prestart or manually restart the server.

To debug a badge from the command line, run npm run badge -- /npm/v/nock. It also works with full URLs like npm run badge -- https://img.shields.io/npm/v/nock.

@@ -218,7 +218,7 @@ under their terms and license.


diff --git a/module-badge-maker.html b/module-badge-maker.html index aac4eb3890..b35b0d499c 100644 --- a/module-badge-maker.html +++ b/module-badge-maker.html @@ -429,7 +429,7 @@
diff --git a/module-badge-maker_lib_xml-ElementList.html b/module-badge-maker_lib_xml-ElementList.html index 895ccb8d7d..896a79520b 100644 --- a/module-badge-maker_lib_xml-ElementList.html +++ b/module-badge-maker_lib_xml-ElementList.html @@ -163,7 +163,7 @@ like an XmlElement but renders multiple XML tags (not wrapped in a ).

diff --git a/module-badge-maker_lib_xml-XmlElement.html b/module-badge-maker_lib_xml-XmlElement.html index 476f79702b..1d841f45a5 100644 --- a/module-badge-maker_lib_xml-XmlElement.html +++ b/module-badge-maker_lib_xml-XmlElement.html @@ -474,7 +474,7 @@ element will be rendered as a self-closing element.


diff --git a/module-badge-maker_lib_xml.html b/module-badge-maker_lib_xml.html index 5bb9ede1eb..90b9f94061 100644 --- a/module-badge-maker_lib_xml.html +++ b/module-badge-maker_lib_xml.html @@ -128,7 +128,7 @@
diff --git a/module-core_base-service_base-BaseService.html b/module-core_base-service_base-BaseService.html index 060cd24913..7fe761b972 100644 --- a/module-core_base-service_base-BaseService.html +++ b/module-core_base-service_base-BaseService.html @@ -975,7 +975,7 @@ for a given route parameter


diff --git a/module-core_base-service_base-graphql-BaseGraphqlService.html b/module-core_base-service_base-graphql-BaseGraphqlService.html index 5accebe26d..d6264c1689 100644 --- a/module-core_base-service_base-graphql-BaseGraphqlService.html +++ b/module-core_base-service_base-graphql-BaseGraphqlService.html @@ -913,7 +913,7 @@ an InvalidResponse.


diff --git a/module-core_base-service_base-graphql.html b/module-core_base-service_base-graphql.html index 1693a7efc3..3718a29d54 100644 --- a/module-core_base-service_base-graphql.html +++ b/module-core_base-service_base-graphql.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-json-BaseJsonService.html b/module-core_base-service_base-json-BaseJsonService.html index 41f5196b37..cd8ef5f572 100644 --- a/module-core_base-service_base-json-BaseJsonService.html +++ b/module-core_base-service_base-json-BaseJsonService.html @@ -758,7 +758,7 @@ that will be logged (to sentry, if configured).


diff --git a/module-core_base-service_base-json.html b/module-core_base-service_base-json.html index 58b8df8e52..57a9844dbc 100644 --- a/module-core_base-service_base-json.html +++ b/module-core_base-service_base-json.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html index def60a6f94..e4460e5099 100644 --- a/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html +++ b/module-core_base-service_base-svg-scraping-BaseSvgScrapingService.html @@ -849,7 +849,7 @@ that will be logged (to sentry, if configured).


diff --git a/module-core_base-service_base-svg-scraping.html b/module-core_base-service_base-svg-scraping.html index 1510efae96..28bcf4842d 100644 --- a/module-core_base-service_base-svg-scraping.html +++ b/module-core_base-service_base-svg-scraping.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-toml-BaseTomlService.html b/module-core_base-service_base-toml-BaseTomlService.html index 4d97116e3f..85334f3a46 100644 --- a/module-core_base-service_base-toml-BaseTomlService.html +++ b/module-core_base-service_base-toml-BaseTomlService.html @@ -599,7 +599,7 @@ that will be logged (to sentry, if configured).


diff --git a/module-core_base-service_base-toml.html b/module-core_base-service_base-toml.html index 107ebeb93c..c2fd9d10de 100644 --- a/module-core_base-service_base-toml.html +++ b/module-core_base-service_base-toml.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-xml-BaseXmlService.html b/module-core_base-service_base-xml-BaseXmlService.html index bd5572c83f..91f821fcfa 100644 --- a/module-core_base-service_base-xml-BaseXmlService.html +++ b/module-core_base-service_base-xml-BaseXmlService.html @@ -641,7 +641,7 @@ that will be logged (to sentry, if configured).


diff --git a/module-core_base-service_base-xml.html b/module-core_base-service_base-xml.html index 1c9b83e20d..d2d1c41ac8 100644 --- a/module-core_base-service_base-xml.html +++ b/module-core_base-service_base-xml.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base-yaml-BaseYamlService.html b/module-core_base-service_base-yaml-BaseYamlService.html index 666521486c..d08d29456b 100644 --- a/module-core_base-service_base-yaml-BaseYamlService.html +++ b/module-core_base-service_base-yaml-BaseYamlService.html @@ -638,7 +638,7 @@ that will be logged (to sentry, if configured).


diff --git a/module-core_base-service_base-yaml.html b/module-core_base-service_base-yaml.html index b37003e429..ad1b4815d0 100644 --- a/module-core_base-service_base-yaml.html +++ b/module-core_base-service_base-yaml.html @@ -125,7 +125,7 @@
diff --git a/module-core_base-service_base.html b/module-core_base-service_base.html index 7627843a7e..9b8906d91e 100644 --- a/module-core_base-service_base.html +++ b/module-core_base-service_base.html @@ -1208,7 +1208,7 @@ when the parameter is absent. (Note that in,
diff --git a/module-core_base-service_errors-Deprecated.html b/module-core_base-service_errors-Deprecated.html index 6afd193e56..c582427ee1 100644 --- a/module-core_base-service_errors-Deprecated.html +++ b/module-core_base-service_errors-Deprecated.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ImproperlyConfigured.html b/module-core_base-service_errors-ImproperlyConfigured.html index 27df315015..11fa5bf254 100644 --- a/module-core_base-service_errors-ImproperlyConfigured.html +++ b/module-core_base-service_errors-ImproperlyConfigured.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-Inaccessible.html b/module-core_base-service_errors-Inaccessible.html index 75a3232868..64e8b2010d 100644 --- a/module-core_base-service_errors-Inaccessible.html +++ b/module-core_base-service_errors-Inaccessible.html @@ -212,7 +212,7 @@ or to wrap a 5XX response


diff --git a/module-core_base-service_errors-InvalidParameter.html b/module-core_base-service_errors-InvalidParameter.html index 980064c267..c381672bcd 100644 --- a/module-core_base-service_errors-InvalidParameter.html +++ b/module-core_base-service_errors-InvalidParameter.html @@ -212,7 +212,7 @@ is invalid or unexpected


diff --git a/module-core_base-service_errors-InvalidResponse.html b/module-core_base-service_errors-InvalidResponse.html index e705fe30ee..3eea1599a4 100644 --- a/module-core_base-service_errors-InvalidResponse.html +++ b/module-core_base-service_errors-InvalidResponse.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-NotFound.html b/module-core_base-service_errors-NotFound.html index fce2206190..4b83e01ee9 100644 --- a/module-core_base-service_errors-NotFound.html +++ b/module-core_base-service_errors-NotFound.html @@ -211,7 +211,7 @@
diff --git a/module-core_base-service_errors-ShieldsRuntimeError.html b/module-core_base-service_errors-ShieldsRuntimeError.html index b5ae746364..5eca677b19 100644 --- a/module-core_base-service_errors-ShieldsRuntimeError.html +++ b/module-core_base-service_errors-ShieldsRuntimeError.html @@ -384,7 +384,7 @@ should override this method.


diff --git a/module-core_base-service_errors.html b/module-core_base-service_errors.html index 05d367c54a..9fcf45a76e 100644 --- a/module-core_base-service_errors.html +++ b/module-core_base-service_errors.html @@ -343,7 +343,7 @@ for. Defaults to the cacheLength of the service class throwing the error
diff --git a/module-core_base-service_graphql.html b/module-core_base-service_graphql.html index 1efdb71b6a..c9b28612bf 100644 --- a/module-core_base-service_graphql.html +++ b/module-core_base-service_graphql.html @@ -296,7 +296,7 @@ but can't use that due to incorrect packaging.


diff --git a/module-core_base-service_openapi.html b/module-core_base-service_openapi.html index 7f2eefa8ef..282ccdf009 100644 --- a/module-core_base-service_openapi.html +++ b/module-core_base-service_openapi.html @@ -209,7 +209,7 @@
Source:
@@ -399,7 +399,7 @@ The code

Source:
@@ -565,7 +565,7 @@ The code

Source:
@@ -755,7 +755,7 @@ The code

Source:
@@ -1074,7 +1074,7 @@ specifying the parameter type.

Source:
@@ -1317,7 +1317,7 @@ to be presented as a drop-down in the frontend. e.g:
Source:
@@ -1597,7 +1597,7 @@ Query params are usually strings. (Optional)

Source:
@@ -1633,7 +1633,7 @@ Query params are usually strings. (Optional)


diff --git a/module-core_base-service_resource-cache.html b/module-core_base-service_resource-cache.html index 9ec7659882..f40c850fa7 100644 --- a/module-core_base-service_resource-cache.html +++ b/module-core_base-service_resource-cache.html @@ -568,7 +568,7 @@
diff --git a/module-core_server_server-Server.html b/module-core_server_server-Server.html index 6358895314..d9788d6dbc 100644 --- a/module-core_server_server-Server.html +++ b/module-core_server_server-Server.html @@ -681,7 +681,7 @@ Start listening for requests on this.baseUrl()


diff --git a/module-core_server_server.html b/module-core_server_server.html index 78611b790d..4e59aa16b6 100644 --- a/module-core_server_server.html +++ b/module-core_server_server.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_create-service-tester.html b/module-core_service-test-runner_create-service-tester.html index f8c4cbbcf8..00bef6a31b 100644 --- a/module-core_service-test-runner_create-service-tester.html +++ b/module-core_service-test-runner_create-service-tester.html @@ -236,7 +236,7 @@ service.


diff --git a/module-core_service-test-runner_icedfrisby-shields.html b/module-core_service-test-runner_icedfrisby-shields.html index b23100c39d..b258e14a93 100644 --- a/module-core_service-test-runner_icedfrisby-shields.html +++ b/module-core_service-test-runner_icedfrisby-shields.html @@ -292,7 +292,7 @@
diff --git a/module-core_service-test-runner_runner-Runner.html b/module-core_service-test-runner_runner-Runner.html index da094f658f..b3f848f84d 100644 --- a/module-core_service-test-runner_runner-Runner.html +++ b/module-core_service-test-runner_runner-Runner.html @@ -568,7 +568,7 @@ overridden on instances.


diff --git a/module-core_service-test-runner_runner.html b/module-core_service-test-runner_runner.html index 1c5966760f..4f65c9130c 100644 --- a/module-core_service-test-runner_runner.html +++ b/module-core_service-test-runner_runner.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_service-tester-ServiceTester.html b/module-core_service-test-runner_service-tester-ServiceTester.html index c509f900e1..32bfa6bed3 100644 --- a/module-core_service-test-runner_service-tester-ServiceTester.html +++ b/module-core_service-test-runner_service-tester-ServiceTester.html @@ -1126,7 +1126,7 @@ the CLI, or directly on the tester.


diff --git a/module-core_service-test-runner_service-tester.html b/module-core_service-test-runner_service-tester.html index b9ab8fcbe7..aeb0e013b4 100644 --- a/module-core_service-test-runner_service-tester.html +++ b/module-core_service-test-runner_service-tester.html @@ -125,7 +125,7 @@
diff --git a/module-core_service-test-runner_services-for-title.html b/module-core_service-test-runner_services-for-title.html index 339b3d4156..2f7c34ba53 100644 --- a/module-core_service-test-runner_services-for-title.html +++ b/module-core_service-test-runner_services-for-title.html @@ -284,7 +284,7 @@ as an array of strings.


diff --git a/module-core_token-pooling_token-pool-Token.html b/module-core_token-pooling_token-pool-Token.html index 3a57d570b3..af7d36a205 100644 --- a/module-core_token-pooling_token-pool-Token.html +++ b/module-core_token-pooling_token-pool-Token.html @@ -715,7 +715,7 @@ stable ordering for a valid priority queue.


diff --git a/module-core_token-pooling_token-pool-TokenPool.html b/module-core_token-pooling_token-pool-TokenPool.html index 5b7f1ad287..efb4d83e34 100644 --- a/module-core_token-pooling_token-pool-TokenPool.html +++ b/module-core_token-pooling_token-pool-TokenPool.html @@ -899,7 +899,7 @@ indicate it should not be reused.


diff --git a/module-core_token-pooling_token-pool.html b/module-core_token-pooling_token-pool.html index 4f8b071688..131b802bb8 100644 --- a/module-core_token-pooling_token-pool.html +++ b/module-core_token-pooling_token-pool.html @@ -291,7 +291,7 @@
diff --git a/module-services_build-status.html b/module-services_build-status.html index bc38ab79c4..f1a406edb0 100644 --- a/module-services_build-status.html +++ b/module-services_build-status.html @@ -453,7 +453,7 @@ Determines the message and color of the badge according to the build status.


diff --git a/module-services_color-formatters.html b/module-services_color-formatters.html index fa2356cb5b..93c23b2b28 100644 --- a/module-services_color-formatters.html +++ b/module-services_color-formatters.html @@ -1532,7 +1532,7 @@ The color defaults to red if the score does not matches with any of the grade va
diff --git a/module-services_contributor-count.html b/module-services_contributor-count.html index 0ae29c0add..7eacb6baf3 100644 --- a/module-services_contributor-count.html +++ b/module-services_contributor-count.html @@ -536,7 +536,7 @@ Determines the message and color of the badge according to the contributor count
diff --git a/module-services_downloads.html b/module-services_downloads.html index 4167b3b446..bc5b59a036 100644 --- a/module-services_downloads.html +++ b/module-services_downloads.html @@ -546,7 +546,7 @@ this value as the prefix for versioned badges, e.g. foobar@v1.23. D
diff --git a/module-services_dynamic-common.html b/module-services_dynamic-common.html index be8912c3d3..d6865ae4b4 100644 --- a/module-services_dynamic-common.html +++ b/module-services_dynamic-common.html @@ -960,7 +960,7 @@ Sets the color of the badge to blue.


diff --git a/module-services_dynamic_json-path.html b/module-services_dynamic_json-path.html index fcadb6ce8e..b77d0c3320 100644 --- a/module-services_dynamic_json-path.html +++ b/module-services_dynamic_json-path.html @@ -423,7 +423,7 @@ This can be used to extend or override the
diff --git a/module-services_endpoint-common.html b/module-services_endpoint-common.html index 859b377806..7015b99bd2 100644 --- a/module-services_endpoint-common.html +++ b/module-services_endpoint-common.html @@ -810,7 +810,7 @@ Optionally it prints those keys in the message to provide detailed feedback.


diff --git a/module-services_licenses.html b/module-services_licenses.html index fc22e3b4f3..89ea387043 100644 --- a/module-services_licenses.html +++ b/module-services_licenses.html @@ -650,7 +650,7 @@ Sets the badge color to the provided value, if not provided then the color is us
diff --git a/module-services_package-json-helpers.html b/module-services_package-json-helpers.html index 64c6145ea3..6eb1f590ff 100644 --- a/module-services_package-json-helpers.html +++ b/module-services_package-json-helpers.html @@ -656,7 +656,7 @@ Checks if the object has all the dependency types and the dependency types are v
diff --git a/module-services_php-version.html b/module-services_php-version.html index 9409cca32b..fdaa3104c7 100644 --- a/module-services_php-version.html +++ b/module-services_php-version.html @@ -1472,7 +1472,7 @@ Return { numbers: [1,0,something big], modifier: 2, modifierCount: 1 }


diff --git a/module-services_pipenv-helpers.html b/module-services_pipenv-helpers.html index 73b4022ac3..bf274b1e30 100644 --- a/module-services_pipenv-helpers.html +++ b/module-services_pipenv-helpers.html @@ -616,7 +616,7 @@ Checks if the lock file object has required properties and the properties are va
diff --git a/module-services_route-builder.html b/module-services_route-builder.html index 10dd2fe236..d1b7ec6595 100644 --- a/module-services_route-builder.html +++ b/module-services_route-builder.html @@ -621,7 +621,7 @@
diff --git a/module-services_steam_steam-base-BaseSteamAPI.html b/module-services_steam_steam-base-BaseSteamAPI.html index eb4573fb47..a1aa1be1f6 100644 --- a/module-services_steam_steam-base-BaseSteamAPI.html +++ b/module-services_steam_steam-base-BaseSteamAPI.html @@ -380,7 +380,7 @@
diff --git a/module-services_steam_steam-base.html b/module-services_steam_steam-base.html index 35303550df..a6cce08766 100644 --- a/module-services_steam_steam-base.html +++ b/module-services_steam_steam-base.html @@ -125,7 +125,7 @@
diff --git a/module-services_text-formatters.html b/module-services_text-formatters.html index c02c387bc6..9c0cb79ee0 100644 --- a/module-services_text-formatters.html +++ b/module-services_text-formatters.html @@ -1680,7 +1680,7 @@ The remaining stars are empty stars until the maximum number of stars is reached
diff --git a/module-services_validators.html b/module-services_validators.html index f590550290..3d8286ee5e 100644 --- a/module-services_validators.html +++ b/module-services_validators.html @@ -707,7 +707,7 @@ Some invalid values for this validator are: abc, 1.a, 1.0-, .1


diff --git a/module-services_version.html b/module-services_version.html index 528069e7ac..15e6c2a08a 100644 --- a/module-services_version.html +++ b/module-services_version.html @@ -1882,7 +1882,7 @@ slice('2.4', 'patch') // returns null because the version string is not valid ac
diff --git a/module-services_website-status.html b/module-services_website-status.html index bde374ff63..2f9b7a987e 100644 --- a/module-services_website-status.html +++ b/module-services_website-status.html @@ -661,7 +661,7 @@ renderWebsiteStatus({ isUp: false }) // returns { message: 'down', color: 'red'
diff --git a/services_build-status.js.html b/services_build-status.js.html index 76b1dc9761..16b626a644 100644 --- a/services_build-status.js.html +++ b/services_build-status.js.html @@ -140,7 +140,7 @@ export { isBuildStatus, renderBuildStatusBadge }
diff --git a/services_color-formatters.js.html b/services_color-formatters.js.html index b2027e1b3c..88220b9065 100644 --- a/services_color-formatters.js.html +++ b/services_color-formatters.js.html @@ -240,7 +240,7 @@ export {
diff --git a/services_contributor-count.js.html b/services_contributor-count.js.html index 1c9fa0fcdb..c6c38b51bb 100644 --- a/services_contributor-count.js.html +++ b/services_contributor-count.js.html @@ -85,7 +85,7 @@ export { contributorColor, renderContributorBadge }
diff --git a/services_downloads.js.html b/services_downloads.js.html index 8cee8b3436..71fb0d521b 100644 --- a/services_downloads.js.html +++ b/services_downloads.js.html @@ -101,7 +101,7 @@ export { renderDownloadsBadge }
diff --git a/services_dynamic-common.js.html b/services_dynamic-common.js.html index 24d68442ce..ab4da43235 100644 --- a/services_dynamic-common.js.html +++ b/services_dynamic-common.js.html @@ -142,7 +142,7 @@ export {
diff --git a/services_dynamic_json-path.js.html b/services_dynamic_json-path.js.html index 8cfa2f7d12..5c122378c1 100644 --- a/services_dynamic_json-path.js.html +++ b/services_dynamic_json-path.js.html @@ -120,7 +120,7 @@ export default superclass =>
diff --git a/services_endpoint-common.js.html b/services_endpoint-common.js.html index 93a93cde39..721aa90ca7 100644 --- a/services_endpoint-common.js.html +++ b/services_endpoint-common.js.html @@ -149,7 +149,7 @@ export { validateEndpointData, fetchEndpointData }
diff --git a/services_licenses.js.html b/services_licenses.js.html index b6d1055104..815f9961c5 100644 --- a/services_licenses.js.html +++ b/services_licenses.js.html @@ -201,7 +201,7 @@ export { licenseToColor, renderLicenseBadge }
diff --git a/services_package-json-helpers.js.html b/services_package-json-helpers.js.html index 12f30016c0..6741c30ef4 100644 --- a/services_package-json-helpers.js.html +++ b/services_package-json-helpers.js.html @@ -120,7 +120,7 @@ export { isDependencyMap, isPackageJsonWithDependencies, getDependencyVersion }
diff --git a/services_packagist_packagist-base.js.html b/services_packagist_packagist-base.js.html index 505f2e0697..0f0b521096 100644 --- a/services_packagist_packagist-base.js.html +++ b/services_packagist_packagist-base.js.html @@ -229,7 +229,7 @@ export {
diff --git a/services_php-version.js.html b/services_php-version.js.html index b0b84d491d..a8e33331c6 100644 --- a/services_php-version.js.html +++ b/services_php-version.js.html @@ -341,7 +341,7 @@ export {
diff --git a/services_pipenv-helpers.js.html b/services_pipenv-helpers.js.html index a64b7a8d22..65885724cc 100644 --- a/services_pipenv-helpers.js.html +++ b/services_pipenv-helpers.js.html @@ -128,7 +128,7 @@ export { isLockfile, getDependencyVersion }
diff --git a/services_route-builder.js.html b/services_route-builder.js.html index 00cac22c63..a0e6b44ccb 100644 --- a/services_route-builder.js.html +++ b/services_route-builder.js.html @@ -105,7 +105,7 @@ export default class RouteBuilder {
diff --git a/services_steam_steam-base.js.html b/services_steam_steam-base.js.html index 298486bcea..fae9f46e18 100644 --- a/services_steam_steam-base.js.html +++ b/services_steam_steam-base.js.html @@ -98,7 +98,7 @@ export default BaseSteamAPI
diff --git a/services_test-validators.js.html b/services_test-validators.js.html index 74db4e6209..a19331cf94 100644 --- a/services_test-validators.js.html +++ b/services_test-validators.js.html @@ -259,7 +259,7 @@ export {
diff --git a/services_text-formatters.js.html b/services_text-formatters.js.html index 931c42ff2b..1486db836a 100644 --- a/services_text-formatters.js.html +++ b/services_text-formatters.js.html @@ -252,7 +252,7 @@ export {
diff --git a/services_thunderstore_thunderstore-base.js.html b/services_thunderstore_thunderstore-base.js.html index 9750a05202..86dc432ce7 100644 --- a/services_thunderstore_thunderstore-base.js.html +++ b/services_thunderstore_thunderstore-base.js.html @@ -114,7 +114,7 @@ export { BaseThunderstoreService, description }
diff --git a/services_validators.js.html b/services_validators.js.html index 260c78d1c7..5c6e3f5187 100644 --- a/services_validators.js.html +++ b/services_validators.js.html @@ -123,7 +123,7 @@ export const fileSize = Joi.string()
diff --git a/services_version.js.html b/services_version.js.html index a8c8486831..9ef4fbb80c 100644 --- a/services_version.js.html +++ b/services_version.js.html @@ -299,7 +299,7 @@ export { latest, listCompare, slice, rangeStart, renderVersionBadge }
diff --git a/services_website-status.js.html b/services_website-status.js.html index 4718b89f45..d88993012b 100644 --- a/services_website-status.js.html +++ b/services_website-status.js.html @@ -107,7 +107,7 @@ export { queryParamSchema, queryParams, renderWebsiteStatus }
diff --git a/tutorial-TUTORIAL.html b/tutorial-TUTORIAL.html index 679ea8aa33..97c281263c 100644 --- a/tutorial-TUTORIAL.html +++ b/tutorial-TUTORIAL.html @@ -425,7 +425,7 @@ will review your contribution.
diff --git a/tutorial-adding-new-config-values.html b/tutorial-adding-new-config-values.html index fe3d376ef0..cc85de3195 100644 --- a/tutorial-adding-new-config-values.html +++ b/tutorial-adding-new-config-values.html @@ -60,7 +60,7 @@
diff --git a/tutorial-authentication.html b/tutorial-authentication.html index 42ce702844..01a2eaab42 100644 --- a/tutorial-authentication.html +++ b/tutorial-authentication.html @@ -48,7 +48,7 @@
diff --git a/tutorial-badge-urls.html b/tutorial-badge-urls.html index ee34ef1828..7e1d4fc44e 100644 --- a/tutorial-badge-urls.html +++ b/tutorial-badge-urls.html @@ -83,7 +83,7 @@ badge is for issues, and the parameters are :user/:repo.
diff --git a/tutorial-code-walkthrough.html b/tutorial-code-walkthrough.html index 3e3d197762..dcf8d7dfb0 100644 --- a/tutorial-code-walkthrough.html +++ b/tutorial-code-walkthrough.html @@ -235,7 +235,7 @@ result over the HTTPS connection.
diff --git a/tutorial-deprecating-badges.html b/tutorial-deprecating-badges.html index 3534ab40eb..93b78de864 100644 --- a/tutorial-deprecating-badges.html +++ b/tutorial-deprecating-badges.html @@ -149,7 +149,7 @@ t.create('no longer available (previously number of layers)')
diff --git a/tutorial-input-validation.html b/tutorial-input-validation.html index 158ad4f7aa..84a8e58c7f 100644 --- a/tutorial-input-validation.html +++ b/tutorial-input-validation.html @@ -106,7 +106,7 @@
diff --git a/tutorial-json-format.html b/tutorial-json-format.html index 09dcc0749a..3e96812896 100644 --- a/tutorial-json-format.html +++ b/tutorial-json-format.html @@ -60,7 +60,7 @@ if you have any queries regarding the JSON format.


diff --git a/tutorial-logos.html b/tutorial-logos.html index c2af3413e3..5fa6a6a280 100644 --- a/tutorial-logos.html +++ b/tutorial-logos.html @@ -86,7 +86,7 @@
diff --git a/tutorial-performance-testing.html b/tutorial-performance-testing.html index 2f72e57578..3a22f0ca81 100644 --- a/tutorial-performance-testing.html +++ b/tutorial-performance-testing.html @@ -76,7 +76,7 @@ node --prof-process --preprocess -j isolate-00000244AB6ED3B0-11920-v8.log | flam
diff --git a/tutorial-production-hosting.html b/tutorial-production-hosting.html index a503ff04ae..73a179a741 100644 --- a/tutorial-production-hosting.html +++ b/tutorial-production-hosting.html @@ -217,7 +217,7 @@ via local-shields-io-production.yml (see diff --git a/tutorial-releases.html b/tutorial-releases.html index 14b3b90078..4fc3d9bf60 100644 --- a/tutorial-releases.html +++ b/tutorial-releases.html @@ -79,7 +79,7 @@
diff --git a/tutorial-self-hosting.html b/tutorial-self-hosting.html index bdabeaaf69..d27ed9ae7b 100644 --- a/tutorial-self-hosting.html +++ b/tutorial-self-hosting.html @@ -180,7 +180,7 @@ Set public.requireCloudflare: true.


diff --git a/tutorial-server-secrets.html b/tutorial-server-secrets.html index 220584773e..b386bdd43c 100644 --- a/tutorial-server-secrets.html +++ b/tutorial-server-secrets.html @@ -332,7 +332,7 @@ and create an API key for the YouTube Data API v3.


diff --git a/tutorial-service-tests.html b/tutorial-service-tests.html index c165964d2e..df2de7c38a 100644 --- a/tutorial-service-tests.html +++ b/tutorial-service-tests.html @@ -246,7 +246,7 @@ comment there instead.


diff --git a/tutorial-static-badges.html b/tutorial-static-badges.html index 7622cb98a1..3a44f1194b 100644 --- a/tutorial-static-badges.html +++ b/tutorial-static-badges.html @@ -42,7 +42,7 @@