Skip to content

Commit 6074c83

Browse files
address comment: rename InfScore to Score
Signed-off-by: James Xin <[email protected]>
1 parent 6657402 commit 6074c83

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

node/npm/glide/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ function initialize() {
138138
SetOptions,
139139
ZAddOptions,
140140
InfBoundary,
141-
InfScore,
142141
KeyWeight,
143142
Boundary,
144143
ProtocolVersion,
@@ -192,6 +191,7 @@ function initialize() {
192191
ReturnTypeAttribute,
193192
ReturnTypeJson,
194193
UniversalReturnTypeJson,
194+
Score,
195195
} = nativeBinding;
196196

197197
module.exports = {
@@ -292,7 +292,6 @@ function initialize() {
292292
SetOptions,
293293
ZAddOptions,
294294
InfBoundary,
295-
InfScore,
296295
KeyWeight,
297296
Boundary,
298297
ProtocolVersion,
@@ -342,6 +341,7 @@ function initialize() {
342341
ReturnTypeAttribute,
343342
ReturnTypeJson,
344343
UniversalReturnTypeJson,
344+
Score,
345345
};
346346

347347
globalObject = Object.assign(global, nativeBinding);

node/src/BaseClient.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export type StreamEntryDataType = Record<string, [GlideString, GlideString][]>;
350350
/**
351351
* Union type that can store either a number or positive/negative infinity.
352352
*/
353-
export type InfScore = number | "+inf" | "-inf";
353+
export type Score = number | "+inf" | "-inf";
354354

355355
/**
356356
* @internal
@@ -4027,7 +4027,7 @@ export class BaseClient {
40274027
membersAndScores:
40284028
| SortedSetDataType
40294029
| Record<string, number>
4030-
| Record<string, InfScore>,
4030+
| Record<string, Score>,
40314031
options?: ZAddOptions,
40324032
): Promise<number> {
40334033
return this.createWritePromise(

node/src/Commands.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
GlideRecord,
1212
GlideString,
1313
HashDataType,
14-
InfScore,
14+
Score,
1515
ObjectType,
1616
SortedSetDataType,
1717
} from "./BaseClient";
@@ -1446,7 +1446,7 @@ export function createZAdd(
14461446
membersAndScores:
14471447
| SortedSetDataType
14481448
| Record<string, number>
1449-
| Record<string, InfScore>,
1449+
| Record<string, Score>,
14501450
options?: ZAddOptions,
14511451
incr = false,
14521452
): command_request.Command {

node/tests/SharedTests.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import {
3535
HashDataType,
3636
InfBoundary,
3737
InfoOptions,
38-
InfScore,
3938
InsertPosition,
4039
ListDirection,
4140
ProtocolVersion,
@@ -54,6 +53,7 @@ import {
5453
convertFieldsAndValuesToHashDataType,
5554
convertGlideRecordToRecord,
5655
parseInfoResponse,
56+
Score,
5757
} from "..";
5858
import { ValkeyCluster } from "../../utils/TestUtils";
5959
import { Client, GetAndSetRandomValue, getFirstResult } from "./TestUtilities";
@@ -4155,7 +4155,7 @@ export function runBaseTests(config: {
41554155
expect(
41564156
await client.zadd(key, newMembersScores, { changed: true }),
41574157
).toEqual(2);
4158-
const infMembersScores: Record<string, InfScore> = {
4158+
const infMembersScores: Record<string, Score> = {
41594159
infMember: "+inf",
41604160
negInfMember: "-inf",
41614161
};
@@ -4545,7 +4545,7 @@ export function runBaseTests(config: {
45454545
await expect(client.zscore(key2, "foo")).rejects.toThrow();
45464546

45474547
const inf_key = uuidv4();
4548-
const infMembersScores: Record<string, InfScore> = {
4548+
const infMembersScores: Record<string, Score> = {
45494549
infMember: "+inf",
45504550
negInfMember: "-inf",
45514551
};

0 commit comments

Comments
 (0)