Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The recommended way to install it is with Gradle:
}

dependencies {
implementation("com.lacunasoftware.signer:signer-client:2.5.2")
implementation("com.lacunasoftware.signer:signer-client:2.5.4")
...
}

Expand All @@ -25,7 +25,7 @@ Or with Maven:
<dependency>
<groupId>com.lacunasoftware.signer</groupId>
<artifactId>signer-client</artifactId>
<version>2.5.2</version>
<version>2.5.4</version>
<type>pom</type>
</dependency>

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ targetCompatibility = JavaVersion.VERSION_1_8

group = 'com.lacunasoftware.signer'
archivesBaseName = 'signer-client'
version = '2.5.3'
version = '2.5.4'

repositories {
mavenCentral()
Expand Down Expand Up @@ -97,4 +97,4 @@ uploadArchives {
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import com.lacunasoftware.signer.documents.*;
import com.lacunasoftware.signer.javaclient.params.DocumentListParameters;
import com.lacunasoftware.signer.notifications.CreateFlowActionReminderRequest;
import com.lacunasoftware.signer.notifications.EmailListNotificationRequest;
import com.lacunasoftware.signer.folders.FolderInfoModel;
import com.lacunasoftware.signer.folders.FolderCreateRequest;
import com.lacunasoftware.signer.javaclient.responses.PaginatedSearchResponse;
Expand Down Expand Up @@ -244,6 +245,9 @@ public void sendFlowActionReminder(UUID documentId, UUID flowActionId) throws Re
getRestClient().post("/api/notifications/flow-action-reminder", request);
}

public void sendNotifyPendingUsers(EmailListNotificationRequest emailListNotificationRequest) throws RestException {
getRestClient().post("/api/users/notify-pending", emailListNotificationRequest);
}

public void UpdateInvoiceStatus(int id, InvoicesUpdateInvoicePaymentStatusRequest request) throws RestException, IOException {
getRestClient().putAsJson(String.format("api/invoices/%s/payment", id), request);
Expand Down Expand Up @@ -282,4 +286,4 @@ private String getParameterOrEmpty(String parameter) {
}

// endregion
}
}