@soga/types 0.0.40 → 0.0.42

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.
Files changed (2) hide show
  1. package/dist/record.d.ts +11 -1
  2. package/package.json +1 -1
package/dist/record.d.ts CHANGED
@@ -149,7 +149,7 @@ export type Manifest = {
149
149
  }>;
150
150
  };
151
151
  file: null | ManifestFileInfo;
152
- media: {
152
+ media?: {
153
153
  audio_meta: ManifestAudioMetaInfo;
154
154
  audios: ManifestAudioItem[];
155
155
  cover: ManifestCoverInfo;
@@ -159,6 +159,16 @@ export type Manifest = {
159
159
  video_meta: ManifestVideoMetaInfo;
160
160
  videos: ManifestVideoItem[];
161
161
  };
162
+ txt?: {
163
+ pages: number;
164
+ pad: number;
165
+ map: {
166
+ file: string;
167
+ start: number;
168
+ end: number;
169
+ };
170
+ parts: ManifestPartItem[];
171
+ };
162
172
  meta: ManifestMetaInfo;
163
173
  };
164
174
  export type RecordFolderConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soga/types",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },