@opentap/runner-client 2.0.0-alpha.2.7 → 2.0.0-alpha.2.8
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
|
@@ -756,6 +756,7 @@ export declare class TestStep implements ITestStep {
|
|
|
756
756
|
typeName?: string | undefined;
|
|
757
757
|
typeDisplay?: DisplayAttribute | undefined;
|
|
758
758
|
name?: string | undefined;
|
|
759
|
+
expandedName?: string | undefined;
|
|
759
760
|
protected _discriminator: string;
|
|
760
761
|
constructor(data?: ITestStep);
|
|
761
762
|
init(_data?: any): void;
|
|
@@ -771,6 +772,7 @@ export interface ITestStep {
|
|
|
771
772
|
typeName?: string | undefined;
|
|
772
773
|
typeDisplay?: DisplayAttribute | undefined;
|
|
773
774
|
name?: string | undefined;
|
|
775
|
+
expandedName?: string | undefined;
|
|
774
776
|
}
|
|
775
777
|
export declare class TestStepType extends TestStep implements ITestStepType {
|
|
776
778
|
availableChildrenTypes?: string[] | undefined;
|
package/lib/DTOs.js
CHANGED
|
@@ -2195,6 +2195,7 @@ var TestStep = /** @class */ (function () {
|
|
|
2195
2195
|
this.typeName = _data['TypeName'];
|
|
2196
2196
|
this.typeDisplay = _data['TypeDisplay'] ? DisplayAttribute.fromJS(_data['TypeDisplay']) : undefined;
|
|
2197
2197
|
this.name = _data['Name'];
|
|
2198
|
+
this.expandedName = _data['ExpandedName'];
|
|
2198
2199
|
}
|
|
2199
2200
|
};
|
|
2200
2201
|
TestStep.fromJS = function (data) {
|
|
@@ -2231,6 +2232,7 @@ var TestStep = /** @class */ (function () {
|
|
|
2231
2232
|
data['TypeName'] = this.typeName;
|
|
2232
2233
|
data['TypeDisplay'] = this.typeDisplay ? this.typeDisplay.toJSON() : undefined;
|
|
2233
2234
|
data['Name'] = this.name;
|
|
2235
|
+
data['ExpandedName'] = this.expandedName;
|
|
2234
2236
|
return data;
|
|
2235
2237
|
};
|
|
2236
2238
|
return TestStep;
|