@k34a/blog 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- import { ArticleService } from './services/articles';
2
- export { ArticleService };
1
+ import { ArticleService, ArticleDetailsForListing } from './services/articles';
2
+ import { articleQuerySchema } from './services/search-params';
3
+ export { ArticleService, articleQuerySchema };
4
+ export type { ArticleDetailsForListing };
package/dist/main.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { ArticleService as c } from "./services/articles.js";
2
+ import { articleQuerySchema as t } from "./services/search-params.js";
2
3
  export {
3
- c as ArticleService
4
+ c as ArticleService,
5
+ t as articleQuerySchema
4
6
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@k34a/blog",
3
3
  "description": "Create and share articles with your audience.",
4
4
  "private": false,
5
- "version": "0.0.1",
5
+ "version": "0.0.3",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": {