Skip to content

Commit 336bffb

Browse files
committed
Run sbt prePR
1 parent 54bf669 commit 336bffb

File tree

2 files changed

+44
-32
lines changed

2 files changed

+44
-32
lines changed

api-reports/2_12.txt

+22-16
Original file line numberDiff line numberDiff line change
@@ -1912,9 +1912,9 @@ html[SO] type Track = raw.HTMLTrackElement
19121912
html[SO] type UList = raw.HTMLUListElement
19131913
html[SO] type Unknown = raw.HTMLUnknownElement
19141914
html[SO] type Video = raw.HTMLVideoElement
1915-
idb[SO] def Cursor = raw.IDBCursor
1915+
idb[SO] def CursorDirection = raw.IDBCursorDirection
19161916
idb[SO] def KeyRange = raw.IDBKeyRange
1917-
idb[SO] def Transaction = raw.IDBTransaction
1917+
idb[SO] def TransactionMode = raw.IDBTransactionMode
19181918
idb[SO] type Cursor = raw.IDBCursor
19191919
idb[SO] type CursorWithValue = raw.IDBCursorWithValue
19201920
idb[SO] type Database = raw.IDBDatabase
@@ -14963,19 +14963,20 @@ raw/History[JC] def state: js.Any
1496314963
raw/IDBCursor[JC] def advance(count: Int): Unit
1496414964
raw/IDBCursor[JC] def continue(key: js.Any = ???): Unit
1496514965
raw/IDBCursor[JC] def delete(): IDBRequest
14966-
raw/IDBCursor[JC] def direction: String
14966+
raw/IDBCursor[JC] def direction: IDBCursorDirection
1496714967
raw/IDBCursor[JC] def key: js.Any
1496814968
raw/IDBCursor[JC] def primaryKey: js.Any
1496914969
raw/IDBCursor[JC] def source: js.Any
1497014970
raw/IDBCursor[JC] def update(value: js.Any): IDBRequest
14971-
raw/IDBCursor[JO] val NEXT: String
14972-
raw/IDBCursor[JO] val NEXT_NO_DUPLICATE: String
14973-
raw/IDBCursor[JO] val PREV: String
14974-
raw/IDBCursor[JO] val PREV_NO_DUPLICATE: String
14971+
raw/IDBCursorDirection[JT]
14972+
raw/IDBCursorDirection[SO] val NEXT = "next".asInstanceOf[IDBCursorDirection]
14973+
raw/IDBCursorDirection[SO] val NEXT_UNIQUE = "nextunique".asInstanceOf[IDBCursorDirection]
14974+
raw/IDBCursorDirection[SO] val PREV = "prev".asInstanceOf[IDBCursorDirection]
14975+
raw/IDBCursorDirection[SO] val PREV_UNIQUE = "prevunique".asInstanceOf[IDBCursorDirection]
1497514976
raw/IDBCursorWithValue[JC] def advance(count: Int): Unit
1497614977
raw/IDBCursorWithValue[JC] def continue(key: js.Any = ???): Unit
1497714978
raw/IDBCursorWithValue[JC] def delete(): IDBRequest
14978-
raw/IDBCursorWithValue[JC] def direction: String
14979+
raw/IDBCursorWithValue[JC] def direction: IDBCursorDirection
1497914980
raw/IDBCursorWithValue[JC] def key: js.Any
1498014981
raw/IDBCursorWithValue[JC] def primaryKey: js.Any
1498114982
raw/IDBCursorWithValue[JC] def source: js.Any
@@ -14991,7 +14992,7 @@ raw/IDBDatabase[JC] def name: String
1499114992
raw/IDBDatabase[JC] def objectStoreNames: DOMStringList
1499214993
raw/IDBDatabase[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1499314994
raw/IDBDatabase[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
14994-
raw/IDBDatabase[JC] def transaction(storeNames: js.Any, mode: String?): IDBTransaction
14995+
raw/IDBDatabase[JC] def transaction(storeNames: js.Any, mode: IDBTransactionMode?): IDBTransaction
1499514996
raw/IDBDatabase[JC] def version: Int
1499614997
raw/IDBDatabase[JC] var onabort: js.Function1[Event, _]
1499714998
raw/IDBDatabase[JC] var onerror: js.Function1[ErrorEvent, _]
@@ -15007,8 +15008,8 @@ raw/IDBIndex[JC] def getKey(key: js.Any): IDBRequest
1500715008
raw/IDBIndex[JC] def keyPath: String
1500815009
raw/IDBIndex[JC] def name: String
1500915010
raw/IDBIndex[JC] def objectStore: IDBObjectStore
15010-
raw/IDBIndex[JC] def openCursor(range: IDBKeyRange?, direction: String?): IDBRequest
15011-
raw/IDBIndex[JC] def openKeyCursor(range: IDBKeyRange?, direction: String?): IDBRequest
15011+
raw/IDBIndex[JC] def openCursor(range: IDBKeyRange?, direction: IDBCursorDirection?): IDBRequest
15012+
raw/IDBIndex[JC] def openKeyCursor(range: IDBKeyRange?, direction: IDBCursorDirection?): IDBRequest
1501215013
raw/IDBIndex[JC] def unique: Boolean
1501315014
raw/IDBKeyRange[JC] def lower: js.Any
1501415015
raw/IDBKeyRange[JC] def lowerOpen: Boolean
@@ -15025,11 +15026,15 @@ raw/IDBObjectStore[JC] def createIndex(name: String, keyPath: String, optionalPa
1502515026
raw/IDBObjectStore[JC] def delete(key: js.Any): IDBRequest
1502615027
raw/IDBObjectStore[JC] def deleteIndex(indexName: String): Unit
1502715028
raw/IDBObjectStore[JC] def get(key: js.Any): IDBRequest
15029+
raw/IDBObjectStore[JC] def getAll(query: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, count: js.UndefOr[Int] = js.undefined): IDBRequest
15030+
raw/IDBObjectStore[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, count: js.UndefOr[Int] = js.undefined): IDBRequest
15031+
raw/IDBObjectStore[JC] def getKey(key: js.Any): IDBRequest
1502815032
raw/IDBObjectStore[JC] def index(name: String): IDBIndex
1502915033
raw/IDBObjectStore[JC] def indexNames: DOMStringList
1503015034
raw/IDBObjectStore[JC] def keyPath: String
1503115035
raw/IDBObjectStore[JC] def name: String
15032-
raw/IDBObjectStore[JC] def openCursor(range: js.Any?, direction: String?): IDBRequest
15036+
raw/IDBObjectStore[JC] def openCursor(range: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, direction: js.UndefOr[IDBCursorDirection] = js.undefined): IDBRequest
15037+
raw/IDBObjectStore[JC] def openKeyCursor(range: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, direction: js.UndefOr[IDBCursorDirection] = js.undefined): IDBRequest
1503315038
raw/IDBObjectStore[JC] def put(value: js.Any, key: js.Any?): IDBRequest
1503415039
raw/IDBObjectStore[JC] def transaction: IDBTransaction
1503515040
raw/IDBOpenDBRequest[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
@@ -15064,16 +15069,17 @@ raw/IDBTransaction[JC] def addEventListener[T <: Event](`type`: String, listener
1506415069
raw/IDBTransaction[JC] def db: IDBDatabase
1506515070
raw/IDBTransaction[JC] def dispatchEvent(evt: Event): Boolean
1506615071
raw/IDBTransaction[JC] def error: DOMException
15067-
raw/IDBTransaction[JC] def mode: String
15072+
raw/IDBTransaction[JC] def mode: IDBTransactionMode
1506815073
raw/IDBTransaction[JC] def objectStore(name: String): IDBObjectStore
1506915074
raw/IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1507015075
raw/IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1507115076
raw/IDBTransaction[JC] var onabort: js.Function1[Event, _]
1507215077
raw/IDBTransaction[JC] var oncomplete: js.Function1[Event, _]
1507315078
raw/IDBTransaction[JC] var onerror: js.Function1[ErrorEvent, _]
15074-
raw/IDBTransaction[JO] val READ_ONLY: String
15075-
raw/IDBTransaction[JO] val READ_WRITE: String
15076-
raw/IDBTransaction[JO] val VERSION_CHANGE: String
15079+
raw/IDBTransactionMode[JT]
15080+
raw/IDBTransactionMode[SO] val READ_ONLY = "readonly".asInstanceOf[IDBTransactionMode]
15081+
raw/IDBTransactionMode[SO] val READ_WRITE = "readwrite".asInstanceOf[IDBTransactionMode]
15082+
raw/IDBTransactionMode[SO] val VERSION_CHANGE = "versionchange".asInstanceOf[IDBTransactionMode]
1507715083
raw/IDBVersionChangeEvent[JC] def `type`: String
1507815084
raw/IDBVersionChangeEvent[JC] def bubbles: Boolean
1507915085
raw/IDBVersionChangeEvent[JC] def cancelBubble: Boolean

api-reports/2_13.txt

+22-16
Original file line numberDiff line numberDiff line change
@@ -1912,9 +1912,9 @@ html[SO] type Track = raw.HTMLTrackElement
19121912
html[SO] type UList = raw.HTMLUListElement
19131913
html[SO] type Unknown = raw.HTMLUnknownElement
19141914
html[SO] type Video = raw.HTMLVideoElement
1915-
idb[SO] def Cursor = raw.IDBCursor
1915+
idb[SO] def CursorDirection = raw.IDBCursorDirection
19161916
idb[SO] def KeyRange = raw.IDBKeyRange
1917-
idb[SO] def Transaction = raw.IDBTransaction
1917+
idb[SO] def TransactionMode = raw.IDBTransactionMode
19181918
idb[SO] type Cursor = raw.IDBCursor
19191919
idb[SO] type CursorWithValue = raw.IDBCursorWithValue
19201920
idb[SO] type Database = raw.IDBDatabase
@@ -14963,19 +14963,20 @@ raw/History[JC] def state: js.Any
1496314963
raw/IDBCursor[JC] def advance(count: Int): Unit
1496414964
raw/IDBCursor[JC] def continue(key: js.Any = ???): Unit
1496514965
raw/IDBCursor[JC] def delete(): IDBRequest
14966-
raw/IDBCursor[JC] def direction: String
14966+
raw/IDBCursor[JC] def direction: IDBCursorDirection
1496714967
raw/IDBCursor[JC] def key: js.Any
1496814968
raw/IDBCursor[JC] def primaryKey: js.Any
1496914969
raw/IDBCursor[JC] def source: js.Any
1497014970
raw/IDBCursor[JC] def update(value: js.Any): IDBRequest
14971-
raw/IDBCursor[JO] val NEXT: String
14972-
raw/IDBCursor[JO] val NEXT_NO_DUPLICATE: String
14973-
raw/IDBCursor[JO] val PREV: String
14974-
raw/IDBCursor[JO] val PREV_NO_DUPLICATE: String
14971+
raw/IDBCursorDirection[JT]
14972+
raw/IDBCursorDirection[SO] val NEXT = "next".asInstanceOf[IDBCursorDirection]
14973+
raw/IDBCursorDirection[SO] val NEXT_UNIQUE = "nextunique".asInstanceOf[IDBCursorDirection]
14974+
raw/IDBCursorDirection[SO] val PREV = "prev".asInstanceOf[IDBCursorDirection]
14975+
raw/IDBCursorDirection[SO] val PREV_UNIQUE = "prevunique".asInstanceOf[IDBCursorDirection]
1497514976
raw/IDBCursorWithValue[JC] def advance(count: Int): Unit
1497614977
raw/IDBCursorWithValue[JC] def continue(key: js.Any = ???): Unit
1497714978
raw/IDBCursorWithValue[JC] def delete(): IDBRequest
14978-
raw/IDBCursorWithValue[JC] def direction: String
14979+
raw/IDBCursorWithValue[JC] def direction: IDBCursorDirection
1497914980
raw/IDBCursorWithValue[JC] def key: js.Any
1498014981
raw/IDBCursorWithValue[JC] def primaryKey: js.Any
1498114982
raw/IDBCursorWithValue[JC] def source: js.Any
@@ -14991,7 +14992,7 @@ raw/IDBDatabase[JC] def name: String
1499114992
raw/IDBDatabase[JC] def objectStoreNames: DOMStringList
1499214993
raw/IDBDatabase[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1499314994
raw/IDBDatabase[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
14994-
raw/IDBDatabase[JC] def transaction(storeNames: js.Any, mode: String?): IDBTransaction
14995+
raw/IDBDatabase[JC] def transaction(storeNames: js.Any, mode: IDBTransactionMode?): IDBTransaction
1499514996
raw/IDBDatabase[JC] def version: Int
1499614997
raw/IDBDatabase[JC] var onabort: js.Function1[Event, _]
1499714998
raw/IDBDatabase[JC] var onerror: js.Function1[ErrorEvent, _]
@@ -15007,8 +15008,8 @@ raw/IDBIndex[JC] def getKey(key: js.Any): IDBRequest
1500715008
raw/IDBIndex[JC] def keyPath: String
1500815009
raw/IDBIndex[JC] def name: String
1500915010
raw/IDBIndex[JC] def objectStore: IDBObjectStore
15010-
raw/IDBIndex[JC] def openCursor(range: IDBKeyRange?, direction: String?): IDBRequest
15011-
raw/IDBIndex[JC] def openKeyCursor(range: IDBKeyRange?, direction: String?): IDBRequest
15011+
raw/IDBIndex[JC] def openCursor(range: IDBKeyRange?, direction: IDBCursorDirection?): IDBRequest
15012+
raw/IDBIndex[JC] def openKeyCursor(range: IDBKeyRange?, direction: IDBCursorDirection?): IDBRequest
1501215013
raw/IDBIndex[JC] def unique: Boolean
1501315014
raw/IDBKeyRange[JC] def lower: js.Any
1501415015
raw/IDBKeyRange[JC] def lowerOpen: Boolean
@@ -15025,11 +15026,15 @@ raw/IDBObjectStore[JC] def createIndex(name: String, keyPath: String, optionalPa
1502515026
raw/IDBObjectStore[JC] def delete(key: js.Any): IDBRequest
1502615027
raw/IDBObjectStore[JC] def deleteIndex(indexName: String): Unit
1502715028
raw/IDBObjectStore[JC] def get(key: js.Any): IDBRequest
15029+
raw/IDBObjectStore[JC] def getAll(query: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, count: js.UndefOr[Int] = js.undefined): IDBRequest
15030+
raw/IDBObjectStore[JC] def getAllKeys(query: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, count: js.UndefOr[Int] = js.undefined): IDBRequest
15031+
raw/IDBObjectStore[JC] def getKey(key: js.Any): IDBRequest
1502815032
raw/IDBObjectStore[JC] def index(name: String): IDBIndex
1502915033
raw/IDBObjectStore[JC] def indexNames: DOMStringList
1503015034
raw/IDBObjectStore[JC] def keyPath: String
1503115035
raw/IDBObjectStore[JC] def name: String
15032-
raw/IDBObjectStore[JC] def openCursor(range: js.Any?, direction: String?): IDBRequest
15036+
raw/IDBObjectStore[JC] def openCursor(range: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, direction: js.UndefOr[IDBCursorDirection] = js.undefined): IDBRequest
15037+
raw/IDBObjectStore[JC] def openKeyCursor(range: js.UndefOr[IDBKeyRange | js.Any] = js.undefined, direction: js.UndefOr[IDBCursorDirection] = js.undefined): IDBRequest
1503315038
raw/IDBObjectStore[JC] def put(value: js.Any, key: js.Any?): IDBRequest
1503415039
raw/IDBObjectStore[JC] def transaction: IDBTransaction
1503515040
raw/IDBOpenDBRequest[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
@@ -15064,16 +15069,17 @@ raw/IDBTransaction[JC] def addEventListener[T <: Event](`type`: String, listener
1506415069
raw/IDBTransaction[JC] def db: IDBDatabase
1506515070
raw/IDBTransaction[JC] def dispatchEvent(evt: Event): Boolean
1506615071
raw/IDBTransaction[JC] def error: DOMException
15067-
raw/IDBTransaction[JC] def mode: String
15072+
raw/IDBTransaction[JC] def mode: IDBTransactionMode
1506815073
raw/IDBTransaction[JC] def objectStore(name: String): IDBObjectStore
1506915074
raw/IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1507015075
raw/IDBTransaction[JC] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1507115076
raw/IDBTransaction[JC] var onabort: js.Function1[Event, _]
1507215077
raw/IDBTransaction[JC] var oncomplete: js.Function1[Event, _]
1507315078
raw/IDBTransaction[JC] var onerror: js.Function1[ErrorEvent, _]
15074-
raw/IDBTransaction[JO] val READ_ONLY: String
15075-
raw/IDBTransaction[JO] val READ_WRITE: String
15076-
raw/IDBTransaction[JO] val VERSION_CHANGE: String
15079+
raw/IDBTransactionMode[JT]
15080+
raw/IDBTransactionMode[SO] val READ_ONLY = "readonly".asInstanceOf[IDBTransactionMode]
15081+
raw/IDBTransactionMode[SO] val READ_WRITE = "readwrite".asInstanceOf[IDBTransactionMode]
15082+
raw/IDBTransactionMode[SO] val VERSION_CHANGE = "versionchange".asInstanceOf[IDBTransactionMode]
1507715083
raw/IDBVersionChangeEvent[JC] def `type`: String
1507815084
raw/IDBVersionChangeEvent[JC] def bubbles: Boolean
1507915085
raw/IDBVersionChangeEvent[JC] def cancelBubble: Boolean

0 commit comments

Comments
 (0)