@salesforce/core-bundle 8.6.0 → 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 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
  /**
@@ -3099,9 +3101,7 @@ declare module '@salesforce/core-bundle/org/org' {
3099
3101
  SourceId?: string;
3100
3102
  Description?: string;
3101
3103
  ApexClassId?: string;
3102
- ApexClassName?: string;
3103
3104
  ActivationUserGroupId?: string;
3104
- ActivationUserGroupName?: string;
3105
3105
  };
3106
3106
  export type ResumeSandboxRequest = {
3107
3107
  SandboxName?: string;
@@ -3772,6 +3772,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgCache' {
3772
3772
  tracksSource?: boolean;
3773
3773
  };
3774
3774
  export class ScratchOrgCache extends TTLConfig<TTLConfig.Options, CachedOptions> {
3775
+ protected static readonly encryptedKeys: string[];
3775
3776
  static getFileName(): string;
3776
3777
  static getDefaultOptions(): TTLConfig.Options;
3777
3778
  static unset(key: string): Promise<void>;
@@ -3901,7 +3902,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgInfoApi' {
3901
3902
  * scratchOrgInfoComplete - The completed ScratchOrgInfo which should contain an access token.
3902
3903
  * hubOrg - the environment hub org
3903
3904
  * clientSecret - The OAuth client secret. May be null for JWT OAuth flow.
3904
- * signupTargetLoginUrlConfig - Login url
3905
+ * signupTargetLoginUrl - Login url override
3905
3906
  * retry - auth retry attempts
3906
3907
  *
3907
3908
  * @returns {Promise<AuthInfo>}
@@ -3910,7 +3911,7 @@ declare module '@salesforce/core-bundle/org/scratchOrgInfoApi' {
3910
3911
  scratchOrgInfoComplete: ScratchOrgInfo;
3911
3912
  hubOrg: Org;
3912
3913
  clientSecret?: string;
3913
- signupTargetLoginUrlConfig?: string;
3914
+ signupTargetLoginUrl?: string;
3914
3915
  retry?: number;
3915
3916
  }) => Promise<AuthInfo>;
3916
3917
  /**