@upstash/redis 0.0.0-ci.822f8506-20231017 → 0.0.0-ci.82511257-20231017
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/pkg/pipeline.js +0 -6
- package/esm/version.js +1 -1
- package/package.json +1 -1
- package/script/pkg/pipeline.js +0 -6
- package/script/version.js +1 -1
- package/types/pkg/pipeline.d.ts +0 -4
- package/types/version.d.ts +1 -1
package/esm/pkg/pipeline.js
CHANGED
|
@@ -1190,12 +1190,6 @@ export class Pipeline {
|
|
|
1190
1190
|
this.commandOptions = opts.commandOptions;
|
|
1191
1191
|
this.multiExec = opts.multiExec ?? false;
|
|
1192
1192
|
}
|
|
1193
|
-
/**
|
|
1194
|
-
* Returns the length of pipeline before the execution
|
|
1195
|
-
*/
|
|
1196
|
-
length() {
|
|
1197
|
-
return this.commands.length;
|
|
1198
|
-
}
|
|
1199
1193
|
/**
|
|
1200
1194
|
* Pushes a command into the pipeline and returns a chainable instance of the
|
|
1201
1195
|
* pipeline
|
package/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "v0.0.0-ci.
|
|
1
|
+
export const VERSION = "v0.0.0-ci.82511257-20231017";
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"main": "./script/platforms/nodejs.js",
|
|
4
4
|
"types": "./types/platforms/nodejs.d.ts",
|
|
5
5
|
"name": "@upstash/redis",
|
|
6
|
-
"version": "v0.0.0-ci.
|
|
6
|
+
"version": "v0.0.0-ci.82511257-20231017",
|
|
7
7
|
"description": "An HTTP/REST based Redis client built on top of Upstash REST API.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
package/script/pkg/pipeline.js
CHANGED
|
@@ -1193,12 +1193,6 @@ class Pipeline {
|
|
|
1193
1193
|
this.commandOptions = opts.commandOptions;
|
|
1194
1194
|
this.multiExec = opts.multiExec ?? false;
|
|
1195
1195
|
}
|
|
1196
|
-
/**
|
|
1197
|
-
* Returns the length of pipeline before the execution
|
|
1198
|
-
*/
|
|
1199
|
-
length() {
|
|
1200
|
-
return this.commands.length;
|
|
1201
|
-
}
|
|
1202
1196
|
/**
|
|
1203
1197
|
* Pushes a command into the pipeline and returns a chainable instance of the
|
|
1204
1198
|
* pipeline
|
package/script/version.js
CHANGED
package/types/pkg/pipeline.d.ts
CHANGED
|
@@ -66,10 +66,6 @@ export declare class Pipeline<TCommands extends Command<any, any>[] = []> {
|
|
|
66
66
|
* ```
|
|
67
67
|
*/
|
|
68
68
|
exec: <TCommandResults extends unknown[] = [] extends TCommands ? unknown[] : InferResponseData<TCommands>>() => Promise<TCommandResults>;
|
|
69
|
-
/**
|
|
70
|
-
* Returns the length of pipeline before the execution
|
|
71
|
-
*/
|
|
72
|
-
length(): number;
|
|
73
69
|
/**
|
|
74
70
|
* Pushes a command into the pipeline and returns a chainable instance of the
|
|
75
71
|
* pipeline
|
package/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "v0.0.0-ci.
|
|
1
|
+
export declare const VERSION = "v0.0.0-ci.82511257-20231017";
|