Skip to content

Commit 7145c0c

Browse files
committed
wip
1 parent 6fa7fbb commit 7145c0c

File tree

4 files changed

+357
-193
lines changed

4 files changed

+357
-193
lines changed

src/schema-convertors/index.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import internalSchemaToStandard from './internalToStandard';
21
import { Schema as InternalSchema } from '../schema-analyzer';
3-
import { ExtendedJSONSchema, MongodbJSONSchema } from '../types';
2+
import { ExtendedJSONSchema, MongodbJSONSchema, StandardJSONSchema } from '../types';
3+
import internalSchemaToMongodb from './internalToMongodb';
44

5-
function internalSchemaToMongodb(
5+
function internalSchemaToStandard(
66
internalSchema: InternalSchema,
77
options: {
88
signal?: AbortSignal
9-
}): MongodbJSONSchema {
10-
// TODO: COMPASS-8701
11-
return {} as MongodbJSONSchema;
9+
}): StandardJSONSchema {
10+
// TODO: COMPASS-8700
11+
return {} as StandardJSONSchema;
1212
}
1313

1414
function internalSchemaToExtended(

0 commit comments

Comments
 (0)