@omerlo/omerlo-webkit 0.0.6 → 0.0.7

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.
@@ -1,7 +1,7 @@
1
1
  import { type LocalesMetadata } from '../utils/response';
2
2
  import { type Visual } from './visuals';
3
3
  import { type ApiAssocs, type ApiData } from '../utils/api';
4
- import { type Content } from './contents';
4
+ import { type Content, type ContentSummary } from './contents';
5
5
  export declare const magazineFetchers: (f: typeof fetch) => {
6
6
  getIssue: (id: string) => Promise<import("../utils/api").ApiResponse<Issue>>;
7
7
  getBlocks: (sectionId: string) => Promise<import("../utils/api").ApiResponse<IssueBlock[]>>;
@@ -100,5 +100,5 @@ export interface IssueBlockConfiguration {
100
100
  }
101
101
  export interface IssueBlockSlot {
102
102
  id: string;
103
- content: Content;
103
+ content: ContentSummary;
104
104
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omerlo/omerlo-webkit",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",