@salesforce/lds-runtime-mobile 1.433.0 → 1.435.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.
@@ -1,13 +1,12 @@
1
1
  import type { CompletedDraftAction, QueueOperation, DraftAction, DraftQueue } from '@salesforce/lds-drafts';
2
2
  import { AbstractQuickActionHandler } from './AbstractQuickActionHandler';
3
- import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation, RecordRepresentation } from '@salesforce/lds-adapters-uiapi';
4
- import { GetRecordConfig } from '@salesforce/lds-adapters-uiapi';
3
+ import type { PerformActionInputRepresentation, QuickActionExecutionRepresentation, RecordRepresentation, GetRecordConfig } from '@salesforce/lds-adapters-uiapi';
5
4
  import type { DurableStoreKeyMetadataMap, Luvio, NetworkAdapter, ResourceRequest, Adapter } from '@luvio/engine';
6
5
  import type { UiApiDraftRecordService } from '../UiApiDraftRecordService';
7
6
  import type { RecordEffectingHandler } from '../records/actionHandlers/RecordEffectingHandler';
8
7
  import { type SideEffectService } from '../sideEffects/SideEffectService';
9
8
  import { type SideEffect } from '../sideEffects';
10
- import { ObjectInfoService } from './../../utils/ObjectInfoService';
9
+ import type { ObjectInfoService } from './../../utils/ObjectInfoService';
11
10
  export declare const QUICK_ACTION_HANDLER = "QUICK_ACTION_HANDLER";
12
11
  interface PerformQuickActionResourceRequest extends Omit<ResourceRequest, 'body' | 'method'> {
13
12
  body: PerformActionInputRepresentation;
@@ -1,7 +1,7 @@
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
+ import type { ObjectInfoService } from '../../../utils/ObjectInfoService';
5
5
  /**
6
6
  * @param luvio The runtime's luvio instance
7
7
  * @param actionHandler The UIAPI Record action handler. NOTE: this adapter doesn't
@@ -1,5 +1,5 @@
1
- import { SqliteStorePlugin } from '@salesforce/nimbus-plugin-lds';
2
- import { Luvio } from '@luvio/engine';
1
+ import type { SqliteStorePlugin } from '@salesforce/nimbus-plugin-lds';
2
+ import type { Luvio } from '@luvio/engine';
3
3
  export declare function initializeOneStore(sqliteStore: SqliteStorePlugin, luvio: Luvio): void;
4
4
  /**
5
5
  * Manually purges the OneStore cache by days.
@@ -1,7 +1,7 @@
1
1
  import { type CacheInclusionPolicyServiceDescriptor, type CacheQuery, type CacheUpdate, DurableCacheInclusionPolicy } from '@conduit-client/service-cache-inclusion-policy/v1';
2
2
  import type { Cache, CacheEntry, Key, NamedCacheService } from '@conduit-client/service-cache/v1';
3
3
  import { type DeepReadonly, type SyncOrAsync } from '@conduit-client/utils';
4
- import { NimbusSqliteOneStoreCache } from './nimbusSqliteStoreCache';
4
+ import type { NimbusSqliteOneStoreCache } from './nimbusSqliteStoreCache';
5
5
  export declare class NimbusDurableCacheInclusionPolicy extends DurableCacheInclusionPolicy {
6
6
  private readonly services;
7
7
  private readonly store;
@@ -1,3 +1,3 @@
1
- import { IFetchService } from '@conduit-client/service-fetch-network/v1';
1
+ import type { IFetchService } from '@conduit-client/service-fetch-network/v1';
2
2
  import { type ServiceDescriptor } from '@conduit-client/utils';
3
3
  export declare function buildNimbusFetchServiceDescriptor(): ServiceDescriptor<IFetchService, 'fetch', '1.0'>;
@@ -1,6 +1,6 @@
1
- import { SideEffect } from '../drafts/sideEffects';
1
+ import type { SideEffect } from '../drafts/sideEffects';
2
2
  import type { CreateSideEffectHook, DeleteSideEffectHook, UpdateSideEffectHook } from '../drafts/records/actionHandlers/SideEffectHook';
3
- import { DurableRecordStore } from '../durableStore/DurableRecordStore';
3
+ import type { DurableRecordStore } from '../durableStore/DurableRecordStore';
4
4
  export declare const instrumentation: any;
5
5
  export declare class ProductConsumedCreatedHook implements CreateSideEffectHook {
6
6
  on: 'post';
@@ -1,3 +1,3 @@
1
- import { DurableRecordStore } from '../durableStore/DurableRecordStore';
1
+ import type { DurableRecordStore } from '../durableStore/DurableRecordStore';
2
2
  import type { SideEffectHook } from '../drafts/records/actionHandlers/SideEffectHook';
3
3
  export declare function createSfsSideEffectHooks(durableRecordStore: DurableRecordStore): SideEffectHook[];