Skip to content

Commit

Permalink
TanStack Query 5.63.0 [generated]
Browse files Browse the repository at this point in the history
  • Loading branch information
porotkin committed Jan 9, 2025
1 parent 9172cfb commit 9da5b3c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ semver.npm.version=^7.6.3
semver-types.npm.version=^7.5.8

# https://www.npmjs.com/package/@tanstack/query-core
tanstack-query-core.npm.version=^5.62.12
tanstack-query-core.npm.version=^5.62.16

# https://www.npmjs.com/package/@tanstack/react-query
tanstack-react-query.npm.version=^5.62.12
tanstack-react-query.npm.version=^5.63.0

# https://www.npmjs.com/package/@tanstack/react-query-devtools
tanstack-react-query-devtools.npm.version=^5.62.12
tanstack-react-query-devtools.npm.version=^5.63.0

# https://www.npmjs.com/package/@tanstack/react-table
tanstack-react-table.npm.version=^8.20.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

package tanstack.query.core

open external class FocusManager() : Subscribable<Listener> {
open external class FocusManager : Subscribable<Listener> {
override fun onSubscribe()
override fun onUnsubscribe()
open fun setEventListener(setup: FocusManagerSetupFn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

package tanstack.query.core

open external class OnlineManager() : Subscribable<Listener> {
open external class OnlineManager : Subscribable<Listener> {
override fun onSubscribe()
override fun onUnsubscribe()
open fun setEventListener(setup: OnlineManagerSetupFn)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package tanstack.query.core

import js.collections.JsSet

open external class Subscribable<TListener : Function<*>>() {
open external class Subscribable<TListener : Function<*>> {
protected open var listeners: JsSet<TListener>
open fun subscribe(listener: TListener): () -> Unit
open fun hasListeners(): Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ import tanstack.query.core.QueryObserverOptions
// @JsPlainObject
// Details - https://youtrack.jetbrains.com/issue/KT-70664
external interface UseBaseQueryOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey : QueryKey>
: QueryObserverOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey, Any?>
: QueryObserverOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey, Any?> {
var subscribed: Boolean?
}

0 comments on commit 9da5b3c

Please sign in to comment.