@salesforce/core-bundle 7.3.9 → 7.3.11
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/lib/index.d.ts +10 -0
- package/lib/index.js +1143 -1166
- package/lib/pino-file.js +125 -73
- package/lib/pino-pretty.js +889 -442
- package/lib/pino-worker.js +610 -348
- package/lib/transformStream.js +3 -3
- package/package.json +7 -5
package/lib/index.d.ts
CHANGED
@@ -6178,6 +6178,16 @@ declare module '@salesforce/core-bundle/util/fileLocking' {
|
|
6178
6178
|
export const lockInitSync: (filePath: string) => LockInitSyncResponse;
|
6179
6179
|
export {};
|
6180
6180
|
|
6181
|
+
}
|
6182
|
+
declare module '@salesforce/core-bundle/util/findSuggestion' {
|
6183
|
+
/**
|
6184
|
+
* From the haystack, will find the closest value to the needle
|
6185
|
+
*
|
6186
|
+
* @param needle - what the user provided - find results similar to this
|
6187
|
+
* @param haystack - possible results to search against
|
6188
|
+
*/
|
6189
|
+
export const findSuggestion: (needle: string, haystack: string[]) => string;
|
6190
|
+
|
6181
6191
|
}
|
6182
6192
|
declare module '@salesforce/core-bundle/util/findUppercaseKeys' {
|
6183
6193
|
import { JsonMap, Optional } from '@salesforce/ts-types';
|