Skip to content

Commit 2be88d4

Browse files
1 parent 072e828 commit 2be88d4

File tree

4 files changed

+42
-6
lines changed

4 files changed

+42
-6
lines changed

clients/google-api-services-fcm/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-fcm</artifactId>
25-
<version>v1-rev20240524-2.0.0</version>
25+
<version>v1-rev20241101-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-fcm:v1-rev20240524-2.0.0'
38+
implementation 'com.google.apis:google-api-services-fcm:v1-rev20241101-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-fcm/v1/2.0.0/com/google/api/services/fcm/v1/model/ApnsConfig.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ public final class ApnsConfig extends com.google.api.client.json.GenericJson {
4848
@com.google.api.client.util.Key
4949
private java.util.Map<String, java.lang.String> headers;
5050

51+
/**
52+
* Optional. [Apple Live Activity](https://developer.apple.com/design/human-interface-
53+
* guidelines/live-activities) token to send updates to. This token can either be a push token or
54+
* [push-to-
55+
* start](https://developer.apple.com/documentation/activitykit/activity/pushtostarttoken) token
56+
* from Apple.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String liveActivityToken;
61+
5162
/**
5263
* APNs payload as a JSON object, including both `aps` dictionary and custom payload. See [Payload
5364
* Key Reference](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_
@@ -100,6 +111,31 @@ public ApnsConfig setHeaders(java.util.Map<String, java.lang.String> headers) {
100111
return this;
101112
}
102113

114+
/**
115+
* Optional. [Apple Live Activity](https://developer.apple.com/design/human-interface-
116+
* guidelines/live-activities) token to send updates to. This token can either be a push token or
117+
* [push-to-
118+
* start](https://developer.apple.com/documentation/activitykit/activity/pushtostarttoken) token
119+
* from Apple.
120+
* @return value or {@code null} for none
121+
*/
122+
public java.lang.String getLiveActivityToken() {
123+
return liveActivityToken;
124+
}
125+
126+
/**
127+
* Optional. [Apple Live Activity](https://developer.apple.com/design/human-interface-
128+
* guidelines/live-activities) token to send updates to. This token can either be a push token or
129+
* [push-to-
130+
* start](https://developer.apple.com/documentation/activitykit/activity/pushtostarttoken) token
131+
* from Apple.
132+
* @param liveActivityToken liveActivityToken or {@code null} for none
133+
*/
134+
public ApnsConfig setLiveActivityToken(java.lang.String liveActivityToken) {
135+
this.liveActivityToken = liveActivityToken;
136+
return this;
137+
}
138+
103139
/**
104140
* APNs payload as a JSON object, including both `aps` dictionary and custom payload. See [Payload
105141
* Key Reference](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_

clients/google-api-services-fcm/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-fcm</artifactId>
11-
<version>v1-rev20240524-2.0.0</version>
12-
<name>Firebase Cloud Messaging API v1-rev20240524-2.0.0</name>
11+
<version>v1-rev20241101-2.0.0</version>
12+
<name>Firebase Cloud Messaging API v1-rev20241101-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-fcm/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-fcm</artifactId>
25-
<version>v1-rev20240524-2.0.0</version>
25+
<version>v1-rev20241101-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-fcm:v1-rev20240524-2.0.0'
38+
implementation 'com.google.apis:google-api-services-fcm:v1-rev20241101-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)