relay-runtime 0.0.0-main-3a6510b0 → 0.0.0-main-39400b58
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/experimental.js
CHANGED
package/index.js
CHANGED
|
@@ -27,13 +27,13 @@ const MutationTypes = Object.freeze({
|
|
|
27
27
|
RANGE_DELETE: 'RANGE_DELETE',
|
|
28
28
|
NODE_DELETE: 'NODE_DELETE',
|
|
29
29
|
});
|
|
30
|
-
export type MutationType =
|
|
30
|
+
export type MutationType = Values<typeof MutationTypes>;
|
|
31
31
|
|
|
32
32
|
const RangeOperations = Object.freeze({
|
|
33
33
|
APPEND: 'append',
|
|
34
34
|
PREPEND: 'prepend',
|
|
35
35
|
});
|
|
36
|
-
export type RangeOperation =
|
|
36
|
+
export type RangeOperation = Values<typeof RangeOperations>;
|
|
37
37
|
|
|
38
38
|
type RangeBehaviorsFunction = (connectionArgs: {
|
|
39
39
|
[name: string]: $FlowFixMe,
|
package/package.json
CHANGED