@salesforce/core-bundle 8.6.1 → 8.6.2
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 +5 -2
- package/lib/index.js +10502 -11778
- package/lib/pino-file.js +58 -98
- package/lib/pino-pretty.js +335 -670
- package/lib/pino-worker.js +206 -394
- package/lib/thread-stream-worker.js +4 -8
- package/messages/core.md +1 -1
- package/messages/encryption.md +1 -1
- package/package.json +5 -4
package/lib/index.d.ts
CHANGED
@@ -2313,6 +2313,7 @@ declare module '@salesforce/core-bundle/messages' {
|
|
2313
2313
|
* @param tokens The values to substitute in the message.
|
2314
2314
|
*
|
2315
2315
|
* **See** https://nodejs.org/api/util.html#util_util_format_format_args
|
2316
|
+
* **Note** Unlike util.format(), specifiers are required for a token to be rendered.
|
2316
2317
|
*/
|
2317
2318
|
getMessage(key: T, tokens?: Tokens): string;
|
2318
2319
|
/**
|
@@ -2336,6 +2337,7 @@ declare module '@salesforce/core-bundle/messages' {
|
|
2336
2337
|
* @param tokens The values to substitute in the message.
|
2337
2338
|
*
|
2338
2339
|
* **See** https://nodejs.org/api/util.html#util_util_format_format_args
|
2340
|
+
* **Note** Unlike util.format(), specifiers are required for a token to be rendered.
|
2339
2341
|
*/
|
2340
2342
|
getMessages(key: T, tokens?: Tokens): string[];
|
2341
2343
|
/**
|
@@ -3770,6 +3772,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgCache' {
|
|
3770
3772
|
tracksSource?: boolean;
|
3771
3773
|
};
|
3772
3774
|
export class ScratchOrgCache extends TTLConfig<TTLConfig.Options, CachedOptions> {
|
3775
|
+
protected static readonly encryptedKeys: string[];
|
3773
3776
|
static getFileName(): string;
|
3774
3777
|
static getDefaultOptions(): TTLConfig.Options;
|
3775
3778
|
static unset(key: string): Promise<void>;
|
@@ -3899,7 +3902,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgInfoApi' {
|
|
3899
3902
|
* scratchOrgInfoComplete - The completed ScratchOrgInfo which should contain an access token.
|
3900
3903
|
* hubOrg - the environment hub org
|
3901
3904
|
* clientSecret - The OAuth client secret. May be null for JWT OAuth flow.
|
3902
|
-
*
|
3905
|
+
* signupTargetLoginUrl - Login url override
|
3903
3906
|
* retry - auth retry attempts
|
3904
3907
|
*
|
3905
3908
|
* @returns {Promise<AuthInfo>}
|
@@ -3908,7 +3911,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgInfoApi' {
|
|
3908
3911
|
scratchOrgInfoComplete: ScratchOrgInfo;
|
3909
3912
|
hubOrg: Org;
|
3910
3913
|
clientSecret?: string;
|
3911
|
-
|
3914
|
+
signupTargetLoginUrl?: string;
|
3912
3915
|
retry?: number;
|
3913
3916
|
}) => Promise<AuthInfo>;
|
3914
3917
|
/**
|