@@ -957,7 +957,7 @@ type MissingTree = string | {
957
957
// Warning: (ae-forgotten-export) The symbol "InvalidateModifier" needs to be exported by the entry point index.d.ts
958
958
//
959
959
// @public (undocumented)
960
- type Modifier <T > = (value : T , details : ModifierDetails ) => T | DeleteModifier | InvalidateModifier | undefined ;
960
+ type Modifier <T > = (value : T , details : ModifierDetails ) => DeepPartial < T > | DeleteModifier | InvalidateModifier | undefined ;
961
961
962
962
// @public (undocumented)
963
963
type ModifierDetails = {
@@ -1632,7 +1632,9 @@ interface StoreObject {
1632
1632
// Warning: (ae-forgotten-export) The symbol "AsStoreObject" needs to be exported by the entry point index.d.ts
1633
1633
//
1634
1634
// @public (undocumented)
1635
- type StoreObjectValueMaybeReference <StoreVal > = StoreVal extends Array <Record <string , any >> ? StoreVal extends Array <infer Item > ? Item extends Record <string , any > ? ReadonlyArray <AsStoreObject <Item > | Reference > : never : never : StoreVal extends Record <string , any > ? AsStoreObject <StoreVal > | Reference : StoreVal ;
1635
+ type StoreObjectValueMaybeReference <StoreVal > = StoreVal extends Array <Record <string , any >> ? StoreVal extends Array <infer Item > ? [
1636
+ Item
1637
+ ] extends [Record <string , any >] ? ReadonlyArray <AsStoreObject <Item > | Reference > : never : never : StoreVal extends Record <string , any > ? AsStoreObject <StoreVal > | Reference : StoreVal ;
1636
1638
1637
1639
// @public (undocumented)
1638
1640
type StoreValue = number | string | string [] | Reference | Reference [] | null | undefined | void | Object ;
@@ -1760,11 +1762,11 @@ export function withSubscription<TProps extends TGraphQLVariables | {} = {}, TDa
1760
1762
// Warnings were encountered during analysis:
1761
1763
//
1762
1764
// src/cache/core/types/DataProxy.ts:146:7 - (ae-forgotten-export) The symbol "MissingFieldError" needs to be exported by the entry point index.d.ts
1763
- // src/cache/core/types/common.ts:100 :3 - (ae-forgotten-export) The symbol "ReadFieldFunction" needs to be exported by the entry point index.d.ts
1764
- // src/cache/core/types/common.ts:101 :3 - (ae-forgotten-export) The symbol "CanReadFunction" needs to be exported by the entry point index.d.ts
1765
- // src/cache/core/types/common.ts:102 :3 - (ae-forgotten-export) The symbol "isReference" needs to be exported by the entry point index.d.ts
1766
- // src/cache/core/types/common.ts:103 :3 - (ae-forgotten-export) The symbol "ToReferenceFunction" needs to be exported by the entry point index.d.ts
1767
- // src/cache/core/types/common.ts:104 :3 - (ae-forgotten-export) The symbol "StorageType" needs to be exported by the entry point index.d.ts
1765
+ // src/cache/core/types/common.ts:101 :3 - (ae-forgotten-export) The symbol "ReadFieldFunction" needs to be exported by the entry point index.d.ts
1766
+ // src/cache/core/types/common.ts:102 :3 - (ae-forgotten-export) The symbol "CanReadFunction" needs to be exported by the entry point index.d.ts
1767
+ // src/cache/core/types/common.ts:103 :3 - (ae-forgotten-export) The symbol "isReference" needs to be exported by the entry point index.d.ts
1768
+ // src/cache/core/types/common.ts:104 :3 - (ae-forgotten-export) The symbol "ToReferenceFunction" needs to be exported by the entry point index.d.ts
1769
+ // src/cache/core/types/common.ts:105 :3 - (ae-forgotten-export) The symbol "StorageType" needs to be exported by the entry point index.d.ts
1768
1770
// src/core/LocalState.ts:46:5 - (ae-forgotten-export) The symbol "FragmentMap" needs to be exported by the entry point index.d.ts
1769
1771
// src/core/ObservableQuery.ts:116:5 - (ae-forgotten-export) The symbol "QueryManager" needs to be exported by the entry point index.d.ts
1770
1772
// src/core/ObservableQuery.ts:117:5 - (ae-forgotten-export) The symbol "QueryInfo" needs to be exported by the entry point index.d.ts
0 commit comments