Skip to content

Commit

Permalink
fix sql schema exports
Browse files Browse the repository at this point in the history
  • Loading branch information
sundersc committed Nov 16, 2024
1 parent 7e23ebb commit 55683b2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
17 changes: 14 additions & 3 deletions packages/backend-data/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,20 @@ export type OIDCAuthorizationModeProps = {
tokenExpireFromIssueInSeconds: number;
};

// Warnings were encountered during analysis:
//
// src/types.ts:143:3 - (ae-forgotten-export) The symbol "SqlSchemaDefinition" needs to be exported by the entry point index.d.ts
// @public (undocumented)
export type SqlSchemaDefinition = {
transform: () => {
tables: {
tableName: string;
columns: {
name: string;
type: string;
isNullable: boolean;
}[];
primaryKey: string[];
}[];
};
};

// (No @packageDocumentation comment for this package)

Expand Down
1 change: 1 addition & 0 deletions packages/backend-data/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ export {
AuthorizationModes,
DataSchemaInput,
DataProps,
SqlSchemaDefinition,
} from './types.js';

0 comments on commit 55683b2

Please sign in to comment.