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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-workspaceevents</artifactId>
<version>v1-rev20260510-2.0.0</version>
<version>v1-rev20260517-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20260510-2.0.0'
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20260517-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ public class WorkspaceEventsScopes {
/** View chat and spaces in Google Chat. */
public static final String CHAT_SPACES_READONLY = "https://www.googleapis.com/auth/chat.spaces.readonly";

/** See and change your availability status in Google Chat.. */
public static final String CHAT_USERS_AVAILABILITY = "https://www.googleapis.com/auth/chat.users.availability";

/** See your availability status in Google Chat.. */
public static final String CHAT_USERS_AVAILABILITY_READONLY = "https://www.googleapis.com/auth/chat.users.availability.readonly";

/** View and modify last read time for Google Chat conversations. */
public static final String CHAT_USERS_READSTATE = "https://www.googleapis.com/auth/chat.users.readstate";

Expand Down Expand Up @@ -113,6 +119,8 @@ public static java.util.Set<String> all() {
set.add(CHAT_MESSAGES_READONLY);
set.add(CHAT_SPACES);
set.add(CHAT_SPACES_READONLY);
set.add(CHAT_USERS_AVAILABILITY);
set.add(CHAT_USERS_AVAILABILITY_READONLY);
set.add(CHAT_USERS_READSTATE);
set.add(CHAT_USERS_READSTATE_READONLY);
set.add(DRIVE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-workspaceevents</artifactId>
<version>v1-rev20260510-2.0.0</version>
<name>Google Workspace Events API v1-rev20260510-2.0.0</name>
<version>v1-rev20260517-2.0.0</version>
<name>Google Workspace Events API v1-rev20260517-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-workspaceevents/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-workspaceevents</artifactId>
<version>v1-rev20260510-2.0.0</version>
<version>v1-rev20260517-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20260510-2.0.0'
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20260517-2.0.0'
}
```

Expand Down