/** * This type is used internally for the list of PacakgeInfo * returned from ADT rest api. It should not be exposed for * public use via axios-extension. */ export interface PackageInfo { uri: string; type: string; name: string; } /** * This type is used internally for the list of `ArchiveFileNode` * returned from ADT rest api. Each `ArchiveFileNode` provides * metadata information of a file/folder in the archived Fiori app. * It should not be exposed for public use via axios-extension. */ export interface AdtFileNode { base: string; author: string; category: { term: 'folder' | 'file'; }; content: { type: string; src: string; }; contributor: string; id: string; link: { href: string; ref: 'appindex' | 'self' | 'execute'; type?: string; }[]; summary: { type: 'text'; }; title: string; } //# sourceMappingURL=adt-internal-types.d.ts.map