File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
model/src/main/kotlin/com/ninecraft/booket/core/model
network/src/main/kotlin/com/ninecraft/booket/core/network/service Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import androidx.compose.runtime.Stable
66data class BookUpsertModel (
77 val userBookId : String ,
88 val userId : String ,
9- val bookIsbn : String ,
9+ val isbn13 : String ,
1010 val bookTitle : String ,
1111 val bookAuthor : String ,
1212 val status : String ,
Original file line number Diff line number Diff line change @@ -93,6 +93,11 @@ interface ReedService {
9393 @Query(" size" ) size : Int = 20,
9494 ): ReadingRecordsResponse
9595
96+ @GET(" api/v1/reading-records/{userBookId}/seed/stats" )
97+ suspend fun getSeedsStats (
98+ @Path(" userBookId" ) userBookId : String ,
99+ ): SeedResponse
100+
96101 @GET(" api/v1/reading-records/detail/{readingRecordId}" )
97102 suspend fun getRecordDetail (
98103 @Path(" readingRecordId" ) readingRecordId : String ,
@@ -103,10 +108,4 @@ interface ReedService {
103108 suspend fun getHome (
104109 @Query(" limit" ) limit : Int = 3,
105110 ): HomeResponse
106-
107- // Seed (auth required)
108- @GET(" api/v1/seeds/stats" )
109- suspend fun getSeedsStats (
110- @Query(" userBookId" ) userBookId : String ,
111- ): SeedResponse
112111}
You can’t perform that action at this time.
0 commit comments