@apistudio/apim-cli
Version:
CLI for API Management Products
24 lines • 838 B
TypeScript
import { BaseAsset } from "../../common/models/base-asset.model.js";
export type AssetMapper = [string, IndexBaseAsset[]][];
export type IndexBaseAsset = {
baseAssetIndex: number;
baseAsset: BaseAsset;
};
export type BaseAssetMapper = {
apis: IndexBaseAsset[];
api_spec: IndexBaseAsset[];
policies: IndexBaseAsset[];
globalPolicies: IndexBaseAsset[];
scopedPolicies: IndexBaseAsset[];
policySequences: IndexBaseAsset[];
tests: IndexBaseAsset[];
environment: IndexBaseAsset[];
assertions: IndexBaseAsset[];
mockResponses: IndexBaseAsset[];
mockEndpoints: IndexBaseAsset[];
packages: IndexBaseAsset[];
plans: IndexBaseAsset[];
requestLimits: IndexBaseAsset[];
};
export declare const getNewBaseAssetMapper: () => BaseAssetMapper;
//# sourceMappingURL=baseassets.model.d.ts.map