Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
// TODO: refactor client-sdk to use this enum
/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*/
export enum DataSourceState {
// Positive confirmation of connection/data receipt
Valid,
Expand All @@ -15,11 +10,6 @@ export enum DataSourceState {
Closed,
}

/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*/
export interface DataSource {
/**
* May be called any number of times, if already started, has no effect
Expand All @@ -40,9 +30,4 @@ export interface DataSource {
stop(): void;
}

/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*/
export type LDDataSourceFactory = () => DataSource;
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ import { LDClientContext } from '@launchdarkly/js-sdk-common';
import { LDFeatureStore } from '../subsystems';

/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*
* Configuration options for the Data System that the SDK uses to get and maintain flags and other
* data from LaunchDarkly and other sources.
*
Expand Down Expand Up @@ -186,10 +182,7 @@ export type SynchronizerDataSource =
| StreamingDataSourceConfiguration;

/**
* @experimental
* This data source will allow developers to define their own composite data source.
* This is a free-form option and is not subject to any backwards compatibility guarantees or semantic
* versioning.
*
* The following example is roughly equivilent to using the {@link StandardDataSourceOptions} with the default values.
* @example
Expand Down
4 changes: 0 additions & 4 deletions packages/shared/sdk-server/src/api/options/LDOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ export interface LDOptions {
featureStore?: LDFeatureStore | ((clientContext: LDClientContext) => LDFeatureStore);

/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*
* Configuration options for the Data System that the SDK uses to get and maintain flags and other
* data from LaunchDarkly and other sources.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ import { LDFeatureStore, LDFeatureStoreDataStorage } from './LDFeatureStore';
type InitMetadata = internal.InitMetadata;

/**
* @experimental
* This feature is not stable and not subject to any backwards compatibility guarantees or semantic
* versioning. It is not suitable for production usage.
*
* Transactional version of {@link LDFeatureStore} with support for {@link applyChanges}
*/
export interface LDTransactionalFeatureStore extends LDFeatureStore {
Expand Down
Loading