@salesforce/plugin-trust 3.5.3 → 3.6.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/README.md CHANGED
@@ -120,6 +120,6 @@ EXAMPLES
120
120
  $ @salesforce/plugin-trust plugins trust verify --npm @scope/npmName
121
121
  ```
122
122
 
123
- _See code: [src/commands/plugins/trust/verify.ts](https://github.com/salesforcecli/plugin-trust/blob/3.5.3/src/commands/plugins/trust/verify.ts)_
123
+ _See code: [src/commands/plugins/trust/verify.ts](https://github.com/salesforcecli/plugin-trust/blob/3.6.0/src/commands/plugins/trust/verify.ts)_
124
124
 
125
125
  <!-- commandsstop -->
@@ -1,8 +1,8 @@
1
1
  import { SfCommand } from '@salesforce/sf-plugins-core';
2
- export interface VerifyResponse {
2
+ export type VerifyResponse = {
3
3
  message: string;
4
4
  verified: boolean;
5
- }
5
+ };
6
6
  export declare class Verify extends SfCommand<VerifyResponse> {
7
7
  static readonly summary: string;
8
8
  static readonly description: string;
@@ -6,16 +6,16 @@ import { Logger } from '@salesforce/core';
6
6
  import { NpmMeta } from './npmCommand.js';
7
7
  import { type NpmName } from './npmName.js';
8
8
  export declare const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
9
- export interface ConfigContext {
9
+ export type ConfigContext = {
10
10
  configDir?: string;
11
11
  cacheDir?: string;
12
12
  dataDir?: string;
13
13
  cliRoot?: string;
14
- }
15
- export interface Verifier {
14
+ };
15
+ export type Verifier = {
16
16
  verify(): Promise<NpmMeta>;
17
17
  isAllowListed(): Promise<boolean>;
18
- }
18
+ };
19
19
  declare class CodeVerifierInfo {
20
20
  private signature?;
21
21
  private publicKey?;