Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ce/docs/AvailableEntityKeys.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Contains unique time series and attribute key names discovered from entities mat
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| **entityTypes** | **Set\<EntityType\>** | Set of entity types found among the matched entities. | |
| **timeseries** | **Set\<String\>** | | |
| **attribute** | **Set\<String\>** | | |
| **timeseries** | **Set\<String\>** | List of unique time series key names available on the matched entities. | |
| **attribute** | **Set\<String\>** | List of unique attribute key names available on the matched entities. | |



Expand Down
2 changes: 1 addition & 1 deletion ce/docs/AvailableEntityKeysV2.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Contains unique time series and attribute key names discovered from entities mat
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| **entityTypes** | **Set\<EntityType\>** | Set of entity types found among the matched entities. | |
| **timeseries** | **List\<KeyInfo\>** | | [optional] |
| **timeseries** | **List\<KeyInfo\>** | List of unique time series keys available on the matched entities, sorted alphabetically. Omitted when timeseries keys were not requested. | [optional] |
| **attributes** | **Map\<String, List<KeyInfo>\>** | Map of attribute scope to the list of unique attribute keys available on the matched entities. Only scopes supported by the matched entity types are included. Omitted when attribute keys were not requested or when none of the requested scopes apply to the matched entity types. | [optional] |


Expand Down
2 changes: 1 addition & 1 deletion ce/docs/EntityDataDiff.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#### WidgetsBundleExportData *(extends EntityExportData, entityType=`WIDGETS_BUNDLE`)*
| Name | Type | Description | Notes |
|------|------|-------------|-------|
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | | [optional] |
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | List of widgets in the bundle | [optional] |
| fqns | List<String> | | [optional] |

#### WidgetTypeExportData *(extends EntityExportData, entityType=`WIDGET_TYPE`)*
Expand Down
2 changes: 1 addition & 1 deletion ce/docs/EntityExportData.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Base export container for ThingsBoard entities
#### WidgetsBundleExportData *(entityType=`WIDGETS_BUNDLE`)*
| Name | Type | Description | Notes |
|------|------|-------------|-------|
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | | [optional] |
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | List of widgets in the bundle | [optional] |
| fqns | List<String> | | [optional] |

#### WidgetTypeExportData *(entityType=`WIDGET_TYPE`)*
Expand Down
2 changes: 1 addition & 1 deletion ce/docs/TbChatRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#### TbUserMessage
| Name | Type | Description | Notes |
|------|------|-------------|-------|
| contents | List<TbContent> | | |
| contents | List<TbContent> | A list of content parts that make up the complete user prompt | |

#### AiModelConfig
| Name | Type | Description | Notes |
Expand Down
2 changes: 1 addition & 1 deletion ce/docs/TbUserMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| **contents** | **List\<TbContent\>** | | |
| **contents** | **List\<TbContent\>** | A list of content parts that make up the complete user prompt | |



Expand Down
2 changes: 1 addition & 1 deletion ce/docs/WidgetsBundleExportData.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
| **widgets** | **List\<com.fasterxml.jackson.databind.JsonNode\>** | | [optional] |
| **widgets** | **List\<com.fasterxml.jackson.databind.JsonNode\>** | List of widgets in the bundle | [optional] |
| **fqns** | **List\<String\>** | | [optional] |


Expand Down
5 changes: 5 additions & 0 deletions ce/spec/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -85011,6 +85011,7 @@
},
"timeseries": {
"type": "array",
"description": "List of unique time series key names available on the matched entities.",
"items": {
"type": "string",
"example": "temperature",
Expand All @@ -85020,6 +85021,7 @@
},
"attribute": {
"type": "array",
"description": "List of unique attribute key names available on the matched entities.",
"items": {
"type": "string",
"example": "serialNumber",
Expand Down Expand Up @@ -85052,6 +85054,7 @@
},
"timeseries": {
"type": "array",
"description": "List of unique time series keys available on the matched entities, sorted alphabetically.\nOmitted when timeseries keys were not requested.",
"items": {
"$ref": "#/components/schemas/KeyInfo"
}
Expand Down Expand Up @@ -99631,6 +99634,7 @@
"properties": {
"contents": {
"type": "array",
"description": "A list of content parts that make up the complete user prompt",
"items": {
"$ref": "#/components/schemas/TbContent"
},
Expand Down Expand Up @@ -101793,6 +101797,7 @@
"properties": {
"widgets": {
"type": "array",
"description": "List of widgets in the bundle",
"items": {
"$ref": "#/components/schemas/JsonNode"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public AvailableEntityKeys addTimeseriesItem(String timeseriesItem) {
}

/**
* Get timeseries
* List of unique time series key names available on the matched entities.
* @return timeseries
*/
@Nonnull
Expand Down Expand Up @@ -142,7 +142,7 @@ public AvailableEntityKeys addAttributeItem(String attributeItem) {
}

/**
* Get attribute
* List of unique attribute key names available on the matched entities.
* @return attribute
*/
@Nonnull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public AvailableEntityKeysV2 addTimeseriesItem(KeyInfo timeseriesItem) {
}

/**
* Get timeseries
* List of unique time series keys available on the matched entities, sorted alphabetically. Omitted when timeseries keys were not requested.
* @return timeseries
*/
@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public TbUserMessage addContentsItem(TbContent contentsItem) {
}

/**
* Get contents
* A list of content parts that make up the complete user prompt
* @return contents
*/
@Nonnull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public WidgetsBundleExportData addWidgetsItem(com.fasterxml.jackson.databind.Jso
}

/**
* Get widgets
* List of widgets in the bundle
* @return widgets
*/
@Nullable
Expand Down
Loading