diff --git a/.aspect/bazelrc/convenience.bazelrc b/.aspect/bazelrc/convenience.bazelrc index 796675ac..ec878471 100644 --- a/.aspect/bazelrc/convenience.bazelrc +++ b/.aspect/bazelrc/convenience.bazelrc @@ -1,17 +1,17 @@ # Attempt to build & test every target whose prerequisites were successfully built. # Docs: https://bazel.build/docs/user-manual#keep-going -build --keep_going +common --keep_going # Output test errors to stderr so users don't have to `cat` or open test failure log files when test # fail. This makes the log noisier in exchange for reducing the time-to-feedback on test failures for # users. # Docs: https://bazel.build/docs/user-manual#test-output -test --test_output=errors +common --test_output=errors # Show the output files created by builds that requested more than one target. This helps users # locate the build outputs in more cases # Docs: https://bazel.build/docs/user-manual#show-result -build --show_result=20 +common --show_result=20 # Bazel picks up host-OS-specific config lines from bazelrc files. For example, if the host OS is # Linux and you run bazel build, Bazel picks up lines starting with build:linux. Supported OS diff --git a/.aspect/bazelrc/correctness.bazelrc b/.aspect/bazelrc/correctness.bazelrc index e5501930..8248d636 100644 --- a/.aspect/bazelrc/correctness.bazelrc +++ b/.aspect/bazelrc/correctness.bazelrc @@ -3,14 +3,14 @@ # It should be flipped to `--remote_upload_local_results` on CI # by using `--bazelrc=.aspect/bazelrc/ci.bazelrc`. # Docs: https://bazel.build/reference/command-line-reference#flag--remote_upload_local_results -build --noremote_upload_local_results +common --noremote_upload_local_results # Don't allow network access for build actions in the sandbox. # Ensures that you don't accidentally make non-hermetic actions/tests which depend on remote # services. # Developers should tag targets with `tags=["requires-network"]` to opt-out of the enforcement. # Docs: https://bazel.build/reference/command-line-reference#flag--sandbox_default_allow_network -build --sandbox_default_allow_network=false +common --sandbox_default_allow_network=false # Warn if a test's timeout is significantly longer than the test's actual execution time. # Bazel's default for test_timeout is medium (5 min), but most tests should instead be short (1 min). @@ -19,7 +19,7 @@ build --sandbox_default_allow_network=false # For instance, a test that normally executes in a minute or two should not have a timeout of # ETERNAL or LONG as these are much, much too generous. # Docs: https://bazel.build/docs/user-manual#test-verbose-timeout-warnings -test --test_verbose_timeout_warnings +common --test_verbose_timeout_warnings # Allow the Bazel server to check directory sources for changes. Ensures that the Bazel server # notices when a directory changes, if you have a directory listed in the srcs of some target. @@ -33,14 +33,14 @@ startup --host_jvm_args=-DBAZEL_TRACK_SOURCE_DIRECTORIES=1 # Allow exclusive tests to run in the sandbox. Fixes a bug where Bazel doesn't enable sandboxing for # tests with `tags=["exclusive"]`. # Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_exclusive_test_sandboxed -test --incompatible_exclusive_test_sandboxed +common --incompatible_exclusive_test_sandboxed # Use a static value for `PATH` and does not inherit `LD_LIBRARY_PATH`. Doesn't let environment # variables like `PATH` sneak into the build, which can cause massive cache misses when they change. # Use `--action_env=ENV_VARIABLE` if you want to inherit specific environment variables from the # client, but note that doing so can prevent cross-user caching if a shared cache is used. # Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_strict_action_env -build --incompatible_strict_action_env +common --incompatible_strict_action_env # Do not automatically create `__init__.py` files in the runfiles of Python targets. Fixes the wrong # default that comes from Google's internal monorepo by using `__init__.py` to delimit a Python @@ -48,7 +48,7 @@ build --incompatible_strict_action_env # default), it is treated as false if and only if this flag is set. See # https://github.com/bazelbuild/bazel/issues/10076. # Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_default_to_explicit_init_py -build --incompatible_default_to_explicit_init_py +common --incompatible_default_to_explicit_init_py # Set default value of `allow_empty` to `False` in `glob()`. This prevents a common mistake when # attempting to use `glob()` to match files in a subdirectory that is opaque to the current package @@ -60,5 +60,5 @@ common --incompatible_disallow_empty_glob # downloaded on test result cache hits when --remote_download_minimal is enabled, making it impossible # to generate a full coverage report. # Docs: https://bazel.build/reference/command-line-reference#flag--experimental_fetch_all_coverage_outputs -# detching remote cache results -test --experimental_fetch_all_coverage_outputs +# ditching remote cache results +common --experimental_fetch_all_coverage_outputs diff --git a/.aspect/bazelrc/debug.bazelrc b/.aspect/bazelrc/debug.bazelrc index bfb0bdd4..11f8c646 100644 --- a/.aspect/bazelrc/debug.bazelrc +++ b/.aspect/bazelrc/debug.bazelrc @@ -4,16 +4,16 @@ # Stream stdout/stderr output from each test in real-time. # Docs: https://bazel.build/docs/user-manual#test-output -test:debug --test_output=streamed +common:debug --test_output=streamed # Run one test at a time. # Docs: https://bazel.build/reference/command-line-reference#flag--test_strategy -test:debug --test_strategy=exclusive +common:debug --test_strategy=exclusive # Prevent long running tests from timing out. # Docs: https://bazel.build/docs/user-manual#test-timeout -test:debug --test_timeout=9999 +common:debug --test_timeout=9999 # Always run tests even if they have cached results. # Docs: https://bazel.build/docs/user-manual#cache-test-results -test:debug --nocache_test_results +common:debug --nocache_test_results diff --git a/.aspect/bazelrc/javascript.bazelrc b/.aspect/bazelrc/javascript.bazelrc index ace9d604..2afd3176 100644 --- a/.aspect/bazelrc/javascript.bazelrc +++ b/.aspect/bazelrc/javascript.bazelrc @@ -8,4 +8,4 @@ # details. # Docs: https://nodejs.org/en/docs/guides/debugging-getting-started/#command-line-options run:debug -- --node_options=--inspect-brk -test:debug --test_env=NODE_OPTIONS=--inspect-brk +common:debug --test_env=NODE_OPTIONS=--inspect-brk diff --git a/.aspect/bazelrc/performance.bazelrc b/.aspect/bazelrc/performance.bazelrc index 56749dd1..4cb0d077 100644 --- a/.aspect/bazelrc/performance.bazelrc +++ b/.aspect/bazelrc/performance.bazelrc @@ -3,7 +3,7 @@ # build. # No longer experimental in Bazel 6: https://github.com/bazelbuild/bazel/commit/c1a95501a5611878e5cc43a3cc531f2b9e47835b # Docs: https://bazel.build/reference/command-line-reference#flag--reuse_sandbox_directories -build --experimental_reuse_sandbox_directories +common --experimental_reuse_sandbox_directories # Avoid creating a runfiles tree for binaries or tests until it is needed. # Docs: https://bazel.build/reference/command-line-reference#flag--build_runfile_links @@ -12,8 +12,8 @@ build --experimental_reuse_sandbox_directories # This may break local workflows that `build` a binary target, then run the resulting program # outside of `bazel run`. In those cases, the script will need to call # `bazel build --build_runfile_links //my/binary:target` and then execute the resulting program. -build --nobuild_runfile_links +common --nobuild_runfile_links # Needed prior to Bazel 8; see # https://github.com/bazelbuild/bazel/issues/20577 -coverage --build_runfile_links +common --build_runfile_links diff --git a/BUILD.bazel b/BUILD.bazel index 3207b429..58d738cb 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -107,7 +107,12 @@ validator_bin.openapi_examples_validator_test( "--no-additional-properties", "$(rootpath //:{}.json)".format(BUNDLE_NAME), ], - data = ["//:{}.json".format(BUNDLE_NAME)], + # openapi-examples-validator@7 requires js-yaml at runtime but does not + # declare it as a dependency; provide it so it resolves at the root. + data = [ + "//:{}.json".format(BUNDLE_NAME), + "//:node_modules/js-yaml", + ], ) postman_bin.openapi2postmanv2( diff --git a/WORKSPACE b/WORKSPACE index c1e719d2..0dfcb08e 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -9,19 +9,23 @@ workspace( load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") # Fetch Aspect's rules_js so we can install our npm dependencies +# v2.9.2 (still rules_js 2.x) ships a Node toolchain list that includes +# Node 22.x, required to register a Node >=22.12 toolchain below. http_archive( name = "aspect_rules_js", - sha256 = "7ee67690ed4d6b5c8cbf6d47bb68b639192a29397a9fe3d513981fecc25a5653", - strip_prefix = "rules_js-2.3.2", - url = "https://github.com/aspect-build/rules_js/releases/download/v2.3.2/rules_js-v2.3.2.tar.gz", + sha256 = "1774702556e1d0b83b7f5eb58ec95676afe6481c62596b53f5b96575bacccf73", + strip_prefix = "rules_js-2.9.2", + url = "https://github.com/aspect-build/rules_js/releases/download/v2.9.2/rules_js-v2.9.2.tar.gz", ) # Fetch Aspect's rules_ts for TypeScript support +# v3.8.10 is the first release whose mirrored version list includes +# typescript 6.0.3 (see ts/private/versions.bzl), keeping the hermetic fetch. http_archive( name = "aspect_rules_ts", - sha256 = "d584e4bc80674d046938563678117d17df962fe105395f6b1efe2e8a248b8100", - strip_prefix = "rules_ts-3.5.1", - url = "https://github.com/aspect-build/rules_ts/releases/download/v3.5.1/rules_ts-v3.5.1.tar.gz", + sha256 = "06a432998e3f0b4c1057926b3946b51057413c6ffcb19bbc5e2674191a061063", + strip_prefix = "rules_ts-3.8.10", + url = "https://github.com/aspect-build/rules_ts/releases/download/v3.8.10/rules_ts-v3.8.10.tar.gz", ) # Register js dependencies @@ -38,9 +42,11 @@ rules_ts_dependencies( ) # Set up toolchains -load("@aspect_rules_js//js:toolchains.bzl", "DEFAULT_NODE_VERSION", "rules_js_register_toolchains") +load("@aspect_rules_js//js:toolchains.bzl", "rules_js_register_toolchains") -rules_js_register_toolchains(node_version = DEFAULT_NODE_VERSION) +# Node 22.x (>=22.12) supersedes the EOL Node 18 default and enables require() +# of the now ESM-only remark/unified toolchain used by the doc generator. +rules_js_register_toolchains(node_version = "22.14.0") # Set up npm load("@aspect_rules_js//npm:repositories.bzl", "npm_translate_lock") diff --git a/dist/documentation/parameters/woosmap_http_parameters_geolocationposition.md b/dist/documentation/parameters/woosmap_http_parameters_geolocationposition.md index ac79d0de..9fc129df 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_geolocationposition.md +++ b/dist/documentation/parameters/woosmap_http_parameters_geolocationposition.md @@ -4,9 +4,9 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.html b/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.html index 6dd29a1e..abd062e9 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.html +++ b/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.html @@ -34,18 +34,16 @@
Operator: test that is performed on the data to
- provide a match, e.g. =.
+ provide a match, e.g. =. Each field has a default
+ operator. If none operator follow the :, the default one
+ is used.
- Each field has a default operator. If none operator follow the
- :, the default one is used.
-
"My cool store".
+
+ Value: the content of the attribute that is tested,
+ e.g. the name of the store "My cool store".
+
diff --git a/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.md b/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.md index afd99475..92e19888 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.md +++ b/dist/documentation/parameters/woosmap_http_parameters_geolocationstores.md @@ -4,72 +4,71 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_geolocationtimezone.md b/dist/documentation/parameters/woosmap_http_parameters_geolocationtimezone.md index 2cee36ba..71ea2151 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_geolocationtimezone.md +++ b/dist/documentation/parameters/woosmap_http_parameters_geolocationtimezone.md @@ -2,15 +2,15 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md index a1e251d5..4357792f 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesautocomplete.md @@ -2,55 +2,55 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesdetails.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesdetails.md index f8b9c609..906d576b 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesdetails.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesdetails.md @@ -2,35 +2,35 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md index 7a723087..6487f1ee 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesgeocode.md @@ -4,53 +4,53 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_localitiesnearby.md b/dist/documentation/parameters/woosmap_http_parameters_localitiesnearby.md index 7726e3ac..ce65395a 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_localitiesnearby.md +++ b/dist/documentation/parameters/woosmap_http_parameters_localitiesnearby.md @@ -2,31 +2,31 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_stores.md b/dist/documentation/parameters/woosmap_http_parameters_stores.md index 47106364..db1db970 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_stores.md +++ b/dist/documentation/parameters/woosmap_http_parameters_stores.md @@ -4,9 +4,9 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.html b/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.html index c44f380d..cc016a12 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.html +++ b/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.html @@ -37,18 +37,16 @@
Operator: test that is performed on the data to
- provide a match, e.g. =.
+ provide a match, e.g. =. Each field has a default
+ operator. If none operator follow the :, the default one
+ is used.
- Each field has a default operator. If none operator follow the
- :, the default one is used.
-
"My cool store".
+
+ Value: the content of the attribute that is tested,
+ e.g. the name of the store "My cool store".
+
diff --git a/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.md b/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.md index 5d25b385..03286bc4 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.md +++ b/dist/documentation/parameters/woosmap_http_parameters_storesautocomplete.md @@ -4,72 +4,71 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_storessearch.html b/dist/documentation/parameters/woosmap_http_parameters_storessearch.html index f1ff73c1..1244398d 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storessearch.html +++ b/dist/documentation/parameters/woosmap_http_parameters_storessearch.html @@ -44,18 +44,16 @@
Operator: test that is performed on the data to
- provide a match, e.g. =.
+ provide a match, e.g. =. Each field has a default
+ operator. If none operator follow the :, the default one
+ is used.
- Each field has a default operator. If none operator follow the
- :, the default one is used.
-
"My cool store".
+
+ Value: the content of the attribute that is tested,
+ e.g. the name of the store "My cool store".
+
diff --git a/dist/documentation/parameters/woosmap_http_parameters_storessearch.md b/dist/documentation/parameters/woosmap_http_parameters_storessearch.md index 737b4703..e64ffa9d 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storessearch.md +++ b/dist/documentation/parameters/woosmap_http_parameters_storessearch.md @@ -4,92 +4,91 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.html b/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.html index 4d99bbbf..4a4cc914 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.html +++ b/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.html @@ -29,18 +29,16 @@
Operator: test that is performed on the data to
- provide a match, e.g. =.
+ provide a match, e.g. =. Each field has a default
+ operator. If none operator follow the :, the default one
+ is used.
- Each field has a default operator. If none operator follow the
- :, the default one is used.
-
"My cool store".
+
+ Value: the content of the attribute that is tested,
+ e.g. the name of the store "My cool store".
+
diff --git a/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.md b/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.md index 7f570a8c..bbe877b3 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.md +++ b/dist/documentation/parameters/woosmap_http_parameters_storessearchbounds.md @@ -4,76 +4,75 @@
Generated from the OpenAPI specification. diff --git a/dist/documentation/parameters/woosmap_http_parameters_storesstoreid.html b/dist/documentation/parameters/woosmap_http_parameters_storesstoreid.html index 490e139f..f65e731e 100644 --- a/dist/documentation/parameters/woosmap_http_parameters_storesstoreid.html +++ b/dist/documentation/parameters/woosmap_http_parameters_storesstoreid.html @@ -7,7 +7,6 @@
ID of the asset to get
-
Generated from the
Generated from the OpenAPI specification.
diff --git a/dist/documentation/parameters/woosmap_http_parameters_zoneszone_id.html b/dist/documentation/parameters/woosmap_http_parameters_zoneszone_id.html
index 127c0ddc..cfa85ad5 100644
--- a/dist/documentation/parameters/woosmap_http_parameters_zoneszone_id.html
+++ b/dist/documentation/parameters/woosmap_http_parameters_zoneszone_id.html
@@ -7,7 +7,6 @@ ID of the zone to get
Generated from the
the Assets Features See AssetFeatureResponse for more information. the Geojson Type (only 'FeatureCollection') the Assets Features See AssetFeatureResponse for more information. the Geojson Type (only 'FeatureCollection') The format for defining opening and closing hours for a particular day is the same as the usual. Instead of using numeric week day for keys you must use a date YYYY-MM-DD like "2015-03-08" (see ISO-8601). See AssetOpeningHoursPeriod for more information. The format for defining opening and closing hours for a particular day is the same as the usual. Instead of using numeric week day for keys you must use a date YYYY-MM-DD like "2015-03-08" (see ISO-8601). See AssetOpeningHoursPeriod for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursusual.html b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursusual.html
index 18eecbc5..0e42579b 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursusual.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursusual.html
@@ -25,11 +25,11 @@ The opening Hours for Monday See AssetOpeningHoursPeriod for more information. The opening Hours for Tuesday See AssetOpeningHoursPeriod for more information. The opening Hours for Wednesday See AssetOpeningHoursPeriod for more information. The opening Hours for Thursday See AssetOpeningHoursPeriod for more information. The opening Hours for Friday See AssetOpeningHoursPeriod for more information. The opening Hours for Saturday See AssetOpeningHoursPeriod for more information. The opening Hours for Sunday See AssetOpeningHoursPeriod for more information. Contains the default opening hours to apply to all week days See AssetOpeningHoursPeriod for more information. The opening Hours for Monday See AssetOpeningHoursPeriod for more information. The opening Hours for Tuesday See AssetOpeningHoursPeriod for more information. The opening Hours for Wednesday See AssetOpeningHoursPeriod for more information. The opening Hours for Thursday See AssetOpeningHoursPeriod for more information. The opening Hours for Friday See AssetOpeningHoursPeriod for more information. The opening Hours for Saturday See AssetOpeningHoursPeriod for more information. The opening Hours for Sunday See AssetOpeningHoursPeriod for more information. Contains the default opening hours to apply to all week days See AssetOpeningHoursPeriod for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetopenresponse.html b/dist/documentation/schemas/woosmap_http_schema_assetopenresponse.html
index ca7756d1..2804a03a 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetopenresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetopenresponse.html
@@ -63,11 +63,11 @@ the next opening hours period the opening hours for the day See AssetOpeningHoursPeriod for more information. Boolean value indicating the status of the opening hours the day of the week starting from 1 to 7 the next opening hours period the opening hours for the day See AssetOpeningHoursPeriod for more information. Boolean value indicating the status of the opening hours the day of the week starting from 1 to 7 The Assets collection See AssetRequest for more information. The Assets collection See AssetRequest for more information. Define if the hours comes from a special opening hours day. Define if the hours comes from a special opening hours day.
- One or more locations to use as the finishing point for calculating travel
- distance. The options for the destinations parameter are the same as for the
- origins parameter, described above. In order to reduce URL size,
- encoded polylines
- are also supported using
- Generated from the
- OpenAPI specification.
- ✎ Edit
- Report bug
- Generated from the OpenAPI specification.
-✎ Edit
- Report bug
- the geometry type the geometry type match substrings for localities See MatchedSubstring for more information. match substrings for localities See MatchedSubstring for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleterelated.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleterelated.html
index c4095d10..7eb29e3c 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleterelated.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleterelated.html
@@ -25,11 +25,11 @@ Postal codes related to the locality suggestion. See LocalitiesAutocompleteRelatedItem for more information. Postal codes related to the locality suggestion. See LocalitiesAutocompleteRelatedItem for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html
index 511aa067..287f4c90 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompleteresponse.html
@@ -172,9 +172,9 @@ Contains a unique ID for each suggestion. Please use this ID if you need to give us feedback on results. This ID is also required to perform a Localities Details Request. This field might be removed in the future, please use the An array containing the types of the result See LocalitiesTypesAll for more information. An array containing the types of the result See LocalitiesTypesAll for more information. Contains a unique ID for each suggestion. Please use this ID to give feedback on results. For each component (street_name, postal_code, and locality), it indicates the degree of correspondence with the original query. This value ranges from 0 to 1, with 0 indicating no match with the original query, and enables you to assess the quality of the Geocode's result. See LocalitiesScoresPerComponents for more information. When reverse geocoding with See LocalitiesAddressSummary for more information. An array containing the types of the result See LocalitiesTypesAll for more information. When reverse geocoding with See LocalitiesAddressSummary for more information. An array containing the types of the result See LocalitiesTypesAll for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbycollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbycollectionresponse.html
index 35612c77..9c8b10f7 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbycollectionresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbycollectionresponse.html
@@ -42,11 +42,11 @@ Helps to navigate through paginated results. The array of nearby points of interest. See LocalitiesNearbyResponse for more information. Helps to navigate through paginated results. The array of nearby points of interest. See LocalitiesNearbyResponse for more information. An array containing the categories of the result. This information is now available in the See LocalitiesTypesPoi for more information. The location of the result, in latitude and longitude, eventually associated with a Viewport. The name of the result. Contains a unique ID for each result. Please use this ID to give feedback on results. An array containing the types of the result. See LocalitiesTypesPoi for more information. An array containing the categories of the result. This information is now available in the See LocalitiesTypesPoi for more information. The location of the result, in latitude and longitude, eventually associated with a Viewport. The name of the result. Contains a unique ID for each result. Please use this ID to give feedback on results. An array containing the types of the result. See LocalitiesTypesPoi for more information. Generated from the OpenAPI specification.
✎ Edit
diff --git a/dist/documentation/schemas/woosmap_http_schema_origins.html b/dist/documentation/schemas/woosmap_http_schema_origins.html
deleted file mode 100644
index 577a4df6..00000000
--- a/dist/documentation/schemas/woosmap_http_schema_origins.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
- The starting point for calculating travel distance. You can supply one or more
- locations separated by the pipe character, in the form of latitude/longitude
- coordinates. They are used unchanged to calculate distance. Ensure that no
- space exists between the latitude and longitude values. In order to reduce URL
- size,
- encoded polylines
- are also supported using
- Generated from the
- OpenAPI specification.
- ✎ Edit
- Report bug
- Generated from the OpenAPI specification.
-✎ Edit
- Report bug
-
- Specifies the unit system to use when expressing distance as text. Two
- different units supported:
-
- Generated from the
- OpenAPI specification.
- ✎ Edit
- Report bug
- Generated from the OpenAPI specification.
-✎ Edit
- Report bug
- Contains an array of types describing the Zone. A textual identifier that uniquely identifies a Zone. Textual description of your Zone the status as string Contains an array of types describing the Zone. Contains an array of types describing the Zone. The Zones collection The Zones collection See Zone for more information. The Zones collection See Zone for more information. The Zones collection the status as string The Zones collection See Zone for more information. the status as string The Zones collection See Zone for more information.Required parameters
-- storeId
+- storeId
- ID of the asset to get
-
-
+ ID of the asset to get
diff --git a/dist/documentation/parameters/woosmap_http_parameters_zones.md b/dist/documentation/parameters/woosmap_http_parameters_zones.md
index e1bc07f4..160555fe 100644
--- a/dist/documentation/parameters/woosmap_http_parameters_zones.md
+++ b/dist/documentation/parameters/woosmap_http_parameters_zones.md
@@ -4,13 +4,13 @@
Optional parameters
-- limit
+- limit
- To limit number of zones retrieved (max 50).
+ To limit number of zones retrieved (max 50).
-- offset
+- offset
- To retrieve zones starting from an offset value.
+ To retrieve zones starting from an offset value.
zone_id
Required parameters
-- zone_id
+- zone_id
- ID of the zone to get
-
-
+ ID of the zone to get
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetfeaturecollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_assetfeaturecollectionresponse.html
index faac042f..eb9b8069 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetfeaturecollectionresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetfeaturecollectionresponse.html
@@ -28,9 +28,11 @@
optional
- Array<AssetFeatureResponse>
+ >>
| optional | Array<[AssetFeatureResponse](#AssetFeatureResponse "AssetFeatureResponse")> | features
| optional | [Pagination](#Pagination "Pagination") | See [Pagination](#Pagination "Pagination") for more information. |
-| pagination
| optional | string | type
| optional | Array\<[AssetFeatureResponse](#AssetFeatureResponse "AssetFeatureResponse")\> | features
| optional | [Pagination](#Pagination "Pagination") | See [Pagination](#Pagination "Pagination") for more information. |
+| pagination
| optional | string | typeExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.html b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.html
index bb055b3e..7439f883 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.html
@@ -25,11 +25,11 @@
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
See
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.md b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.md
index 05da3640..21dbce8d 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.md
+++ b/dist/documentation/schemas/woosmap_http_schema_assetopeninghoursspecial.md
@@ -4,10 +4,10 @@
An object describing the special opening hours of an Asset.
-| Field | Required | Type | Description |
-| :-------------------------------------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-|
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 2015-02-07
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
+| Field | Required | Type | Description |
+| :-------------------------------------------------------------------------------------------------------------------- | -------- | -------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| 2015-02-08
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 2015-02-07
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
2015-02-08
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
optional
- Array<AssetOpeningHoursPeriod>
+ >>
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 1
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 2
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 3
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 4
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 5
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 6
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | 7
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | default
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 1
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 2
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 3
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 4
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 5
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 6
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | 7
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | defaultAssetOpenResponse
optional
- Array<AssetOpeningHoursPeriod>
+ >>
| optional | [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
-| current_slice
| optional | object | next_opening
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | open_hours
| optional | boolean | open_now
| optional | integer | week_day
| optional | [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
+| current_slice
| optional | object | next_opening
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | open_hours
| optional | boolean | open_now
| optional | integer | week_dayExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetscollectionrequest.html b/dist/documentation/schemas/woosmap_http_schema_assetscollectionrequest.html
index f62850f6..6bd484a0 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetscollectionrequest.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetscollectionrequest.html
@@ -25,8 +25,9 @@
required
- Array<AssetRequest>
+ Array<AssetRequest>
| **required** | Array<[AssetRequest](#AssetRequest "AssetRequest")> | stores
| **required** | Array\<[AssetRequest](#AssetRequest "AssetRequest")\> | storesExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.html b/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.html
index becbd6a1..f2e93bf1 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.html
+++ b/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.html
@@ -25,11 +25,11 @@
optional
- Array<AssetOpeningHoursPeriod>
+ >>
See
diff --git a/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.md b/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.md
index 05004e53..8ed88ba0 100644
--- a/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.md
+++ b/dist/documentation/schemas/woosmap_http_schema_assetweeklyopeninghoursperiod.md
@@ -4,10 +4,10 @@
The opening Hours for Monday
-| Field | Required | Type | Description |
-| :----------------------------------------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------- |
-|
| optional | Array<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")> | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
-| hours
| optional | boolean | isSpecial
| optional | Array\<[AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod")\> | See [AssetOpeningHoursPeriod](#AssetOpeningHoursPeriod "AssetOpeningHoursPeriod") for more information. |
+| hours
| optional | boolean | isSpecialExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_destinations.html b/dist/documentation/schemas/woosmap_http_schema_destinations.html
deleted file mode 100644
index 9f09216d..00000000
--- a/dist/documentation/schemas/woosmap_http_schema_destinations.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-Destinations
-enc:encoded-polyline:
-Destinations
-
-One or more locations to use as the finishing point for calculating travel distance. The options for the destinations parameter are the same as for the origins parameter, described above. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`
-
-GeoJsonGeometry
optional
- Array<GeoJsonCoords>
+ >>
See GeoJsonCoords for
diff --git a/dist/documentation/schemas/woosmap_http_schema_geojsongeometry.md b/dist/documentation/schemas/woosmap_http_schema_geojsongeometry.md
index a4f6d437..2837f1a0 100644
--- a/dist/documentation/schemas/woosmap_http_schema_geojsongeometry.md
+++ b/dist/documentation/schemas/woosmap_http_schema_geojsongeometry.md
@@ -12,10 +12,10 @@ To display on the map, simply wrap this object in a feature:
}
```
-| Field | Required | Type | Description |
-| :------------------------------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-|
| optional | Array<[GeoJsonCoords](#GeoJsonCoords "GeoJsonCoords")> | See [GeoJsonCoords](#GeoJsonCoords "GeoJsonCoords") for more information. |
-| coordinates
| optional | string | type
| optional | Array\<[GeoJsonCoords](#GeoJsonCoords "GeoJsonCoords")\> | See [GeoJsonCoords](#GeoJsonCoords "GeoJsonCoords") for more information. |
+| coordinates
| optional | string | typeExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html
index 66f53b40..425e97e2 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.html
@@ -25,11 +25,11 @@
optional
- Array<LocalitiesAutocompleteResponse>
+ >>
See
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md
index 90a9ab81..6bc77bf1 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletecollectionresponse.md
@@ -4,9 +4,9 @@
Localities Collection Response containing Localities
-| Field | Required | Type | Description |
-| :------------------------------------------------------------------------------------------------------------------------------------ | -------- | --------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
-|
| optional | Array<[LocalitiesAutocompleteResponse](#LocalitiesAutocompleteResponse "LocalitiesAutocompleteResponse")> | See [LocalitiesAutocompleteResponse](#LocalitiesAutocompleteResponse "LocalitiesAutocompleteResponse") for more information. |
+| Field | Required | Type | Description |
+| :------------------------------------------------------------------------------------------------------------------------------------ | -------- | ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
+| localities
| optional | Array\<[LocalitiesAutocompleteResponse](#LocalitiesAutocompleteResponse "LocalitiesAutocompleteResponse")\> | See [LocalitiesAutocompleteResponse](#LocalitiesAutocompleteResponse "LocalitiesAutocompleteResponse") for more information. |
localitiesExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletematchedfields.html b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletematchedfields.html
index c6e69a33..a926efb1 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletematchedfields.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesautocompletematchedfields.html
@@ -30,9 +30,9 @@
optional
- Array<MatchedSubstring>
+ >>
| optional | Array<[MatchedSubstring](#MatchedSubstring "MatchedSubstring")> | descriptiondescription
| optional | Array\<[MatchedSubstring](#MatchedSubstring "MatchedSubstring")\> | descriptiondescription
optional
- Array<LocalitiesAutocompleteRelatedItem>
+ >>
| optional | Array<[LocalitiesAutocompleteRelatedItem](#LocalitiesAutocompleteRelatedItem "LocalitiesAutocompleteRelatedItem")> | postal_codes
| optional | Array\<[LocalitiesAutocompleteRelatedItem](#LocalitiesAutocompleteRelatedItem "LocalitiesAutocompleteRelatedItem")\> | postal_codes
optional
- Array<LocalitiesTypesAll>
+ >>
| optional | string | public_id
| optional | [LocalitiesAutocompleteRelated](#LocalitiesAutocompleteRelated "LocalitiesAutocompleteRelated") | See [LocalitiesAutocompleteRelated](#LocalitiesAutocompleteRelated "LocalitiesAutocompleteRelated") for more information. |
| related
| optional | string | typetypes field which is more exhaustive.
| optional | Array<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")> | types
| optional | Array\<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")\> | typesExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.html
index 30405c45..38fcc815 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.html
@@ -29,11 +29,11 @@
optional
- Array<LocalitiesGeocodeResponse>
+ >>
See
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.md b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.md
index b0d51001..82fdc379 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.md
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocodecollectionresponse.md
@@ -4,9 +4,9 @@
Localities Geocode Collection Response. Contains one or more detailed Localities or Addresses in FR or in the UK, with coordinates (default to one result for reverse geocoding)
-| Field | Required | Type | Description |
-| :------------------------------------------------------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------- |
-|
| optional | Array<[LocalitiesGeocodeResponse](#LocalitiesGeocodeResponse "LocalitiesGeocodeResponse")> | See [LocalitiesGeocodeResponse](#LocalitiesGeocodeResponse "LocalitiesGeocodeResponse") for more information. |
+| Field | Required | Type | Description |
+| :------------------------------------------------------------------------------------------------------------------------- | -------- | -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
+| results
| optional | Array\<[LocalitiesGeocodeResponse](#LocalitiesGeocodeResponse "LocalitiesGeocodeResponse")\> | See [LocalitiesGeocodeResponse](#LocalitiesGeocodeResponse "LocalitiesGeocodeResponse") for more information. |
resultsExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html
index 80ce5e06..f7cb61c9 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesgeocoderesponse.html
@@ -219,11 +219,11 @@
optional
- Array<LocalitiesAddressSummary>
+ >>
optional
- Array<LocalitiesTypesAll>
+ >>
| optional | string | public_id
| optional | [LocalitiesScoresPerComponents](#LocalitiesScoresPerComponents "LocalitiesScoresPerComponents") | scores_per_components
| optional | [LocalitiesStatus](#LocalitiesStatus "LocalitiesStatus") | See [LocalitiesStatus](#LocalitiesStatus "LocalitiesStatus") for more information. |
-| status
| optional | Array<[LocalitiesAddressSummary](#LocalitiesAddressSummary "LocalitiesAddressSummary")> | sub_buildingslist_sub_buildings=true, this field will contain a list of precise addresses that can be found at that location, i.e. all flats within a building.
| optional | Array<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")> | types
| optional | Array\<[LocalitiesAddressSummary](#LocalitiesAddressSummary "LocalitiesAddressSummary")\> | sub_buildingslist_sub_buildings=true, this field will contain a list of precise addresses that can be found at that location, i.e. all flats within a building.
| optional | Array\<[LocalitiesTypesAll](#LocalitiesTypesAll "LocalitiesTypesAll")\> | types
optional
- Array<LocalitiesNearbyResponse>
+ >>
| optional | object | pagination
| optional | Array<[LocalitiesNearbyResponse](#LocalitiesNearbyResponse "LocalitiesNearbyResponse")> | results
| optional | object | pagination
| optional | Array\<[LocalitiesNearbyResponse](#LocalitiesNearbyResponse "LocalitiesNearbyResponse")\> | resultsExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html
index 7c9639d6..917568e7 100644
--- a/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_localitiesnearbyresponse.html
@@ -48,9 +48,9 @@
optional
- Array<LocalitiesTypesPoi>
+ >>
optional
- Array<LocalitiesTypesPoi>
+ >>
| optional | [AddressComponents](#AddressComponents "AddressComponents") | See [AddressComponents](#AddressComponents "AddressComponents") for more information. |
-| address_components
| optional | Array<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")> | categoriestypes field and will be removed.
| optional | [FormattedAddress](#FormattedAddress "FormattedAddress") | See [FormattedAddress](#FormattedAddress "FormattedAddress") for more information. |
-| formatted_address
| optional | object | geometry
| optional | string | name
| optional | string | public_id
| optional | Array<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")> | types
| optional | [AddressComponents](#AddressComponents "AddressComponents") | See [AddressComponents](#AddressComponents "AddressComponents") for more information. |
+| address_components
| optional | Array\<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")\> | categoriestypes field and will be removed.
| optional | [FormattedAddress](#FormattedAddress "FormattedAddress") | See [FormattedAddress](#FormattedAddress "FormattedAddress") for more information. |
+| formatted_address
| optional | object | geometry
| optional | string | name
| optional | string | public_id
| optional | Array\<[LocalitiesTypesPoi](#LocalitiesTypesPoi "LocalitiesTypesPoi")\> | typesOrigins
-enc:encoded-polyline:
-Origins
-
-The starting point for calculating travel distance. You can supply one or more locations separated by the pipe character, in the form of latitude/longitude coordinates. They are used unchanged to calculate distance. Ensure that no space exists between the latitude and longitude values. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`
-
-Units
-
-
-metric (default) returns distances in kilometers and meters
- imperial returns distances in miles and feetUnits
-
-Specifies the unit system to use when expressing distance as text. Two different units supported:
-
-- `metric` (default) returns distances in kilometers and meters
-- `imperial` returns distances in miles and feet
-
-
optional
- Array<string>
+ Array<string>
| **required** | string | zone_id
| optional | string | description
| optional | string | status
| optional | Array<string> | types
| optional | Array\<string\> | typesExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_zonescollectionrequest.html b/dist/documentation/schemas/woosmap_http_schema_zonescollectionrequest.html
index 6c0d21bd..478a36a4 100644
--- a/dist/documentation/schemas/woosmap_http_schema_zonescollectionrequest.html
+++ b/dist/documentation/schemas/woosmap_http_schema_zonescollectionrequest.html
@@ -24,7 +24,7 @@
required
- Array<Zone>
+ Array<Zone>
| **required** | Array<[Zone](#Zone "Zone")> | zones
| **required** | Array\<[Zone](#Zone "Zone")\> | zonesExample
diff --git a/dist/documentation/schemas/woosmap_http_schema_zonescollectionresponse.html b/dist/documentation/schemas/woosmap_http_schema_zonescollectionresponse.html
index 3fadd07b..80fda941 100644
--- a/dist/documentation/schemas/woosmap_http_schema_zonescollectionresponse.html
+++ b/dist/documentation/schemas/woosmap_http_schema_zonescollectionresponse.html
@@ -41,7 +41,7 @@
optional
- Array<Zone>
+ Array<Zone>
| optional | string | status
| optional | Array<[Zone](#Zone "Zone")> | zones
| optional | string | status
| optional | Array\<[Zone](#Zone "Zone")\> | zonesExample
diff --git a/dist/merged-woosmap-openapi3.json b/dist/merged-woosmap-openapi3.json
index d7539a21..7885973d 100755
--- a/dist/merged-woosmap-openapi3.json
+++ b/dist/merged-woosmap-openapi3.json
@@ -12,11 +12,6 @@
"name": "Woosmap API"
}
},
- "servers": [
- {
- "url": "https://api.woosmap.com"
- }
- ],
"tags": [
{
"name": "Search",
@@ -108,6 +103,11 @@
],
"paths": {
"/stores": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"post": {
"summary": "Create your Assets",
"operationId": "createStores",
@@ -624,6 +624,11 @@
}
},
"/stores/{storeId}": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Get Asset from ID",
"operationId": "getStore",
@@ -912,6 +917,11 @@
}
},
"/stores/replace": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"post": {
"summary": "Replace all assets",
"operationId": "replaceStores",
@@ -1141,6 +1151,7 @@
}
},
"/datasets/{dataset_id}": {
+ "servers": [],
"get": {
"tags": [
"Datasets API"
@@ -1525,6 +1536,7 @@
}
},
"/datasets/": {
+ "servers": [],
"get": {
"tags": [
"Datasets API"
@@ -1762,6 +1774,7 @@
}
},
"/datasets/{dataset_id}/status": {
+ "servers": [],
"get": {
"tags": [
"Datasets API"
@@ -1884,6 +1897,7 @@
}
},
"/datasets/{dataset_id}/import": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -2006,6 +2020,7 @@
}
},
"/datasets/hooks/reimport/{reimport_key}": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -2100,6 +2115,7 @@
}
},
"/datasets/{dataset_id}/features/search/": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -2276,6 +2292,7 @@
}
},
"/datasets/{dataset_id}/features/nearby/": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -2538,6 +2555,7 @@
}
},
"/datasets/{dataset_id}/features/intersects/": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -2800,6 +2818,7 @@
}
},
"/datasets/{dataset_id}/features/contains/": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -3062,6 +3081,7 @@
}
},
"/datasets/{dataset_id}/features/within/": {
+ "servers": [],
"post": {
"tags": [
"Datasets API"
@@ -3274,6 +3294,7 @@
}
},
"/datasets/{dataset_id}/features/{feature_id}": {
+ "servers": [],
"get": {
"tags": [
"Datasets API"
@@ -3439,6 +3460,7 @@
}
},
"/distance/route/json/": {
+ "servers": [],
"get": {
"tags": [
"Distance API"
@@ -3972,6 +3994,7 @@
}
},
"/distance/distancematrix/json/": {
+ "servers": [],
"get": {
"tags": [
"Distance API"
@@ -4506,6 +4529,7 @@
}
},
"/distance/isochrone/json/": {
+ "servers": [],
"get": {
"tags": [
"Distance API"
@@ -4934,6 +4958,7 @@
}
},
"/distance/tolls/json/": {
+ "servers": [],
"get": {
"tags": [
"Distance API"
@@ -5393,6 +5418,7 @@
}
},
"/distance/matrix/async/": {
+ "servers": [],
"post": {
"tags": [
"Distance Async API"
@@ -5520,6 +5546,7 @@
}
},
"/distance/matrix/async/{matrix_id}/status": {
+ "servers": [],
"get": {
"tags": [
"Distance Async API"
@@ -5644,6 +5671,7 @@
}
},
"/distance/matrix/async/{matrix_id}": {
+ "servers": [],
"get": {
"tags": [
"Distance Async API"
@@ -5785,6 +5813,11 @@
}
},
"/geolocation/position": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Geolocation from an IP address",
"operationId": "getGeolocationPosition",
@@ -5929,6 +5962,11 @@
}
},
"/geolocation/stores": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Assets nearby a Geolocation",
"operationId": "getStoresFromGeolocationPosition",
@@ -6224,6 +6262,11 @@
}
},
"/geolocation/timezone": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Timezone",
"operationId": "getTimezone",
@@ -6365,6 +6408,12 @@
}
},
"/indoor/venues/{venue_id}": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_get_venue_by_key",
"summary": "Get Venue By Key",
@@ -6495,6 +6544,12 @@
}
},
"/indoor/venues": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_get_venues_by_key",
"summary": "Get Venues By Key",
@@ -6638,6 +6693,12 @@
}
},
"/indoor/style": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_get_indoor_style",
"summary": "Get Indoor Style",
@@ -6784,6 +6845,12 @@
}
},
"/indoor/distancematrix/{venue_id}": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_distance_matrix",
"summary": "Distance Matrix",
@@ -6977,6 +7044,12 @@
}
},
"/indoor/directions/{venue_id}": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_directions",
"summary": "Directions",
@@ -7225,6 +7298,12 @@
}
},
"/indoor/venues/{venue_id}/pois/search": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_search_venue_pois_by_key",
"summary": "Search Venue Pois By Key",
@@ -7498,6 +7577,12 @@
}
},
"/indoor/venues/{venue_id}/pois/autocomplete": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_autocomplete_venue_pois_by_key",
"summary": "Autocomplete Venue Pois By Key",
@@ -7758,6 +7843,12 @@
}
},
"/indoor/venues/{venue_id}/features/{feature_id}": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_get_feature_by_key",
"summary": "Get Feature By Key",
@@ -7899,6 +7990,12 @@
}
},
"/indoor/venues/{venue_id}/tiles/{z}/{x}/{y}.pbf": {
+ "servers": [
+ {
+ "description": "Woosmap",
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"operationId": "api_routers_indoor_tiles_by_key",
"summary": "Tiles By Key",
@@ -8072,6 +8169,11 @@
}
},
"/localities/autocomplete": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Autocomplete for Localities",
"operationId": "localitiesAutocomplete",
@@ -8308,6 +8410,11 @@
}
},
"/localities/details": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Details of a Locality",
"operationId": "localitiesDetails",
@@ -8600,6 +8707,11 @@
}
},
"/localities/geocode": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Geocode a locality or Reverse Geocode a latlng",
"operationId": "localitiesGeocode",
@@ -8970,6 +9082,11 @@
}
},
"/localities/nearby": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Nearby points of interest",
"operationId": "localitiesNearby",
@@ -9542,6 +9659,7 @@
}
},
"/maps/static": {
+ "servers": [],
"get": {
"tags": [
"Static Map API"
@@ -9840,6 +9958,11 @@
}
},
"/stores/search": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Search for assets",
"operationId": "storeSearch",
@@ -10160,6 +10283,11 @@
}
},
"/stores/autocomplete": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Autocomplete for assets",
"operationId": "storeAutocomplete",
@@ -10332,6 +10460,11 @@
}
},
"/stores/search/bounds": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Bounds for assets",
"operationId": "storesBounds",
@@ -10466,6 +10599,7 @@
}
},
"/transit/route": {
+ "servers": [],
"get": {
"tags": [
"Transit API"
@@ -10658,6 +10792,7 @@
}
},
"/what3words/convert-to-3wa": {
+ "servers": [],
"get": {
"tags": [
"Woosmap for what3words API"
@@ -10813,6 +10948,7 @@
}
},
"/what3words/convert-to-address": {
+ "servers": [],
"get": {
"tags": [
"Woosmap for what3words API"
@@ -10944,6 +11080,7 @@
}
},
"/what3words/autosuggest": {
+ "servers": [],
"get": {
"tags": [
"Woosmap for what3words API"
@@ -11219,6 +11356,11 @@
}
},
"/zones": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "List your Zones",
"operationId": "listZones",
@@ -11765,6 +11907,11 @@
}
},
"/zones/{zone_id}": {
+ "servers": [
+ {
+ "url": "https://api.woosmap.com"
+ }
+ ],
"get": {
"summary": "Get Zone from ID",
"operationId": "getZone",
@@ -12336,111 +12483,6 @@
"example": 20
},
"in": "query"
- },
- "Woosmap_Platform_API_Reference_geolocation_ip_address": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_ip_address"
- },
- "Woosmap_Platform_API_Reference_geolocation_limit": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_limit"
- },
- "Woosmap_Platform_API_Reference_localities_address": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_address"
- },
- "Woosmap_Platform_API_Reference_localities_addresses_per_page": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_addresses_per_page"
- },
- "Woosmap_Platform_API_Reference_localities_cc_format": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_cc_format"
- },
- "Woosmap_Platform_API_Reference_localities_custom_description": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_custom_description"
- },
- "Woosmap_Platform_API_Reference_localities_data": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_data"
- },
- "Woosmap_Platform_API_Reference_localities_excluded_types": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_excluded_types"
- },
- "Woosmap_Platform_API_Reference_localities_extended": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_extended"
- },
- "Woosmap_Platform_API_Reference_localities_fields": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_fields"
- },
- "Woosmap_Platform_API_Reference_localities_geocode_types": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_geocode_types"
- },
- "Woosmap_Platform_API_Reference_localities_input": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_input"
- },
- "Woosmap_Platform_API_Reference_localities_language": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_language-2"
- },
- "Woosmap_Platform_API_Reference_localities_latlng": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_latlng"
- },
- "Woosmap_Platform_API_Reference_localities_list_sub_buildings": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_list_sub_buildings"
- },
- "Woosmap_Platform_API_Reference_localities_localities_components": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_localities_components"
- },
- "Woosmap_Platform_API_Reference_localities_location": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_location"
- },
- "Woosmap_Platform_API_Reference_localities_nearby_excluded_types": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_excluded_types"
- },
- "Woosmap_Platform_API_Reference_localities_nearby_types": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_nearby_types"
- },
- "Woosmap_Platform_API_Reference_localities_page": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_page-2"
- },
- "Woosmap_Platform_API_Reference_localities_public_id": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_public_id"
- },
- "Woosmap_Platform_API_Reference_localities_radius": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_radius-2"
- },
- "Woosmap_Platform_API_Reference_localities_types": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_types"
- },
- "Woosmap_Platform_API_Reference_search_encoded_polyline": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_encoded_polyline"
- },
- "Woosmap_Platform_API_Reference_search_language": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_language"
- },
- "Woosmap_Platform_API_Reference_search_lat": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_lat"
- },
- "Woosmap_Platform_API_Reference_search_limit": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_limit-2"
- },
- "Woosmap_Platform_API_Reference_search_lng": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_lng"
- },
- "Woosmap_Platform_API_Reference_search_page": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_page"
- },
- "Woosmap_Platform_API_Reference_search_query": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_query"
- },
- "Woosmap_Platform_API_Reference_search_radius": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_radius"
- },
- "Woosmap_Platform_API_Reference_search_stores_by_page": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_stores_by_page"
- },
- "Woosmap_Platform_API_Reference_search_zone": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_zone"
- },
- "Woosmap_Platform_API_Reference_zones_limit": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_limit-3"
- },
- "Woosmap_Platform_API_Reference_zones_offset": {
- "$ref": "#/components/parameters/Woosmap_Platform_API_Reference_offset"
}
},
"schemas": {
@@ -15860,28 +15902,6 @@
}
}
},
- "Woosmap_Platform_API_Reference_Destinations": {
- "title": "Destinations",
- "example": "48.709,2.403|48.768,2.338",
- "type": "string",
- "description": "One or more locations to use as the finishing point for calculating travel distance. The options for the destinations parameter are the same as for the origins parameter, described above. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`\n"
- },
- "Woosmap_Platform_API_Reference_Origins": {
- "title": "Origins",
- "example": "48.709,2.403",
- "type": "string",
- "description": "The starting point for calculating travel distance. You can supply one or more locations separated by the pipe character, in the form of latitude/longitude coordinates. They are used unchanged to calculate distance. Ensure that no space exists between the latitude and longitude values. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`\n"
- },
- "Woosmap_Platform_API_Reference_Units": {
- "title": "Units",
- "example": "metric",
- "type": "string",
- "enum": [
- "imperial",
- "metric"
- ],
- "description": "Specifies the unit system to use when expressing distance as text. Two different units supported:\n * `metric` (default) returns distances in kilometers and meters\n * `imperial` returns distances in miles and feet\n"
- },
"Maps_AuthenticationErrorResponse": {
"properties": {
"detail": {
diff --git a/dist/woosmap-openapi3.json b/dist/woosmap-openapi3.json
index 7220d3c7..6317decd 100755
--- a/dist/woosmap-openapi3.json
+++ b/dist/woosmap-openapi3.json
@@ -4894,111 +4894,6 @@
"example": 20
},
"in": "query"
- },
- "geolocation_ip_address": {
- "$ref": "#/components/parameters/ip_address"
- },
- "geolocation_limit": {
- "$ref": "#/components/parameters/limit"
- },
- "localities_address": {
- "$ref": "#/components/parameters/address"
- },
- "localities_addresses_per_page": {
- "$ref": "#/components/parameters/addresses_per_page"
- },
- "localities_cc_format": {
- "$ref": "#/components/parameters/cc_format"
- },
- "localities_custom_description": {
- "$ref": "#/components/parameters/custom_description"
- },
- "localities_data": {
- "$ref": "#/components/parameters/data"
- },
- "localities_excluded_types": {
- "$ref": "#/components/parameters/excluded_types"
- },
- "localities_extended": {
- "$ref": "#/components/parameters/extended"
- },
- "localities_fields": {
- "$ref": "#/components/parameters/fields"
- },
- "localities_geocode_types": {
- "$ref": "#/components/parameters/geocode_types"
- },
- "localities_input": {
- "$ref": "#/components/parameters/input"
- },
- "localities_language": {
- "$ref": "#/components/parameters/language-2"
- },
- "localities_latlng": {
- "$ref": "#/components/parameters/latlng"
- },
- "localities_list_sub_buildings": {
- "$ref": "#/components/parameters/list_sub_buildings"
- },
- "localities_localities_components": {
- "$ref": "#/components/parameters/localities_components"
- },
- "localities_location": {
- "$ref": "#/components/parameters/location"
- },
- "localities_nearby_excluded_types": {
- "$ref": "#/components/parameters/nearby_excluded_types"
- },
- "localities_nearby_types": {
- "$ref": "#/components/parameters/nearby_types"
- },
- "localities_page": {
- "$ref": "#/components/parameters/page-2"
- },
- "localities_public_id": {
- "$ref": "#/components/parameters/public_id"
- },
- "localities_radius": {
- "$ref": "#/components/parameters/radius-2"
- },
- "localities_types": {
- "$ref": "#/components/parameters/types"
- },
- "search_encoded_polyline": {
- "$ref": "#/components/parameters/encoded_polyline"
- },
- "search_language": {
- "$ref": "#/components/parameters/language"
- },
- "search_lat": {
- "$ref": "#/components/parameters/lat"
- },
- "search_limit": {
- "$ref": "#/components/parameters/limit-2"
- },
- "search_lng": {
- "$ref": "#/components/parameters/lng"
- },
- "search_page": {
- "$ref": "#/components/parameters/page"
- },
- "search_query": {
- "$ref": "#/components/parameters/query"
- },
- "search_radius": {
- "$ref": "#/components/parameters/radius"
- },
- "search_stores_by_page": {
- "$ref": "#/components/parameters/stores_by_page"
- },
- "search_zone": {
- "$ref": "#/components/parameters/zone"
- },
- "zones_limit": {
- "$ref": "#/components/parameters/limit-3"
- },
- "zones_offset": {
- "$ref": "#/components/parameters/offset"
}
},
"schemas": {
@@ -8417,28 +8312,6 @@
"type": "string"
}
}
- },
- "Destinations": {
- "title": "Destinations",
- "example": "48.709,2.403|48.768,2.338",
- "type": "string",
- "description": "One or more locations to use as the finishing point for calculating travel distance. The options for the destinations parameter are the same as for the origins parameter, described above. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`\n"
- },
- "Origins": {
- "title": "Origins",
- "example": "48.709,2.403",
- "type": "string",
- "description": "The starting point for calculating travel distance. You can supply one or more locations separated by the pipe character, in the form of latitude/longitude coordinates. They are used unchanged to calculate distance. Ensure that no space exists between the latitude and longitude values. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`\n"
- },
- "Units": {
- "title": "Units",
- "example": "metric",
- "type": "string",
- "enum": [
- "imperial",
- "metric"
- ],
- "description": "Specifies the unit system to use when expressing distance as text. Two different units supported:\n * `metric` (default) returns distances in kilometers and meters\n * `imperial` returns distances in miles and feet\n"
}
},
"securitySchemes": {
diff --git a/dist/woosmap-openapi3.yml b/dist/woosmap-openapi3.yml
index 9b4b2735..fe9ed797 100755
--- a/dist/woosmap-openapi3.yml
+++ b/dist/woosmap-openapi3.yml
@@ -4570,76 +4570,6 @@ components:
minimum: 1
example: 20
in: query
- geolocation_ip_address:
- $ref: '#/components/parameters/ip_address'
- geolocation_limit:
- $ref: '#/components/parameters/limit'
- localities_address:
- $ref: '#/components/parameters/address'
- localities_addresses_per_page:
- $ref: '#/components/parameters/addresses_per_page'
- localities_cc_format:
- $ref: '#/components/parameters/cc_format'
- localities_custom_description:
- $ref: '#/components/parameters/custom_description'
- localities_data:
- $ref: '#/components/parameters/data'
- localities_excluded_types:
- $ref: '#/components/parameters/excluded_types'
- localities_extended:
- $ref: '#/components/parameters/extended'
- localities_fields:
- $ref: '#/components/parameters/fields'
- localities_geocode_types:
- $ref: '#/components/parameters/geocode_types'
- localities_input:
- $ref: '#/components/parameters/input'
- localities_language:
- $ref: '#/components/parameters/language-2'
- localities_latlng:
- $ref: '#/components/parameters/latlng'
- localities_list_sub_buildings:
- $ref: '#/components/parameters/list_sub_buildings'
- localities_localities_components:
- $ref: '#/components/parameters/localities_components'
- localities_location:
- $ref: '#/components/parameters/location'
- localities_nearby_excluded_types:
- $ref: '#/components/parameters/nearby_excluded_types'
- localities_nearby_types:
- $ref: '#/components/parameters/nearby_types'
- localities_page:
- $ref: '#/components/parameters/page-2'
- localities_public_id:
- $ref: '#/components/parameters/public_id'
- localities_radius:
- $ref: '#/components/parameters/radius-2'
- localities_types:
- $ref: '#/components/parameters/types'
- search_encoded_polyline:
- $ref: '#/components/parameters/encoded_polyline'
- search_language:
- $ref: '#/components/parameters/language'
- search_lat:
- $ref: '#/components/parameters/lat'
- search_limit:
- $ref: '#/components/parameters/limit-2'
- search_lng:
- $ref: '#/components/parameters/lng'
- search_page:
- $ref: '#/components/parameters/page'
- search_query:
- $ref: '#/components/parameters/query'
- search_radius:
- $ref: '#/components/parameters/radius'
- search_stores_by_page:
- $ref: '#/components/parameters/stores_by_page'
- search_zone:
- $ref: '#/components/parameters/zone'
- zones_limit:
- $ref: '#/components/parameters/limit-3'
- zones_offset:
- $ref: '#/components/parameters/offset'
schemas:
LatLngLiteral:
title: LatLngLiteral
@@ -7022,29 +6952,6 @@ components:
description: message returned with the 2OO Zones request
example: Zones successfully updated.
type: string
- Destinations:
- title: Destinations
- example: 48.709,2.403|48.768,2.338
- type: string
- description: |
- One or more locations to use as the finishing point for calculating travel distance. The options for the destinations parameter are the same as for the origins parameter, described above. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`
- Origins:
- title: Origins
- example: 48.709,2.403
- type: string
- description: |
- The starting point for calculating travel distance. You can supply one or more locations separated by the pipe character, in the form of latitude/longitude coordinates. They are used unchanged to calculate distance. Ensure that no space exists between the latitude and longitude values. In order to reduce URL size, [encoded polylines](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) are also supported using `enc:encoded-polyline:`
- Units:
- title: Units
- example: metric
- type: string
- enum:
- - imperial
- - metric
- description: |
- Specifies the unit system to use when expressing distance as text. Two different units supported:
- * `metric` (default) returns distances in kilometers and meters
- * `imperial` returns distances in miles and feet
securitySchemes:
PrivateApiKeyAuth:
description: A Private key generated specifically to authenticate API requests on server side. Required for Data management API. See how to [register a Private API Key](https://developers.woosmap.com/support/api-keys/#registering-a-woosmap-private-api-key).
diff --git a/dist/woosmap-postman.json b/dist/woosmap-postman.json
index fc829494..d61ada6e 100755
--- a/dist/woosmap-postman.json
+++ b/dist/woosmap-postman.json
@@ -10,7 +10,7 @@
"description": "Manage the store and asset data within your Woosmap project. It provides full CRUD (Create, Read, Update, Delete) operations through standard HTTP methods, supporting batch imports up to 15MB, along with an atomic replace operation for swapping entire datasets without downtime.\nThis endpoint handles the complete lifecycle of your location data. You can add new assets in batch using POST, update existing assets with PUT, retrieve assets as GeoJSON with GET, remove individual or all assets with DELETE, and atomically replace your entire dataset using the replace operation. All write operations accept JSON payloads containing an array of store objects, each with a unique storeId, name, and geographic coordinates.\n\n``` POST|GET|PUT|DELETE https://api.woosmap.com/stores ```\n",
"item": [
{
- "id": "b8372a81-7138-427d-b075-8f3b90f27f43",
+ "id": "b9964e42-aec7-4fec-affa-2468cd5bd79e",
"name": "Create your Assets",
"request": {
"name": "Create your Assets",
@@ -44,7 +44,7 @@
"method": "POST",
"body": {
"mode": "raw",
- "raw": "{\n \"stores\": [\n {\n \"location\": {\n \"lat\": \"