Skip to content

Commit 15763ad

Browse files
authored
Merge pull request #38 from OneSignal/api
Add v1.3.0 package updates
2 parents 31e327e + 396600b commit 15763ad

File tree

94 files changed

+264
-257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+264
-257
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# onesignal-java-client
22

33
OneSignal
4-
- API version: 1.2.2
5-
- Build date: 2023-08-01T23:27:12.168Z[Etc/UTC]
4+
- API version: 1.3.0
5+
- Build date: 2025-01-16T19:49:36.601Z[Etc/UTC]
66

77
A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com
88

@@ -41,7 +41,7 @@ Add this dependency to your project's POM:
4141
<dependency>
4242
<groupId>org.openapitools</groupId>
4343
<artifactId>onesignal-java-client</artifactId>
44-
<version>1.2.2</version>
44+
<version>1.3.0</version>
4545
<scope>compile</scope>
4646
</dependency>
4747
```
@@ -57,7 +57,7 @@ Add this dependency to your project's build file:
5757
}
5858
5959
dependencies {
60-
implementation "org.openapitools:onesignal-java-client:1.2.2"
60+
implementation "org.openapitools:onesignal-java-client:1.3.0"
6161
}
6262
```
6363

@@ -71,7 +71,7 @@ mvn clean package
7171

7272
Then manually install the following JARs:
7373

74-
* `target/onesignal-java-client-1.2.2.jar`
74+
* `target/onesignal-java-client-1.3.0.jar`
7575
* `target/lib/*.jar`
7676

7777
## Getting Started
@@ -130,7 +130,7 @@ public class Example {
130130

131131
## Documentation for API Endpoints
132132

133-
All URIs are relative to *https://onesignal.com/api/v1*
133+
All URIs are relative to *https://api.onesignal.com*
134134

135135
Class | Method | HTTP request | Description
136136
------------ | ------------- | ------------- | -------------

api/openapi.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ info:
88
customer engagement strategies. Learn more at onesignal.com
99
termsOfService: https://onesignal.com/tos
1010
title: OneSignal
11-
version: 1.2.2
11+
version: 1.3.0
1212
servers:
13-
- url: https://onesignal.com/api/v1
13+
- url: https://api.onesignal.com
1414
paths:
1515
/notifications:
1616
get:
@@ -970,6 +970,8 @@ paths:
970970
schema:
971971
$ref: '#/components/schemas/RateLimiterError'
972972
description: Rate Limit Exceeded
973+
security:
974+
- app_key: []
973975
x-accepts: application/json
974976
get:
975977
description: "Returns the User’s properties, Aliases, and Subscriptions."

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'org.openapitools'
7-
version = '1.2.2'
7+
version = '1.3.0'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "org.openapitools",
44
name := "onesignal-java-client",
5-
version := "1.2.2",
5+
version := "1.3.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

0 commit comments

Comments
 (0)