Skip to content

Commit cf6fd19

Browse files
feat(api): api update
1 parent 5d37bc1 commit cf6fd19

File tree

7 files changed

+8
-38
lines changed

7 files changed

+8
-38
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 118
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-96a2f34503f9348f8d7ce82035fe09c917860d77e17bc6817e034b891902599a.yml
3-
openapi_spec_hash: 3719dd8f962e6b0051a95015aecb0e53
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-42aa43f3893eef31a351e066bf0cf8c56da8c857ccbb45eb7dd58739ad43bd86.yml
3+
openapi_spec_hash: e6b8c1e707036539d88a7b79af864a49
44
config_hash: 1f73a949b649ecfe6ec68ba1bb459dc2

orb-java-core/src/main/kotlin/com/withorb/api/models/BetaCreatePlanVersionParams.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@ import java.util.Objects
3333
import java.util.Optional
3434
import kotlin.jvm.optionals.getOrNull
3535

36-
/**
37-
* This API endpoint is in beta and its interface may change. It is recommended for use only in test
38-
* mode.
39-
*
40-
* This endpoint allows the creation of a new plan version for an existing plan.
41-
*/
36+
/** This endpoint allows the creation of a new plan version for an existing plan. */
4237
class BetaCreatePlanVersionParams
4338
private constructor(
4439
private val planId: String?,

orb-java-core/src/main/kotlin/com/withorb/api/models/BetaExternalPlanIdCreatePlanVersionParams.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@ import java.util.Objects
3333
import java.util.Optional
3434
import kotlin.jvm.optionals.getOrNull
3535

36-
/**
37-
* This API endpoint is in beta and its interface may change. It is recommended for use only in test
38-
* mode.
39-
*
40-
* This endpoint allows the creation of a new plan version for an existing plan.
41-
*/
36+
/** This endpoint allows the creation of a new plan version for an existing plan. */
4237
class BetaExternalPlanIdCreatePlanVersionParams
4338
private constructor(
4439
private val externalPlanId: String?,

orb-java-core/src/main/kotlin/com/withorb/api/services/async/BetaServiceAsync.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,7 @@ interface BetaServiceAsync {
3030

3131
fun externalPlanId(): ExternalPlanIdServiceAsync
3232

33-
/**
34-
* This API endpoint is in beta and its interface may change. It is recommended for use only in
35-
* test mode.
36-
*
37-
* This endpoint allows the creation of a new plan version for an existing plan.
38-
*/
33+
/** This endpoint allows the creation of a new plan version for an existing plan. */
3934
fun createPlanVersion(
4035
planId: String,
4136
params: BetaCreatePlanVersionParams,

orb-java-core/src/main/kotlin/com/withorb/api/services/async/beta/ExternalPlanIdServiceAsync.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ interface ExternalPlanIdServiceAsync {
2727
*/
2828
fun withOptions(modifier: Consumer<ClientOptions.Builder>): ExternalPlanIdServiceAsync
2929

30-
/**
31-
* This API endpoint is in beta and its interface may change. It is recommended for use only in
32-
* test mode.
33-
*
34-
* This endpoint allows the creation of a new plan version for an existing plan.
35-
*/
30+
/** This endpoint allows the creation of a new plan version for an existing plan. */
3631
fun createPlanVersion(
3732
externalPlanId: String,
3833
params: BetaExternalPlanIdCreatePlanVersionParams,

orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/BetaService.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,7 @@ interface BetaService {
3030

3131
fun externalPlanId(): ExternalPlanIdService
3232

33-
/**
34-
* This API endpoint is in beta and its interface may change. It is recommended for use only in
35-
* test mode.
36-
*
37-
* This endpoint allows the creation of a new plan version for an existing plan.
38-
*/
33+
/** This endpoint allows the creation of a new plan version for an existing plan. */
3934
fun createPlanVersion(planId: String, params: BetaCreatePlanVersionParams): PlanVersion =
4035
createPlanVersion(planId, params, RequestOptions.none())
4136

orb-java-core/src/main/kotlin/com/withorb/api/services/blocking/beta/ExternalPlanIdService.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,7 @@ interface ExternalPlanIdService {
2727
*/
2828
fun withOptions(modifier: Consumer<ClientOptions.Builder>): ExternalPlanIdService
2929

30-
/**
31-
* This API endpoint is in beta and its interface may change. It is recommended for use only in
32-
* test mode.
33-
*
34-
* This endpoint allows the creation of a new plan version for an existing plan.
35-
*/
30+
/** This endpoint allows the creation of a new plan version for an existing plan. */
3631
fun createPlanVersion(
3732
externalPlanId: String,
3833
params: BetaExternalPlanIdCreatePlanVersionParams,

0 commit comments

Comments
 (0)