Skip to content

Commit

Permalink
do not use osFeatures and osVersion as not used often
Browse files Browse the repository at this point in the history
Signed-off-by: Charlie Drage <charlie@charliedrage.com>
  • Loading branch information
cdrage committed Apr 18, 2024
1 parent 66d89d4 commit a11ea00
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
8 changes: 3 additions & 5 deletions packages/extension-api/src/extension-api.d.ts
Expand Up @@ -302,14 +302,12 @@ declare module '@podman-desktop/api' {
mediaType: string;
platform: {
architecture: string;
features: string[];
features?: string[];
os: string;
osFeatures: string[];
osVersion: string;
variant: string;
variant?: string;
};
size: number;
urls: string[];
urls?: string[];
}[];
mediaType: string;
schemaVersion: number;
Expand Down
8 changes: 3 additions & 5 deletions packages/main/src/plugin/api/manifest-info.ts
Expand Up @@ -36,14 +36,12 @@ export interface ManifestInspectInfo {
mediaType: string;
platform: {
architecture: string;
features: string[];
features?: string[];
os: string;
osFeatures: string[];
osVersion: string;
variant: string;
variant?: string;
};
size: number;
urls: string[];
urls?: string[];
}[];
mediaType: string;
schemaVersion: number;
Expand Down
2 changes: 0 additions & 2 deletions packages/main/src/plugin/container-registry.spec.ts
Expand Up @@ -4587,8 +4587,6 @@ test('check that inspectManifest returns information from libPod.podmanInspectMa
architecture: 'architecture',
features: [],
os: 'os',
osFeatures: [],
osVersion: 'osVersion',
variant: 'variant',
},
size: 100,
Expand Down

0 comments on commit a11ea00

Please sign in to comment.