@opentap/runner-client 2.35.0 → 2.35.1
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/dist/cjs/DTOs.d.ts +2 -2
- package/dist/cjs/DTOs.js +3 -3
- package/dist/mjs/DTOs.d.ts +2 -2
- package/dist/mjs/DTOs.js +3 -3
- package/package.json +1 -1
package/dist/cjs/DTOs.d.ts
CHANGED
|
@@ -1564,7 +1564,7 @@ export interface IRunnerStatus {
|
|
|
1564
1564
|
remoteConnection?: RemoteConnection;
|
|
1565
1565
|
streamInfo?: StreamInfoStatus;
|
|
1566
1566
|
ipAddress: string;
|
|
1567
|
-
|
|
1567
|
+
hostname: string;
|
|
1568
1568
|
}
|
|
1569
1569
|
export declare class RunnerStatus implements IRunnerStatus {
|
|
1570
1570
|
version: string;
|
|
@@ -1573,7 +1573,7 @@ export declare class RunnerStatus implements IRunnerStatus {
|
|
|
1573
1573
|
remoteConnection?: RemoteConnection;
|
|
1574
1574
|
streamInfo?: StreamInfoStatus;
|
|
1575
1575
|
ipAddress: string;
|
|
1576
|
-
|
|
1576
|
+
hostname: string;
|
|
1577
1577
|
constructor(data?: IRunnerStatus);
|
|
1578
1578
|
init(data?: any): void;
|
|
1579
1579
|
static fromJS(data?: any): RunnerStatus;
|
package/dist/cjs/DTOs.js
CHANGED
|
@@ -4337,7 +4337,7 @@ var RunnerStatus = /** @class */ (function () {
|
|
|
4337
4337
|
this.runningAsService = false;
|
|
4338
4338
|
this.runningInContainer = false;
|
|
4339
4339
|
this.ipAddress = '';
|
|
4340
|
-
this.
|
|
4340
|
+
this.hostname = '';
|
|
4341
4341
|
if (data) {
|
|
4342
4342
|
for (var property in data) {
|
|
4343
4343
|
if (Object.prototype.hasOwnProperty.call(data, property))
|
|
@@ -4354,7 +4354,7 @@ var RunnerStatus = /** @class */ (function () {
|
|
|
4354
4354
|
this.remoteConnection = data['RemoteConnection'] ? RemoteConnection.fromJS(data['RemoteConnection']) : undefined;
|
|
4355
4355
|
this.streamInfo = data['StreamInfo'] ? StreamInfoStatus.fromJS(data['StreamInfo']) : undefined;
|
|
4356
4356
|
this.ipAddress = (_d = data['IpAddress']) !== null && _d !== void 0 ? _d : '';
|
|
4357
|
-
this.
|
|
4357
|
+
this.hostname = (_e = data['Hostname']) !== null && _e !== void 0 ? _e : '';
|
|
4358
4358
|
}
|
|
4359
4359
|
};
|
|
4360
4360
|
RunnerStatus.fromJS = function (data) {
|
|
@@ -4371,7 +4371,7 @@ var RunnerStatus = /** @class */ (function () {
|
|
|
4371
4371
|
data['RemoteConnection'] = this.remoteConnection ? this.remoteConnection.toJSON() : undefined;
|
|
4372
4372
|
data['StreamInfo'] = this.streamInfo ? this.streamInfo.toJSON() : undefined;
|
|
4373
4373
|
data['IpAddress'] = this.ipAddress;
|
|
4374
|
-
data['Hostname'] = this.
|
|
4374
|
+
data['Hostname'] = this.hostname;
|
|
4375
4375
|
};
|
|
4376
4376
|
return RunnerStatus;
|
|
4377
4377
|
}());
|
package/dist/mjs/DTOs.d.ts
CHANGED
|
@@ -1564,7 +1564,7 @@ export interface IRunnerStatus {
|
|
|
1564
1564
|
remoteConnection?: RemoteConnection;
|
|
1565
1565
|
streamInfo?: StreamInfoStatus;
|
|
1566
1566
|
ipAddress: string;
|
|
1567
|
-
|
|
1567
|
+
hostname: string;
|
|
1568
1568
|
}
|
|
1569
1569
|
export declare class RunnerStatus implements IRunnerStatus {
|
|
1570
1570
|
version: string;
|
|
@@ -1573,7 +1573,7 @@ export declare class RunnerStatus implements IRunnerStatus {
|
|
|
1573
1573
|
remoteConnection?: RemoteConnection;
|
|
1574
1574
|
streamInfo?: StreamInfoStatus;
|
|
1575
1575
|
ipAddress: string;
|
|
1576
|
-
|
|
1576
|
+
hostname: string;
|
|
1577
1577
|
constructor(data?: IRunnerStatus);
|
|
1578
1578
|
init(data?: any): void;
|
|
1579
1579
|
static fromJS(data?: any): RunnerStatus;
|
package/dist/mjs/DTOs.js
CHANGED
|
@@ -3816,7 +3816,7 @@ export class RunnerStatus {
|
|
|
3816
3816
|
this.runningAsService = false;
|
|
3817
3817
|
this.runningInContainer = false;
|
|
3818
3818
|
this.ipAddress = '';
|
|
3819
|
-
this.
|
|
3819
|
+
this.hostname = '';
|
|
3820
3820
|
if (data) {
|
|
3821
3821
|
for (const property in data) {
|
|
3822
3822
|
if (Object.prototype.hasOwnProperty.call(data, property))
|
|
@@ -3833,7 +3833,7 @@ export class RunnerStatus {
|
|
|
3833
3833
|
this.remoteConnection = data['RemoteConnection'] ? RemoteConnection.fromJS(data['RemoteConnection']) : undefined;
|
|
3834
3834
|
this.streamInfo = data['StreamInfo'] ? StreamInfoStatus.fromJS(data['StreamInfo']) : undefined;
|
|
3835
3835
|
this.ipAddress = (_d = data['IpAddress']) !== null && _d !== void 0 ? _d : '';
|
|
3836
|
-
this.
|
|
3836
|
+
this.hostname = (_e = data['Hostname']) !== null && _e !== void 0 ? _e : '';
|
|
3837
3837
|
}
|
|
3838
3838
|
}
|
|
3839
3839
|
static fromJS(data) {
|
|
@@ -3850,6 +3850,6 @@ export class RunnerStatus {
|
|
|
3850
3850
|
data['RemoteConnection'] = this.remoteConnection ? this.remoteConnection.toJSON() : undefined;
|
|
3851
3851
|
data['StreamInfo'] = this.streamInfo ? this.streamInfo.toJSON() : undefined;
|
|
3852
3852
|
data['IpAddress'] = this.ipAddress;
|
|
3853
|
-
data['Hostname'] = this.
|
|
3853
|
+
data['Hostname'] = this.hostname;
|
|
3854
3854
|
}
|
|
3855
3855
|
}
|