UNPKG

@adinsure-ops/ops-cli

Version:

Operations CLI for working with AdInsure

35 lines (34 loc) 704 B
export type AzurePackageArray = { count: number; value: AzurePackage[]; }; export type AzurePackage = { id: string; name: string; normalizedName: string; protocolType: string; url: string; versions: AzurePackageVersion[]; }; export type AzurePackageVersion = { id: string; isLatest: boolean; isListed: boolean; normalizedVersion: string; publishDate: string; storageId: string; version: string; views: AzurePackageView[]; }; export type AzurePackageView = { id: string; name: string; type: boolean; url: string; }; export type NpmPackage = { jsonPath: string; name: string; path: string; version: string; };