Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit d03029c

Browse files
author
github-actions-bot
committed
fix(providers): add sunfish
1 parent 7e76e41 commit d03029c

Some content is hidden

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

56 files changed

+65
-54
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Affix API
44
- API version: 2023-03-01
5-
- Build date: 2025-07-31T00:30:14.747641306Z[Etc/UTC]
5+
- Build date: 2025-08-06T17:59:50.233437298Z[Etc/UTC]
66

77
The affixapi.com API documentation.
88

@@ -246,7 +246,7 @@ Add this dependency to your project's POM:
246246
<dependency>
247247
<groupId>com.affixapi</groupId>
248248
<artifactId>api</artifactId>
249-
<version>1.1.112</version>
249+
<version>1.1.113</version>
250250
<scope>compile</scope>
251251
</dependency>
252252
```
@@ -256,7 +256,7 @@ Add this dependency to your project's POM:
256256
Add this dependency to your project's build file:
257257

258258
```groovy
259-
compile "com.affixapi:api:1.1.112"
259+
compile "com.affixapi:api:1.1.113"
260260
```
261261

262262
### Others
@@ -269,7 +269,7 @@ mvn clean package
269269

270270
Then manually install the following JARs:
271271

272-
* `target/api-1.1.112.jar`
272+
* `target/api-1.1.113.jar`
273273
* `target/lib/*.jar`
274274

275275
## Getting Started

api/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,6 +1544,7 @@ components:
15441544
- sageone
15451545
- shape payroll
15461546
- simplepay.ie
1547+
- sunfish
15471548
- talenox
15481549
- talentoz
15491550
- unity
@@ -1602,6 +1603,7 @@ components:
16021603
- sageone
16031604
- shape payroll
16041605
- simplepay.ie
1606+
- sunfish
16051607
- talenox
16061608
- talentoz
16071609
- unity
@@ -1668,6 +1670,7 @@ components:
16681670
- sageone
16691671
- shape payroll
16701672
- simplepay.ie
1673+
- sunfish
16711674
- talenox
16721675
- talentoz
16731676
- unity

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'com.affixapi'
6-
version = '1.1.112'
6+
version = '1.1.113'
77

88
buildscript {
99
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 := "com.affixapi",
44
name := "api",
5-
version := "1.1.112",
5+
version := "1.1.113",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/ProviderRequest.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@
9595

9696
* `SIMPLEPAY_IE` (value: `"simplepay.ie"`)
9797

98+
* `SUNFISH` (value: `"sunfish"`)
99+
98100
* `TALENOX` (value: `"talenox"`)
99101

100102
* `TALENTOZ` (value: `"talentoz"`)

docs/ProviderResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@
9595

9696
* `SIMPLEPAY_IE` (value: `"simplepay.ie"`)
9797

98+
* `SUNFISH` (value: `"sunfish"`)
99+
98100
* `TALENOX` (value: `"talenox"`)
99101

100102
* `TALENTOZ` (value: `"talentoz"`)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>api</artifactId>
66
<packaging>jar</packaging>
77
<name>api</name>
8-
<version>1.1.112</version>
8+
<version>1.1.113</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>AffixApiSdk</description>
1111
<scm>

src/main/java/org/openapitools/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ private void init() {
127127
json = new JSON();
128128

129129
// Set default User-Agent.
130-
setUserAgent("OpenAPI-Generator/1.1.112/java");
130+
setUserAgent("OpenAPI-Generator/1.1.113/java");
131131

132132
authentications = new HashMap<String, Authentication>();
133133
}

src/main/java/org/openapitools/client/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.Map;
1717
import java.util.List;
1818

19-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T00:30:14.747641306Z[Etc/UTC]")
19+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-06T17:59:50.233437298Z[Etc/UTC]")
2020
public class ApiException extends Exception {
2121
private int code = 0;
2222
private Map<String, List<String>> responseHeaders = null;

src/main/java/org/openapitools/client/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package org.openapitools.client;
1515

16-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-07-31T00:30:14.747641306Z[Etc/UTC]")
16+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2025-08-06T17:59:50.233437298Z[Etc/UTC]")
1717
public class Configuration {
1818
private static ApiClient defaultApiClient = new ApiClient();
1919

0 commit comments

Comments
 (0)