Skip to content

Commit 4e2802d

Browse files
committed
Rename parsePredictionProgress to parseProgress
1 parent 7f72b2b commit 4e2802d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ declare module "replicate" {
281281
secret: string
282282
): boolean;
283283

284-
export function parsePredictionProgress(logs: Prediction | string): {
284+
export function parseProgress(logs: Prediction | string): {
285285
percentage: number;
286286
current: number;
287287
total: number;

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { Stream } = require("./lib/stream");
44
const {
55
withAutomaticRetries,
66
validateWebhook,
7-
parsePredictionProgress,
7+
parseProgress,
88
} = require("./lib/util");
99

1010
const accounts = require("./lib/accounts");
@@ -379,4 +379,4 @@ class Replicate {
379379

380380
module.exports = Replicate;
381381
module.exports.validateWebhook = validateWebhook;
382-
module.exports.parsePredictionProgress = parsePredictionProgress;
382+
module.exports.parseProgress = parseProgress;

index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Replicate, {
44
Model,
55
Prediction,
66
validateWebhook,
7-
parsePredictionProgress,
7+
parseProgress,
88
} from "replicate";
99
import nock from "nock";
1010
import fetch from "cross-fetch";
@@ -946,7 +946,7 @@ describe("Replicate client", () => {
946946
wait: { interval: 1 },
947947
},
948948
(prediction) => {
949-
const progress = parsePredictionProgress(prediction);
949+
const progress = parseProgress(prediction);
950950
callback(prediction, progress);
951951
}
952952
);

lib/util.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,11 @@ function isPlainObject(value) {
247247
}
248248

249249
/**
250-
* Parse prediction progress from logs.
250+
* Parse progress from prediction logs.
251251
* @param {object|string} input - A prediction object or string.
252252
* @returns {object} - An object with the percentage, current, and total.
253253
*/
254-
function parsePredictionProgress(input) {
254+
function parseProgress(input) {
255255
const logs = typeof input === "object" && input.logs ? input.logs : input;
256256
if (!logs || typeof logs !== "string") {
257257
return null;
@@ -279,5 +279,5 @@ module.exports = {
279279
transformFileInputs,
280280
validateWebhook,
281281
withAutomaticRetries,
282-
parsePredictionProgress,
282+
parseProgress,
283283
};

0 commit comments

Comments
 (0)