Skip to content

Commit 1443140

Browse files
authored
kotlin: Pull in some changes from codegen (#1674)
A bunch of manual changes were unfortunately still required, in particular because Kotlin has some path parameters backwards, which would be a rather nasty breaking change if we fixed it. ```json { "file-generated-at": "2025-01-30T13:42:23.808674168+00:00", "git-rev": "de9e055e589b036eb3ec562c96ca86c83dc91b74", "openapi-codegen-version": "0.1.0", "openapi.json-sha256": "316e0fad86746b428a23d871e6148b12e35ac955a9fc57945e2b29a4a43da7c1" } ```
2 parents 425fbba + a3cc06b commit 1443140

File tree

5 files changed

+109
-24
lines changed

5 files changed

+109
-24
lines changed

kotlin/lib/src/main/kotlin/Authentication.kt

+18-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// this file is @generated (with minor manual changes)
1+
// this file is @generated
22
package com.svix.kotlin
33

44
import com.svix.kotlin.exceptions.ApiException
@@ -38,25 +38,34 @@ class Authentication internal constructor(token: String, options: SvixOptions) {
3838
}
3939
}
4040

41-
suspend fun dashboardAccess(
41+
/** Expire all of the tokens associated with a specific application. */
42+
suspend fun expireAll(
4243
appId: String,
44+
applicationTokenExpireIn: ApplicationTokenExpireIn,
4345
options: PostOptions = PostOptions(),
44-
): DashboardAccessOut {
46+
) {
4547
try {
46-
return api.v1AuthenticationDashboardAccess(appId, options.idempotencyKey)
48+
api.v1AuthenticationExpireAll(appId, applicationTokenExpireIn, options.idempotencyKey)
4749
} catch (e: Exception) {
4850
throw ApiException.wrap(e)
4951
}
5052
}
5153

52-
/** Expire all of the tokens associated with a specific application. */
53-
suspend fun expireAll(
54+
/**
55+
* DEPRECATED: Please use `app-portal-access` instead.
56+
*
57+
* Use this function to get magic links (and authentication codes) for connecting your users to
58+
* the Consumer Application Portal.
59+
*
60+
* @deprecated
61+
*/
62+
@Deprecated(message = "Use appPortalAccess instead.")
63+
suspend fun dashboardAccess(
5464
appId: String,
55-
applicationTokenExpireIn: ApplicationTokenExpireIn,
5665
options: PostOptions = PostOptions(),
57-
) {
66+
): DashboardAccessOut {
5867
try {
59-
api.v1AuthenticationExpireAll(appId, applicationTokenExpireIn, options.idempotencyKey)
68+
return api.v1AuthenticationDashboardAccess(appId, options.idempotencyKey)
6069
} catch (e: Exception) {
6170
throw ApiException.wrap(e)
6271
}

kotlin/lib/src/main/kotlin/BackgroundTask.kt

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// this file is @generated
12
package com.svix.kotlin
23

34
import com.svix.kotlin.exceptions.ApiException
@@ -9,21 +10,26 @@ import com.svix.kotlin.models.ListResponseBackgroundTaskOut
910
import com.svix.kotlin.models.Ordering
1011

1112
class BackgroundTaskListOptions {
12-
var iterator: String? = null
13-
var limit: Int? = null
1413
var status: BackgroundTaskStatus? = null
1514
var task: BackgroundTaskType? = null
15+
var limit: Int? = null
16+
var iterator: String? = null
1617
var order: Ordering? = null
1718

18-
fun order(order: Ordering) = apply { this.order = order }
19-
19+
/** Filter the response based on the status. */
2020
fun status(status: BackgroundTaskStatus) = apply { this.status = status }
2121

22+
/** Filter the response based on the type. */
2223
fun task(task: BackgroundTaskType) = apply { this.task = task }
2324

25+
/** Limit the number of returned items */
26+
fun limit(limit: Int) = apply { this.limit = limit }
27+
28+
/** The iterator returned from a prior invocation */
2429
fun iterator(iterator: String) = apply { this.iterator = iterator }
2530

26-
fun limit(limit: Int) = apply { this.limit = limit }
31+
/** The sorting order of the returned items */
32+
fun order(order: Ordering) = apply { this.order = order }
2733
}
2834

2935
class BackgroundTask internal constructor(token: String, options: SvixOptions) {
@@ -36,6 +42,7 @@ class BackgroundTask internal constructor(token: String, options: SvixOptions) {
3642
options.numRetries?.let { api.numRetries = it }
3743
}
3844

45+
/** List background tasks executed in the past 90 days. */
3946
suspend fun list(
4047
options: BackgroundTaskListOptions = BackgroundTaskListOptions()
4148
): ListResponseBackgroundTaskOut {
@@ -52,6 +59,7 @@ class BackgroundTask internal constructor(token: String, options: SvixOptions) {
5259
}
5360
}
5461

62+
/** Get a background task by ID. */
5563
suspend fun get(taskId: String): BackgroundTaskOut {
5664
try {
5765
return api.v1BackgroundTaskGet(taskId)

kotlin/lib/src/main/kotlin/EventType.kt

+15-2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ class EventTypeListOptions {
3838
fun withContent(withContent: Boolean) = apply { this.withContent = withContent }
3939
}
4040

41+
class EventTypeDeleteOptions {
42+
var expunge: Boolean? = null
43+
44+
/**
45+
* By default event types are archived when "deleted". Passing this to `true` deletes them
46+
* entirely.
47+
*/
48+
fun expunge(expunge: Boolean) = apply { this.expunge = expunge }
49+
}
50+
4151
class EventType internal constructor(token: String, options: SvixOptions) {
4252
private val api = EventTypeApi(options.serverUrl)
4353

@@ -127,9 +137,12 @@ class EventType internal constructor(token: String, options: SvixOptions) {
127137
* An event type can be unarchived with the
128138
* [create operation](#operation/create_event_type_api_v1_event_type__post).
129139
*/
130-
suspend fun delete(eventTypeName: String) {
140+
suspend fun delete(
141+
eventTypeName: String,
142+
options: EventTypeDeleteOptions = EventTypeDeleteOptions(),
143+
) {
131144
try {
132-
api.v1EventTypeDelete(eventTypeName, null)
145+
api.v1EventTypeDelete(eventTypeName, options.expunge)
133146
} catch (e: Exception) {
134147
throw ApiException.wrap(e)
135148
}

kotlin/lib/src/main/kotlin/Integration.kt

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// this file is @generated (with minor manual changes)
1+
// this file is @generated
22
package com.svix.kotlin
33

44
import com.svix.kotlin.exceptions.ApiException
@@ -91,6 +91,12 @@ class Integration internal constructor(token: String, options: SvixOptions) {
9191
}
9292
}
9393

94+
/**
95+
* Get an integration's key.
96+
*
97+
* @deprecated
98+
*/
99+
@Deprecated(message = "This endpoint is deprecated.")
94100
suspend fun getKey(appId: String, integId: String): IntegrationKeyOut {
95101
try {
96102
return api.v1IntegrationGetKey(appId, integId)

kotlin/lib/src/main/kotlin/OperationalWebhookEndpoint.kt

+56-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
// this file is @generated
12
package com.svix.kotlin
23

34
import com.svix.kotlin.exceptions.ApiException
45
import com.svix.kotlin.internal.apis.WebhookEndpointApi as OperationalWebhookEndpointApi
56
import com.svix.kotlin.models.ListResponseOperationalWebhookEndpointOut
7+
import com.svix.kotlin.models.OperationalWebhookEndpointHeadersIn
8+
import com.svix.kotlin.models.OperationalWebhookEndpointHeadersOut
69
import com.svix.kotlin.models.OperationalWebhookEndpointIn
710
import com.svix.kotlin.models.OperationalWebhookEndpointOut
811
import com.svix.kotlin.models.OperationalWebhookEndpointSecretIn
@@ -26,7 +29,7 @@ class OperationalWebhookEndpointListOptions {
2629
}
2730

2831
class OperationalWebhookEndpoint internal constructor(token: String, options: SvixOptions) {
29-
val api = OperationalWebhookEndpointApi(options.serverUrl)
32+
private val api = OperationalWebhookEndpointApi(options.serverUrl)
3033

3134
init {
3235
api.accessToken = token
@@ -35,6 +38,7 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
3538
options.numRetries?.let { api.numRetries = it }
3639
}
3740

41+
/** List operational webhook endpoints. */
3842
suspend fun list(
3943
options: OperationalWebhookEndpointListOptions = OperationalWebhookEndpointListOptions()
4044
): ListResponseOperationalWebhookEndpointOut {
@@ -49,17 +53,22 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
4953
}
5054
}
5155

56+
/** Create an operational webhook endpoint. */
5257
suspend fun create(
53-
endpointIn: OperationalWebhookEndpointIn,
58+
operationalWebhookEndpointIn: OperationalWebhookEndpointIn,
5459
options: PostOptions = PostOptions(),
5560
): OperationalWebhookEndpointOut {
5661
try {
57-
return api.v1OperationalWebhookEndpointCreate(endpointIn, options.idempotencyKey)
62+
return api.v1OperationalWebhookEndpointCreate(
63+
operationalWebhookEndpointIn,
64+
options.idempotencyKey,
65+
)
5866
} catch (e: Exception) {
5967
throw ApiException.wrap(e)
6068
}
6169
}
6270

71+
/** Get an operational webhook endpoint. */
6372
suspend fun get(endpointId: String): OperationalWebhookEndpointOut {
6473
try {
6574
return api.v1OperationalWebhookEndpointGet(endpointId)
@@ -68,17 +77,22 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
6877
}
6978
}
7079

80+
/** Update an operational webhook endpoint. */
7181
suspend fun update(
7282
endpointId: String,
73-
endpointUpdate: OperationalWebhookEndpointUpdate,
83+
operationalWebhookEndpointUpdate: OperationalWebhookEndpointUpdate,
7484
): OperationalWebhookEndpointOut {
7585
try {
76-
return api.v1OperationalWebhookEndpointUpdate(endpointId, endpointUpdate)
86+
return api.v1OperationalWebhookEndpointUpdate(
87+
endpointId,
88+
operationalWebhookEndpointUpdate,
89+
)
7790
} catch (e: Exception) {
7891
throw ApiException.wrap(e)
7992
}
8093
}
8194

95+
/** Delete an operational webhook endpoint. */
8296
suspend fun delete(endpointId: String) {
8397
try {
8498
api.v1OperationalWebhookEndpointDelete(endpointId)
@@ -87,6 +101,36 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
87101
}
88102
}
89103

104+
/** Get the additional headers to be sent with the operational webhook. */
105+
suspend fun getHeaders(endpointId: String): OperationalWebhookEndpointHeadersOut {
106+
try {
107+
return api.v1OperationalWebhookEndpointGetHeaders(endpointId)
108+
} catch (e: Exception) {
109+
throw ApiException.wrap(e)
110+
}
111+
}
112+
113+
/** Set the additional headers to be sent with the operational webhook. */
114+
suspend fun updateHeaders(
115+
endpointId: String,
116+
operationalWebhookEndpointHeadersIn: OperationalWebhookEndpointHeadersIn,
117+
) {
118+
try {
119+
api.v1OperationalWebhookEndpointUpdateHeaders(
120+
endpointId,
121+
operationalWebhookEndpointHeadersIn,
122+
)
123+
} catch (e: Exception) {
124+
throw ApiException.wrap(e)
125+
}
126+
}
127+
128+
/**
129+
* Get an operational webhook endpoint's signing secret.
130+
*
131+
* This is used to verify the authenticity of the webhook. For more information please refer to
132+
* [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/).
133+
*/
90134
suspend fun getSecret(endpointId: String): OperationalWebhookEndpointSecretOut {
91135
try {
92136
return api.v1OperationalWebhookEndpointGetSecret(endpointId)
@@ -95,15 +139,20 @@ class OperationalWebhookEndpoint internal constructor(token: String, options: Sv
95139
}
96140
}
97141

142+
/**
143+
* Rotates an operational webhook endpoint's signing secret.
144+
*
145+
* The previous secret will remain valid for the next 24 hours.
146+
*/
98147
suspend fun rotateSecret(
99148
endpointId: String,
100-
endpointSecretRotateIn: OperationalWebhookEndpointSecretIn,
149+
operationalWebhookEndpointSecretIn: OperationalWebhookEndpointSecretIn,
101150
options: PostOptions = PostOptions(),
102151
) {
103152
try {
104153
api.v1OperationalWebhookEndpointRotateSecret(
105154
endpointId,
106-
endpointSecretRotateIn,
155+
operationalWebhookEndpointSecretIn,
107156
options.idempotencyKey,
108157
)
109158
} catch (e: Exception) {

0 commit comments

Comments
 (0)