Skip to content

Commit 33fc18a

Browse files
fix: prevent lib check errors (#272)
1 parent 36b853b commit 33fc18a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

api/sdk.api.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { BinaryWriter } from '@bufbuild/protobuf/wire';
1111
export interface CacheOptions {
1212
// Warning: (ae-forgotten-export) The symbol "CacheEntry" needs to be exported by the entry point index.d.ts
1313
//
14-
// @internal (undocumented)
14+
// (undocumented)
1515
entries?: AsyncIterable<CacheEntry>;
1616
scope?: CacheScope;
1717
}
@@ -35,7 +35,6 @@ export class Confidence implements EventSender, Trackable, FlagResolver {
3535
// @internal
3636
constructor({ context, ...config }: Configuration, parent?: Confidence);
3737
clearContext(): void;
38-
// Warning: (ae-incompatible-release-tags) The symbol "config" is marked as @public, but its signature references "Configuration" which is marked as @internal
3938
readonly config: Configuration;
4039
// Warning: (ae-forgotten-export) The symbol "Subscribe" needs to be exported by the entry point index.d.ts
4140
//
@@ -88,17 +87,21 @@ export interface ConfidenceOptions {
8887
waitUntil?: WaitUntil;
8988
}
9089

91-
// Warning: (ae-internal-missing-underscore) The name "Configuration" should be prefixed with an underscore because the declaration is marked as @internal
90+
// Warning: (ae-missing-release-tag) "Configuration" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
9291
//
93-
// @internal
92+
// @public
9493
export interface Configuration extends ConfidenceOptions {
9594
// (undocumented)
9695
readonly cacheProvider: CacheProvider;
9796
// (undocumented)
9897
readonly clientSecret: string;
9998
// Warning: (ae-forgotten-export) The symbol "EventSenderEngine" needs to be exported by the entry point index.d.ts
99+
//
100+
// @internal
100101
readonly eventSenderEngine: EventSenderEngine;
101102
// Warning: (ae-forgotten-export) The symbol "FlagResolverClient" needs to be exported by the entry point index.d.ts
103+
//
104+
// @internal
102105
readonly flagResolverClient: FlagResolverClient;
103106
readonly logger: Logger;
104107
}

packages/sdk/src/Confidence.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ export interface ConfidenceOptions {
5555

5656
/**
5757
* Confidence configuration
58-
* @internal
5958
*/
6059
export interface Configuration extends ConfidenceOptions {
6160
/** Debug logger */

packages/sdk/src/flag-cache.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export interface CacheOptions {
3434
* The scope of the flag cache.
3535
*/
3636
scope?: CacheScope;
37-
/** @internal */
3837
entries?: AsyncIterable<CacheEntry>;
3938
}
4039
export class FlagCache extends AbstractCache<Context, ResolveFlagsResponse, Uint8Array> {

0 commit comments

Comments
 (0)