@solidxai/core 0.1.11-beta.2 → 0.1.11-beta.4
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/.claude/settings.local.json +2 -1
- package/dist/controllers/datasource-introspection.controller.d.ts +38 -1
- package/dist/controllers/datasource-introspection.controller.d.ts.map +1 -1
- package/dist/controllers/datasource-introspection.controller.js +38 -0
- package/dist/controllers/datasource-introspection.controller.js.map +1 -1
- package/dist/dtos/datasource-introspection-mapping.dto.d.ts +4 -0
- package/dist/dtos/datasource-introspection-mapping.dto.d.ts.map +1 -1
- package/dist/dtos/datasource-introspection-mapping.dto.js +18 -2
- package/dist/dtos/datasource-introspection-mapping.dto.js.map +1 -1
- package/dist/entities/{legacy-common-with-id.entity.d.ts → legacy-common-with-generated-id.entity.d.ts} +2 -2
- package/dist/entities/legacy-common-with-generated-id.entity.d.ts.map +1 -0
- package/dist/entities/{legacy-common-with-id.entity.js → legacy-common-with-generated-id.entity.js} +4 -4
- package/dist/entities/legacy-common-with-generated-id.entity.js.map +1 -0
- package/dist/entities/{legacy-common.entity.d.ts → legacy-common.entity-with-existing-id.entity.d.ts} +1 -1
- package/dist/entities/legacy-common.entity-with-existing-id.entity.d.ts.map +1 -0
- package/dist/entities/{legacy-common.entity.js → legacy-common.entity-with-existing-id.entity.js} +1 -1
- package/dist/entities/legacy-common.entity-with-existing-id.entity.js.map +1 -0
- package/dist/helpers/model-metadata-helper.service.js +3 -3
- package/dist/helpers/model-metadata-helper.service.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces/datasource-introspection-provider.interface.d.ts +1 -0
- package/dist/interfaces/datasource-introspection-provider.interface.d.ts.map +1 -1
- package/dist/interfaces/datasource-introspection-provider.interface.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +12 -3
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.js +12 -0
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.js +2 -0
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.js +28 -15
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection.service.d.ts +52 -2
- package/dist/services/datasource-introspection.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection.service.js +534 -160
- package/dist/services/datasource-introspection.service.js.map +1 -1
- package/dist/services/mediaStorageProviders/file-s3-storage-provider.js +10 -10
- package/dist/services/mediaStorageProviders/file-s3-storage-provider.js.map +1 -1
- package/package.json +1 -1
- package/src/controllers/datasource-introspection.controller.ts +27 -1
- package/src/dtos/datasource-introspection-mapping.dto.ts +10 -0
- package/src/entities/{legacy-common-with-id.entity.ts → legacy-common-with-generated-id.entity.ts} +1 -1
- package/src/helpers/model-metadata-helper.service.ts +1 -1
- package/src/index.ts +2 -2
- package/src/interfaces/datasource-introspection-provider.interface.ts +1 -0
- package/src/seeders/seed-data/solid-core-metadata.json +12 -3
- package/src/services/datasource-introspection/mssql-datasource-introspection-provider.service.ts +12 -0
- package/src/services/datasource-introspection/mysql-datasource-introspection-provider.service.ts +2 -0
- package/src/services/datasource-introspection/postgres-datasource-introspection-provider.service.ts +28 -15
- package/src/services/datasource-introspection.service.ts +626 -136
- package/src/services/mediaStorageProviders/file-s3-storage-provider.ts +2 -2
- package/dist/entities/legacy-common-with-id.entity.d.ts.map +0 -1
- package/dist/entities/legacy-common-with-id.entity.js.map +0 -1
- package/dist/entities/legacy-common.entity.d.ts.map +0 -1
- package/dist/entities/legacy-common.entity.js.map +0 -1
- /package/src/entities/{legacy-common.entity.ts → legacy-common.entity-with-existing-id.entity.ts} +0 -0
|
@@ -6,8 +6,10 @@ import { ModelMetadataHelperService } from "../helpers/model-metadata-helper.ser
|
|
|
6
6
|
import { ModelMetadataRepository } from "../repository/model-metadata.repository";
|
|
7
7
|
import { ModuleMetadataRepository } from "../repository/module-metadata.repository";
|
|
8
8
|
import { DatasourceManagementService } from "./datasource-management.service";
|
|
9
|
+
import { CommandService } from "../helpers/command.service";
|
|
9
10
|
import { FieldMetadataService } from "./field-metadata.service";
|
|
10
11
|
import { ModelMetadataService } from "./model-metadata.service";
|
|
12
|
+
import { ModuleMetadataService } from "./module-metadata.service";
|
|
11
13
|
import { MssqlDatasourceIntrospectionProviderService } from "./datasource-introspection/mssql-datasource-introspection-provider.service";
|
|
12
14
|
import { MysqlDatasourceIntrospectionProviderService } from "./datasource-introspection/mysql-datasource-introspection-provider.service";
|
|
13
15
|
import { PostgresDatasourceIntrospectionProviderService } from "./datasource-introspection/postgres-datasource-introspection-provider.service";
|
|
@@ -31,6 +33,7 @@ type TableInventoryRecord = {
|
|
|
31
33
|
type TableDetailColumnRecord = {
|
|
32
34
|
columnName: string;
|
|
33
35
|
fieldName: string;
|
|
36
|
+
displayName: string;
|
|
34
37
|
dataType: string;
|
|
35
38
|
solidFieldType: string;
|
|
36
39
|
ormType: string;
|
|
@@ -41,6 +44,7 @@ type TableDetailColumnRecord = {
|
|
|
41
44
|
numericScale: number | null;
|
|
42
45
|
ordinalPosition: number | null;
|
|
43
46
|
isAutoGenerated: boolean;
|
|
47
|
+
isPrimaryKey: boolean;
|
|
44
48
|
handledBySuperclass: boolean;
|
|
45
49
|
superclassFieldName: string | null;
|
|
46
50
|
};
|
|
@@ -58,11 +62,13 @@ export declare class DatasourceIntrospectionService {
|
|
|
58
62
|
private readonly modelMetadataHelperService;
|
|
59
63
|
private readonly fieldMetadataService;
|
|
60
64
|
private readonly modelMetadataService;
|
|
65
|
+
private readonly moduleMetadataService;
|
|
66
|
+
private readonly commandService;
|
|
61
67
|
private readonly mssqlProvider;
|
|
62
68
|
private readonly mysqlProvider;
|
|
63
69
|
private readonly postgresProvider;
|
|
64
70
|
private readonly supportedDatasourceTypes;
|
|
65
|
-
constructor(moduleRef: ModuleRef, datasourceManagementService: DatasourceManagementService, moduleMetadataRepository: ModuleMetadataRepository, modelMetadataRepository: ModelMetadataRepository, moduleMetadataHelperService: ModuleMetadataHelperService, modelMetadataHelperService: ModelMetadataHelperService, fieldMetadataService: FieldMetadataService, modelMetadataService: ModelMetadataService, mssqlProvider: MssqlDatasourceIntrospectionProviderService, mysqlProvider: MysqlDatasourceIntrospectionProviderService, postgresProvider: PostgresDatasourceIntrospectionProviderService);
|
|
71
|
+
constructor(moduleRef: ModuleRef, datasourceManagementService: DatasourceManagementService, moduleMetadataRepository: ModuleMetadataRepository, modelMetadataRepository: ModelMetadataRepository, moduleMetadataHelperService: ModuleMetadataHelperService, modelMetadataHelperService: ModelMetadataHelperService, fieldMetadataService: FieldMetadataService, modelMetadataService: ModelMetadataService, moduleMetadataService: ModuleMetadataService, commandService: CommandService, mssqlProvider: MssqlDatasourceIntrospectionProviderService, mysqlProvider: MysqlDatasourceIntrospectionProviderService, postgresProvider: PostgresDatasourceIntrospectionProviderService);
|
|
66
72
|
getBootstrap(moduleId: number): Promise<{
|
|
67
73
|
data: {
|
|
68
74
|
module: {
|
|
@@ -220,6 +226,18 @@ export declare class DatasourceIntrospectionService {
|
|
|
220
226
|
filePath: string;
|
|
221
227
|
model: Record<string, any>;
|
|
222
228
|
};
|
|
229
|
+
summary: {
|
|
230
|
+
includedColumnNames: string[];
|
|
231
|
+
removedColumnNames: string[];
|
|
232
|
+
missingSystemColumns: string[];
|
|
233
|
+
generatedSystemColumnCount: number;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
}>;
|
|
237
|
+
createMigrationArtifacts(moduleId: number, mappingDto: DatasourceIntrospectionMappingDto): Promise<{
|
|
238
|
+
data: {
|
|
239
|
+
modelId: number;
|
|
240
|
+
operation: "create" | "update";
|
|
223
241
|
migration: {
|
|
224
242
|
written: boolean;
|
|
225
243
|
willGenerate: boolean;
|
|
@@ -231,6 +249,13 @@ export declare class DatasourceIntrospectionService {
|
|
|
231
249
|
note: string;
|
|
232
250
|
missingSystemColumns: string[];
|
|
233
251
|
};
|
|
252
|
+
datasourceFile: {
|
|
253
|
+
filePath: string;
|
|
254
|
+
created: boolean;
|
|
255
|
+
updated: boolean;
|
|
256
|
+
entityRegistered: boolean;
|
|
257
|
+
migrationGlobRegistered: boolean;
|
|
258
|
+
};
|
|
234
259
|
summary: {
|
|
235
260
|
includedColumnNames: string[];
|
|
236
261
|
removedColumnNames: string[];
|
|
@@ -239,6 +264,22 @@ export declare class DatasourceIntrospectionService {
|
|
|
239
264
|
};
|
|
240
265
|
};
|
|
241
266
|
}>;
|
|
267
|
+
generateCode(moduleId: number): Promise<{
|
|
268
|
+
data: {
|
|
269
|
+
moduleId: number;
|
|
270
|
+
output: string;
|
|
271
|
+
message: string;
|
|
272
|
+
};
|
|
273
|
+
}>;
|
|
274
|
+
runMigration(moduleId: number, datasourceName: string): Promise<{
|
|
275
|
+
data: {
|
|
276
|
+
moduleId: number;
|
|
277
|
+
datasource: string;
|
|
278
|
+
output: string;
|
|
279
|
+
command: string;
|
|
280
|
+
message: string;
|
|
281
|
+
};
|
|
282
|
+
}>;
|
|
242
283
|
private buildMappingPreview;
|
|
243
284
|
private buildModelPayload;
|
|
244
285
|
private buildModelPayloadFromReviewedModel;
|
|
@@ -255,12 +296,15 @@ export declare class DatasourceIntrospectionService {
|
|
|
255
296
|
private getLegacySystemColumnDefinitions;
|
|
256
297
|
private renderMigrationTemplate;
|
|
257
298
|
private renderTableColumnLiteral;
|
|
299
|
+
private renderTableIndexLiteral;
|
|
258
300
|
private buildMigrationObjectName;
|
|
259
301
|
private toMigrationTableName;
|
|
260
302
|
private buildRawDdl;
|
|
261
303
|
private buildTableInventory;
|
|
262
|
-
private
|
|
304
|
+
private buildModelLookup;
|
|
305
|
+
private resolveMappedModel;
|
|
263
306
|
private groupColumnsByTable;
|
|
307
|
+
private isSolidxInternalTableName;
|
|
264
308
|
private detectLegacyTableType;
|
|
265
309
|
private getSuggestedIdColumn;
|
|
266
310
|
private buildUserKeyCandidates;
|
|
@@ -269,6 +313,7 @@ export declare class DatasourceIntrospectionService {
|
|
|
269
313
|
private getLegacySuperclassFieldName;
|
|
270
314
|
private isHandledBySuperclass;
|
|
271
315
|
private getBaseClassName;
|
|
316
|
+
private getDatasourceTypeFamily;
|
|
272
317
|
private toSolidFieldType;
|
|
273
318
|
private toOrmFieldType;
|
|
274
319
|
private toFieldName;
|
|
@@ -276,6 +321,11 @@ export declare class DatasourceIntrospectionService {
|
|
|
276
321
|
private toPluralNameCandidate;
|
|
277
322
|
private toTableKey;
|
|
278
323
|
private toModelMapKey;
|
|
324
|
+
private syncTypeormDatasourceFile;
|
|
325
|
+
private renderTypeormDatasourceTemplate;
|
|
326
|
+
private arrayLiteralContainsValue;
|
|
327
|
+
private getTypeormDatasourceOptions;
|
|
328
|
+
private getObjectPropertyArrayLiteral;
|
|
279
329
|
private buildSynchronizeBlockedMessage;
|
|
280
330
|
private resolveDataSourceByName;
|
|
281
331
|
private getProvider;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasource-introspection.service.d.ts","sourceRoot":"","sources":["../../src/services/datasource-introspection.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"datasource-introspection.service.d.ts","sourceRoot":"","sources":["../../src/services/datasource-introspection.service.ts"],"names":[],"mappings":"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"}
|