Skip to content

Commit

Permalink
feat: add v2.1.0 package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
OneSignal committed Jan 16, 2025
1 parent 31e327e commit 396600b
Show file tree
Hide file tree
Showing 94 changed files with 264 additions and 257 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# onesignal-java-client

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

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

Expand Down Expand Up @@ -41,7 +41,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>onesignal-java-client</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -57,7 +57,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "org.openapitools:onesignal-java-client:1.2.2"
implementation "org.openapitools:onesignal-java-client:1.3.0"
}
```

Expand All @@ -71,7 +71,7 @@ mvn clean package

Then manually install the following JARs:

* `target/onesignal-java-client-1.2.2.jar`
* `target/onesignal-java-client-1.3.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down Expand Up @@ -130,7 +130,7 @@ public class Example {

## Documentation for API Endpoints

All URIs are relative to *https://onesignal.com/api/v1*
All URIs are relative to *https://api.onesignal.com*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
Expand Down
6 changes: 4 additions & 2 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ info:
customer engagement strategies. Learn more at onesignal.com
termsOfService: https://onesignal.com/tos
title: OneSignal
version: 1.2.2
version: 1.3.0
servers:
- url: https://onesignal.com/api/v1
- url: https://api.onesignal.com
paths:
/notifications:
get:
Expand Down Expand Up @@ -970,6 +970,8 @@ paths:
schema:
$ref: '#/components/schemas/RateLimiterError'
description: Rate Limit Exceeded
security:
- app_key: []
x-accepts: application/json
get:
description: "Returns the User’s properties, Aliases, and Subscriptions."
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'org.openapitools'
version = '1.2.2'
version = '1.3.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "org.openapitools",
name := "onesignal-java-client",
version := "1.2.2",
version := "1.3.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
Loading

0 comments on commit 396600b

Please sign in to comment.