@salesforce/lds-worker-api 1.352.0 → 1.353.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/o11y.d.ts +3 -0
- package/dist/standalone/es/lds-worker-api.js +236 -182
- package/dist/standalone/es/types/standalone-stubs/o11y.d.ts +3 -0
- package/dist/standalone/umd/lds-worker-api.js +236 -182
- package/dist/standalone/umd/types/standalone-stubs/o11y.d.ts +3 -0
- package/package.json +9 -9
|
@@ -1128,4 +1128,4 @@ if (process.env.NODE_ENV !== 'production') {
|
|
|
1128
1128
|
}
|
|
1129
1129
|
|
|
1130
1130
|
export { createPrimingSession, draftManager, draftQueue, evictCacheRecordsByIds, evictExpiredCacheEntries, executeAdapter, executeMutatingAdapter, getImperativeAdapterNames, invokeAdapter, invokeAdapterWithDraftToMerge, invokeAdapterWithDraftToReplace, invokeAdapterWithMetadata, nimbusDraftQueue, setMetadataTTL, setUiApiRecordTTL, stopEviction, subscribeToAdapter };
|
|
1131
|
-
// version: 1.
|
|
1131
|
+
// version: 1.353.0-cc9b469dc4
|
|
@@ -3,7 +3,9 @@ export declare const idleDetector: IdleDetector;
|
|
|
3
3
|
export declare const activity: Partial<Activity>;
|
|
4
4
|
type MetricsTags = Record<string, number | string | boolean>;
|
|
5
5
|
declare function startActivity(_name: string): Activity;
|
|
6
|
+
declare function log(_schema: any, _data?: any): void;
|
|
6
7
|
export declare const mockInstrumentation: {
|
|
8
|
+
log: typeof log;
|
|
7
9
|
startActivity: typeof startActivity;
|
|
8
10
|
error: () => void;
|
|
9
11
|
trackValue: (_operation: string, _value: number, _hasError?: boolean, _tags?: MetricsTags) => void;
|
|
@@ -11,6 +13,7 @@ export declare const mockInstrumentation: {
|
|
|
11
13
|
bucketValue: (_operation: string, _value: number, _buckets: number[]) => void;
|
|
12
14
|
};
|
|
13
15
|
export declare const getInstrumentation: () => {
|
|
16
|
+
log: typeof log;
|
|
14
17
|
startActivity: typeof startActivity;
|
|
15
18
|
error: () => void;
|
|
16
19
|
trackValue: (_operation: string, _value: number, _hasError?: boolean, _tags?: MetricsTags) => void;
|