Skip to content

Commit e1b5af4

Browse files
committed
Updated sources
1 parent cbbe37d commit e1b5af4

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "groupdocs-conversion-cloud",
3-
"version": "25.3.0",
3+
"version": "25.4.0",
44
"description": "GroupDocs.Conversion Cloud SDK for Node.js",
55
"homepage": "https://products.groupdocs.cloud/conversion",
66
"author": {
@@ -32,7 +32,7 @@
3232
"build:package": "npm pack"
3333
},
3434
"dependencies": {
35-
"axios": "1.7.9",
35+
"axios": "1.8.4",
3636
"form-data": "*",
3737
"jsonwebtoken": "9.0.1",
3838
"qs": "6.11.2"

src/model.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@ export class ConsumptionResult {
132132
name: "quantity",
133133
baseName: "quantity",
134134
type: "number",
135+
},
136+
{
137+
name: "billedApiCalls",
138+
baseName: "billedApiCalls",
139+
type: "number",
135140
} ];
136141

137142
/**
@@ -151,6 +156,11 @@ export class ConsumptionResult {
151156
*/
152157
public quantity: number;
153158

159+
/**
160+
* Billed API calls number
161+
*/
162+
public billedApiCalls: number;
163+
154164
public constructor(init?: Partial<ConsumptionResult>) {
155165

156166
Object.assign(this, init);

src/package_version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
/**
2626
* Package version
2727
*/
28-
export const PackageVersion: string = "25.3.0";
28+
export const PackageVersion: string = "25.4.0";

0 commit comments

Comments
 (0)