We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2050d5a commit 8f3adbbCopy full SHA for 8f3adbb
src/schema-convertors/internalToExpanded.ts
@@ -6,7 +6,7 @@ export default function internalSchemaToExpanded(
6
internalSchema: InternalSchema,
7
options: {
8
signal?: AbortSignal
9
-}): ExpandedJSONSchema {
+}): Promise<ExpandedJSONSchema> {
10
// TODO: COMPASS-8702
11
- return {} as ExpandedJSONSchema;
+ return Promise.resolve({} as ExpandedJSONSchema);
12
}
src/schema-convertors/internalToStandard.ts
@@ -6,7 +6,7 @@ export default function internalSchemaToStandard(
-}): StandardJSONSchema {
+}): Promise<StandardJSONSchema> {
// TODO: COMPASS-8700
- return {} as StandardJSONSchema;
+ return Promise.resolve({} as StandardJSONSchema);
0 commit comments