We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7beee22 commit 823c832Copy full SHA for 823c832
core/src/commonMain/kotlin/com/powersync/connectors/PowerSyncCredentials.kt
@@ -18,9 +18,14 @@ public data class PowerSyncCredentials(
18
val token: String,
19
/**
20
* User ID.
21
- * @deprecated This is no longer used.
22
*/
23
- @SerialName("user_id") val userId: String?,
+ @Deprecated(
+ message = "This property is no longer used.",
24
+ replaceWith = ReplaceWith(""),
25
+ level = DeprecationLevel.WARNING
26
+ )
27
+ @SerialName("user_id")
28
+ val userId: String?,
29
) {
30
override fun toString(): String = "PowerSyncCredentials<endpoint: $endpoint userId: $userId>"
31
0 commit comments