Skip to content

Commit c054969

Browse files
authored
Feat[TE-18438]: Support API application type in Addon creation (#25)
* Feat[TE-18438]: Support API application type in Addon creation * Feat[TE-18438]: Changed the name Rest to RestApi * Feat[TE-18438]: Added runMetaData in the RestApiAction class.
1 parent 8e30d68 commit c054969

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repositories {
2727
}
2828

2929
group = 'com.testsigma'
30-
version = '1.2.11_cloud'
30+
version = '1.2.12_cloud'
3131
description = 'Testsigma Java SDK'
3232
java.sourceCompatibility = JavaVersion.VERSION_11
3333

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RELEASE_SIGNING_ENABLED=true
33

44
GROUP=com.testsigma
55
POM_ARTIFACT_ID=testsigma-java-sdk
6-
VERSION_NAME=1.2.11_cloud
6+
VERSION_NAME=1.2.12_cloud
77

88
POM_NAME=Testsigma Java SDK
99
POM_DESCRIPTION=Testsigma Java SDK
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.testsigma.sdk;
22

33
public enum ApplicationType {
4-
WEB,MOBILE_WEB,IOS,ANDROID, WINDOWS,WINDOWS_UFT, MAC
4+
WEB,MOBILE_WEB,IOS,ANDROID, WINDOWS,WINDOWS_UFT, MAC, REST_API
55
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.testsigma.sdk;
2+
3+
import lombok.Setter;
4+
5+
public abstract class RestApiAction extends Action {
6+
@Setter
7+
public RunMetaData runMetaData;
8+
}

0 commit comments

Comments
 (0)