@soga/types 0.0.32 → 0.0.34
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/record.d.ts +6 -5
- package/package.json +1 -1
package/dist/record.d.ts
CHANGED
|
@@ -158,6 +158,11 @@ export type Manifest = {
|
|
|
158
158
|
};
|
|
159
159
|
meta: ManifestMetaInfo;
|
|
160
160
|
};
|
|
161
|
+
export type RecordFolderConfig = {
|
|
162
|
+
insert_last: -1 | 0 | 1;
|
|
163
|
+
keep_source?: -1 | 0 | 1;
|
|
164
|
+
link_subtitle?: -1 | 0 | 1;
|
|
165
|
+
};
|
|
161
166
|
type RecordCommonFields = {
|
|
162
167
|
id: number;
|
|
163
168
|
space_id: number;
|
|
@@ -206,11 +211,7 @@ type RecordCommonFields = {
|
|
|
206
211
|
vip_type: number;
|
|
207
212
|
};
|
|
208
213
|
};
|
|
209
|
-
config:
|
|
210
|
-
insert_last?: boolean;
|
|
211
|
-
keep_source?: boolean;
|
|
212
|
-
link_subtitle?: boolean;
|
|
213
|
-
};
|
|
214
|
+
config: RecordFolderConfig;
|
|
214
215
|
created_at: string;
|
|
215
216
|
updated_at: string;
|
|
216
217
|
};
|