Skip to content

Commit

Permalink
[Auto Generated] 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Aug 10, 2023
1 parent f90bf9d commit f36fe6f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions documentation/platform/SERVICEABILITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions sdk/platform/PlatformClient.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11370,6 +11370,7 @@ type EntityRegionView_Error = {
value?: string;
};
type EntityRegionView_Items = {
display_name?: string;
name: string;
sub_type: string;
uid: string;
Expand Down
1 change: 1 addition & 0 deletions sdk/platform/PlatformClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -13621,6 +13621,7 @@ class PlatformClient {
*/
/**
* @typedef EntityRegionView_Items
* @property {string} [display_name]
* @property {string} name
* @property {string} sub_type
* @property {string} uid
Expand Down
1 change: 1 addition & 0 deletions sdk/platform/Serviceability/ServiceabilityPlatformModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit f36fe6f

Please sign in to comment.