diff --git a/package-lock.json b/package-lock.json index b9421c1..8aae51e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,15 @@ { "name": "@contentstack/delivery-sdk", - "version": "4.6.1", + "version": "4.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@contentstack/delivery-sdk", - "version": "4.6.1", + "version": "4.7.0", "license": "MIT", "dependencies": { "@contentstack/core": "^1.2.0", - "@contentstack/utils": "^1.3.19", "axios": "^1.8.4", "humps": "^2.0.1" }, diff --git a/package.json b/package.json index 351284e..e2d1d15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@contentstack/delivery-sdk", - "version": "4.6.1", + "version": "4.7.0", "type": "module", "license": "MIT", "main": "./dist/legacy/index.cjs", @@ -62,5 +62,6 @@ "ts-node": "^10.9.2", "tsup": "^8.4.0", "webpack-cli": "^5.1.4" - } + }, + "homepage": "https://github.com/contentstack/contentstack-typescript" } diff --git a/src/index.ts b/src/index.ts index 1368037..d108292 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,15 @@ import * as contentstack from './lib/contentstack'; export * from './lib/types'; +export type { Stack } from './lib/stack'; +export type { ContentType } from './lib/content-type'; +export type { Entry } from './lib/entry'; +export type { Asset } from './lib/asset'; +export type { Query } from './lib/query'; +export type { GlobalField } from './lib/global-field'; +export type { GlobalFieldQuery } from './lib/global-field-query'; +export type { ImageTransform } from './lib/image-transform'; +export type { AssetQuery } from './lib/asset-query'; +export type { TaxonomyQuery } from './lib/taxonomy-query'; +export type { ContentTypeQuery } from './lib/contenttype-query'; export default contentstack;