Skip to content

Commit e565a5e

Browse files
committed
Release 0.0.25
1 parent 660f814 commit e565a5e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ publishing {
3333
maven(MavenPublication) {
3434
groupId = 'io.github.seamapi'
3535
artifactId = 'java'
36-
version = '0.0.24'
36+
version = '0.0.25'
3737
from components.java
3838
}
3939
}

src/main/java/com/seam/api/SeamApiClientBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public final class SeamApiClientBuilder {
88

99
private Environment environment = Environment.DEFAULT;
1010

11-
public SeamApiClientBuilder apiKey(String apiKey) {
12-
this.clientOptionsBuilder.addHeader("seam-workspace", apiKey);
11+
public SeamApiClientBuilder token(String token) {
12+
this.clientOptionsBuilder.addHeader("Authorization", "Bearer " + token);
1313
return this;
1414
}
1515

0 commit comments

Comments
 (0)