Skip to content

Commit d1a7fef

Browse files
Merge pull request #59 from thingsboard/auto/update-ce-client-master
Update CE OpenAPI spec in master (from master)
2 parents aff9d36 + baff51f commit d1a7fef

12 files changed

Lines changed: 18 additions & 13 deletions

ce/docs/AvailableEntityKeys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Contains unique time series and attribute key names discovered from entities mat
1010
| Name | Type | Description | Notes |
1111
|------------ | ------------- | ------------- | -------------|
1212
| **entityTypes** | **Set\<EntityType\>** | Set of entity types found among the matched entities. | |
13-
| **timeseries** | **Set\<String\>** | | |
14-
| **attribute** | **Set\<String\>** | | |
13+
| **timeseries** | **Set\<String\>** | List of unique time series key names available on the matched entities. | |
14+
| **attribute** | **Set\<String\>** | List of unique attribute key names available on the matched entities. | |
1515

1616

1717

ce/docs/AvailableEntityKeysV2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Contains unique time series and attribute key names discovered from entities mat
1010
| Name | Type | Description | Notes |
1111
|------------ | ------------- | ------------- | -------------|
1212
| **entityTypes** | **Set\<EntityType\>** | Set of entity types found among the matched entities. | |
13-
| **timeseries** | **List\<KeyInfo\>** | | [optional] |
13+
| **timeseries** | **List\<KeyInfo\>** | List of unique time series keys available on the matched entities, sorted alphabetically. Omitted when timeseries keys were not requested. | [optional] |
1414
| **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] |
1515

1616

ce/docs/EntityDataDiff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
#### WidgetsBundleExportData *(extends EntityExportData, entityType=`WIDGETS_BUNDLE`)*
7575
| Name | Type | Description | Notes |
7676
|------|------|-------------|-------|
77-
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | | [optional] |
77+
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | List of widgets in the bundle | [optional] |
7878
| fqns | List<String> | | [optional] |
7979

8080
#### WidgetTypeExportData *(extends EntityExportData, entityType=`WIDGET_TYPE`)*

ce/docs/EntityExportData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Base export container for ThingsBoard entities
6868
#### WidgetsBundleExportData *(entityType=`WIDGETS_BUNDLE`)*
6969
| Name | Type | Description | Notes |
7070
|------|------|-------------|-------|
71-
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | | [optional] |
71+
| widgets | List<com.fasterxml.jackson.databind.JsonNode> | List of widgets in the bundle | [optional] |
7272
| fqns | List<String> | | [optional] |
7373

7474
#### WidgetTypeExportData *(entityType=`WIDGET_TYPE`)*

ce/docs/TbChatRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#### TbUserMessage
1919
| Name | Type | Description | Notes |
2020
|------|------|-------------|-------|
21-
| contents | List<TbContent> | | |
21+
| contents | List<TbContent> | A list of content parts that make up the complete user prompt | |
2222

2323
#### AiModelConfig
2424
| Name | Type | Description | Notes |

ce/docs/TbUserMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

1212

1313

ce/docs/WidgetsBundleExportData.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

1515

ce/spec/openapi.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85011,6 +85011,7 @@
8501185011
},
8501285012
"timeseries": {
8501385013
"type": "array",
85014+
"description": "List of unique time series key names available on the matched entities.",
8501485015
"items": {
8501585016
"type": "string",
8501685017
"example": "temperature",
@@ -85020,6 +85021,7 @@
8502085021
},
8502185022
"attribute": {
8502285023
"type": "array",
85024+
"description": "List of unique attribute key names available on the matched entities.",
8502385025
"items": {
8502485026
"type": "string",
8502585027
"example": "serialNumber",
@@ -85052,6 +85054,7 @@
8505285054
},
8505385055
"timeseries": {
8505485056
"type": "array",
85057+
"description": "List of unique time series keys available on the matched entities, sorted alphabetically.\nOmitted when timeseries keys were not requested.",
8505585058
"items": {
8505685059
"$ref": "#/components/schemas/KeyInfo"
8505785060
}
@@ -99631,6 +99634,7 @@
9963199634
"properties": {
9963299635
"contents": {
9963399636
"type": "array",
99637+
"description": "A list of content parts that make up the complete user prompt",
9963499638
"items": {
9963599639
"$ref": "#/components/schemas/TbContent"
9963699640
},
@@ -101793,6 +101797,7 @@
101793101797
"properties": {
101794101798
"widgets": {
101795101799
"type": "array",
101800+
"description": "List of widgets in the bundle",
101796101801
"items": {
101797101802
"$ref": "#/components/schemas/JsonNode"
101798101803
}

ce/src/main/java/org/thingsboard/client/model/AvailableEntityKeys.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public AvailableEntityKeys addTimeseriesItem(String timeseriesItem) {
109109
}
110110

111111
/**
112-
* Get timeseries
112+
* List of unique time series key names available on the matched entities.
113113
* @return timeseries
114114
*/
115115
@Nonnull
@@ -142,7 +142,7 @@ public AvailableEntityKeys addAttributeItem(String attributeItem) {
142142
}
143143

144144
/**
145-
* Get attribute
145+
* List of unique attribute key names available on the matched entities.
146146
* @return attribute
147147
*/
148148
@Nonnull

ce/src/main/java/org/thingsboard/client/model/AvailableEntityKeysV2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public AvailableEntityKeysV2 addTimeseriesItem(KeyInfo timeseriesItem) {
115115
}
116116

117117
/**
118-
* Get timeseries
118+
* List of unique time series keys available on the matched entities, sorted alphabetically. Omitted when timeseries keys were not requested.
119119
* @return timeseries
120120
*/
121121
@Nullable

0 commit comments

Comments
 (0)