diff --git a/documentation/platform/SERVICEABILITY.md b/documentation/platform/SERVICEABILITY.md index 160a91279..fd6afd415 100644 --- a/documentation/platform/SERVICEABILITY.md +++ b/documentation/platform/SERVICEABILITY.md @@ -2482,6 +2482,7 @@ Response status_code | Properties | Type | Nullable | Description | | ---------- | ---- | -------- | ----------- | + | display_name | string? | yes | | | name | string | no | | | sub_type | string | no | | | uid | string | no | | diff --git a/package-lock.json b/package-lock.json index 1bd950fd0..c532de5ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2629,9 +2629,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.488", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.488.tgz", - "integrity": "sha512-Dv4sTjiW7t/UWGL+H8ZkgIjtUAVZDgb/PwGWvMsCT7jipzUV/u5skbLXPFKb6iV0tiddVi/bcS2/kUrczeWgIQ==", + "version": "1.4.490", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz", + "integrity": "sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==", "dev": true }, "node_modules/emittery": { diff --git a/sdk/platform/PlatformClient.d.ts b/sdk/platform/PlatformClient.d.ts index f9bc5709d..0e0ca9e31 100644 --- a/sdk/platform/PlatformClient.d.ts +++ b/sdk/platform/PlatformClient.d.ts @@ -11370,6 +11370,7 @@ type EntityRegionView_Error = { value?: string; }; type EntityRegionView_Items = { + display_name?: string; name: string; sub_type: string; uid: string; diff --git a/sdk/platform/PlatformClient.js b/sdk/platform/PlatformClient.js index 46b4ebe7a..0d8691b4c 100644 --- a/sdk/platform/PlatformClient.js +++ b/sdk/platform/PlatformClient.js @@ -13621,6 +13621,7 @@ class PlatformClient { */ /** * @typedef EntityRegionView_Items + * @property {string} [display_name] * @property {string} name * @property {string} sub_type * @property {string} uid diff --git a/sdk/platform/Serviceability/ServiceabilityPlatformModel.js b/sdk/platform/Serviceability/ServiceabilityPlatformModel.js index 409185d3a..51e78e5dc 100644 --- a/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +++ b/sdk/platform/Serviceability/ServiceabilityPlatformModel.js @@ -286,6 +286,7 @@ class ServiceabilityModel { } static EntityRegionView_Items() { return Joi.object({ + display_name: Joi.string().allow(""), name: Joi.string().allow("").required(), sub_type: Joi.string().allow("").required(), uid: Joi.string().allow("").required(),