yellowgrid-api-ts 3.2.98-dev.0 → 3.2.99-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/docs/TcxSbcDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -10619,6 +10619,12 @@ export interface TcxRemoteStorageModel {
|
|
|
10619
10619
|
* @interface TcxSbcDTO
|
|
10620
10620
|
*/
|
|
10621
10621
|
export interface TcxSbcDTO {
|
|
10622
|
+
/**
|
|
10623
|
+
* ID
|
|
10624
|
+
* @type {number}
|
|
10625
|
+
* @memberof TcxSbcDTO
|
|
10626
|
+
*/
|
|
10627
|
+
'id'?: number | null;
|
|
10622
10628
|
/**
|
|
10623
10629
|
* LAN IP Address
|
|
10624
10630
|
* @type {string}
|
package/dist/api.d.ts
CHANGED
|
@@ -10531,6 +10531,12 @@ export interface TcxRemoteStorageModel {
|
|
|
10531
10531
|
* @interface TcxSbcDTO
|
|
10532
10532
|
*/
|
|
10533
10533
|
export interface TcxSbcDTO {
|
|
10534
|
+
/**
|
|
10535
|
+
* ID
|
|
10536
|
+
* @type {number}
|
|
10537
|
+
* @memberof TcxSbcDTO
|
|
10538
|
+
*/
|
|
10539
|
+
'id'?: number | null;
|
|
10534
10540
|
/**
|
|
10535
10541
|
* LAN IP Address
|
|
10536
10542
|
* @type {string}
|
package/docs/TcxSbcDTO.md
CHANGED
|
@@ -6,6 +6,7 @@ SBC Data
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **number** | ID | [optional] [default to undefined]
|
|
9
10
|
**ipAddress** | **string** | LAN IP Address | [optional] [default to undefined]
|
|
10
11
|
**defaultGateway** | **string** | LAN Default Gateway | [optional] [default to undefined]
|
|
11
12
|
**netmask** | **string** | LAN Subnet Mask | [optional] [default to undefined]
|
|
@@ -19,6 +20,7 @@ Name | Type | Description | Notes
|
|
|
19
20
|
import { TcxSbcDTO } from 'yellowgrid-api-ts';
|
|
20
21
|
|
|
21
22
|
const instance: TcxSbcDTO = {
|
|
23
|
+
id,
|
|
22
24
|
ipAddress,
|
|
23
25
|
defaultGateway,
|
|
24
26
|
netmask,
|