@sap/artifact-management-types 1.13.0 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export default class DataFirstUtil {
|
|
2
|
+
private projectImpl;
|
|
3
|
+
constructor(projectImpl: any);
|
|
4
|
+
parseCSVFile(path: string, absolutePath?: boolean): Promise<any>;
|
|
5
|
+
parseXMLFile(path: string, absolutePath?: boolean): Promise<any>;
|
|
6
|
+
setMainEntity(data: any, mainEntityName?: string): void;
|
|
7
|
+
private processDataTypes;
|
|
8
|
+
private processValues;
|
|
9
|
+
private normalizeValues;
|
|
10
|
+
private setKeyColumn;
|
|
11
|
+
private alignAssociationProps;
|
|
12
|
+
private propsNeedAligned;
|
|
13
|
+
private getJsDataType;
|
|
14
|
+
private getExcelDataType;
|
|
15
|
+
private checkIfUUIDColumn;
|
|
16
|
+
private isId;
|
|
17
|
+
}
|
|
@@ -67,8 +67,4 @@ export default class ProjectImpl implements ProjectApi {
|
|
|
67
67
|
} | undefined>;
|
|
68
68
|
invalidate_cachedLaunchURL(): Promise<void>;
|
|
69
69
|
getDataInfo(data: any, mainEntityName?: string, logger?: IChildLogger): Promise<any>;
|
|
70
|
-
private parseCSVFile;
|
|
71
|
-
private parseXMLFile;
|
|
72
|
-
private processValues;
|
|
73
|
-
private isId;
|
|
74
70
|
}
|
|
Binary file
|