relay-runtime 0.0.0-main-bec70e7d → 0.0.0-main-2499f53f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
var ITERATOR_KEY = Symbol.iterator;
|
|
14
14
|
|
|
15
15
|
function hasOverlappingIDs(seenRecords, updatedRecordIDs) {
|
|
16
|
-
// $FlowFixMe: Set is an iterable type, accessing its iterator is allowed.
|
|
16
|
+
// $FlowFixMe[incompatible-use]: Set is an iterable type, accessing its iterator is allowed.
|
|
17
17
|
var iterator = seenRecords[ITERATOR_KEY]();
|
|
18
18
|
var next = iterator.next();
|
|
19
19
|
|
|
@@ -23,7 +23,6 @@ var RelayFeatureFlags = {
|
|
|
23
23
|
ENABLE_NOTIFY_SUBSCRIPTION: false,
|
|
24
24
|
BATCH_ASYNC_MODULE_UPDATES_FN: null,
|
|
25
25
|
ENABLE_CONTAINERS_SUBSCRIBE_ON_COMMIT: false,
|
|
26
|
-
ENABLE_QUERY_RENDERER_OFFSCREEN_SUPPORT: true,
|
|
27
26
|
MAX_DATA_ID_LENGTH: null,
|
|
28
27
|
STRING_INTERN_LEVEL: 0,
|
|
29
28
|
USE_REACT_CACHE: false
|