From 5a8b60890e4e7a60391dae0b072ce0d005b3b62d Mon Sep 17 00:00:00 2001 From: Florian Bernd Date: Wed, 26 Jun 2024 09:25:00 +0200 Subject: [PATCH] Remove deprecated code --- compiler/src/model/metamodel.ts | 13 +- compiler/src/model/utils.ts | 33 -- compiler/test/request-availability/test.ts | 5 - output/schema/schema.json | 645 +-------------------- typescript-generator/src/metamodel.ts | 13 +- 5 files changed, 17 insertions(+), 692 deletions(-) diff --git a/compiler/src/model/metamodel.ts b/compiler/src/model/metamodel.ts index 05673cc6de..7cbafc6290 100644 --- a/compiler/src/model/metamodel.ts +++ b/compiler/src/model/metamodel.ts @@ -126,11 +126,9 @@ export class Property { description?: string docUrl?: string docId?: string - since?: string serverDefault?: boolean | string | number | string[] | number[] deprecation?: Deprecation availability?: Availabilities - stability?: Stability /** * If specified takes precedence over `name` when generating code. `name` is always the value * to be sent over the wire @@ -226,7 +224,7 @@ export class Interface extends BaseType { */ generics?: TypeName[] inherits?: Inherits - implements?: Inherits[] + implements?: Inherits[] // Unused! /** * Behaviors directly implemented by this interface @@ -333,7 +331,6 @@ export class EnumMember { codegenName?: string description?: string deprecation?: Deprecation - since?: string availability?: Availabilities } @@ -415,14 +412,6 @@ export class Endpoint { urls: UrlTemplate[] - /** - * The version when this endpoint reached its current stability level. - * Missing data means "forever", i.e. before any of the target client versions produced from this spec. - */ - since?: string - stability?: Stability - visibility?: Visibility - featureFlag?: string requestMediaType?: string[] responseMediaType?: string[] privileges?: { diff --git a/compiler/src/model/utils.ts b/compiler/src/model/utils.ts index 9f6d953957..1220d41790 100644 --- a/compiler/src/model/utils.ts +++ b/compiler/src/model/utils.ts @@ -669,22 +669,6 @@ export function hoistRequestAnnotations ( // Apply the availabilities to the Endpoint. for (const [availabilityName, availabilityValue] of Object.entries(availabilities)) { endpoint.availability[availabilityName] = availabilityValue - - // Backfilling deprecated fields on an endpoint. - if (availabilityName === 'stack') { - if (availabilityValue.since !== undefined) { - endpoint.since = availabilityValue.since - } - if (availabilityValue.stability !== undefined) { - endpoint.stability = availabilityValue.stability - } - if (availabilityValue.visibility !== undefined) { - endpoint.visibility = availabilityValue.visibility - } - if (availabilityValue.featureFlag !== undefined) { - endpoint.featureFlag = availabilityValue.featureFlag - } - } } } else { assert(jsDocs, false, `Unhandled tag: '${tag}' with value: '${value}' on request ${request.name.name}`) @@ -787,16 +771,6 @@ function hoistPropertyAnnotations (property: model.Property, jsDocs: JSDoc[]): v property.availability = {} for (const [availabilityName, availabilityValue] of Object.entries(availabilities)) { property.availability[availabilityName] = availabilityValue - - // Backfilling deprecated fields on a property. - if (availabilityName === 'stack') { - if (availabilityValue.since !== undefined) { - property.since = availabilityValue.since - } - if (availabilityValue.stability !== undefined) { - property.stability = availabilityValue.stability - } - } } } else if (tag === 'doc_id') { assert(jsDocs, value.trim() !== '', `Property ${property.name}'s @doc_id is cannot be empty`) @@ -898,13 +872,6 @@ function hoistEnumMemberAnnotations (member: model.EnumMember, jsDocs: JSDoc[]): member.availability = {} for (const [availabilityName, availabilityValue] of Object.entries(availabilities)) { member.availability[availabilityName] = availabilityValue - - // Backfilling deprecated fields on a property. - if (availabilityName === 'stack') { - if (availabilityValue.since !== undefined) { - member.since = availabilityValue.since - } - } } } else { assert(jsDocs, false, `Unhandled tag: '${tag}' with value: '${value}' on enum member ${member.name}`) diff --git a/compiler/test/request-availability/test.ts b/compiler/test/request-availability/test.ts index 0393effa27..a01a25f4ca 100644 --- a/compiler/test/request-availability/test.ts +++ b/compiler/test/request-availability/test.ts @@ -35,9 +35,4 @@ test('Request @availability can fulfill all the fields', t => { stack: { stability: 'beta', visibility: 'feature_flag', featureFlag: 'abc', since: '1.2.3' }, serverless: { visibility: 'private', stability: 'experimental' } }); - // Assert backfilled values are correct - t.true(endpoint?.visibility === 'feature_flag'); - t.true(endpoint?.stability === 'beta'); - t.true(endpoint?.featureFlag === 'abc'); - t.true(endpoint?.since === '1.2.3'); }) diff --git a/output/schema/schema.json b/output/schema/schema.json index be08f23197..c574ae53ad 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -199,7 +199,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -238,7 +237,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -277,7 +275,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -319,7 +316,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -360,7 +356,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -395,7 +390,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -430,7 +424,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -468,7 +461,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -510,7 +502,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -590,7 +581,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -641,7 +631,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -691,7 +680,6 @@ "text/plain", "application/json" ], - "since": "5.1.0", "stability": "stable", "urls": [ { @@ -742,7 +730,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -793,7 +780,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -844,7 +830,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -883,7 +868,6 @@ "responseMediaType": [ "text/plain" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -931,7 +915,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -982,7 +965,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1027,7 +1009,6 @@ "text/plain", "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -1078,7 +1059,6 @@ "text/plain", "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -1129,7 +1109,6 @@ "text/plain", "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -1180,7 +1159,6 @@ "text/plain", "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -1231,7 +1209,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1276,7 +1253,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1321,7 +1297,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1366,7 +1341,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1414,7 +1388,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1465,7 +1438,6 @@ "text/plain", "application/json" ], - "since": "2.1.0", "stability": "stable", "urls": [ { @@ -1513,7 +1485,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1567,7 +1538,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1618,7 +1588,6 @@ "text/plain", "application/json" ], - "since": "2.1.0", "stability": "stable", "urls": [ { @@ -1669,7 +1638,6 @@ "text/plain", "application/json" ], - "since": "5.0.0", "stability": "experimental", "urls": [ { @@ -1714,7 +1682,6 @@ "text/plain", "application/json" ], - "since": "5.2.0", "stability": "stable", "urls": [ { @@ -1765,7 +1732,6 @@ "text/plain", "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -1816,7 +1782,6 @@ "text/plain", "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -1857,7 +1822,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -1895,7 +1859,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -1930,7 +1893,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -1965,7 +1927,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2003,7 +1964,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -2038,7 +1998,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2079,7 +2038,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -2114,7 +2072,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2152,7 +2109,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2187,7 +2143,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -2225,7 +2180,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2260,7 +2214,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2295,7 +2248,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -2338,7 +2290,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -2390,7 +2341,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -2432,7 +2382,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -2477,7 +2426,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -2512,7 +2460,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.0.0", "stability": "stable", "urls": [ { @@ -2551,7 +2498,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -2595,7 +2541,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -2645,7 +2590,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -2690,7 +2634,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -2735,7 +2678,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.9.0", "stability": "stable", "urls": [ { @@ -2779,7 +2721,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -2814,7 +2755,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.0.0", "stability": "stable", "urls": [ { @@ -2861,7 +2801,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -2904,7 +2843,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -2939,7 +2877,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -2981,7 +2918,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -3026,7 +2962,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -3082,7 +3017,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -3127,7 +3061,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3166,7 +3099,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3205,7 +3137,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3247,7 +3178,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3286,7 +3216,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3328,7 +3257,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3370,7 +3298,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3523,7 +3450,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3589,7 +3515,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3658,7 +3583,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3697,7 +3621,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3739,7 +3662,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3811,7 +3733,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3853,7 +3774,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3895,7 +3815,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3937,7 +3856,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -3979,7 +3897,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4021,7 +3938,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4063,7 +3979,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4105,7 +4020,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4147,7 +4061,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4189,7 +4102,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4231,7 +4143,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4273,7 +4184,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4315,7 +4225,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.12.0", "stability": "experimental", "urls": [ { @@ -4356,7 +4265,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -4405,7 +4313,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -4440,7 +4347,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -4474,7 +4380,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -4508,7 +4413,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -4546,7 +4450,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -4587,7 +4490,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -4625,7 +4527,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -4663,7 +4564,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -4701,7 +4601,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -4740,7 +4639,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -4778,7 +4676,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -4826,7 +4723,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -4864,7 +4760,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -4902,7 +4797,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -4941,7 +4835,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -4980,7 +4873,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -5021,7 +4913,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -5121,8 +5012,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", - "stability": "experimental", + "stability": "stable", "urls": [ { "methods": [ @@ -5159,7 +5049,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5197,7 +5086,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -5238,7 +5126,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5273,7 +5160,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.12.0", "stability": "stable", "urls": [ { @@ -5311,7 +5197,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.12.0", "stability": "experimental", "urls": [ { @@ -5359,7 +5244,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -5462,7 +5346,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -5508,7 +5391,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "experimental", "urls": [ { @@ -5589,7 +5471,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "experimental", "urls": [ { @@ -5628,7 +5509,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5666,7 +5546,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5700,7 +5579,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5734,7 +5612,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5772,7 +5649,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5814,7 +5690,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -5853,7 +5728,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.7.0", "stability": "stable", "urls": [ { @@ -5898,7 +5772,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -5938,7 +5811,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -5978,7 +5850,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6018,7 +5889,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6055,7 +5925,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.14.0", "stability": "stable", "urls": [ { @@ -6092,7 +5961,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6137,7 +6005,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6171,7 +6038,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6205,7 +6071,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6239,7 +6104,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6273,7 +6137,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -6314,7 +6177,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6359,7 +6221,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -6401,7 +6262,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6447,7 +6307,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6490,7 +6349,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -6530,7 +6388,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6578,7 +6435,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6621,7 +6477,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -6664,7 +6519,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -6708,7 +6562,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6746,7 +6599,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6790,8 +6642,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", - "stability": "stable", + "stability": "experimental", "urls": [ { "methods": [ @@ -6833,7 +6684,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -6877,7 +6727,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -6917,7 +6766,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -6956,7 +6804,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "experimental", "urls": [ { @@ -6998,7 +6845,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.5.0", "stability": "experimental", "urls": [ { @@ -7036,7 +6882,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7074,7 +6919,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7118,7 +6962,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7152,7 +6995,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7190,8 +7032,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", - "stability": "stable", + "stability": "experimental", "urls": [ { "methods": [ @@ -7233,7 +7074,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "experimental", "urls": [ { @@ -7272,7 +7112,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7318,7 +7157,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.1.0", "stability": "stable", "urls": [ { @@ -7368,7 +7206,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7406,7 +7243,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7462,8 +7298,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", - "stability": "stable", + "stability": "experimental", "urls": [ { "methods": [ @@ -7505,7 +7340,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -7545,7 +7379,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7595,7 +7428,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -7639,7 +7471,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7690,7 +7521,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7742,7 +7572,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7791,7 +7620,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -7832,7 +7660,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "stable", "urls": [ { @@ -7870,7 +7697,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7904,7 +7730,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -7945,7 +7770,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -7991,8 +7815,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", - "stability": "stable", + "stability": "experimental", "urls": [ { "methods": [ @@ -8032,7 +7855,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -8074,7 +7896,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8121,7 +7942,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8168,7 +7988,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8207,7 +8026,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8251,7 +8069,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8293,7 +8110,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -8328,7 +8144,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.13.0", "stability": "stable", "urls": [ { @@ -8366,7 +8181,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -8408,7 +8222,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -8452,7 +8265,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8492,7 +8304,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8536,7 +8347,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -8578,7 +8388,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -8625,7 +8434,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -8669,7 +8477,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -8714,7 +8521,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -8766,7 +8572,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.6.0", "stability": "stable", "urls": [ { @@ -8811,7 +8616,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -8852,7 +8656,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -8899,7 +8702,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", "stability": "experimental", "urls": [ { @@ -8944,7 +8746,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", "stability": "experimental", "urls": [ { @@ -8998,7 +8799,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", "stability": "experimental", "urls": [ { @@ -9046,7 +8846,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.11.0", "stability": "experimental", "urls": [ { @@ -9090,7 +8889,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -9128,7 +8926,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -9167,7 +8964,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -9205,7 +9001,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -9250,7 +9045,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -9292,7 +9086,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -9333,7 +9126,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -9382,7 +9174,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "experimental", "urls": [ { @@ -9417,7 +9208,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -9455,7 +9245,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -9489,7 +9278,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -9523,7 +9311,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -9565,7 +9352,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -9600,7 +9386,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -9639,7 +9424,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -9682,7 +9466,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.12.0", "stability": "stable", "urls": [ { @@ -9725,7 +9508,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.12.0", "stability": "stable", "urls": [ { @@ -9777,7 +9559,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.12.0", "stability": "stable", "urls": [ { @@ -9823,7 +9604,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -9865,7 +9645,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -9910,7 +9689,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "stable", "urls": [ { @@ -9949,7 +9727,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "stable", "urls": [ { @@ -9995,7 +9772,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.5.0", "stability": "stable", "urls": [ { @@ -10042,7 +9818,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10086,7 +9861,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -10125,7 +9899,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -10169,7 +9942,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -10213,7 +9985,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -10257,7 +10028,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10303,7 +10073,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10352,7 +10121,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10395,7 +10163,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -10444,7 +10211,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10487,7 +10253,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10530,7 +10295,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -10576,7 +10340,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -10622,7 +10385,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.7.0", "stability": "stable", "urls": [ { @@ -10668,7 +10430,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -10714,7 +10475,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -10768,7 +10528,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10814,7 +10573,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -10860,7 +10618,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -10911,7 +10668,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -10957,7 +10713,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -11011,7 +10766,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -11062,7 +10816,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -11111,7 +10864,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -11160,7 +10912,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -11209,7 +10960,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -11258,7 +11008,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -11310,7 +11059,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -11354,7 +11102,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -11403,7 +11150,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -11452,7 +11198,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -11501,7 +11246,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "stable", "urls": [ { @@ -11547,7 +11291,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -11601,7 +11344,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.1.0", "stability": "stable", "urls": [ { @@ -11648,7 +11390,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -11692,7 +11433,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -11741,7 +11481,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -11788,7 +11527,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.3.0", "stability": "stable", "urls": [ { @@ -11841,7 +11579,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -11887,7 +11624,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -11933,7 +11669,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -11980,7 +11715,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12026,7 +11760,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -12083,7 +11816,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12137,7 +11869,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -12180,7 +11911,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -12234,7 +11964,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -12283,7 +12012,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12329,7 +12057,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12378,7 +12105,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12424,7 +12150,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -12470,7 +12195,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -12516,7 +12240,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -12562,7 +12285,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -12605,7 +12327,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.14.0", "stability": "stable", "urls": [ { @@ -12651,7 +12372,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12694,7 +12414,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -12747,7 +12466,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -12793,7 +12511,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -12839,7 +12556,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -12885,7 +12601,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -12931,7 +12646,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -12977,7 +12691,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -13030,7 +12743,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -13076,7 +12788,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -13122,7 +12833,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -13168,7 +12878,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -13214,7 +12923,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -13260,7 +12968,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.6.0", "stability": "stable", "urls": [ { @@ -13303,7 +13010,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -13345,7 +13051,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -13387,7 +13092,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.4.0", "stability": "stable", "urls": [ { @@ -13424,7 +13128,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -13482,7 +13185,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -13536,7 +13238,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "stable", "urls": [ { @@ -13585,7 +13286,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -13637,7 +13337,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "experimental", "urls": [ { @@ -13681,7 +13380,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "experimental", "urls": [ { @@ -13726,7 +13424,6 @@ "responseMediaType": [ "text/plain" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -13771,7 +13468,6 @@ "responseMediaType": [ "application/json" ], - "since": "1.3.0", "stability": "stable", "urls": [ { @@ -13826,7 +13522,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -13877,7 +13572,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -13952,7 +13646,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.0.0", "stability": "stable", "urls": [ { @@ -14017,7 +13710,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -14055,7 +13747,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -14213,7 +13904,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -14259,7 +13949,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14297,7 +13986,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14338,7 +14026,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.15.0", "stability": "stable", "urls": [ { @@ -14376,7 +14063,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14414,7 +14100,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14452,7 +14137,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14493,7 +14177,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -14539,7 +14222,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -14588,7 +14270,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.3.0", "stability": "stable", "urls": [ { @@ -14626,7 +14307,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.4.0", "stability": "stable", "urls": [ { @@ -14667,7 +14347,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -14709,7 +14388,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14743,7 +14421,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14783,7 +14460,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14823,7 +14499,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "experimental", "urls": [ { @@ -14866,7 +14541,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14903,7 +14577,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14938,7 +14611,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -14972,7 +14644,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -15013,7 +14684,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "experimental", "urls": [ { @@ -15055,7 +14725,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -15113,7 +14782,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -15159,8 +14827,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", - "stability": "beta", + "stability": "experimental", "urls": [ { "methods": [ @@ -15197,7 +14864,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", "stability": "experimental", "urls": [ { @@ -15235,8 +14901,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", - "stability": "beta", + "stability": "experimental", "urls": [ { "methods": [ @@ -15273,7 +14938,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", "stability": "experimental", "urls": [ { @@ -15317,8 +14981,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", - "stability": "beta", + "stability": "experimental", "urls": [ { "methods": [ @@ -15388,8 +15051,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", - "stability": "beta", + "stability": "experimental", "urls": [ { "methods": [ @@ -15426,7 +15088,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", "stability": "experimental", "urls": [ { @@ -15497,8 +15158,7 @@ "responseMediaType": [ "application/json" ], - "since": "8.8.0", - "stability": "beta", + "stability": "experimental", "urls": [ { "methods": [ @@ -15539,8 +15199,7 @@ "responseMediaType": [ "application/vnd.mapbox-vector-tile" ], - "since": "7.15.0", - "stability": "stable", + "stability": "experimental", "urls": [ { "methods": [ @@ -15574,7 +15233,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -15623,7 +15281,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.0.0", "stability": "stable", "urls": [ { @@ -15665,7 +15322,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "experimental", "urls": [ { @@ -15705,7 +15361,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "experimental", "urls": [ { @@ -15748,7 +15403,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -15782,7 +15436,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -15834,7 +15487,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -15872,7 +15524,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -15939,7 +15590,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -15990,7 +15640,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -16028,7 +15677,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -16066,7 +15714,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16104,7 +15751,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16142,7 +15788,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16188,7 +15833,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -16257,7 +15901,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16302,7 +15945,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -16340,7 +15982,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16378,7 +16019,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -16416,7 +16056,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -16450,7 +16089,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16484,7 +16122,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16528,7 +16165,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -16563,7 +16199,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16607,7 +16242,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -16645,7 +16279,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -16682,7 +16315,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.0.0", "stability": "stable", "urls": [ { @@ -16726,7 +16358,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -16769,7 +16400,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.3.0", "stability": "stable", "urls": [ { @@ -16807,7 +16437,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -16862,7 +16491,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -16911,7 +16539,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -16960,7 +16587,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -17010,7 +16636,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -17081,7 +16706,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -17115,7 +16739,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -17159,7 +16782,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -17202,7 +16824,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -17248,7 +16869,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.9.0", "stability": "stable", "urls": [ { @@ -17289,7 +16909,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -17343,7 +16962,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.3.0", "stability": "stable", "urls": [ { @@ -17391,7 +17009,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.7.0", "stability": "stable", "urls": [ { @@ -17432,7 +17049,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -17563,7 +17179,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.4.0", "stability": "stable", "urls": [ { @@ -17610,7 +17225,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -17652,7 +17266,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -17690,7 +17303,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -17738,7 +17350,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "stable", "urls": [ { @@ -17811,7 +17422,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -17852,7 +17462,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.14.0", "stability": "stable", "urls": [ { @@ -17893,7 +17502,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -17934,7 +17542,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -17975,7 +17582,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -18016,7 +17622,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -18057,7 +17662,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -18104,7 +17708,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.4.0", "stability": "stable", "urls": [ { @@ -18210,7 +17813,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.2.0", "stability": "stable", "urls": [ { @@ -18248,7 +17850,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -18285,7 +17886,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -18328,7 +17928,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -18404,7 +18003,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -18442,7 +18040,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -18480,7 +18077,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -18518,7 +18114,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -18562,7 +18157,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -18600,7 +18194,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.6.0", "stability": "stable", "urls": [ { @@ -18641,7 +18234,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -18679,7 +18271,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.6.0", "stability": "stable", "urls": [ { @@ -18717,7 +18308,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.6.0", "stability": "stable", "urls": [ { @@ -18755,7 +18345,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.4.0", "stability": "stable", "urls": [ { @@ -18796,7 +18385,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.10.0", "stability": "stable", "urls": [ { @@ -18837,7 +18425,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -18879,7 +18466,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -18918,7 +18504,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -18956,7 +18541,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -18994,7 +18578,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -19032,7 +18615,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -19106,7 +18688,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -19144,7 +18725,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.8.0", "stability": "stable", "urls": [ { @@ -19194,7 +18774,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -19235,7 +18814,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -19273,7 +18851,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "stable", "urls": [ { @@ -19311,7 +18888,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "stable", "urls": [ { @@ -19349,7 +18925,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.15.0", "stability": "stable", "urls": [ { @@ -19390,7 +18965,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -19432,7 +19006,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.3.0", "stability": "stable", "urls": [ { @@ -19471,7 +19044,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.2.0", "stability": "stable", "urls": [ { @@ -19509,7 +19081,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19550,7 +19121,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19588,7 +19158,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19629,7 +19198,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19667,7 +19235,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19708,7 +19275,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19749,7 +19315,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.10.0", "stability": "stable", "urls": [ { @@ -19788,7 +19353,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.3.0", "stability": "experimental", "urls": [ { @@ -19833,7 +19397,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.0.0", "stability": "experimental", "urls": [ { @@ -19878,7 +19441,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.3.0", "stability": "experimental", "urls": [ { @@ -19919,7 +19481,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.14.0", "stability": "stable", "urls": [ { @@ -19961,7 +19522,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20068,7 +19628,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.13.0", "stability": "stable", "urls": [ { @@ -20109,7 +19668,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.13.0", "stability": "stable", "urls": [ { @@ -20153,7 +19711,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -20196,7 +19753,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -20249,7 +19805,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -20299,7 +19854,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.2.0", "stability": "stable", "urls": [ { @@ -20359,7 +19913,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.2.0", "stability": "stable", "urls": [ { @@ -20402,7 +19955,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.1.0", "stability": "stable", "urls": [ { @@ -20448,7 +20000,6 @@ "responseMediaType": [ "application/json" ], - "since": "8.7.0", "stability": "stable", "urls": [ { @@ -20495,7 +20046,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -20538,7 +20088,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.5.0", "stability": "stable", "urls": [ { @@ -20589,7 +20138,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.2.0", "stability": "stable", "urls": [ { @@ -20635,7 +20183,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.16.0", "stability": "stable", "urls": [ { @@ -20676,7 +20223,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20717,7 +20263,6 @@ "responseMediaType": [ "application/json" ], - "since": "2.4.0", "stability": "stable", "urls": [ { @@ -20755,7 +20300,6 @@ "responseMediaType": [ "application/json" ], - "since": "6.5.0", "stability": "stable", "urls": [ { @@ -20789,7 +20333,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20831,7 +20374,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20866,7 +20408,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20901,7 +20442,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -20943,7 +20483,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -21015,7 +20554,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.6.0", "stability": "stable", "urls": [ { @@ -21052,7 +20590,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -21090,7 +20627,6 @@ "responseMediaType": [ "application/json" ], - "since": "7.11.0", "stability": "stable", "urls": [ { @@ -21125,7 +20661,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -21159,7 +20694,6 @@ "responseMediaType": [ "application/json" ], - "since": "5.5.0", "stability": "stable", "urls": [ { @@ -21199,7 +20733,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -21273,7 +20806,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -21317,7 +20849,6 @@ "responseMediaType": [ "application/json" ], - "since": "0.0.0", "stability": "stable", "urls": [ { @@ -24725,8 +24256,6 @@ "description": "Whether this field is used as a time series dimension.", "name": "time_series_dimension", "required": false, - "since": "8.0.0", - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -24748,8 +24277,6 @@ "description": "Contains metric type if this fields is used as a time series\nmetrics, absent if the field is not used as metric.", "name": "time_series_metric", "required": false, - "since": "8.0.0", - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -24771,8 +24298,6 @@ "description": "If this list is present in response then some indices have the\nfield marked as a dimension and other indices, the ones in this list, do not.", "name": "non_dimension_indices", "required": false, - "since": "8.0.0", - "stability": "experimental", "type": { "kind": "array_of", "value": { @@ -24797,8 +24322,6 @@ "description": "The list of indices where this field is present if these indices\ndon’t have the same `time_series_metric` value for this field.", "name": "metric_conflicts_indices", "required": false, - "since": "8.0.0", - "stability": "experimental", "type": { "kind": "array_of", "value": { @@ -24830,7 +24353,6 @@ "description": "List of fields to retrieve capabilities for. Wildcard (`*`) expressions are supported.", "name": "fields", "required": false, - "since": "8.5.0", "type": { "kind": "instance_of", "type": { @@ -24863,7 +24385,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/runtime-search-request.html", "name": "runtime_mappings", "required": false, - "since": "7.12.0", "type": { "kind": "instance_of", "type": { @@ -24975,7 +24496,6 @@ "description": "An optional set of filters: can include +metadata,-metadata,-nested,-multifield,-parent", "name": "filters", "required": false, - "since": "8.2.0", "type": { "kind": "instance_of", "type": { @@ -24994,7 +24514,6 @@ "description": "Only return results for fields that have one of the types in the list", "name": "types", "required": false, - "since": "8.2.0", "type": { "kind": "array_of", "value": { @@ -25017,7 +24536,6 @@ "name": "include_empty_fields", "required": false, "serverDefault": true, - "since": "8.13.0", "type": { "kind": "instance_of", "type": { @@ -25265,7 +24783,6 @@ "description": "Should this request force synthetic _source?\nUse this to test if the mapping supports synthetic _source and to get a sense of the worst case performance.\nFetches with this enabled will be slower the enabling synthetic source natively in the index.", "name": "force_synthetic_source", "required": false, - "since": "8.4.0", "type": { "kind": "instance_of", "type": { @@ -27718,7 +27235,6 @@ "description": "Query to filter the documents that can match. The kNN search will return the top\n`k` documents that also match this filter. The value can be a single query or a\nlist of queries. If `filter` isn't provided, all documents are allowed to match.", "name": "filter", "required": false, - "since": "8.2.0", "type": { "items": [ { @@ -28176,7 +27692,6 @@ "description": "Should this request force synthetic _source?\nUse this to test if the mapping supports synthetic _source and to get a sense of the worst case performance.\nFetches with this enabled will be slower the enabling synthetic source natively in the index.", "name": "force_synthetic_source", "required": false, - "since": "8.4.0", "type": { "kind": "instance_of", "type": { @@ -28597,7 +28112,6 @@ "description": "Defines the approximate kNN search to run.", "name": "knn", "required": false, - "since": "8.4.0", "type": { "items": [ { @@ -32902,7 +32416,6 @@ "description": "Defines the approximate kNN search to run.", "name": "knn", "required": false, - "since": "8.4.0", "type": { "items": [ { @@ -32936,7 +32449,6 @@ "description": "Defines the Reciprocal Rank Fusion (RRF) to use.", "name": "rank", "required": false, - "since": "8.8.0", "type": { "kind": "instance_of", "type": { @@ -33031,7 +32543,6 @@ "description": "A retriever is a specification to describe top documents returned from a search. A retriever replaces other elements of the search API that also return top documents such as query and knn.", "name": "retriever", "required": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -33868,7 +33379,6 @@ "description": "Should this request force synthetic _source?\nUse this to test if the mapping supports synthetic _source and to get a sense of the worst case performance.\nFetches with this enabled will be slower the enabling synthetic source natively in the index.", "name": "force_synthetic_source", "required": false, - "since": "8.4.0", "type": { "kind": "instance_of", "type": { @@ -39303,8 +38813,7 @@ "since": "7.16.0" } }, - "name": "centroid", - "since": "7.16.0" + "name": "centroid" } ], "name": { @@ -39804,7 +39313,6 @@ "name": "rest_total_hits_as_int", "required": false, "serverDefault": false, - "since": "7.0.0", "type": { "kind": "instance_of", "type": { @@ -46450,7 +45958,6 @@ }, "name": "external_id", "required": false, - "since": "8.3.0", "type": { "kind": "instance_of", "type": { @@ -51353,7 +50860,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-bucket-count-ks-test-aggregation.html", "name": "bucket_count_ks_test", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -51376,7 +50882,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-bucket-correlation-aggregation.html", "name": "bucket_correlation", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -51413,7 +50918,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/search-aggregations-bucket-categorize-text-aggregation.html", "name": "categorize_text", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -72068,7 +71572,6 @@ "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", "name": "time_series_dimension", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -72319,7 +71822,6 @@ "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", "name": "time_series_dimension", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -72667,7 +72169,6 @@ "description": "For internal use by Elastic only. Marks the field as a time series dimension. Defaults to false.", "name": "time_series_metric", "required": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -72689,7 +72190,6 @@ "name": "time_series_dimension", "required": false, "serverDefault": false, - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -74748,7 +74248,6 @@ }, "name": "_data_stream_timestamp", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -74849,7 +74348,6 @@ }, "name": "null_value", "required": false, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -79623,7 +79121,6 @@ "name": "case_insensitive", "required": false, "serverDefault": false, - "since": "7.10.0", "type": { "kind": "instance_of", "type": { @@ -79746,7 +79243,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-combined-fields-query.html", "name": "combined_fields", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -80352,7 +79848,6 @@ "description": "A semantic query to semantic_text field types", "name": "semantic", "required": false, - "since": "8.15.0", "type": { "kind": "instance_of", "type": { @@ -80602,7 +80097,6 @@ "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/query-dsl-text-expansion-query.html", "name": "text_expansion", "required": false, - "since": "8.8.0", "type": { "key": { "kind": "instance_of", @@ -80633,7 +80127,6 @@ "docId": "query-dsl-weighted-tokens-query", "name": "weighted_tokens", "required": false, - "since": "8.13.0", "type": { "key": { "kind": "instance_of", @@ -81409,7 +80902,6 @@ "name": "case_insensitive", "required": false, "serverDefault": false, - "since": "7.10.0", "type": { "kind": "instance_of", "type": { @@ -82628,7 +82120,6 @@ "name": "case_insensitive", "required": false, "serverDefault": false, - "since": "7.10.0", "type": { "kind": "instance_of", "type": { @@ -82986,8 +82477,6 @@ "description": "Token pruning configurations", "name": "pruning_config", "required": false, - "since": "8.13.0", - "stability": "experimental", "type": { "kind": "instance_of", "type": { @@ -83183,7 +82672,6 @@ "description": "Allows case insensitive matching of the pattern with the indexed field values when set to true. Default is false which means the case sensitivity of matching depends on the underlying field’s mapping.", "name": "case_insensitive", "required": false, - "since": "7.10.0", "type": { "kind": "instance_of", "type": { @@ -84113,7 +83601,6 @@ "description": "Defines the approximate kNN search to run.", "name": "knn", "required": false, - "since": "8.4.0", "type": { "items": [ { @@ -92574,7 +92061,6 @@ }, "name": "type", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -100075,7 +99561,6 @@ "description": "An array of simple index patterns that can be used to exclude indices from being auto-followed.", "name": "leader_index_exclusion_patterns", "required": true, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -101179,8 +100664,6 @@ }, "name": "lifecycle", "required": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -102256,7 +101739,6 @@ }, "name": "note", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -102680,8 +102162,6 @@ "name": "include_defaults", "required": false, "serverDefault": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -106012,7 +105492,6 @@ }, "name": "data_frozen", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -106188,7 +105667,6 @@ }, "name": "indexing_pressure", "required": true, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -106808,7 +106286,6 @@ "description": "The number of fields that declare a script.", "name": "script_count", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -107187,7 +106664,6 @@ "description": "Total amount, in bytes, of memory across all selected nodes, but using the value specified using the `es.total_memory_bytes` system property instead of measured total memory for those nodes where that system property was set.", "name": "adjusted_total_in_bytes", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -112829,7 +112305,6 @@ "description": "Objects containing information about the enrich cache stats on each ingest node.", "name": "cache_stats", "required": false, - "since": "7.16.0", "type": { "kind": "array_of", "value": { @@ -113653,7 +113128,6 @@ }, "name": "runtime_mappings", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -116424,7 +115898,6 @@ }, "name": "configurations", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -118163,7 +117636,6 @@ "name": "is_hidden", "required": false, "serverDefault": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -118317,8 +117789,6 @@ "description": "Contains the configuration for the data lifecycle management of this data stream.", "name": "lifecycle", "required": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -118373,7 +117843,6 @@ "description": "If `true`, the data stream is created and managed by an Elastic stack component and cannot be modified through normal user interaction.", "name": "system", "required": false, - "since": "7.10.0", "type": { "kind": "instance_of", "type": { @@ -120468,8 +119937,6 @@ "description": "Data lifecycle applicable if this is a data stream.", "name": "lifecycle", "required": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -120693,8 +120160,6 @@ }, "name": "lifecycle", "required": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -126433,7 +125898,6 @@ "name": "features", "required": false, "serverDefault": "['aliases', 'mappings', 'settings']", - "since": "8.1.0", "type": { "kind": "instance_of", "type": { @@ -126848,8 +126312,6 @@ "name": "include_defaults", "required": false, "serverDefault": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -127182,8 +126644,6 @@ "name": "include_defaults", "required": false, "serverDefault": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -128387,8 +127847,6 @@ }, "name": "lifecycle", "required": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -132584,8 +132042,6 @@ "name": "include_defaults", "required": false, "serverDefault": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -132876,8 +132332,6 @@ "name": "include_defaults", "required": false, "serverDefault": false, - "since": "8.11.0", - "stability": "stable", "type": { "kind": "instance_of", "type": { @@ -133406,7 +132860,6 @@ }, "name": "shard_stats", "required": false, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -133492,7 +132945,6 @@ }, "name": "health", "required": false, - "since": "8.1.0", "type": { "kind": "instance_of", "type": { @@ -133510,7 +132962,6 @@ }, "name": "status", "required": false, - "since": "8.1.0", "type": { "kind": "instance_of", "type": { @@ -134568,7 +134019,6 @@ }, "name": "shards", "required": false, - "since": "7.15.0", "type": { "key": { "kind": "instance_of", @@ -148833,7 +148283,6 @@ "description": "Text classification configuration for inference.", "name": "text_classification", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148852,7 +148301,6 @@ "description": "Zeroshot classification configuration for inference.", "name": "zero_shot_classification", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148871,7 +148319,6 @@ "description": "Fill mask configuration for inference.", "name": "fill_mask", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148890,7 +148337,6 @@ "description": "Named entity recognition configuration for inference.", "name": "ner", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148909,7 +148355,6 @@ "description": "Pass through configuration for inference.", "name": "pass_through", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148928,7 +148373,6 @@ "description": "Text embedding configuration for inference.", "name": "text_embedding", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -148947,7 +148391,6 @@ "description": "Text expansion configuration for inference.", "name": "text_expansion", "required": false, - "since": "8.8.0", "type": { "kind": "instance_of", "type": { @@ -148966,7 +148409,6 @@ "description": "Question answering configuration for inference.", "name": "question_answering", "required": false, - "since": "8.3.0", "type": { "kind": "instance_of", "type": { @@ -150505,7 +149947,6 @@ "name": "annotations_enabled", "required": false, "serverDefault": true, - "since": "7.9.0", "type": { "kind": "instance_of", "type": { @@ -150537,7 +149978,6 @@ "description": "Limits data collection to this comma separated list of partition or by field values. If terms are not specified or it is an empty string, no filtering is applied. Wildcards are not supported. Only the specified terms can be viewed when using the Single Metric Viewer.", "name": "terms", "required": false, - "since": "7.9.0", "type": { "kind": "instance_of", "type": { @@ -152403,7 +151843,6 @@ "description": "Indicates MPNET tokenization and its options", "name": "mpnet", "required": false, - "since": "8.1.0", "type": { "kind": "instance_of", "type": { @@ -152422,7 +151861,6 @@ "description": "Indicates RoBERTa tokenization and its options", "name": "roberta", "required": false, - "since": "8.2.0", "type": { "kind": "instance_of", "type": { @@ -152824,7 +152262,6 @@ "description": "The size of the trained model cache.", "name": "cache_size", "required": true, - "since": "8.4.0", "type": { "kind": "instance_of", "type": { @@ -161643,7 +161080,6 @@ }, "name": "headers", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -161661,7 +161097,6 @@ }, "name": "version", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -162054,7 +161489,6 @@ }, "name": "headers", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -163395,7 +162829,6 @@ "description": "Optional prefix strings applied at inference", "name": "prefix_strings", "required": false, - "since": "8.12.0", "type": { "kind": "instance_of", "type": { @@ -163443,7 +162876,6 @@ "description": "If set to `true` and a `compressed_definition` is provided,\nthe request defers definition decompression and skips relevant\nvalidations.", "name": "defer_definition_decompression", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -163462,7 +162894,6 @@ "description": "Whether to wait for all child operations (e.g. model download)\nto complete.", "name": "wait_for_completion", "required": false, - "since": "8.8.0", "type": { "kind": "instance_of", "type": { @@ -164012,7 +163443,6 @@ "description": "The optional model merges if required by the tokenizer.", "name": "merges", "required": false, - "since": "8.2.0", "type": { "kind": "array_of", "value": { @@ -164034,7 +163464,6 @@ "description": "The optional vocabulary value scores if required by the tokenizer.", "name": "scores", "required": false, - "since": "8.9.0", "type": { "kind": "array_of", "value": { @@ -164636,7 +164065,6 @@ "description": "A unique identifier for the deployment of the model.", "name": "deployment_id", "required": false, - "since": "8.8.0", "type": { "kind": "instance_of", "type": { @@ -173318,7 +172746,6 @@ }, "name": "deprecation_indexing", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -178869,7 +178296,6 @@ "name": "typed_keys", "required": false, "serverDefault": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -179620,7 +179046,6 @@ "description": "Realm type of the principal for which this API key was created", "name": "realm_type", "required": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -179651,7 +179076,6 @@ "description": "The profile uid for the API key owner principal, if requested and if it exists", "name": "profile_uid", "required": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -179670,7 +179094,6 @@ "description": "Metadata of the API key", "name": "metadata", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -179712,7 +179135,6 @@ "description": "The owner user’s permissions associated with the API key.\nIt is a point-in-time snapshot captured at creation and subsequent updates.\nAn API key’s effective permissions are an intersection of its assigned privileges and the owner user’s permissions.", "name": "limited_by", "required": false, - "since": "8.5.0", "type": { "kind": "array_of", "value": { @@ -181871,7 +181293,6 @@ }, "name": "token", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -181916,7 +181337,6 @@ }, "name": "type", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -182591,7 +182011,6 @@ "description": "Arbitrary metadata that you want to associate with the API key. It supports nested data structure. Within the metadata object, keys beginning with `_` are reserved for system usage.", "name": "metadata", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -182693,7 +182112,6 @@ "description": "API key credentials which is the base64-encoding of\nthe UTF-8 representation of `id` and `api_key` joined\nby a colon (`:`).", "name": "encoded", "required": true, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -183835,7 +183253,6 @@ "name": "with_limited_by", "required": false, "serverDefault": false, - "since": "8.5.0", "type": { "kind": "instance_of", "type": { @@ -183855,7 +183272,6 @@ "name": "active_only", "required": false, "serverDefault": false, - "since": "8.10.0", "type": { "kind": "instance_of", "type": { @@ -183875,7 +183291,6 @@ "name": "with_profile_uid", "required": false, "serverDefault": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -184243,7 +183658,6 @@ }, "name": "global", "required": false, - "since": "8.0.0", "type": { "key": { "kind": "instance_of", @@ -185027,7 +184441,6 @@ "name": "with_profile_uid", "required": false, "serverDefault": false, - "since": "8.5.0", "type": { "kind": "instance_of", "type": { @@ -187905,7 +187318,6 @@ "description": "Return the snapshot of the owner user's role descriptors associated with the API key.\nAn API key's actual permission is the intersection of its assigned role descriptors and the owner user's role descriptors.", "name": "with_limited_by", "required": false, - "since": "8.5.0", "type": { "kind": "instance_of", "type": { @@ -187925,7 +187337,6 @@ "name": "with_profile_uid", "required": false, "serverDefault": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -187945,7 +187356,6 @@ "name": "typed_keys", "required": false, "serverDefault": false, - "since": "8.14.0", "type": { "kind": "instance_of", "type": { @@ -192038,7 +191448,6 @@ }, "name": "index_details", "required": false, - "since": "7.13.0", "type": { "key": { "kind": "instance_of", @@ -192089,7 +191498,6 @@ }, "name": "repository", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -192331,8 +191739,7 @@ "since": "7.16.0" } }, - "name": "repository", - "since": "7.16.0" + "name": "repository" }, { "availability": { @@ -192341,8 +191748,7 @@ "since": "7.16.0" } }, - "name": "shard_count", - "since": "7.16.0" + "name": "shard_count" }, { "availability": { @@ -192351,8 +191757,7 @@ "since": "7.16.0" } }, - "name": "failed_shard_count", - "since": "7.16.0" + "name": "failed_shard_count" } ], "name": { @@ -193047,7 +192452,6 @@ "description": "Equals `true` if the snapshot was accepted. Present when the request had `wait_for_completion` set to `false`", "name": "accepted", "required": false, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -193432,7 +192836,6 @@ "name": "index_details", "required": false, "serverDefault": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -193452,7 +192855,6 @@ "name": "index_names", "required": false, "serverDefault": true, - "since": "8.3.0", "type": { "kind": "instance_of", "type": { @@ -193485,7 +192887,6 @@ "name": "sort", "required": false, "serverDefault": "start_time", - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -193505,7 +192906,6 @@ "name": "size", "required": false, "serverDefault": 0, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -193525,7 +192925,6 @@ "name": "order", "required": false, "serverDefault": "asc", - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -193544,7 +192943,6 @@ "description": "Offset identifier to start pagination from as returned by the next field in the response body.", "name": "after", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -193564,7 +192962,6 @@ "name": "offset", "required": false, "serverDefault": 0, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -193583,7 +192980,6 @@ "description": "Value of the current sort column at which to start retrieval. Can either be a string snapshot- or repository name when sorting by snapshot or repository name, a millisecond time value or a number when sorting by index- or shard count.", "name": "from_sort_value", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -193602,7 +192998,6 @@ "description": "Filter snapshots by a comma-separated list of SLM policy names that snapshots belong to. Also accepts wildcards (*) and combinations of wildcards followed by exclude patterns starting with -. To include snapshots not created by an SLM policy you can use the special pattern _none that will match all snapshots without an SLM policy.", "name": "slm_policy_filter", "required": false, - "since": "7.16.0", "type": { "kind": "instance_of", "type": { @@ -193656,7 +193051,6 @@ "description": "The total number of snapshots that match the request when ignoring size limit or after query parameter.", "name": "total", "required": true, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -193675,7 +193069,6 @@ "description": "The number of remaining snapshots that were not returned due to size limits and that can be fetched by additional requests using the next field value.", "name": "remaining", "required": true, - "since": "7.15.0", "type": { "kind": "instance_of", "type": { @@ -198170,7 +197563,6 @@ "name": "unattended", "required": false, "serverDefault": false, - "since": "8.5.0", "type": { "kind": "instance_of", "type": { @@ -198223,7 +197615,6 @@ "description": "Definitions of search-time runtime fields that can be used by the transform. For search runtime fields all data\nnodes, including remote nodes, must be 7.12 or later.", "name": "runtime_mappings", "required": false, - "since": "7.12.0", "type": { "kind": "instance_of", "type": { @@ -200815,7 +200206,6 @@ }, "name": "webhook", "required": false, - "since": "7.14.0", "type": { "kind": "instance_of", "type": { @@ -206937,7 +206327,6 @@ }, "name": "archive", "required": true, - "since": "8.2.0", "type": { "kind": "instance_of", "type": { @@ -207662,7 +207051,6 @@ }, "name": "data_frozen", "required": false, - "since": "7.13.0", "type": { "kind": "instance_of", "type": { @@ -208703,7 +208091,6 @@ }, "name": "deployments", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -208947,7 +208334,6 @@ }, "name": "model_size_bytes", "required": false, - "since": "8.0.0", "type": { "kind": "instance_of", "type": { @@ -209413,7 +208799,6 @@ }, "name": "archive", "required": true, - "since": "8.2.0", "type": { "kind": "instance_of", "type": { diff --git a/typescript-generator/src/metamodel.ts b/typescript-generator/src/metamodel.ts index 05673cc6de..7cbafc6290 100644 --- a/typescript-generator/src/metamodel.ts +++ b/typescript-generator/src/metamodel.ts @@ -126,11 +126,9 @@ export class Property { description?: string docUrl?: string docId?: string - since?: string serverDefault?: boolean | string | number | string[] | number[] deprecation?: Deprecation availability?: Availabilities - stability?: Stability /** * If specified takes precedence over `name` when generating code. `name` is always the value * to be sent over the wire @@ -226,7 +224,7 @@ export class Interface extends BaseType { */ generics?: TypeName[] inherits?: Inherits - implements?: Inherits[] + implements?: Inherits[] // Unused! /** * Behaviors directly implemented by this interface @@ -333,7 +331,6 @@ export class EnumMember { codegenName?: string description?: string deprecation?: Deprecation - since?: string availability?: Availabilities } @@ -415,14 +412,6 @@ export class Endpoint { urls: UrlTemplate[] - /** - * The version when this endpoint reached its current stability level. - * Missing data means "forever", i.e. before any of the target client versions produced from this spec. - */ - since?: string - stability?: Stability - visibility?: Visibility - featureFlag?: string requestMediaType?: string[] responseMediaType?: string[] privileges?: {