New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nerdwallet/apollo-cache-policies

Package Overview
Dependencies
Maintainers
16
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nerdwallet/apollo-cache-policies - npm Package Compare versions

Comparing version

to
1.2.2

dist/cache/utils.d.ts

8

CHANGELOG.md

@@ -0,1 +1,9 @@

1.2.2 (Dan Reynolds)
- Expose args field on policy action meta objects
1.2.1 (Dan Reynolds)
- Publish publicly. Sorry OSS friends!
1.2.0 (Dan Reynolds)

@@ -2,0 +10,0 @@

9

dist/cache/CacheResultProcessor.js

@@ -174,3 +174,3 @@ "use strict";

this.getFieldsForQuery(options).forEach((field) => {
var _a, _b, _c;
var _a;
const fieldName = utilities_1.resultKeyNameFromField(field);

@@ -185,6 +185,6 @@ const typename = (_a = entityTypeMap.readEntityById(helpers_1.makeEntityId(dataId, fieldName))) === null || _a === void 0 ? void 0 : _a.typename;

});
const hasFieldArgs = ((_c = (_b = field === null || field === void 0 ? void 0 : field.arguments) === null || _b === void 0 ? void 0 : _b.length) !== null && _c !== void 0 ? _c : 0) > 0;
const fieldVariables = variables !== null && variables !== void 0 ? variables : (hasFieldArgs ? {} : undefined);
const fieldArgs = utilities_1.argumentsObjectFromField(field, variables);
const fieldVariables = variables !== null && variables !== void 0 ? variables : (fieldArgs !== null ? {} : undefined);
// Write a query to the entity type map at `write` in addition to `merge` time so that we can keep track of its variables.
entityTypeMap.write(typename, dataId, storeFieldName, fieldVariables);
entityTypeMap.write(typename, dataId, storeFieldName, fieldVariables, fieldArgs);
const renewalPolicy = invalidationPolicyManager.getRenewalPolicyForType(typename);

@@ -202,2 +202,3 @@ if (renewalPolicy === types_1.RenewalPolicy.WriteOnly ||

variables: fieldVariables,
args: fieldArgs,
},

@@ -204,0 +205,0 @@ });

@@ -94,3 +94,3 @@ import { EntitiesById, ExtractedTypeMap, TypeMapEntities, TypeMapEntity } from "./types";

private entitiesById;
write(typename: string, dataId: string, storeFieldName?: string | null, variables?: Record<string, any>): void;
write(typename: string, dataId: string, storeFieldName?: string | null, variables?: Record<string, any>, args?: Record<string, any> | null): void;
evict(dataId: string, storeFieldName?: string): void;

@@ -97,0 +97,0 @@ readEntitiesByType(typeName: string): TypeMapEntities | null;

@@ -102,3 +102,3 @@ "use strict";

}
write(typename, dataId, storeFieldName, variables) {
write(typename, dataId, storeFieldName, variables, args) {
const fieldName = storeFieldName

@@ -115,2 +115,3 @@ ? helpers_1.fieldNameFromStoreName(storeFieldName)

storeFieldNameEntry.variables = variables;
storeFieldNameEntry.args = args;
}

@@ -120,2 +121,3 @@ else {

variables,
args,
};

@@ -137,3 +139,3 @@ existingTypeMapEntity.storeFieldNames.__size++;

entries: {
[storeFieldName]: { variables, cacheTime },
[storeFieldName]: { variables, args, cacheTime },
},

@@ -140,0 +142,0 @@ },

@@ -17,2 +17,3 @@ import { NormalizedCacheObject } from "@apollo/client/core";

variables?: Record<string, any>;
args?: Record<string, any> | null;
};

@@ -19,0 +20,0 @@ };

@@ -97,3 +97,3 @@ "use strict";

policyAction(mutedCacheOperations, Object.assign({ id: dataId, fieldName,
storeFieldName, variables: storeFieldNames.entries[storeFieldName].variables, ref: core_1.makeReference(dataId), storage: this.getPolicyActionStorage(storeFieldName) }, policyMeta));
storeFieldName, variables: storeFieldNames.entries[storeFieldName].variables, args: storeFieldNames.entries[storeFieldName].args, ref: core_1.makeReference(dataId), storage: this.getPolicyActionStorage(storeFieldName) }, policyMeta));
});

@@ -100,0 +100,0 @@ }

@@ -44,2 +44,3 @@ import { FieldNode } from 'graphql';

variables?: Record<string, any>;
args?: Record<string, any> | null;
}

@@ -46,0 +47,0 @@ export declare type PolicyActionEntity = PolicyActionFields & PolicyActionMeta;

{
"name": "@nerdwallet/apollo-cache-policies",
"version": "1.2.1",
"version": "1.2.2",
"description": "An extension to the InMemoryCache from Apollo that adds additional cache policies.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -77,3 +77,4 @@ ![Build](https://github.com/NerdWalletOSS/apollo-cache-policies/workflows/Build/badge.svg)

| `variables` | The variables the entity was written with | Object? | `{ location: 'US' }` |
| `storage` | An object for storing unique entity metadata across policy action invocations | Object | `{}` |
| `args` | The args the field was written with | Object? | `{ location: 'US' }` |
| `storage` | An object for storing unique entity metadata across policy action invocations | Object | `{}` |
| `parent` | The parent entity that triggered the PolicyEvent | PolicyActionEntity | `{ id: 'ROOT_QUERY', fieldName: 'deleteEmployees', storeFieldName: 'deleteEmployees({}), ref: { __ref: 'ROOT_QUERY' }, variables: {} }'` |

@@ -80,0 +81,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet