Skip to content

Commit c55ae6a

Browse files
nbransbygithub-actions[bot]
authored andcommitted
Apply automatic changes
1 parent 71a8395 commit c55ae6a

File tree

8 files changed

+14
-16
lines changed

8 files changed

+14
-16
lines changed

firebase-analytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-analytics",
3-
"version": "1.13.0",
3+
"version": "2.0.0",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-analytics.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.13.0",
26+
"@gitlive/firebase-app": "2.0.0",
2727
"firebase": "9.19.1",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

firebase-auth/src/jsMain/kotlin/dev/gitlive/firebase/auth/credentials.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import dev.gitlive.firebase.auth.externals.EmailAuthProvider
55
import dev.gitlive.firebase.auth.externals.FacebookAuthProvider
66
import dev.gitlive.firebase.auth.externals.GithubAuthProvider
77
import dev.gitlive.firebase.auth.externals.GoogleAuthProvider
8-
import dev.gitlive.firebase.auth.externals.IdTokenResult
98
import dev.gitlive.firebase.auth.externals.PhoneAuthProvider as JsPhoneAuthProvider
109
import dev.gitlive.firebase.auth.externals.TwitterAuthProvider
1110
import kotlinx.coroutines.await

firebase-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-config",
3-
"version": "1.13.0",
3+
"version": "2.0.0",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-config.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.13.0",
26+
"@gitlive/firebase-app": "2.0.0",
2727
"firebase": "9.19.1",
2828
"kotlin": "1.8.20",
2929
"kotlinx-coroutines-core": "1.6.4"

firebase-crashlytics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-crashlytics",
3-
"version": "1.13.0",
3+
"version": "2.0.0",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-crashlytics.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.13.0",
26+
"@gitlive/firebase-app": "2.0.0",
2727
"firebase": "9.19.1",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

firebase-database/src/jsMain/kotlin/dev/gitlive/firebase/database/database.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import dev.gitlive.firebase.database.externals.ref
2727
import dev.gitlive.firebase.database.externals.remove
2828
import dev.gitlive.firebase.database.externals.set
2929
import dev.gitlive.firebase.database.externals.update
30-
import dev.gitlive.firebase.database.js
3130
import dev.gitlive.firebase.internal.EncodedObject
3231
import dev.gitlive.firebase.internal.decode
3332
import dev.gitlive.firebase.internal.js
@@ -98,7 +97,7 @@ internal actual open class NativeQuery(
9897
public val Query.js: JsQuery get() = nativeQuery.js
9998

10099
public actual open class Query internal actual constructor(
101-
internal val nativeQuery: NativeQuery
100+
internal val nativeQuery: NativeQuery,
102101
) {
103102

104103
internal constructor(js: JsQuery, database: Database) : this(NativeQuery(js, database))
@@ -206,7 +205,7 @@ public val DataSnapshot.js: JsDataSnapshot get() = js
206205

207206
public actual class DataSnapshot internal constructor(
208207
internal val js: JsDataSnapshot,
209-
val database: Database
208+
val database: Database,
210209
) {
211210
public actual val value: Any? get() {
212211
check(!hasChildren) { "DataSnapshot.value can only be used for primitive values (snapshots without children)" }

firebase-firestore/src/jsMain/kotlin/dev/gitlive/firebase/firestore/firestore.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ public actual data class FirebaseFirestoreSettings(
8888
).asDynamic() as PersistentCacheSettings,
8989
)
9090
is LocalCacheSettings.Memory -> {
91-
val garbageCollectorSettings = when (val garbageCollectorSettings = cacheSettings.garbaseCollectorSettings) {
91+
val garbageCollectorSettings = when (val garbageCollectorSettings = cacheSettings.garbaseCollectorSettings) {
9292
is MemoryGarbageCollectorSettings.Eager -> memoryEagerGarbageCollector()
9393
is MemoryGarbageCollectorSettings.LRUGC -> memoryLruGarbageCollector(json("cacheSizeBytes" to garbageCollectorSettings.sizeBytes))
9494
}
95-
memoryLocalCache(json("garbageCollector" to garbageCollectorSettings).asDynamic() as MemoryCacheSettings)
95+
memoryLocalCache(json("garbageCollector" to garbageCollectorSettings).asDynamic() as MemoryCacheSettings)
9696
}
9797
},
9898
)

firebase-perf/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-perf",
3-
"version": "1.13.0",
3+
"version": "2.0.0",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-perf.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.13.0",
26+
"@gitlive/firebase-app": "2.0.0",
2727
"firebase": "9.19.1",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

firebase-storage/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitlive/firebase-storage",
3-
"version": "1.13.0",
3+
"version": "2.0.0",
44
"description": "Wrapper around firebase for usage in Kotlin Multiplatform projects",
55
"main": "firebase-storage.js",
66
"scripts": {
@@ -23,7 +23,7 @@
2323
},
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-sdk",
2525
"dependencies": {
26-
"@gitlive/firebase-app": "1.13.0",
26+
"@gitlive/firebase-app": "2.0.0",
2727
"firebase": "9.19.1",
2828
"kotlin": "1.6.10",
2929
"kotlinx-coroutines-core": "1.6.1-native-mt"

0 commit comments

Comments
 (0)