Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sap/artifact-management-types

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap/artifact-management-types - npm Package Compare versions

Comparing version 1.23.0 to 1.23.2

src/plugins/bas/readers/BasEmptyModuleReader.d.ts

4

package.json
{
"name": "@sap/artifact-management-types",
"version": "1.23.0",
"version": "1.23.2",
"description": "Type signatures for artifact management",

@@ -13,3 +13,3 @@ "types": "./src/index.d.ts",

"dependencies": {
"@sap/artifact-management-base-types": "1.23.0"
"@sap/artifact-management-base-types": "1.23.2"
},

@@ -16,0 +16,0 @@ "devDependencies": {

import { DetectionMechanism, KeyIn, ProjectData, ProjectFileSystem, ProjectReader, ProjectReaderOptions, ProjectType } from '@sap/artifact-management-base-types';
import BasEmptyModuleReader from './BasEmptyModuleReader';
export default class BasEmptyProjectReader extends ProjectReader {

@@ -6,2 +7,3 @@ constructor();

getDetectionMechanism(): DetectionMechanism;
additionalModuleReaders: BasEmptyModuleReader[][];
tags: string[];

@@ -8,0 +10,0 @@ read({ fs }: ProjectReaderOptions): Promise<ProjectData | undefined>;

@@ -1,2 +0,2 @@

import { ProjectFileSystem, Item, ModuleReader, ModuleType, ModuleData, ProjectEntityReaderReadOptions, DetectionMechanism, KeyIn, ItemDetailInfoOptions } from '@sap/artifact-management-base-types';
import { ProjectFileSystem, Item, ModuleReader, ModuleType, ModuleData, ProjectEntityReaderReadOptions, DetectionMechanism, KeyIn, ItemDetailInfoOptions, ProjectContext } from '@sap/artifact-management-base-types';
interface CapItemReaderContext {

@@ -30,3 +30,3 @@ withDetailInfo?: boolean;

tags: string[];
prepareItemReaderContext(fs: ProjectFileSystem, withDetailInfo?: boolean): Promise<CapItemReaderContext | undefined>;
prepareItemReaderContext(fs: ProjectFileSystem, context: ProjectContext): Promise<CapItemReaderContext | undefined>;
getCapModulesFolderMap(fs: ProjectFileSystem): Promise<any>;

@@ -37,3 +37,3 @@ getMappedFolderType(folderPath: string, fs: ProjectFileSystem): Promise<string | undefined>;

}): Promise<ModuleData | undefined>;
provideFromCds({ fs, context }: ProjectEntityReaderReadOptions): Promise<Item[]>;
provideFromCds({ fs, matchedFiles, context }: ProjectEntityReaderReadOptions): Promise<Item[]>;
detailInfo(fs: ProjectFileSystem, ref: string, options?: ItemDetailInfoOptions): Promise<Item | undefined>;

@@ -44,3 +44,4 @@ readCSV({ fs, matchedFiles }: ProjectEntityReaderReadOptions): Promise<Item[]>;

private addUnboundActionItems;
private addEventItems;
}
export {};

@@ -23,2 +23,3 @@ import { Item, LinkType, ProjectFileSystem } from '@sap/artifact-management-base-types';

static getOperationItem(fs: ProjectFileSystem, operation: any, tags: string[], withDetailInfo: boolean): Item;
static getEventItem(fs: ProjectFileSystem, event: any, tags: string[], withDetailInfo: boolean): Item;
static addDetailInfoForOperaton(item: Item, operation: any): void;

@@ -28,2 +29,3 @@ static addNamespaceItemFromDBEntityItem(items: Map<string, Item>, dbEntityItem: Item, namespace: string, itemTags: string[]): void;

private static collectAttributes;
private static getPath;
}

@@ -1,2 +0,2 @@

import { ModuleData, Item, ProjectFileSystem, FileSystemWatchManager, ModuleReader } from '@sap/artifact-management-base-types';
import { ModuleData, Item, ProjectFileSystem, FileSystemWatchManager, ModuleReader, ProjectContext } from '@sap/artifact-management-base-types';
import ItemSetInstance from './ItemSetInstance';

@@ -9,7 +9,7 @@ import ProjectEntityInstance from './ProjectEntityInstance';

getFs(): ProjectFileSystem;
loadItemSets(moduleData: ModuleData | undefined, withDetailInfo?: boolean): Promise<ItemSetInstance[]>;
loadItemSets(moduleData: ModuleData | undefined, projectContext: ProjectContext): Promise<ItemSetInstance[]>;
getData(): Promise<ModuleData | undefined>;
getItemSets(withDetailInfo?: boolean): Promise<ItemSetInstance[]>;
getItemSets(context: ProjectContext): Promise<ItemSetInstance[]>;
getModuleType(): Promise<string>;
getItems(withDetailInfo?: boolean): Promise<{
getItems(context: ProjectContext): Promise<{
items: Item[];

@@ -16,0 +16,0 @@ info?: {};

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc