@salesforce/lds-runtime-mobile 1.366.0 → 1.368.0
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/dist/main.js +2530 -228
- package/dist/types/onestore/index.d.ts +1 -0
- package/dist/types/runtime.d.ts +4 -1
- package/package.json +31 -18
- package/sfdc/main.js +2530 -228
- package/sfdc/types/onestore/index.d.ts +1 -0
- package/sfdc/types/runtime.d.ts +4 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function initializeOneStore(): void;
|
package/sfdc/types/runtime.d.ts
CHANGED
|
@@ -15,7 +15,10 @@ export interface Runtime {
|
|
|
15
15
|
}) => PrimingSession;
|
|
16
16
|
nimbusSqliteStore: NimbusSqliteStore;
|
|
17
17
|
}
|
|
18
|
+
export type RuntimeConfig = {
|
|
19
|
+
primeUser?: boolean;
|
|
20
|
+
};
|
|
18
21
|
/**
|
|
19
22
|
* This returns the LDS on Mobile Runtime singleton object.
|
|
20
23
|
*/
|
|
21
|
-
export declare function getRuntime(): Runtime;
|
|
24
|
+
export declare function getRuntime({ primeUser }?: RuntimeConfig): Runtime;
|