diff --git a/.manifest.json b/.manifest.json index c5da7f8..a9ebbb9 100644 --- a/.manifest.json +++ b/.manifest.json @@ -1,6 +1,6 @@ { "liblabVersion": "2.1.28", - "date": "2024-08-21T15:45:27.984Z", + "date": "2024-08-21T16:17:52.441Z", "config": { "apiId": 947, "sdkName": "signplus", @@ -31,6 +31,14 @@ "java": { "groupId": "com.alohi", "artifactId": "signplus", + "developers": [ + { + "name": "Alohi SA", + "email": "support@alohi.com", + "organization": "Alohi SA", + "organizationUrl": "https://www.alohi.com" + } + ], "additionalConstructorParameters": [], "githubRepoName": "signplus-java", "liblabVersion": "2", @@ -97,10 +105,18 @@ "httpMethodsToRetry": ["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"] }, "multiTenant": true, - "specUrl": "https://prod-liblab-api-stack-specs.s3.us-east-1.amazonaws.com/947/open-api-spec.yaml?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA5P3QKKDKGVNIJ2H7%2F20240821%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240821T154526Z&X-Amz-Expires=43200&X-Amz-Signature=4acb6d99b2d8fa5116920ec6e560ef3564dba26c863d86e3f6a35df9f429c387&X-Amz-SignedHeaders=host&x-id=GetObject", + "specUrl": "https://prod-liblab-api-stack-specs.s3.us-east-1.amazonaws.com/947/open-api-spec.yaml?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA5P3QKKDKGVNIJ2H7%2F20240821%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20240821T161747Z&X-Amz-Expires=43200&X-Amz-Signature=7cd3dd73691b6e954924f6e70d23937eda90cbefc4d61b27b5ea3cae8365739b&X-Amz-SignedHeaders=host&x-id=GetObject", "includeWatermark": false, "groupId": "com.alohi", "artifactId": "signplus", + "developers": [ + { + "name": "Alohi SA", + "email": "support@alohi.com", + "organization": "Alohi SA", + "organizationUrl": "https://www.alohi.com" + } + ], "additionalConstructorParameters": [], "githubRepoName": "signplus-java", "language": "java", diff --git a/documentation/services/SignplusService.md b/documentation/services/SignplusService.md index 5b23a34..c21e2ae 100644 --- a/documentation/services/SignplusService.md +++ b/documentation/services/SignplusService.md @@ -83,7 +83,7 @@ public class Main { .builder() .name("name") .legalityLevel(EnvelopeLegalityLevel.SES) - .expiresAt(5L) + .expiresAt(8L) .comment("comment") .sandbox(false) .build(); @@ -133,7 +133,7 @@ public class Main { .builder() .name("name") .comment("comment") - .sandbox(true) + .sandbox(false) .build(); Envelope response = signplus.signplusService.createEnvelopeFromTemplate( @@ -199,17 +199,17 @@ public class Main { .ids(ids) .statuses(statuses) .folderIds(folderIds) - .onlyRootFolder(false) - .dateFrom(1L) - .dateTo(4L) + .onlyRootFolder(true) + .dateFrom(4L) + .dateTo(7L) .uid("uid") - .first(1L) - .last(5L) + .first(8L) + .last(9L) .after("after") .before("before") .orderField(EnvelopeOrderField.CREATION_DATE) .ascending(false) - .includeTrash(false) + .includeTrash(true) .build(); ListEnvelopesResponse response = signplus.signplusService.listEnvelopes(listEnvelopesRequest); @@ -787,7 +787,7 @@ public class Main { .builder() .subject("subject") .message("message") - .reminderInterval(0L) + .reminderInterval(1L) .build(); Envelope response = signplus.signplusService.setEnvelopeNotification("envelope_id", envelopeNotification); @@ -833,7 +833,7 @@ public class Main { SetEnvelopeExpirationRequest setEnvelopeExpirationRequest = SetEnvelopeExpirationRequest .builder() - .expiresAt(8L) + .expiresAt(6L) .build(); Envelope response = signplus.signplusService.setEnvelopeExpirationDate("envelope_id", setEnvelopeExpirationRequest); @@ -1028,13 +1028,13 @@ public class Main { .builder() .family(AnnotationFontFamily.UNKNOWN) .italic(true) - .bold(false) + .bold(true) .build(); AnnotationText annotationText = AnnotationText .builder() - .size(9.27D) - .color(3.32D) + .size(0.75D) + .color(0.4D) .value("value") .tooltip("tooltip") .dynamicFieldName("dynamic_field_name") @@ -1043,12 +1043,12 @@ public class Main { AnnotationDateTime annotationDateTime = AnnotationDateTime .builder() - .size(5.54D) + .size(2.34D) .font(annotationFont) .color("color") .autoFill(false) .timezone("timezone") - .timestamp(8L) + .timestamp(6L) .format(AnnotationDateTimeFormat.DMY_NUMERIC_SLASH) .build(); @@ -1062,11 +1062,11 @@ public class Main { .builder() .recipientId("recipient_id") .documentId("document_id") - .page(6L) - .x(4.19D) - .y(8.41D) - .width(8.25D) - .height(9.18D) + .page(5L) + .x(2.83D) + .y(1.27D) + .width(5.18D) + .height(4.34D) .required(false) .type(AnnotationType.TEXT) .signature(annotationSignature) @@ -1203,12 +1203,12 @@ public class Main { .name("name") .tags(tags) .ids(ids) - .first(8L) - .last(7L) + .first(2L) + .last(0L) .after("after") .before("before") .orderField(TemplateOrderField.TEMPLATE_ID) - .ascending(false) + .ascending(true) .build(); ListTemplatesResponse response = signplus.signplusService.listTemplates(listTemplatesRequest); @@ -1643,7 +1643,7 @@ public class Main { .builder() .subject("subject") .message("message") - .reminderInterval(0L) + .reminderInterval(1L) .build(); Template response = signplus.signplusService.setTemplateNotification("template_id", envelopeNotification); @@ -1787,13 +1787,13 @@ public class Main { .builder() .family(AnnotationFontFamily.UNKNOWN) .italic(true) - .bold(false) + .bold(true) .build(); AnnotationText annotationText = AnnotationText .builder() - .size(9.27D) - .color(3.32D) + .size(0.75D) + .color(0.4D) .value("value") .tooltip("tooltip") .dynamicFieldName("dynamic_field_name") @@ -1802,12 +1802,12 @@ public class Main { AnnotationDateTime annotationDateTime = AnnotationDateTime .builder() - .size(5.54D) + .size(2.34D) .font(annotationFont) .color("color") .autoFill(false) .timezone("timezone") - .timestamp(8L) + .timestamp(6L) .format(AnnotationDateTimeFormat.DMY_NUMERIC_SLASH) .build(); @@ -1821,11 +1821,11 @@ public class Main { .builder() .recipientId("recipient_id") .documentId("document_id") - .page(6L) - .x(4.19D) - .y(8.41D) - .width(8.25D) - .height(9.18D) + .page(5L) + .x(2.83D) + .y(1.27D) + .width(5.18D) + .height(4.34D) .required(false) .type(AnnotationType.TEXT) .signature(annotationSignature) diff --git a/pom.xml b/pom.xml index c4207b4..1785841 100644 --- a/pom.xml +++ b/pom.xml @@ -22,6 +22,16 @@ https://github.com/alohihq/signplus-java + + + + Alohi SA + support@alohi.com + Alohi SA + https://www.alohi.com + + + MIT