Skip to content

Commit aaacd89

Browse files
committed
Updated with build 5dc64a1f-2dda-4693-86f6-c7cc47816278 from OmniCore-SDK-Generator commit 0108f6360cecfdc340491a2a6b3d1b8c37aa5d0d
1 parent 60a8bd3 commit aaacd89

File tree

155 files changed

+601
-284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+601
-284
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
OmniCoreModelAndStateManagementApi - JavaScript client for omni_core_model_and_state_management_api
44
This is an OmniCore Model and State Management server.
55

6-
- API version: 1.8.16
7-
- Package version: 1.8.16
6+
- API version: 1.8.17
7+
- Package version: 1.8.17
88
- Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
99
For more information, please visit [http://www.korewireless.com](http://www.korewireless.com)
1010

@@ -189,7 +189,6 @@ Class | Method | HTTP request | Description
189189
- [OmniCoreModelAndStateManagementApi.CreateConfiguration](docs/CreateConfiguration.md)
190190
- [OmniCoreModelAndStateManagementApi.CreateVaultKeyBody](docs/CreateVaultKeyBody.md)
191191
- [OmniCoreModelAndStateManagementApi.CustomOnboard](docs/CustomOnboard.md)
192-
- [OmniCoreModelAndStateManagementApi.CustomOnboardTcpUdpModelDetails](docs/CustomOnboardTcpUdpModelDetails.md)
193192
- [OmniCoreModelAndStateManagementApi.Device](docs/Device.md)
194193
- [OmniCoreModelAndStateManagementApi.DeviceCommand](docs/DeviceCommand.md)
195194
- [OmniCoreModelAndStateManagementApi.DeviceConfig](docs/DeviceConfig.md)
@@ -198,6 +197,7 @@ Class | Method | HTTP request | Description
198197
- [OmniCoreModelAndStateManagementApi.DeviceOnline](docs/DeviceOnline.md)
199198
- [OmniCoreModelAndStateManagementApi.DeviceRegistry](docs/DeviceRegistry.md)
200199
- [OmniCoreModelAndStateManagementApi.DeviceState](docs/DeviceState.md)
200+
- [OmniCoreModelAndStateManagementApi.DeviceTcpUdpModelDetails](docs/DeviceTcpUdpModelDetails.md)
201201
- [OmniCoreModelAndStateManagementApi.EnableEncryptionBody](docs/EnableEncryptionBody.md)
202202
- [OmniCoreModelAndStateManagementApi.ErrorFrame](docs/ErrorFrame.md)
203203
- [OmniCoreModelAndStateManagementApi.ErrorStatus](docs/ErrorStatus.md)

docs/CustomOnboard.md

-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,5 @@ Name | Type | Description | Notes
3434
**policy** | [**Policy**](Policy.md) | | [optional]
3535
**customOnboardData** | **String** | | [optional]
3636
**isApprove** | **Boolean** | | [optional]
37-
**tcpUdpModelDetails** | [**CustomOnboardTcpUdpModelDetails**](CustomOnboardTcpUdpModelDetails.md) | | [optional]
38-
**tcpUdpModelId** | **Number** | | [optional]
39-
**isTcpUdpDevice** | **Boolean** | | [optional]
4037

4138

docs/Device.md

+3
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@ Name | Type | Description | Notes
3232
**config** | [**DeviceConfig**](DeviceConfig.md) | | [optional]
3333
**state** | [**DeviceState**](DeviceState.md) | | [optional]
3434
**policy** | [**Policy**](Policy.md) | | [optional]
35+
**tcpUdpModelDetails** | [**DeviceTcpUdpModelDetails**](DeviceTcpUdpModelDetails.md) | | [optional]
36+
**tcpUdpModelId** | **Number** | | [optional]
37+
**isTcpUdpDevice** | **Boolean** | | [optional]
3538

3639

docs/DeviceTcpUdpModelDetails.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# OmniCoreModelAndStateManagementApi.DeviceTcpUdpModelDetails
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | **Number** | The ID of the TCP/UDP model | [optional] [readonly]
8+
**modelName** | **String** | The name of the model | [optional]
9+
**manufacturer** | **String** | The manufacturer of the model | [optional]
10+
**image** | [**TcpUdpImage**](TcpUdpImage.md) | |
11+
**tcpDetails** | [**TcpUdpPortDetail**](TcpUdpPortDetail.md) | |
12+
**udpDetails** | [**TcpUdpPortDetail**](TcpUdpPortDetail.md) | |
13+
**metadata** | **Object** | Additional metadata in raw JSON format | [optional]
14+
**createdAt** | **Date** | The creation timestamp of the model | [optional] [readonly]
15+
**updatedAt** | **Date** | The last update timestamp of the model | [optional] [readonly]
16+
17+

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "omni_core_model_and_state_management_api",
3-
"version": "1.8.16",
3+
"version": "1.8.17",
44
"description": "This is an OmniCore Model and State Management server.",
55
"license": "Unlicense",
66
"main": "dist/index.js",

src/ApiClient.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@ import querystring from "querystring";
1717

1818
/**
1919
* @module ApiClient
20-
* @version 1.8.16
20+
* @version 1.8.17
2121
*/
2222

2323
/**
@@ -56,7 +56,7 @@ class ApiClient {
5656
* @default {}
5757
*/
5858
this.defaultHeaders = {
59-
'User-Agent': 'OpenAPI-Generator/1.8.16/Javascript'
59+
'User-Agent': 'OpenAPI-Generator/1.8.17/Javascript'
6060
};
6161

6262
/**

src/api/DeviceApi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -31,7 +31,7 @@ import ListDevicesResponse from '../model/ListDevicesResponse';
3131
/**
3232
* Device service.
3333
* @module api/DeviceApi
34-
* @version 1.8.16
34+
* @version 1.8.17
3535
*/
3636
export default class DeviceApi {
3737

src/api/MetricsApi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@ import Metrics from '../model/Metrics';
1919
/**
2020
* Metrics service.
2121
* @module api/MetricsApi
22-
* @version 1.8.16
22+
* @version 1.8.17
2323
*/
2424
export default class MetricsApi {
2525

src/api/RegistryApi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ import ListDeviceRegistries from '../model/ListDeviceRegistries';
2222
/**
2323
* Registry service.
2424
* @module api/RegistryApi
25-
* @version 1.8.16
25+
* @version 1.8.17
2626
*/
2727
export default class RegistryApi {
2828

src/api/SinkApi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20,7 +20,7 @@ import Sink from '../model/Sink';
2020
/**
2121
* Sink service.
2222
* @module api/SinkApi
23-
* @version 1.8.16
23+
* @version 1.8.17
2424
*/
2525
export default class SinkApi {
2626

src/api/VaultApi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -34,7 +34,7 @@ import VaultStatus from '../model/VaultStatus';
3434
/**
3535
* Vault service.
3636
* @module api/VaultApi
37-
* @version 1.8.16
37+
* @version 1.8.17
3838
*/
3939
export default class VaultApi {
4040

src/index.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,6 @@ import Configurations from './model/Configurations';
2323
import CreateConfiguration from './model/CreateConfiguration';
2424
import CreateVaultKeyBody from './model/CreateVaultKeyBody';
2525
import CustomOnboard from './model/CustomOnboard';
26-
import CustomOnboardTcpUdpModelDetails from './model/CustomOnboardTcpUdpModelDetails';
2726
import Device from './model/Device';
2827
import DeviceCommand from './model/DeviceCommand';
2928
import DeviceConfig from './model/DeviceConfig';
@@ -32,6 +31,7 @@ import DeviceCredential from './model/DeviceCredential';
3231
import DeviceOnline from './model/DeviceOnline';
3332
import DeviceRegistry from './model/DeviceRegistry';
3433
import DeviceState from './model/DeviceState';
34+
import DeviceTcpUdpModelDetails from './model/DeviceTcpUdpModelDetails';
3535
import EnableEncryptionBody from './model/EnableEncryptionBody';
3636
import ErrorFrame from './model/ErrorFrame';
3737
import ErrorStatus from './model/ErrorStatus';
@@ -118,7 +118,7 @@ import VaultApi from './api/VaultApi';
118118
* </pre>
119119
* </p>
120120
* @module index
121-
* @version 1.8.16
121+
* @version 1.8.17
122122
*/
123123
export {
124124
/**
@@ -187,12 +187,6 @@ export {
187187
*/
188188
CustomOnboard,
189189

190-
/**
191-
* The CustomOnboardTcpUdpModelDetails model constructor.
192-
* @property {module:model/CustomOnboardTcpUdpModelDetails}
193-
*/
194-
CustomOnboardTcpUdpModelDetails,
195-
196190
/**
197191
* The Device model constructor.
198192
* @property {module:model/Device}
@@ -241,6 +235,12 @@ export {
241235
*/
242236
DeviceState,
243237

238+
/**
239+
* The DeviceTcpUdpModelDetails model constructor.
240+
* @property {module:model/DeviceTcpUdpModelDetails}
241+
*/
242+
DeviceTcpUdpModelDetails,
243+
244244
/**
245245
* The EnableEncryptionBody model constructor.
246246
* @property {module:model/EnableEncryptionBody}

src/model/Audit.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The Audit model module.
1818
* @module model/Audit
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class Audit {
2222
/**

src/model/AuditResult.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@ import Audit from './Audit';
1717
/**
1818
* The AuditResult model module.
1919
* @module model/AuditResult
20-
* @version 1.8.16
20+
* @version 1.8.17
2121
*/
2222
class AuditResult {
2323
/**

src/model/BindRequest.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The BindRequest model module.
1818
* @module model/BindRequest
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class BindRequest {
2222
/**

src/model/BindRequestIdsGateway.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The BindRequestIdsGateway model module.
1818
* @module model/BindRequestIdsGateway
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class BindRequestIdsGateway {
2222
/**

src/model/BlockCommunicationBody.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The BlockCommunicationBody model module.
1818
* @module model/BlockCommunicationBody
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class BlockCommunicationBody {
2222
/**

src/model/Config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The Config model module.
1818
* @module model/Config
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class Config {
2222
/**

src/model/Configurations.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,7 +17,7 @@ import VaultConfiguration from './VaultConfiguration';
1717
/**
1818
* The Configurations model module.
1919
* @module model/Configurations
20-
* @version 1.8.16
20+
* @version 1.8.17
2121
*/
2222
class Configurations {
2323
/**

src/model/CreateConfiguration.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* OmniCore Model and State Management API
33
* This is an OmniCore Model and State Management server.
44
*
5-
* The version of the OpenAPI document: 1.8.16
5+
* The version of the OpenAPI document: 1.8.17
66
* Contact: [email protected]
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -16,7 +16,7 @@ import ApiClient from '../ApiClient';
1616
/**
1717
* The CreateConfiguration model module.
1818
* @module model/CreateConfiguration
19-
* @version 1.8.16
19+
* @version 1.8.17
2020
*/
2121
class CreateConfiguration {
2222
/**

0 commit comments

Comments
 (0)