diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d589672a..5ea5d0cf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-beta.29" + ".": "0.1.0-beta.30" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 98e511bd..2fab76ed 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 111 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-77c3a6ff808ad2e50f897dca975b9be1ef45b6841618aa2b1b87830c9910de3e.yml -openapi_spec_hash: 1bbed365dc0b25763e34f2869ab08593 -config_hash: b3ce16872bdfce735bf0f02d69273407 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stigg/stigg-db0e894e98bd8b3dcb73ff6aaa78775fa84c059a4b1ea8f6ca481ae826affaaa.yml +openapi_spec_hash: 7a1b7f96561158341899feff23422ac6 +config_hash: 2e65c1178cfd5d688faf5c9b1a48a732 diff --git a/CHANGELOG.md b/CHANGELOG.md index f875fe43..bd22fbba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-beta.30 (2026-06-30) + +Full Changelog: [v0.1.0-beta.29...v0.1.0-beta.30](https://github.com/stiggio/stigg-java/compare/v0.1.0-beta.29...v0.1.0-beta.30) + +### Features + +* **api:** add AIRWALLEX to VendorIdentifier enum in customers ([b8e9041](https://github.com/stiggio/stigg-java/commit/b8e9041fd5ff39812e8ed2e50dbf239e0d19b80c)) + ## 0.1.0-beta.29 (2026-06-28) Full Changelog: [v0.1.0-beta.28...v0.1.0-beta.29](https://github.com/stiggio/stigg-java/compare/v0.1.0-beta.28...v0.1.0-beta.29) diff --git a/README.md b/README.md index 62f76009..272f30f2 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/io.stigg/stigg-java)](https://central.sonatype.com/artifact/io.stigg/stigg-java/0.1.0-beta.29) -[![javadoc](https://javadoc.io/badge2/io.stigg/stigg-java/0.1.0-beta.29/javadoc.svg)](https://javadoc.io/doc/io.stigg/stigg-java/0.1.0-beta.29) +[![Maven Central](https://img.shields.io/maven-central/v/io.stigg/stigg-java)](https://central.sonatype.com/artifact/io.stigg/stigg-java/0.1.0-beta.30) +[![javadoc](https://javadoc.io/badge2/io.stigg/stigg-java/0.1.0-beta.30/javadoc.svg)](https://javadoc.io/doc/io.stigg/stigg-java/0.1.0-beta.30) @@ -22,7 +22,7 @@ Use the Stigg MCP Server to enable AI assistants to interact with this API, allo -Javadocs are available on [javadoc.io](https://javadoc.io/doc/io.stigg/stigg-java/0.1.0-beta.29). +Javadocs are available on [javadoc.io](https://javadoc.io/doc/io.stigg/stigg-java/0.1.0-beta.30). @@ -33,7 +33,7 @@ Javadocs are available on [javadoc.io](https://javadoc.io/doc/io.stigg/stigg-jav ### Gradle ```kotlin -implementation("io.stigg:stigg-java:0.1.0-beta.29") +implementation("io.stigg:stigg-java:0.1.0-beta.30") ``` ### Maven @@ -42,7 +42,7 @@ implementation("io.stigg:stigg-java:0.1.0-beta.29") io.stigg stigg-java - 0.1.0-beta.29 + 0.1.0-beta.30 ``` @@ -107,10 +107,10 @@ StiggClient client = StiggOkHttpClient.builder() See this table for the available options: -| Setter | System property | Environment variable | Required | Default value | -| --------- | --------------- | -------------------- | -------- | ----------------------------- | -| `apiKey` | `stigg.apiKey` | `STIGG_API_KEY` | true | - | -| `baseUrl` | `stigg.baseUrl` | `STIGG_BASE_URL` | true | `"https://edge.api.stigg.io"` | +| Setter | System property | Environment variable | Required | Default value | +| --------- | --------------- | -------------------- | -------- | ------------------------ | +| `apiKey` | `stigg.apiKey` | `STIGG_API_KEY` | true | - | +| `baseUrl` | `stigg.baseUrl` | `STIGG_BASE_URL` | true | `"https://api.stigg.io"` | System properties take precedence over environment variables. diff --git a/build.gradle.kts b/build.gradle.kts index 6fec9f84..7a9f96a0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "io.stigg" - version = "0.1.0-beta.29" // x-release-please-version + version = "0.1.0-beta.30" // x-release-please-version } subprojects { diff --git a/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClient.kt b/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClient.kt index 2236c294..ee3abb41 100644 --- a/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClient.kt +++ b/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClient.kt @@ -237,7 +237,7 @@ class StiggOkHttpClient private constructor() { /** * The base URL to use for every request. * - * Defaults to the production environment: `https://edge.api.stigg.io`. + * Defaults to the production environment: `https://api.stigg.io`. */ fun baseUrl(baseUrl: String?) = apply { clientOptions.baseUrl(baseUrl) } diff --git a/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClientAsync.kt b/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClientAsync.kt index 31cea541..48b96ced 100644 --- a/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClientAsync.kt +++ b/stigg-java-client-okhttp/src/main/kotlin/io/stigg/client/okhttp/StiggOkHttpClientAsync.kt @@ -237,7 +237,7 @@ class StiggOkHttpClientAsync private constructor() { /** * The base URL to use for every request. * - * Defaults to the production environment: `https://edge.api.stigg.io`. + * Defaults to the production environment: `https://api.stigg.io`. */ fun baseUrl(baseUrl: String?) = apply { clientOptions.baseUrl(baseUrl) } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/core/ClientOptions.kt b/stigg-java-core/src/main/kotlin/io/stigg/core/ClientOptions.kt index b49c917b..995e7ffc 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/core/ClientOptions.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/core/ClientOptions.kt @@ -131,7 +131,7 @@ private constructor( /** * The base URL to use for every request. * - * Defaults to the production environment: `https://edge.api.stigg.io`. + * Defaults to the production environment: `https://api.stigg.io`. */ fun baseUrl(): String = baseUrl ?: PRODUCTION_URL @@ -139,7 +139,7 @@ private constructor( companion object { - const val PRODUCTION_URL = "https://edge.api.stigg.io" + const val PRODUCTION_URL = "https://api.stigg.io" /** * Returns a mutable builder for constructing an instance of [ClientOptions]. @@ -263,7 +263,7 @@ private constructor( /** * The base URL to use for every request. * - * Defaults to the production environment: `https://edge.api.stigg.io`. + * Defaults to the production environment: `https://api.stigg.io`. */ fun baseUrl(baseUrl: String?) = apply { this.baseUrl = baseUrl } @@ -415,10 +415,10 @@ private constructor( * * See this table for the available options: * - * |Setter |System property|Environment variable|Required|Default value | - * |---------|---------------|--------------------|--------|-----------------------------| - * |`apiKey` |`stigg.apiKey` |`STIGG_API_KEY` |true |- | - * |`baseUrl`|`stigg.baseUrl`|`STIGG_BASE_URL` |true |`"https://edge.api.stigg.io"`| + * | Setter | System property | Environment variable | Required | Default value | + * |-----------|-----------------|----------------------|----------|--------------------------| + * | `apiKey` | `stigg.apiKey` | `STIGG_API_KEY` | true | - | + * | `baseUrl` | `stigg.baseUrl` | `STIGG_BASE_URL` | true | `"https://api.stigg.io"` | * * System properties take precedence over environment variables. */ diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerIntegrationResponse.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerIntegrationResponse.kt index 0388b243..0bd2d50c 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerIntegrationResponse.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerIntegrationResponse.kt @@ -524,6 +524,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -541,6 +543,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -566,6 +569,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an * unknown value. @@ -594,6 +598,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -620,6 +625,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerListResponse.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerListResponse.kt index 74a3f9a1..b6f9fed4 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerListResponse.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerListResponse.kt @@ -2525,6 +2525,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -2542,6 +2544,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -2567,6 +2570,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an * unknown value. @@ -2595,6 +2599,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -2621,6 +2626,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerProvisionParams.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerProvisionParams.kt index c6ae3116..1dedf234 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerProvisionParams.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerProvisionParams.kt @@ -3076,6 +3076,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -3093,6 +3095,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -3118,6 +3121,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an * unknown value. @@ -3146,6 +3150,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -3172,6 +3177,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerResponse.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerResponse.kt index f23f4f3d..199244a5 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerResponse.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerResponse.kt @@ -2742,6 +2742,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -2759,6 +2761,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -2785,6 +2788,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an * unknown value. @@ -2813,6 +2817,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -2839,6 +2844,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerUpdateParams.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerUpdateParams.kt index f42a8b90..a2cff71b 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerUpdateParams.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/CustomerUpdateParams.kt @@ -2381,6 +2381,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -2398,6 +2400,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -2423,6 +2426,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an * unknown value. @@ -2451,6 +2455,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -2477,6 +2482,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationLinkParams.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationLinkParams.kt index dd14be95..9a3a13f1 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationLinkParams.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationLinkParams.kt @@ -661,6 +661,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -678,6 +680,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -702,6 +705,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an unknown * value. @@ -730,6 +734,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -755,6 +760,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListParams.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListParams.kt index 9bccda4a..c1a02638 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListParams.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListParams.kt @@ -338,6 +338,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -355,6 +357,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -379,6 +382,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an unknown * value. @@ -407,6 +411,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -432,6 +437,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListResponse.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListResponse.kt index 8e726b2d..12485217 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListResponse.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/integrations/IntegrationListResponse.kt @@ -368,6 +368,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -385,6 +387,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -409,6 +412,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an unknown * value. @@ -437,6 +441,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -462,6 +467,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") } diff --git a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/paymentmethod/PaymentMethodAttachParams.kt b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/paymentmethod/PaymentMethodAttachParams.kt index 5aaa9ce7..3a3883f0 100644 --- a/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/paymentmethod/PaymentMethodAttachParams.kt +++ b/stigg-java-core/src/main/kotlin/io/stigg/models/v1/customers/paymentmethod/PaymentMethodAttachParams.kt @@ -766,6 +766,8 @@ private constructor( @JvmField val PREQUEL = of("PREQUEL") + @JvmField val AIRWALLEX = of("AIRWALLEX") + @JvmStatic fun of(value: String) = VendorIdentifier(JsonField.of(value)) } @@ -783,6 +785,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, } /** @@ -807,6 +810,7 @@ private constructor( APP_STORE, RECEIVED, PREQUEL, + AIRWALLEX, /** * An enum member indicating that [VendorIdentifier] was instantiated with an unknown * value. @@ -835,6 +839,7 @@ private constructor( APP_STORE -> Value.APP_STORE RECEIVED -> Value.RECEIVED PREQUEL -> Value.PREQUEL + AIRWALLEX -> Value.AIRWALLEX else -> Value._UNKNOWN } @@ -860,6 +865,7 @@ private constructor( APP_STORE -> Known.APP_STORE RECEIVED -> Known.RECEIVED PREQUEL -> Known.PREQUEL + AIRWALLEX -> Known.AIRWALLEX else -> throw StiggInvalidDataException("Unknown VendorIdentifier: $value") }