Skip to content

Commit d9f5cc6

Browse files
chore: regenerate from OpenAPI spec
- Auto-generated SDK updates - Version: v0.0.137
1 parent a6534b1 commit d9f5cc6

832 files changed

Lines changed: 862 additions & 848 deletions

File tree

Some content is hidden

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

.openapi-generator/FILES

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1654,9 +1654,3 @@ src/main/java/dev/zernio/model/YouTubeDemographicsResponseDemographicsValueInner
16541654
src/main/java/dev/zernio/model/YouTubePlatformData.java
16551655
src/main/java/dev/zernio/model/YouTubeScopeMissingResponse.java
16561656
src/main/java/dev/zernio/model/YouTubeScopeMissingResponseScopeStatus.java
1657-
src/test/java/dev/zernio/model/InboxWebhookAccountTest.java
1658-
src/test/java/dev/zernio/model/InboxWebhookConversationTest.java
1659-
src/test/java/dev/zernio/model/InboxWebhookMessageAttachmentsInnerTest.java
1660-
src/test/java/dev/zernio/model/InboxWebhookMessageSenderInstagramProfileTest.java
1661-
src/test/java/dev/zernio/model/InboxWebhookMessageSenderTest.java
1662-
src/test/java/dev/zernio/model/InboxWebhookMessageTest.java

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Zernio API
44

55
- API version: 1.0.1
66

7-
- Build date: 2026-04-13T11:23:03.545448702Z[Etc/UTC]
7+
- Build date: 2026-04-13T11:36:49.915355466Z[Etc/UTC]
88

99
- Generator version: 7.19.0
1010

api/openapi.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14480,6 +14480,15 @@ paths:
1448014480
schema:
1448114481
type: string
1448214482
style: form
14483+
- description: Platform ad account ID (e.g. act_123 for Meta). Mirrors the same
14484+
filter on /v1/ads/campaigns and /v1/ads/tree.
14485+
explode: true
14486+
in: query
14487+
name: adAccountId
14488+
required: false
14489+
schema:
14490+
type: string
14491+
style: form
1448314492
- description: Profile ID
1448414493
explode: true
1448514494
in: query

docs/AdsApi.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ ApiResponse<[**ListAdAccounts200Response**](ListAdAccounts200Response.md)>
933933

934934
## listAds
935935

936-
> ListAds200Response listAds(page, limit, source, status, platform, accountId, profileId, campaignId, fromDate, toDate)
936+
> ListAds200Response listAds(page, limit, source, status, platform, accountId, adAccountId, profileId, campaignId, fromDate, toDate)
937937
938938
List ads
939939

@@ -966,12 +966,13 @@ public class Example {
966966
String status = "active"; // String |
967967
String platform = "facebook"; // String |
968968
String accountId = "accountId_example"; // String | Social account ID
969+
String adAccountId = "adAccountId_example"; // String | Platform ad account ID (e.g. act_123 for Meta). Mirrors the same filter on /v1/ads/campaigns and /v1/ads/tree.
969970
String profileId = "profileId_example"; // String | Profile ID
970971
String campaignId = "campaignId_example"; // String | Platform campaign ID (filter ads within a campaign)
971972
LocalDate fromDate = LocalDate.now(); // LocalDate | Start of metrics date range (YYYY-MM-DD). Defaults to 90 days ago.
972973
LocalDate toDate = LocalDate.now(); // LocalDate | End of metrics date range (YYYY-MM-DD). Defaults to today. Max 90-day range.
973974
try {
974-
ListAds200Response result = apiInstance.listAds(page, limit, source, status, platform, accountId, profileId, campaignId, fromDate, toDate);
975+
ListAds200Response result = apiInstance.listAds(page, limit, source, status, platform, accountId, adAccountId, profileId, campaignId, fromDate, toDate);
975976
System.out.println(result);
976977
} catch (ApiException e) {
977978
System.err.println("Exception when calling AdsApi#listAds");
@@ -995,6 +996,7 @@ public class Example {
995996
| **status** | **String**| | [optional] [enum: active, paused, pending_review, rejected, completed, cancelled, error] |
996997
| **platform** | **String**| | [optional] [enum: facebook, instagram, tiktok, linkedin, pinterest, google, twitter] |
997998
| **accountId** | **String**| Social account ID | [optional] |
999+
| **adAccountId** | **String**| Platform ad account ID (e.g. act_123 for Meta). Mirrors the same filter on /v1/ads/campaigns and /v1/ads/tree. | [optional] |
9981000
| **profileId** | **String**| Profile ID | [optional] |
9991001
| **campaignId** | **String**| Platform campaign ID (filter ads within a campaign) | [optional] |
10001002
| **fromDate** | **LocalDate**| Start of metrics date range (YYYY-MM-DD). Defaults to 90 days ago. | [optional] |
@@ -1023,7 +1025,7 @@ public class Example {
10231025

10241026
## listAdsWithHttpInfo
10251027

1026-
> ApiResponse<ListAds200Response> listAds listAdsWithHttpInfo(page, limit, source, status, platform, accountId, profileId, campaignId, fromDate, toDate)
1028+
> ApiResponse<ListAds200Response> listAds listAdsWithHttpInfo(page, limit, source, status, platform, accountId, adAccountId, profileId, campaignId, fromDate, toDate)
10271029
10281030
List ads
10291031

@@ -1057,12 +1059,13 @@ public class Example {
10571059
String status = "active"; // String |
10581060
String platform = "facebook"; // String |
10591061
String accountId = "accountId_example"; // String | Social account ID
1062+
String adAccountId = "adAccountId_example"; // String | Platform ad account ID (e.g. act_123 for Meta). Mirrors the same filter on /v1/ads/campaigns and /v1/ads/tree.
10601063
String profileId = "profileId_example"; // String | Profile ID
10611064
String campaignId = "campaignId_example"; // String | Platform campaign ID (filter ads within a campaign)
10621065
LocalDate fromDate = LocalDate.now(); // LocalDate | Start of metrics date range (YYYY-MM-DD). Defaults to 90 days ago.
10631066
LocalDate toDate = LocalDate.now(); // LocalDate | End of metrics date range (YYYY-MM-DD). Defaults to today. Max 90-day range.
10641067
try {
1065-
ApiResponse<ListAds200Response> response = apiInstance.listAdsWithHttpInfo(page, limit, source, status, platform, accountId, profileId, campaignId, fromDate, toDate);
1068+
ApiResponse<ListAds200Response> response = apiInstance.listAdsWithHttpInfo(page, limit, source, status, platform, accountId, adAccountId, profileId, campaignId, fromDate, toDate);
10661069
System.out.println("Status code: " + response.getStatusCode());
10671070
System.out.println("Response headers: " + response.getHeaders());
10681071
System.out.println("Response body: " + response.getData());
@@ -1088,6 +1091,7 @@ public class Example {
10881091
| **status** | **String**| | [optional] [enum: active, paused, pending_review, rejected, completed, cancelled, error] |
10891092
| **platform** | **String**| | [optional] [enum: facebook, instagram, tiktok, linkedin, pinterest, google, twitter] |
10901093
| **accountId** | **String**| Social account ID | [optional] |
1094+
| **adAccountId** | **String**| Platform ad account ID (e.g. act_123 for Meta). Mirrors the same filter on /v1/ads/campaigns and /v1/ads/tree. | [optional] |
10911095
| **profileId** | **String**| Profile ID | [optional] |
10921096
| **campaignId** | **String**| Platform campaign ID (filter ads within a campaign) | [optional] |
10931097
| **fromDate** | **LocalDate**| Start of metrics date range (YYYY-MM-DD). Defaults to 90 days ago. | [optional] |

openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18826,6 +18826,7 @@ paths:
1882618826
- { name: status, in: query, schema: { type: string, enum: [active, paused, pending_review, rejected, completed, cancelled, error] } }
1882718827
- { name: platform, in: query, schema: { type: string, enum: [facebook, instagram, tiktok, linkedin, pinterest, google, twitter] } }
1882818828
- { name: accountId, in: query, schema: { type: string }, description: Social account ID }
18829+
- { name: adAccountId, in: query, schema: { type: string }, description: "Platform ad account ID (e.g. act_123 for Meta). Mirrors the same filter on /v1/ads/campaigns and /v1/ads/tree." }
1882918830
- { name: profileId, in: query, schema: { type: string }, description: Profile ID }
1883018831
- { name: campaignId, in: query, schema: { type: string }, description: Platform campaign ID (filter ads within a campaign) }
1883118832
- { name: fromDate, in: query, schema: { type: string, format: date }, description: "Start of metrics date range (YYYY-MM-DD). Defaults to 90 days ago." }

pom.xml

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

src/main/java/dev/zernio/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
* <p>The setter methods of this class return the current object to facilitate
5555
* a fluent style of configuration.</p>
5656
*/
57-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:23:03.545448702Z[Etc/UTC]", comments = "Generator version: 7.19.0")
57+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:36:49.915355466Z[Etc/UTC]", comments = "Generator version: 7.19.0")
5858
public class ApiClient {
5959

6060
protected HttpClient.Builder builder;

src/main/java/dev/zernio/ApiException.java

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

1616
import java.net.http.HttpHeaders;
1717

18-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:23:03.545448702Z[Etc/UTC]", comments = "Generator version: 7.19.0")
18+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:36:49.915355466Z[Etc/UTC]", comments = "Generator version: 7.19.0")
1919
public class ApiException extends Exception {
2020
private static final long serialVersionUID = 1L;
2121

src/main/java/dev/zernio/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @param <T> The type of data that is deserialized from response body
2323
*/
24-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:23:03.545448702Z[Etc/UTC]", comments = "Generator version: 7.19.0")
24+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:36:49.915355466Z[Etc/UTC]", comments = "Generator version: 7.19.0")
2525
public class ApiResponse<T> {
2626
final private int statusCode;
2727
final private Map<String, List<String>> headers;

src/main/java/dev/zernio/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import java.util.concurrent.atomic.AtomicReference;
1818
import java.util.function.Supplier;
1919

20-
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:23:03.545448702Z[Etc/UTC]", comments = "Generator version: 7.19.0")
20+
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2026-04-13T11:36:49.915355466Z[Etc/UTC]", comments = "Generator version: 7.19.0")
2121
public class Configuration {
2222
public static final String VERSION = "1.0.1";
2323

0 commit comments

Comments
 (0)