Skip to content

Commit 008fa05

Browse files
committed
Mark StreamUser as internal
1 parent b50c35c commit 008fa05

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/pr-quality.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ permissions:
1010
pull-requests: write
1111
issues: write
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
1317
jobs:
1418
pr-checklist:
1519
uses: GetStream/android-ci-actions/.github/workflows/pr-quality.yml@main

stream-android-core/src/main/java/io/getstream/android/core/api/model/StreamUser.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package io.getstream.android.core.api.model
1818

19-
import io.getstream.android.core.annotations.StreamPublishedApi
19+
import io.getstream.android.core.annotations.StreamInternalApi
2020
import io.getstream.android.core.api.model.value.StreamUserId
2121

2222
/**
@@ -28,7 +28,7 @@ import io.getstream.android.core.api.model.value.StreamUserId
2828
* @property customData Custom data associated with the user, represented as a map (default empty
2929
* map).
3030
*/
31-
@StreamPublishedApi
31+
@StreamInternalApi
3232
public data class StreamUser(
3333
public val id: StreamUserId,
3434
public val name: String? = null,

0 commit comments

Comments
 (0)