@mana-app/types 0.0.12 → 0.0.13

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.
@@ -66,12 +66,12 @@ export declare enum AdditionalInfoType {
66
66
  Tags = 5
67
67
  }
68
68
  export interface AdditionalInfoBase<TType extends AdditionalInfoType = AdditionalInfoType> {
69
- type: TType;
69
+ readonly type: TType;
70
70
  id: string;
71
71
  title: string;
72
72
  hasMore: boolean;
73
73
  }
74
- export type AdditionalInfoSection = StaffSection | HighlightsSection | CharactersSection;
74
+ export type AdditionalInfoSection = StaffSection | HighlightsSection | CharactersSection | LinksSection | TagsSection;
75
75
  export type StaffSection = AdditionalInfoBase<AdditionalInfoType.Staff> & {
76
76
  items: StaffItem[];
77
77
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mana-app/types",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {