@soga/types 0.0.33 → 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.
Files changed (2) hide show
  1. package/dist/record.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/record.d.ts CHANGED
@@ -159,9 +159,9 @@ export type Manifest = {
159
159
  meta: ManifestMetaInfo;
160
160
  };
161
161
  export type RecordFolderConfig = {
162
- insert_last?: boolean;
163
- keep_source?: boolean;
164
- link_subtitle?: boolean;
162
+ insert_last: -1 | 0 | 1;
163
+ keep_source?: -1 | 0 | 1;
164
+ link_subtitle?: -1 | 0 | 1;
165
165
  };
166
166
  type RecordCommonFields = {
167
167
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soga/types",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },