From 0f2ff8f422a714680dff343ead801e0de2533401 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:35:58 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index f4cd30496..d4f74e2f7 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6f7d8729d517e528b4a2bad402f49122fdf982be7b2df213c393e0d692cef7e7.yml openapi_spec_hash: bd048174c7a122d23818810434e7881d -config_hash: dd86da070cc89eb6d3868bf23764c847 +config_hash: ff2eb5f192b4de36611b37b27961c2d8 From 4af75e81dfa91862fec120234a02a0a38732c6ce Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:47:00 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 +- .../increase/api/models/entities/Entity.kt | 44 +++++++++++++++++- .../api/models/entities/EntityCreateParams.kt | 43 ++++++++++++++++- .../api/models/entities/EntityUpdateParams.kt | 46 +++++++++++++++++-- .../models/entities/EntityCreateParamsTest.kt | 3 ++ .../entities/EntityListPageResponseTest.kt | 3 ++ .../api/models/entities/EntityTest.kt | 3 ++ .../models/entities/EntityUpdateParamsTest.kt | 3 ++ .../services/async/EntityServiceAsyncTest.kt | 2 + .../services/blocking/EntityServiceTest.kt | 2 + 10 files changed, 145 insertions(+), 8 deletions(-) diff --git a/.stats.yml b/.stats.yml index d4f74e2f7..beed026f6 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6f7d8729d517e528b4a2bad402f49122fdf982be7b2df213c393e0d692cef7e7.yml -openapi_spec_hash: bd048174c7a122d23818810434e7881d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6b5ac6804e3261a05214c5891c95222ef1b5e9003f211ab32db1d03a7531835a.yml +openapi_spec_hash: 611c8d38ba7122a428f57f3069aac84a config_hash: ff2eb5f192b4de36611b37b27961c2d8 diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt index a30ff8016..c3140e527 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/Entity.kt @@ -897,6 +897,7 @@ private constructor( private constructor( private val address: JsonField
, private val beneficialOwners: JsonField>, + private val email: JsonField, private val incorporationState: JsonField, private val industryCode: JsonField, private val name: JsonField, @@ -911,6 +912,7 @@ private constructor( @JsonProperty("beneficial_owners") @ExcludeMissing beneficialOwners: JsonField> = JsonMissing.of(), + @JsonProperty("email") @ExcludeMissing email: JsonField = JsonMissing.of(), @JsonProperty("incorporation_state") @ExcludeMissing incorporationState: JsonField = JsonMissing.of(), @@ -925,6 +927,7 @@ private constructor( ) : this( address, beneficialOwners, + email, incorporationState, industryCode, name, @@ -950,6 +953,14 @@ private constructor( fun beneficialOwners(): List = beneficialOwners.getRequired("beneficial_owners") + /** + * An email address for the business. + * + * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if + * the server responded with an unexpected value). + */ + fun email(): Optional = email.getOptional("email") + /** * The two-letter United States Postal Service (USPS) abbreviation for the corporation's * state of incorporation. @@ -1010,6 +1021,13 @@ private constructor( @ExcludeMissing fun _beneficialOwners(): JsonField> = beneficialOwners + /** + * Returns the raw JSON value of [email]. + * + * Unlike [email], this method doesn't throw if the JSON field has an unexpected type. + */ + @JsonProperty("email") @ExcludeMissing fun _email(): JsonField = email + /** * Returns the raw JSON value of [incorporationState]. * @@ -1075,6 +1093,7 @@ private constructor( * ```java * .address() * .beneficialOwners() + * .email() * .incorporationState() * .industryCode() * .name() @@ -1090,6 +1109,7 @@ private constructor( private var address: JsonField
? = null private var beneficialOwners: JsonField>? = null + private var email: JsonField? = null private var incorporationState: JsonField? = null private var industryCode: JsonField? = null private var name: JsonField? = null @@ -1101,6 +1121,7 @@ private constructor( internal fun from(corporation: Corporation) = apply { address = corporation.address beneficialOwners = corporation.beneficialOwners.map { it.toMutableList() } + email = corporation.email incorporationState = corporation.incorporationState industryCode = corporation.industryCode name = corporation.name @@ -1151,6 +1172,21 @@ private constructor( } } + /** An email address for the business. */ + fun email(email: String?) = email(JsonField.ofNullable(email)) + + /** Alias for calling [Builder.email] with `email.orElse(null)`. */ + fun email(email: Optional) = email(email.getOrNull()) + + /** + * Sets [Builder.email] to an arbitrary JSON value. + * + * You should usually call [Builder.email] with a well-typed [String] value instead. + * This method is primarily for setting the field to an undocumented or not yet + * supported value. + */ + fun email(email: JsonField) = apply { this.email = email } + /** * The two-letter United States Postal Service (USPS) abbreviation for the corporation's * state of incorporation. @@ -1272,6 +1308,7 @@ private constructor( * ```java * .address() * .beneficialOwners() + * .email() * .incorporationState() * .industryCode() * .name() @@ -1285,6 +1322,7 @@ private constructor( Corporation( checkRequired("address", address), checkRequired("beneficialOwners", beneficialOwners).map { it.toImmutable() }, + checkRequired("email", email), checkRequired("incorporationState", incorporationState), checkRequired("industryCode", industryCode), checkRequired("name", name), @@ -1303,6 +1341,7 @@ private constructor( address().validate() beneficialOwners().forEach { it.validate() } + email() incorporationState() industryCode() name() @@ -1329,6 +1368,7 @@ private constructor( internal fun validity(): Int = (address.asKnown().getOrNull()?.validity() ?: 0) + (beneficialOwners.asKnown().getOrNull()?.sumOf { it.validity().toInt() } ?: 0) + + (if (email.asKnown().isPresent) 1 else 0) + (if (incorporationState.asKnown().isPresent) 1 else 0) + (if (industryCode.asKnown().isPresent) 1 else 0) + (if (name.asKnown().isPresent) 1 else 0) + @@ -3216,6 +3256,7 @@ private constructor( return other is Corporation && address == other.address && beneficialOwners == other.beneficialOwners && + email == other.email && incorporationState == other.incorporationState && industryCode == other.industryCode && name == other.name && @@ -3228,6 +3269,7 @@ private constructor( Objects.hash( address, beneficialOwners, + email, incorporationState, industryCode, name, @@ -3240,7 +3282,7 @@ private constructor( override fun hashCode(): Int = hashCode override fun toString() = - "Corporation{address=$address, beneficialOwners=$beneficialOwners, incorporationState=$incorporationState, industryCode=$industryCode, name=$name, taxIdentifier=$taxIdentifier, website=$website, additionalProperties=$additionalProperties}" + "Corporation{address=$address, beneficialOwners=$beneficialOwners, email=$email, incorporationState=$incorporationState, industryCode=$industryCode, name=$name, taxIdentifier=$taxIdentifier, website=$website, additionalProperties=$additionalProperties}" } /** diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt index 590772ce6..4d7e14e5b 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityCreateParams.kt @@ -1332,6 +1332,7 @@ private constructor( private val taxIdentifier: JsonField, private val beneficialOwnershipExemptionReason: JsonField, + private val email: JsonField, private val incorporationState: JsonField, private val industryCode: JsonField, private val website: JsonField, @@ -1352,6 +1353,7 @@ private constructor( @ExcludeMissing beneficialOwnershipExemptionReason: JsonField = JsonMissing.of(), + @JsonProperty("email") @ExcludeMissing email: JsonField = JsonMissing.of(), @JsonProperty("incorporation_state") @ExcludeMissing incorporationState: JsonField = JsonMissing.of(), @@ -1365,6 +1367,7 @@ private constructor( name, taxIdentifier, beneficialOwnershipExemptionReason, + email, incorporationState, industryCode, website, @@ -1418,6 +1421,15 @@ private constructor( fun beneficialOwnershipExemptionReason(): Optional = beneficialOwnershipExemptionReason.getOptional("beneficial_ownership_exemption_reason") + /** + * An email address for the business. Not every program requires an email for submitted + * Entities. + * + * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if + * the server responded with an unexpected value). + */ + fun email(): Optional = email.getOptional("email") + /** * The two-letter United States Postal Service (USPS) abbreviation for the corporation's * state of incorporation. @@ -1492,6 +1504,13 @@ private constructor( fun _beneficialOwnershipExemptionReason(): JsonField = beneficialOwnershipExemptionReason + /** + * Returns the raw JSON value of [email]. + * + * Unlike [email], this method doesn't throw if the JSON field has an unexpected type. + */ + @JsonProperty("email") @ExcludeMissing fun _email(): JsonField = email + /** * Returns the raw JSON value of [incorporationState]. * @@ -1557,6 +1576,7 @@ private constructor( private var beneficialOwnershipExemptionReason: JsonField = JsonMissing.of() + private var email: JsonField = JsonMissing.of() private var incorporationState: JsonField = JsonMissing.of() private var industryCode: JsonField = JsonMissing.of() private var website: JsonField = JsonMissing.of() @@ -1569,6 +1589,7 @@ private constructor( name = corporation.name taxIdentifier = corporation.taxIdentifier beneficialOwnershipExemptionReason = corporation.beneficialOwnershipExemptionReason + email = corporation.email incorporationState = corporation.incorporationState industryCode = corporation.industryCode website = corporation.website @@ -1669,6 +1690,21 @@ private constructor( this.beneficialOwnershipExemptionReason = beneficialOwnershipExemptionReason } + /** + * An email address for the business. Not every program requires an email for submitted + * Entities. + */ + fun email(email: String) = email(JsonField.of(email)) + + /** + * Sets [Builder.email] to an arbitrary JSON value. + * + * You should usually call [Builder.email] with a well-typed [String] value instead. + * This method is primarily for setting the field to an undocumented or not yet + * supported value. + */ + fun email(email: JsonField) = apply { this.email = email } + /** * The two-letter United States Postal Service (USPS) abbreviation for the corporation's * state of incorporation. @@ -1759,6 +1795,7 @@ private constructor( checkRequired("name", name), checkRequired("taxIdentifier", taxIdentifier), beneficialOwnershipExemptionReason, + email, incorporationState, industryCode, website, @@ -1778,6 +1815,7 @@ private constructor( name() taxIdentifier() beneficialOwnershipExemptionReason().ifPresent { it.validate() } + email() incorporationState() industryCode() website() @@ -1805,6 +1843,7 @@ private constructor( (if (name.asKnown().isPresent) 1 else 0) + (if (taxIdentifier.asKnown().isPresent) 1 else 0) + (beneficialOwnershipExemptionReason.asKnown().getOrNull()?.validity() ?: 0) + + (if (email.asKnown().isPresent) 1 else 0) + (if (incorporationState.asKnown().isPresent) 1 else 0) + (if (industryCode.asKnown().isPresent) 1 else 0) + (if (website.asKnown().isPresent) 1 else 0) @@ -5014,6 +5053,7 @@ private constructor( name == other.name && taxIdentifier == other.taxIdentifier && beneficialOwnershipExemptionReason == other.beneficialOwnershipExemptionReason && + email == other.email && incorporationState == other.incorporationState && industryCode == other.industryCode && website == other.website && @@ -5027,6 +5067,7 @@ private constructor( name, taxIdentifier, beneficialOwnershipExemptionReason, + email, incorporationState, industryCode, website, @@ -5037,7 +5078,7 @@ private constructor( override fun hashCode(): Int = hashCode override fun toString() = - "Corporation{address=$address, beneficialOwners=$beneficialOwners, name=$name, taxIdentifier=$taxIdentifier, beneficialOwnershipExemptionReason=$beneficialOwnershipExemptionReason, incorporationState=$incorporationState, industryCode=$industryCode, website=$website, additionalProperties=$additionalProperties}" + "Corporation{address=$address, beneficialOwners=$beneficialOwners, name=$name, taxIdentifier=$taxIdentifier, beneficialOwnershipExemptionReason=$beneficialOwnershipExemptionReason, email=$email, incorporationState=$incorporationState, industryCode=$industryCode, website=$website, additionalProperties=$additionalProperties}" } /** diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt index 38b7f7301..6f0b1a7ad 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/entities/EntityUpdateParams.kt @@ -932,6 +932,7 @@ private constructor( @JsonCreator(mode = JsonCreator.Mode.DISABLED) private constructor( private val address: JsonField
, + private val email: JsonField, private val industryCode: JsonField, private val name: JsonField, private val additionalProperties: MutableMap, @@ -940,11 +941,12 @@ private constructor( @JsonCreator private constructor( @JsonProperty("address") @ExcludeMissing address: JsonField
= JsonMissing.of(), + @JsonProperty("email") @ExcludeMissing email: JsonField = JsonMissing.of(), @JsonProperty("industry_code") @ExcludeMissing industryCode: JsonField = JsonMissing.of(), @JsonProperty("name") @ExcludeMissing name: JsonField = JsonMissing.of(), - ) : this(address, industryCode, name, mutableMapOf()) + ) : this(address, email, industryCode, name, mutableMapOf()) /** * The entity's physical address. Mail receiving locations like PO Boxes and PMB's are @@ -955,6 +957,15 @@ private constructor( */ fun address(): Optional
= address.getOptional("address") + /** + * An email address for the business. Not every program requires an email for submitted + * Entities. + * + * @throws IncreaseInvalidDataException if the JSON field has an unexpected type (e.g. if + * the server responded with an unexpected value). + */ + fun email(): Optional = email.getOptional("email") + /** * The North American Industry Classification System (NAICS) code for the corporation's * primary line of business. This is a number, like `5132` for `Software Publishers`. A full @@ -981,6 +992,13 @@ private constructor( */ @JsonProperty("address") @ExcludeMissing fun _address(): JsonField
= address + /** + * Returns the raw JSON value of [email]. + * + * Unlike [email], this method doesn't throw if the JSON field has an unexpected type. + */ + @JsonProperty("email") @ExcludeMissing fun _email(): JsonField = email + /** * Returns the raw JSON value of [industryCode]. * @@ -1020,6 +1038,7 @@ private constructor( class Builder internal constructor() { private var address: JsonField
= JsonMissing.of() + private var email: JsonField = JsonMissing.of() private var industryCode: JsonField = JsonMissing.of() private var name: JsonField = JsonMissing.of() private var additionalProperties: MutableMap = mutableMapOf() @@ -1027,6 +1046,7 @@ private constructor( @JvmSynthetic internal fun from(corporation: Corporation) = apply { address = corporation.address + email = corporation.email industryCode = corporation.industryCode name = corporation.name additionalProperties = corporation.additionalProperties.toMutableMap() @@ -1047,6 +1067,21 @@ private constructor( */ fun address(address: JsonField
) = apply { this.address = address } + /** + * An email address for the business. Not every program requires an email for submitted + * Entities. + */ + fun email(email: String) = email(JsonField.of(email)) + + /** + * Sets [Builder.email] to an arbitrary JSON value. + * + * You should usually call [Builder.email] with a well-typed [String] value instead. + * This method is primarily for setting the field to an undocumented or not yet + * supported value. + */ + fun email(email: JsonField) = apply { this.email = email } + /** * The North American Industry Classification System (NAICS) code for the corporation's * primary line of business. This is a number, like `5132` for `Software Publishers`. A @@ -1103,7 +1138,7 @@ private constructor( * Further updates to this [Builder] will not mutate the returned instance. */ fun build(): Corporation = - Corporation(address, industryCode, name, additionalProperties.toMutableMap()) + Corporation(address, email, industryCode, name, additionalProperties.toMutableMap()) } private var validated: Boolean = false @@ -1114,6 +1149,7 @@ private constructor( } address().ifPresent { it.validate() } + email() industryCode() name() validated = true @@ -1136,6 +1172,7 @@ private constructor( @JvmSynthetic internal fun validity(): Int = (address.asKnown().getOrNull()?.validity() ?: 0) + + (if (email.asKnown().isPresent) 1 else 0) + (if (industryCode.asKnown().isPresent) 1 else 0) + (if (name.asKnown().isPresent) 1 else 0) @@ -1470,19 +1507,20 @@ private constructor( return other is Corporation && address == other.address && + email == other.email && industryCode == other.industryCode && name == other.name && additionalProperties == other.additionalProperties } private val hashCode: Int by lazy { - Objects.hash(address, industryCode, name, additionalProperties) + Objects.hash(address, email, industryCode, name, additionalProperties) } override fun hashCode(): Int = hashCode override fun toString() = - "Corporation{address=$address, industryCode=$industryCode, name=$name, additionalProperties=$additionalProperties}" + "Corporation{address=$address, email=$email, industryCode=$industryCode, name=$name, additionalProperties=$additionalProperties}" } /** diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityCreateParamsTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityCreateParamsTest.kt index 90ea9c425..03e7abad1 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityCreateParamsTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityCreateParamsTest.kt @@ -106,6 +106,7 @@ internal class EntityCreateParamsTest { EntityCreateParams.Corporation.BeneficialOwnershipExemptionReason .REGULATED_FINANCIAL_INSTITUTION ) + .email("dev@stainless.com") .incorporationState("NY") .industryCode("x") .website("https://example.com") @@ -507,6 +508,7 @@ internal class EntityCreateParamsTest { EntityCreateParams.Corporation.BeneficialOwnershipExemptionReason .REGULATED_FINANCIAL_INSTITUTION ) + .email("dev@stainless.com") .incorporationState("NY") .industryCode("x") .website("https://example.com") @@ -905,6 +907,7 @@ internal class EntityCreateParamsTest { EntityCreateParams.Corporation.BeneficialOwnershipExemptionReason .REGULATED_FINANCIAL_INSTITUTION ) + .email("dev@stainless.com") .incorporationState("NY") .industryCode("x") .website("https://example.com") diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityListPageResponseTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityListPageResponseTest.kt index 7694837e5..7cc18d379 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityListPageResponseTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityListPageResponseTest.kt @@ -71,6 +71,7 @@ internal class EntityListPageResponseTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") @@ -318,6 +319,7 @@ internal class EntityListPageResponseTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") @@ -568,6 +570,7 @@ internal class EntityListPageResponseTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityTest.kt index 98a84f465..de6db0860 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityTest.kt @@ -67,6 +67,7 @@ internal class EntityTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") @@ -303,6 +304,7 @@ internal class EntityTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") @@ -550,6 +552,7 @@ internal class EntityTest { .prong(Entity.Corporation.BeneficialOwner.Prong.CONTROL) .build() ) + .email(null) .incorporationState("NY") .industryCode(null) .name("National Phonograph Company") diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityUpdateParamsTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityUpdateParamsTest.kt index 89e16c51e..517c9a901 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityUpdateParamsTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/entities/EntityUpdateParamsTest.kt @@ -23,6 +23,7 @@ internal class EntityUpdateParamsTest { .line2("Unit 2") .build() ) + .email("dev@stainless.com") .industryCode("x") .name("x") .build() @@ -110,6 +111,7 @@ internal class EntityUpdateParamsTest { .line2("Unit 2") .build() ) + .email("dev@stainless.com") .industryCode("x") .name("x") .build() @@ -185,6 +187,7 @@ internal class EntityUpdateParamsTest { .line2("Unit 2") .build() ) + .email("dev@stainless.com") .industryCode("x") .name("x") .build() diff --git a/increase-java-core/src/test/kotlin/com/increase/api/services/async/EntityServiceAsyncTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/services/async/EntityServiceAsyncTest.kt index 516c84c32..8233df4a5 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/services/async/EntityServiceAsyncTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/services/async/EntityServiceAsyncTest.kt @@ -140,6 +140,7 @@ internal class EntityServiceAsyncTest { EntityCreateParams.Corporation.BeneficialOwnershipExemptionReason .REGULATED_FINANCIAL_INSTITUTION ) + .email("dev@stainless.com") .incorporationState("NY") .industryCode("x") .website("https://example.com") @@ -494,6 +495,7 @@ internal class EntityServiceAsyncTest { .line2("Unit 2") .build() ) + .email("dev@stainless.com") .industryCode("x") .name("x") .build() diff --git a/increase-java-core/src/test/kotlin/com/increase/api/services/blocking/EntityServiceTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/services/blocking/EntityServiceTest.kt index fb0a01cf1..dea4fb86a 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/services/blocking/EntityServiceTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/services/blocking/EntityServiceTest.kt @@ -140,6 +140,7 @@ internal class EntityServiceTest { EntityCreateParams.Corporation.BeneficialOwnershipExemptionReason .REGULATED_FINANCIAL_INSTITUTION ) + .email("dev@stainless.com") .incorporationState("NY") .industryCode("x") .website("https://example.com") @@ -492,6 +493,7 @@ internal class EntityServiceTest { .line2("Unit 2") .build() ) + .email("dev@stainless.com") .industryCode("x") .name("x") .build() From 1769bcc37a4dc81780607f913b8f8b6a4bd64b55 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:47:26 +0000 Subject: [PATCH 3/3] release: 0.379.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 10 +++++----- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 786891957..c3ae3e4ab 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.378.0" + ".": "0.379.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 101133d3d..d3cb295a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.379.0 (2025-12-15) + +Full Changelog: [v0.378.0...v0.379.0](https://github.com/Increase/increase-java/compare/v0.378.0...v0.379.0) + +### Features + +* **api:** api update ([4af75e8](https://github.com/Increase/increase-java/commit/4af75e81dfa91862fec120234a02a0a38732c6ce)) + ## 0.378.0 (2025-12-09) Full Changelog: [v0.377.0...v0.378.0](https://github.com/Increase/increase-java/compare/v0.377.0...v0.378.0) diff --git a/README.md b/README.md index 585752a2d..795112bbc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.378.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.378.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.378.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.379.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.379.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.379.0) @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe -The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.378.0). +The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.379.0). @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ### Gradle ```kotlin -implementation("com.increase.api:increase-java:0.378.0") +implementation("com.increase.api:increase-java:0.379.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.378.0") com.increase.api increase-java - 0.378.0 + 0.379.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index b44415a6b..6956d85ca 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.378.0" // x-release-please-version + version = "0.379.0" // x-release-please-version } subprojects {