Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@contentstack/delivery-sdk",
"version": "4.6.1",
"version": "4.6.2",
"type": "module",
"license": "MIT",
"main": "./dist/legacy/index.cjs",
Expand Down Expand Up @@ -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"
}
11 changes: 11 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -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;