@opentap/runner-client 2.1.2-alpha.1.1 → 2.1.3-alpha.1.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/lib/DTOs.d.ts +2 -0
- package/lib/DTOs.js +2 -0
- package/package.json +1 -1
package/lib/DTOs.d.ts
CHANGED
|
@@ -803,6 +803,7 @@ export declare class TestStep implements ITestStep {
|
|
|
803
803
|
typeName?: string | undefined;
|
|
804
804
|
typeDisplay?: DisplayAttribute | undefined;
|
|
805
805
|
name?: string | undefined;
|
|
806
|
+
expandedName?: string | undefined;
|
|
806
807
|
protected _discriminator: string;
|
|
807
808
|
constructor(data?: ITestStep);
|
|
808
809
|
init(_data?: any): void;
|
|
@@ -818,6 +819,7 @@ export interface ITestStep {
|
|
|
818
819
|
typeName?: string | undefined;
|
|
819
820
|
typeDisplay?: DisplayAttribute | undefined;
|
|
820
821
|
name?: string | undefined;
|
|
822
|
+
expandedName?: string | undefined;
|
|
821
823
|
}
|
|
822
824
|
export declare class TestStepType extends TestStep implements ITestStepType {
|
|
823
825
|
availableChildrenTypes?: string[] | undefined;
|
package/lib/DTOs.js
CHANGED
|
@@ -2300,6 +2300,7 @@ var TestStep = /** @class */ (function () {
|
|
|
2300
2300
|
this.typeName = _data['TypeName'];
|
|
2301
2301
|
this.typeDisplay = _data['TypeDisplay'] ? DisplayAttribute.fromJS(_data['TypeDisplay']) : undefined;
|
|
2302
2302
|
this.name = _data['Name'];
|
|
2303
|
+
this.expandedName = _data['ExpandedName'];
|
|
2303
2304
|
}
|
|
2304
2305
|
};
|
|
2305
2306
|
TestStep.fromJS = function (data) {
|
|
@@ -2336,6 +2337,7 @@ var TestStep = /** @class */ (function () {
|
|
|
2336
2337
|
data['TypeName'] = this.typeName;
|
|
2337
2338
|
data['TypeDisplay'] = this.typeDisplay ? this.typeDisplay.toJSON() : undefined;
|
|
2338
2339
|
data['Name'] = this.name;
|
|
2340
|
+
data['ExpandedName'] = this.expandedName;
|
|
2339
2341
|
return data;
|
|
2340
2342
|
};
|
|
2341
2343
|
return TestStep;
|