@salesforce/lds-runtime-mobile 1.401.0 → 1.403.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 +1505 -163
- package/dist/types/drafts/records/draftAwareAdapters/updateRecord.d.ts +2 -1
- package/dist/types/onestore/index.d.ts +2 -1
- package/package.json +34 -34
- package/sfdc/main.js +1505 -163
- package/sfdc/types/drafts/records/draftAwareAdapters/updateRecord.d.ts +2 -1
- package/sfdc/types/onestore/index.d.ts +2 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { DraftAwareUpdateRecordAdapter } from '@salesforce/lds-adapters-uiapi';
|
|
2
2
|
import type { UiApiActionHandler } from '../actionHandlers/UiApiRecordActionHandler';
|
|
3
3
|
import type { DurableRecordStore } from 'src/durableStore/DurableRecordStore';
|
|
4
|
+
import { ObjectInfoService } from '../../../utils/ObjectInfoService';
|
|
4
5
|
/**
|
|
5
6
|
* @param luvio The runtime's luvio instance
|
|
6
7
|
* @param actionHandler The UIAPI Record action handler. NOTE: this adapter doesn't
|
|
7
8
|
* register it with the DraftQueue, runtime should set that up
|
|
8
9
|
*/
|
|
9
|
-
export declare function updateRecordDraftAdapterFactory(actionHandler: UiApiActionHandler, durableRecordStore: DurableRecordStore): DraftAwareUpdateRecordAdapter;
|
|
10
|
+
export declare function updateRecordDraftAdapterFactory(actionHandler: UiApiActionHandler, durableRecordStore: DurableRecordStore, objectInfoService: ObjectInfoService): DraftAwareUpdateRecordAdapter;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SqliteStorePlugin } from '@salesforce/nimbus-plugin-lds';
|
|
2
|
-
|
|
2
|
+
import { Luvio } from '@luvio/engine';
|
|
3
|
+
export declare function initializeOneStore(sqliteStore: SqliteStorePlugin, luvio: Luvio): void;
|
|
3
4
|
/**
|
|
4
5
|
* Manually purges the OneStore cache by days.
|
|
5
6
|
* Until we have real cache eviction in one store.
|