diff --git a/packages/core/src/auth-token-manager.ts b/packages/core/src/auth-token-manager.ts index 4d6522f1e..d223bfdc0 100644 --- a/packages/core/src/auth-token-manager.ts +++ b/packages/core/src/auth-token-manager.ts @@ -26,8 +26,7 @@ export type SecurityErrorCode = `Neo.ClientError.Security.${string}` /** * Interface for the piece of software responsible for keeping track of current active {@link AuthToken} across the driver. * @interface - * @experimental Exposed as preview feature. - * @since 5.8 + * @since 5.14 */ export default class AuthTokenManager { /** @@ -57,8 +56,7 @@ export default class AuthTokenManager { /** * Interface which defines an {@link AuthToken} with an expiration data time associated * @interface - * @experimental Exposed as preview feature. - * @since 5.8 + * @since 5.14 */ export class AuthTokenAndExpiration { public readonly token: AuthToken @@ -102,7 +100,6 @@ class AuthTokenManagers { * @param {function(): Promise} param0.tokenProvider - Retrieves a new valid auth token. * Must only ever return auth information belonging to the same identity. * @returns {AuthTokenManager} The temporal auth data manager. - * @experimental Exposed as preview feature. */ bearer ({ tokenProvider }: { tokenProvider: () => Promise }): AuthTokenManager { if (typeof tokenProvider !== 'function') { @@ -124,7 +121,6 @@ class AuthTokenManagers { * @param {function(): Promise} param0.tokenProvider - Retrieves a new valid auth token. * Must only ever return auth information belonging to the same identity. * @returns {AuthTokenManager} The basic auth data manager. - * @experimental Exposed as preview feature. */ basic ({ tokenProvider }: { tokenProvider: () => Promise }): AuthTokenManager { if (typeof tokenProvider !== 'function') { @@ -138,9 +134,7 @@ class AuthTokenManagers { } /** - * Holds the common {@link AuthTokenManagers} used in the Driver - * - * @experimental Exposed as preview feature. + * Holds the common {@link AuthTokenManagers} used in the Driver. */ const authTokenManagers: AuthTokenManagers = new AuthTokenManagers() diff --git a/packages/core/src/driver.ts b/packages/core/src/driver.ts index 8beddeb1e..9f2a7a61e 100644 --- a/packages/core/src/driver.ts +++ b/packages/core/src/driver.ts @@ -207,7 +207,6 @@ class SessionConfig { * which supports Bolt 5.1 and onwards. * * @type {AuthToken|undefined} - * @experimental Exposed as preview feature. * @see {@link driver} */ this.auth = undefined diff --git a/packages/neo4j-driver-deno/lib/core/auth-token-manager.ts b/packages/neo4j-driver-deno/lib/core/auth-token-manager.ts index 3db32ed71..e83a95942 100644 --- a/packages/neo4j-driver-deno/lib/core/auth-token-manager.ts +++ b/packages/neo4j-driver-deno/lib/core/auth-token-manager.ts @@ -26,8 +26,7 @@ export type SecurityErrorCode = `Neo.ClientError.Security.${string}` /** * Interface for the piece of software responsible for keeping track of current active {@link AuthToken} across the driver. * @interface - * @experimental Exposed as preview feature. - * @since 5.8 + * @since 5.14 */ export default class AuthTokenManager { /** @@ -57,8 +56,7 @@ export default class AuthTokenManager { /** * Interface which defines an {@link AuthToken} with an expiration data time associated * @interface - * @experimental Exposed as preview feature. - * @since 5.8 + * @since 5.14 */ export class AuthTokenAndExpiration { public readonly token: AuthToken @@ -102,7 +100,6 @@ class AuthTokenManagers { * @param {function(): Promise} param0.tokenProvider - Retrieves a new valid auth token. * Must only ever return auth information belonging to the same identity. * @returns {AuthTokenManager} The temporal auth data manager. - * @experimental Exposed as preview feature. */ bearer ({ tokenProvider }: { tokenProvider: () => Promise }): AuthTokenManager { if (typeof tokenProvider !== 'function') { @@ -124,7 +121,6 @@ class AuthTokenManagers { * @param {function(): Promise} param0.tokenProvider - Retrieves a new valid auth token. * Must only ever return auth information belonging to the same identity. * @returns {AuthTokenManager} The basic auth data manager. - * @experimental Exposed as preview feature. */ basic ({ tokenProvider }: { tokenProvider: () => Promise }): AuthTokenManager { if (typeof tokenProvider !== 'function') { @@ -138,9 +134,7 @@ class AuthTokenManagers { } /** - * Holds the common {@link AuthTokenManagers} used in the Driver - * - * @experimental Exposed as preview feature. + * Holds the common {@link AuthTokenManagers} used in the Driver. */ const authTokenManagers: AuthTokenManagers = new AuthTokenManagers() diff --git a/packages/neo4j-driver-deno/lib/core/driver.ts b/packages/neo4j-driver-deno/lib/core/driver.ts index b5d0b02b2..61a02a5b5 100644 --- a/packages/neo4j-driver-deno/lib/core/driver.ts +++ b/packages/neo4j-driver-deno/lib/core/driver.ts @@ -207,7 +207,6 @@ class SessionConfig { * which supports Bolt 5.1 and onwards. * * @type {AuthToken|undefined} - * @experimental Exposed as preview feature. * @see {@link driver} */ this.auth = undefined diff --git a/packages/neo4j-driver/src/result-rx.js b/packages/neo4j-driver/src/result-rx.js index eb2c8312a..472f8a110 100644 --- a/packages/neo4j-driver/src/result-rx.js +++ b/packages/neo4j-driver/src/result-rx.js @@ -110,7 +110,7 @@ export default class RxResult { /** * Pauses the automatic streaming of records. * - * This method provides a way of controll the flow of records + * This method provides a way of control the flow of records * * @experimental */