scripts/constants.js (58 lines of code) (raw):

/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ export default Object.freeze({ VECTOR_PRODUCTION_HOST: 'vector.maps.elastic.co', VECTOR_STAGING_HOST: 'vector-staging.maps.elastic.co', TILE_PRODUCTION_HOST: 'tiles.maps.elastic.co', TILE_STAGING_HOST: 'tiles.maps.elastic.co', VERSIONS: [ 'v1', 'v2', 'v6.6', 'v7.0', 'v7.2', 'v7.6', 'v7.7', 'v7.8', 'v7.9', 'v7.10', 'v7.11', 'v7.12', 'v7.13', 'v7.14', 'v7.15', 'v7.16', 'v7.17', 'v8.0', 'v8.1', 'v8.2', 'v8.3', 'v8.4', 'v8.5', 'v8.6', 'v8.7', 'v8.8', 'v8.9', 'v8.10', 'v8.11', 'v8.12', 'v8.13', 'v8.14', 'v8.15', 'v8.16', 'v8.17', 'v8.18', 'v8.19', 'v9.0', 'v9.1', 'v9.2', 'v9.3', 'v9.4', ], DATE_VERSIONS: [ { date: "2023-10-31", semver: "v8.13", }, ], LATEST_TAG: "latest", GEOJSON_RFC7946: undefined, });