Skip to content

Commit 995e2cc

Browse files
Merge pull request #29 from testsigmahq/feat/TFS-1095-support-sf-addons
fix[TFS-1095]: Added Support for Add-on in Salesforce Application.
2 parents dd4798b + 1ca423c commit 995e2cc

5 files changed

Lines changed: 21 additions & 4 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.12_cloud'
30+
version = '1.2.13_cloud'
3131
description = 'Testsigma Java SDK'
3232
java.sourceCompatibility = JavaVersion.VERSION_11
3333

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
SONATYPE_HOST=S01
2-
RELEASE_SIGNING_ENABLED=true
2+
RELEASE_SIGNING_ENABLED=false
33

44
GROUP=com.testsigma
55
POM_ARTIFACT_ID=testsigma-java-sdk
6-
VERSION_NAME=1.2.12_cloud
6+
VERSION_NAME=1.2.13_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, REST_API
4+
WEB, MOBILE_WEB, IOS, ANDROID, WINDOWS, WINDOWS_UFT, MAC, REST_API, Salesforce;
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 SalesforceAction extends DriverAction {
6+
@Setter
7+
public SalesforceMetadata salesforceMetadata;
8+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.testsigma.sdk;
2+
3+
import lombok.AllArgsConstructor;
4+
import lombok.Data;
5+
6+
@Data
7+
@AllArgsConstructor
8+
public class SalesforceMetadata {
9+
}

0 commit comments

Comments
 (0)