Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"base-exception-class-name": "CloudPDFException",
"base-api-exception-class-name": "CloudPDFApiException"
},
"originGitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"originGitCommit": "08782e4eef6cd6ccce4b6a6883408d9915a2d7c4",
"originGitCommitIsDirty": false,
"invokedBy": "ci",
"requestedVersion": "3.0.0-alpha.10",
"requestedVersion": "3.0.0-alpha.11",
"ciProvider": "github"
}
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ java {

group = 'com.cloudpdf'

version = '3.0.0-alpha.10'
version = '3.0.0-alpha.11'

jar {
dependsOn(":generatePomFileForMavenPublication")
Expand All @@ -73,7 +73,7 @@ publishing {
maven(MavenPublication) {
groupId = 'com.cloudpdf'
artifactId = 'sdk'
version = '3.0.0-alpha.10'
version = '3.0.0-alpha.11'
from components.java
pom {
name = 'CloudPDF'
Expand Down Expand Up @@ -116,6 +116,10 @@ tasks.withType(GenerateModuleMetadata) {
enabled = false
}

tasks.withType(Jar).configureEach {
zip64 = true
}

signing {
useInMemoryPgpKeys(
System.getenv('MAVEN_GPG_PRIVATE_KEY'),
Expand Down
8 changes: 4 additions & 4 deletions cloudpdf-generation.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"language": "java",
"canonicalVersion": "3.0.0-next.10",
"sdkVersion": "3.0.0-alpha.10",
"canonicalVersion": "3.0.0-next.11",
"sdkVersion": "3.0.0-alpha.11",
"source": {
"repository": "embedpdf/embed-pdf-viewer",
"openapi": "cloudpdf/contract/openapi.json",
"openapiSha256": "9d6c7cdd459982ba9e718a3842c969003b466e3fd73883fef7783dc78e12cdfe",
"gitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"openapiSha256": "7bc0eea37724b3e359b0437edc3102b137e3d3f499293c89bb2b3293c6e3b614",
"gitCommit": "08782e4eef6cd6ccce4b6a6883408d9915a2d7c4",
"gitCommitIsDirty": false
},
"fern": {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
2 changes: 1 addition & 1 deletion src/main/java/api/core/ClientOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private ClientOptions(
{
put("X-Fern-Language", "JAVA");
put("X-Fern-SDK-Name", "com.cloudpdf:sdk");
put("X-Fern-SDK-Version", "3.0.0-alpha.10");
put("X-Fern-SDK-Version", "3.0.0-alpha.11");
}
});
this.headerSuppliers = headerSuppliers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public final class DocAnnotationsList200ResponseAnnotationsItemCaret {

private final Optional<String> updatedBy;

private final Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> actions;
private final Optional<PdfAnnotationActions> actions;

private final DocAnnotationsList200ResponseAnnotationsItemCaretColor color;

Expand Down Expand Up @@ -99,7 +99,7 @@ private DocAnnotationsList200ResponseAnnotationsItemCaret(
Optional<String> groupId,
Optional<String> createdBy,
Optional<String> updatedBy,
Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> actions,
Optional<PdfAnnotationActions> actions,
DocAnnotationsList200ResponseAnnotationsItemCaretColor color,
double opacity,
Optional<DocAnnotationsList200ResponseAnnotationsItemCaretIntent> intent,
Expand Down Expand Up @@ -256,7 +256,7 @@ public Optional<String> getUpdatedBy() {
}

@JsonProperty("actions")
public Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> getActions() {
public Optional<PdfAnnotationActions> getActions() {
return actions;
}

Expand Down Expand Up @@ -547,9 +547,9 @@ public interface _FinalStage {

_FinalStage updatedBy(String updatedBy);

_FinalStage actions(Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> actions);
_FinalStage actions(Optional<PdfAnnotationActions> actions);

_FinalStage actions(DocAnnotationsList200ResponseAnnotationsItemCaretActions actions);
_FinalStage actions(PdfAnnotationActions actions);

_FinalStage intent(Optional<DocAnnotationsList200ResponseAnnotationsItemCaretIntent> intent);

Expand Down Expand Up @@ -615,7 +615,7 @@ public static final class Builder

private Optional<DocAnnotationsList200ResponseAnnotationsItemCaretIntent> intent = Optional.empty();

private Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> actions = Optional.empty();
private Optional<PdfAnnotationActions> actions = Optional.empty();

private Optional<String> updatedBy = Optional.empty();

Expand Down Expand Up @@ -822,14 +822,14 @@ public _FinalStage intent(Optional<DocAnnotationsList200ResponseAnnotationsItemC
}

@java.lang.Override
public _FinalStage actions(DocAnnotationsList200ResponseAnnotationsItemCaretActions actions) {
public _FinalStage actions(PdfAnnotationActions actions) {
this.actions = Optional.ofNullable(actions);
return this;
}

@java.lang.Override
@JsonSetter(value = "actions", nulls = Nulls.SKIP)
public _FinalStage actions(Optional<DocAnnotationsList200ResponseAnnotationsItemCaretActions> actions) {
public _FinalStage actions(Optional<PdfAnnotationActions> actions) {
this.actions = actions;
return this;
}
Expand Down
Loading
Loading