@salesforce/lds-runtime-mobile 1.376.0 → 1.377.1

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.
@@ -15,5 +15,6 @@ export type ResolverContext = {
15
15
  possibleStaleRecordMap: Map<string, string[]>;
16
16
  draftFunctions?: DraftFunctions;
17
17
  mappedCursors: Map<string, string>;
18
+ missingFieldsMap: Map<string, Set<string>>;
18
19
  };
19
20
  export declare function createContext(store: SqliteStore, objectInfos: ObjectInfoMap, eventEmitter: (eventData: unknown) => void, settings: LocalEvaluationRuntimeSettings, snapshot: AvailableSnapshot<GraphQLRepresentation>, mappedCursors?: Map<string, string>, draftFunctions?: DraftFunctions): ResolverContext;
@@ -7,6 +7,7 @@ type LocalEvaluationResult = {
7
7
  result: GraphQLRepresentation;
8
8
  seenRecordIds: string[];
9
9
  possibleStaleRecordMap: Map<string, string[]>;
10
+ missingFieldsMap: Map<string, Set<string>>;
10
11
  };
11
12
  export declare function evaluate(config: GraphQLConfig, observers: LuvioAdapterEventObserver[], settings: LocalEvaluationRuntimeSettings, objectInfos: ObjectInfoMap, store: SqliteStore, snapshot: AvailableSnapshot<GraphQLRepresentation>, cache: CachedGraphQLSchema, draftFunctions?: DraftFunctions, mappedCursors?: Map<string, string>): Promise<LocalEvaluationResult>;
12
13
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-runtime-mobile",
3
- "version": "1.376.0",
3
+ "version": "1.377.1",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "description": "LDS runtime for mobile/hybrid environments.",
6
6
  "main": "dist/main.js",
@@ -32,40 +32,42 @@
32
32
  "release:corejar": "yarn build && ../core-build/scripts/core.js --name=lds-runtime-mobile"
33
33
  },
34
34
  "dependencies": {
35
- "@luvio/service-provisioner": "5.49.0",
36
- "@salesforce/lds-adapters-uiapi": "^1.376.0",
37
- "@salesforce/lds-bindings": "^1.376.0",
38
- "@salesforce/lds-instrumentation": "^1.376.0",
35
+ "@luvio/service-provisioner": "5.54.0",
36
+ "@salesforce/lds-adapters-uiapi": "^1.377.1",
37
+ "@salesforce/lds-bindings": "^1.377.1",
38
+ "@salesforce/lds-instrumentation": "^1.377.1",
39
+ "@salesforce/lds-luvio-service": "^1.377.1",
40
+ "@salesforce/lds-luvio-uiapi-records-service": "^1.377.1",
39
41
  "@salesforce/user": "0.0.21",
40
42
  "o11y": "250.7.0",
41
43
  "o11y_schema": "256.126.0"
42
44
  },
43
45
  "devDependencies": {
44
- "@luvio/command-aura-network": "5.49.0",
45
- "@luvio/command-aura-normalized-cache-control": "5.49.0",
46
- "@luvio/command-aura-resource-cache-control": "5.49.0",
47
- "@luvio/command-fetch-network": "5.49.0",
48
- "@luvio/command-http-normalized-cache-control": "5.49.0",
49
- "@luvio/command-network": "5.49.0",
50
- "@luvio/service-cache": "5.49.0",
51
- "@luvio/service-cache-control": "5.49.0",
52
- "@luvio/service-cache-inclusion-policy": "5.49.0",
53
- "@luvio/service-fetch-network": "5.49.0",
54
- "@luvio/service-instrument-command": "5.49.0",
55
- "@luvio/service-instrumentation": "5.49.0",
56
- "@luvio/service-pubsub": "5.49.0",
57
- "@luvio/service-store": "5.49.0",
58
- "@luvio/utils": "5.49.0",
59
- "@salesforce/lds-adapters-graphql": "^1.376.0",
60
- "@salesforce/lds-drafts": "^1.376.0",
61
- "@salesforce/lds-durable-records": "^1.376.0",
62
- "@salesforce/lds-network-adapter": "^1.376.0",
63
- "@salesforce/lds-network-nimbus": "^1.376.0",
64
- "@salesforce/lds-store-binary": "^1.376.0",
65
- "@salesforce/lds-store-nimbus": "^1.376.0",
66
- "@salesforce/lds-store-sql": "^1.376.0",
67
- "@salesforce/lds-utils-adapters": "^1.376.0",
68
- "@salesforce/nimbus-plugin-lds": "^1.376.0",
46
+ "@luvio/command-aura-network": "5.54.0",
47
+ "@luvio/command-aura-normalized-cache-control": "5.54.0",
48
+ "@luvio/command-aura-resource-cache-control": "5.54.0",
49
+ "@luvio/command-fetch-network": "5.54.0",
50
+ "@luvio/command-http-normalized-cache-control": "5.54.0",
51
+ "@luvio/command-network": "5.54.0",
52
+ "@luvio/service-cache": "5.54.0",
53
+ "@luvio/service-cache-control": "5.54.0",
54
+ "@luvio/service-cache-inclusion-policy": "5.54.0",
55
+ "@luvio/service-fetch-network": "5.54.0",
56
+ "@luvio/service-instrument-command": "5.54.0",
57
+ "@luvio/service-instrumentation": "5.54.0",
58
+ "@luvio/service-pubsub": "5.54.0",
59
+ "@luvio/service-store": "5.54.0",
60
+ "@luvio/utils": "5.54.0",
61
+ "@salesforce/lds-adapters-graphql": "^1.377.1",
62
+ "@salesforce/lds-drafts": "^1.377.1",
63
+ "@salesforce/lds-durable-records": "^1.377.1",
64
+ "@salesforce/lds-network-adapter": "^1.377.1",
65
+ "@salesforce/lds-network-nimbus": "^1.377.1",
66
+ "@salesforce/lds-store-binary": "^1.377.1",
67
+ "@salesforce/lds-store-nimbus": "^1.377.1",
68
+ "@salesforce/lds-store-sql": "^1.377.1",
69
+ "@salesforce/lds-utils-adapters": "^1.377.1",
70
+ "@salesforce/nimbus-plugin-lds": "^1.377.1",
69
71
  "babel-plugin-dynamic-import-node": "^2.3.3",
70
72
  "wait-for-expect": "^3.0.2"
71
73
  },