Skip to content

Commit f7127ae

Browse files
committed
chore(core): add public/internal tags for new functions
1 parent 17de7e3 commit f7127ae

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages/core/src/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ import { getArrayForCommaSeparatedString } from "../utils/getArrayForCommaSepara
55
const NODE_AUTH_SCHEME_PREFERENCE_ENV_KEY = "AWS_AUTH_SCHEME_PREFERENCE";
66
const NODE_AUTH_SCHEME_PREFERENCE_CONFIG_KEY = "auth_scheme_preference";
77

8+
/**
9+
* @public
10+
*/
811
export const NODE_AUTH_SCHEME_PREFERENCE_OPTIONS: LoadedConfigSelectors<string[]> = {
912
/**
1013
* Retrieves auth scheme preference from environment variables

packages/core/src/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* Converts a comma-separated string into an array of trimmed strings
33
* @param str The comma-separated input string to split
44
* @returns Array of trimmed strings split from the input
5+
*
6+
* @internal
57
*/
68
export const getArrayForCommaSeparatedString = (str: string) =>
79
typeof str === "string" && str.length > 0 ? str.split(",").map((item) => item.trim()) : [];

0 commit comments

Comments
 (0)