@salesforce/lds-runtime-bridge 1.226.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.
@@ -0,0 +1,4 @@
1
+ export default function (): void;
2
+ export declare function instrument(): void;
3
+ export declare function ldsNetworkAdapterInstrument(): void;
4
+ export declare const forceRecordTransactionsDisabled = false;
@@ -0,0 +1,11 @@
1
+ declare function stop(_userSchemaOrText?: any | string, _userData?: any): void;
2
+ declare function error(_error: Error, _userSchemaOrText?: any | string, _userData?: any): void;
3
+ declare function discard(): void;
4
+ declare function terminate(): void;
5
+ export declare const activity: {
6
+ stop: typeof stop;
7
+ error: typeof error;
8
+ discard: typeof discard;
9
+ terminate: typeof terminate;
10
+ };
11
+ export {};
@@ -0,0 +1,5 @@
1
+ import { instrumentation } from './instrumentation';
2
+ export { activity } from './activity';
3
+ export { instrumentation } from './instrumentation';
4
+ export { idleDetector } from './idleDetector';
5
+ export declare function getInstrumentation(_name: string): typeof instrumentation;
@@ -0,0 +1,18 @@
1
+ declare function requestIdleDetectedCallback(_callback: any): void;
2
+ declare function declareNotifierTaskSingle(_name: string): {
3
+ isBusy: boolean;
4
+ done: () => void;
5
+ };
6
+ declare function declareNotifierTaskMulti(_name: string, _existingBusyCount?: number): {
7
+ isBusy: boolean;
8
+ add: () => void;
9
+ done: () => void;
10
+ };
11
+ declare function declarePollableTaskMulti(_name: string, _isBusyChecker: any): void;
12
+ export declare const idleDetector: {
13
+ requestIdleDetectedCallback: typeof requestIdleDetectedCallback;
14
+ declareNotifierTaskSingle: typeof declareNotifierTaskSingle;
15
+ declareNotifierTaskMulti: typeof declareNotifierTaskMulti;
16
+ declarePollableTaskMulti: typeof declarePollableTaskMulti;
17
+ };
18
+ export {};
@@ -0,0 +1,14 @@
1
+ declare function log(_schema: any, _data?: any): void;
2
+ declare function error(_err: Error, _userSchemaOrText?: string, _data?: any): void;
3
+ declare function startActivity(_name: string): any;
4
+ declare function incrementCounter(_operation: string, _increment?: number, _hasError?: boolean, _tags?: any): void;
5
+ declare function trackValue(_operation: string, _value: number, _hasError?: boolean, _tags?: any): void;
6
+ export declare const instrumentation: {
7
+ log: typeof log;
8
+ error: typeof error;
9
+ startActivity: typeof startActivity;
10
+ incrementCounter: typeof incrementCounter;
11
+ trackValue: typeof trackValue;
12
+ };
13
+ export declare const METRIC_KEYS: {};
14
+ export {};
@@ -0,0 +1,4 @@
1
+ declare function ldsRuntimeBridge(): {
2
+ name: string;
3
+ };
4
+ export default ldsRuntimeBridge;
@@ -0,0 +1,2 @@
1
+ import { Luvio } from '@luvio/engine';
2
+ export declare function getRuntime(): Luvio;