@salesforce/lds-worker-api 1.416.1 → 1.418.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/sfdc/es/ldsWorkerApi.js +1 -1
- package/dist/sfdc/es/types/standalone-stubs/unwrap.d.ts +9 -0
- package/dist/standalone/es/lds-worker-api.js +873 -7315
- package/dist/standalone/es/types/standalone-stubs/unwrap.d.ts +9 -0
- package/dist/standalone/umd/lds-worker-api.js +873 -7315
- package/dist/standalone/umd/types/standalone-stubs/unwrap.d.ts +9 -0
- package/package.json +9 -9
|
@@ -1371,4 +1371,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1371
1371
|
}
|
|
1372
1372
|
|
|
1373
1373
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, importLuvioAdapterModule, importOneStoreAdapterModule, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
1374
|
-
// version: 1.
|
|
1374
|
+
// version: 1.418.0-b4def2b6ce
|
|
@@ -1 +1,10 @@
|
|
|
1
|
+
export type ContextKeys = {
|
|
2
|
+
connectContext: symbol;
|
|
3
|
+
disconnectContext: symbol;
|
|
4
|
+
};
|
|
5
|
+
export declare function setContextKeys(config: ContextKeys): void;
|
|
6
|
+
export declare function setTrustedContextSet(context: WeakSet<object>): void;
|
|
7
|
+
export declare function __dangerous_do_not_use_addTrustedContext(contextParticipant: object): void;
|
|
8
|
+
export declare function isTrustedSignal(target: object): boolean;
|
|
9
|
+
export declare function setTrustedSignalSet(signals: WeakSet<object>): void;
|
|
1
10
|
export declare function unwrap<T>(data: T): T;
|