Skip to content

Commit

Permalink
chore: update API.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyu99 committed Dec 19, 2024
1 parent 101e17e commit 9f1f1b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 10 additions & 4 deletions packages/backend-data/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ export type AuthorizationModes = {
oidcAuthorizationMode?: OIDCAuthorizationModeProps;
};

// @public
export type DataLogConfig = {
retention?: LogRetention;
excludeVerboseContent?: boolean;
level?: DataLogLevel;
};

// @public
export type DataLoggingOptions = true | DataLogConfig;

// @public
export type DataProps = {
schema: DataSchemaInput;
Expand Down Expand Up @@ -59,10 +69,6 @@ export type OIDCAuthorizationModeProps = {
tokenExpireFromIssueInSeconds: number;
};

// Warnings were encountered during analysis:
//
// src/types.ts:146:3 - (ae-forgotten-export) The symbol "DataLoggingOptions" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

```
2 changes: 2 additions & 0 deletions packages/backend-data/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ export {
AuthorizationModes,
DataSchemaInput,
DataProps,
DataLoggingOptions,
DataLogConfig,
} from './types.js';

0 comments on commit 9f1f1b7

Please sign in to comment.