Skip to content

Commit 5c28aaa

Browse files
authored
Merge pull request #133 from imagekit-developer/release-please--branches--master--changes--next--components--nodejs
release: 7.3.0
2 parents 0059b92 + cd719ad commit 5c28aaa

File tree

8 files changed

+52
-7
lines changed

8 files changed

+52
-7
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "7.2.2"
2+
".": "7.3.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 47
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-84f0d75048a9268981a84800b4190e3691997ce57dcfc0876f38a5b3fce6bacd.yml
3-
openapi_spec_hash: 35607d4e850c8a60524223ff632c83bb
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-13fc3d7cafdea492f62eef7c1d63424d6d9d8adbff74b9f6ca6fd3fc12a36840.yml
3+
openapi_spec_hash: a1fe6fa48207791657a1ea2d60a6dfcc
44
config_hash: 47cb702ee2cb52c58d803ae39ade9b44

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 7.3.0 (2026-02-02)
4+
5+
Full Changelog: [v7.2.2...v7.3.0](https://github.com/imagekit-developer/imagekit-nodejs/compare/v7.2.2...v7.3.0)
6+
7+
### Features
8+
9+
* **api:** add customMetadata property to folder schema ([e51825b](https://github.com/imagekit-developer/imagekit-nodejs/commit/e51825b8fb5909c28e25ed11ced5e3fcb05ea0a4))
10+
11+
12+
### Bug Fixes
13+
14+
* **api:** add missing embeddedMetadata and video properties to FileDetails ([6100f86](https://github.com/imagekit-developer/imagekit-nodejs/commit/6100f86642919ca1061d1f31a07407ad8a32fe3b))
15+
316
## 7.2.2 (2026-01-29)
417

518
Full Changelog: [v7.2.1...v7.2.2](https://github.com/imagekit-developer/imagekit-nodejs/compare/v7.2.1...v7.2.2)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@imagekit/nodejs",
3-
"version": "7.2.2",
3+
"version": "7.3.0",
44
"description": "Offical NodeJS SDK for ImageKit.io integration",
55
"author": "Image Kit <developer@imagekit.io>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@imagekit/api-mcp",
3-
"version": "7.2.2",
3+
"version": "7.3.0",
44
"description": "The official MCP Server for the Image Kit API",
55
"author": "Image Kit <developer@imagekit.io>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'imagekit_nodejs_api',
24-
version: '7.2.2',
24+
version: '7.3.0',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/resources/files/files.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,16 @@ export interface File {
199199
*/
200200
AITags?: Array<File.AITag> | null;
201201

202+
/**
203+
* The audio codec used in the video (only for video/audio).
204+
*/
205+
audioCodec?: string;
206+
207+
/**
208+
* The bit rate of the video in kbps (only for video).
209+
*/
210+
bitRate?: number;
211+
202212
/**
203213
* Date and time when the file was uploaded. The date and time is in ISO8601
204214
* format.
@@ -221,6 +231,17 @@ export interface File {
221231
*/
222232
description?: string;
223233

234+
/**
235+
* The duration of the video in seconds (only for video).
236+
*/
237+
duration?: number;
238+
239+
/**
240+
* Consolidated embedded metadata associated with the file. It includes exif, iptc,
241+
* and xmp data.
242+
*/
243+
embeddedMetadata?: { [key: string]: unknown };
244+
224245
/**
225246
* Unique identifier of the asset.
226247
*/
@@ -318,6 +339,11 @@ export interface File {
318339
*/
319340
versionInfo?: File.VersionInfo;
320341

342+
/**
343+
* The video codec used in the video (only for video).
344+
*/
345+
videoCodec?: string;
346+
321347
/**
322348
* Width of the file.
323349
*/
@@ -426,6 +452,12 @@ export interface Folder {
426452
*/
427453
createdAt?: string;
428454

455+
/**
456+
* An object with custom metadata for the folder. Returns empty object if no custom
457+
* metadata is set.
458+
*/
459+
customMetadata?: { [key: string]: unknown };
460+
429461
/**
430462
* Unique identifier of the asset.
431463
*/

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '7.2.2'; // x-release-please-version
1+
export const VERSION = '7.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)