diff --git a/node/src/BaseClient.ts b/node/src/BaseClient.ts index 2d7ab684bc..4390d06751 100644 --- a/node/src/BaseClient.ts +++ b/node/src/BaseClient.ts @@ -4660,9 +4660,7 @@ export class BaseClient { * @param key - The key of the stream. * @param values - field-value pairs to be added to the entry. * @param options - options detailing how to add to the stream. - * @param options - (Optional) Additional Parameters: - * - (Optional) `StreamAddOptoins`: options detailing how to add to the stream. - * - (Optional) `decoder`: see {@link DecoderOption}. + * @param options - (Optional) See {@link StreamAddOptions} and {@link DecoderOption}. * @returns The id of the added entry, or `null` if `options.makeStream` is set to `false` and no stream with the matching `key` exists. */ public async xadd( @@ -4959,9 +4957,7 @@ export class BaseClient { * @param consumer - The group consumer. * @param minIdleTime - The minimum idle time for the message to be claimed. * @param ids - An array of entry ids. - * @param options - Additional Parameters: - * - (Optional) `StreamAddOptoins`: Stream claim options {@link StreamClaimOptions}. - * - (Optional) `decoder`: see {@link DecoderOption}. + * @param options - (Optional) See {@link StreamClaimOptions} and {@link DecoderOption}. * @returns A `Record` of message entries that are claimed by the consumer. * * @example @@ -5146,10 +5142,7 @@ export class BaseClient { * * @param key - The key of the stream. * @param groupName - The newly created consumer group name. - * @param id - Additional Parameters: - * - (Optional) `StreamAddOptoins`: Stream entry ID that specifies the last delivered entry in the stream from the new - * group’s perspective. The special ID `"$"` can be used to specify the last entry in the stream. - * - (Optional) `decoder`: see {@link DecoderOption}. + * @param options - (Optional) See {@link StreamGroupOptions} and {@link DecoderOption}. * @returns `"OK"`. * * @example