@opendaw/studio-adapters 0.0.73 → 0.0.75

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.
@@ -12,6 +12,7 @@ export declare const EngineSettingsSchema: z.ZodObject<{
12
12
  }, z.core.$strip>>;
13
13
  recording: z.ZodDefault<z.ZodObject<{
14
14
  countInBars: z.ZodUnion<z.ZodLiteral<2 | 1 | 3 | 8 | 6 | 4 | 5 | 7>[]>;
15
+ allowTakes: z.ZodBoolean;
15
16
  }, z.core.$strip>>;
16
17
  }, z.core.$strip>;
17
18
  export type EngineSettings = z.infer<typeof EngineSettingsSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"EnginePreferencesSchema.d.ts","sourceRoot":"","sources":["../../src/engine/EnginePreferencesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;iBAwB/B,CAAA;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEjE,yBAAiB,cAAc,CAAC;IACrB,MAAM,sBAAsB,uBAA0B,CAAA;IACtD,MAAM,oBAAoB,mCAAwB,CAAA;CAC5D"}
1
+ {"version":3,"file":"EnginePreferencesSchema.d.ts","sourceRoot":"","sources":["../../src/engine/EnginePreferencesSchema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;iBA0B/B,CAAA;AAEF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEjE,yBAAiB,cAAc,CAAC;IACrB,MAAM,sBAAsB,uBAA0B,CAAA;IACtD,MAAM,oBAAoB,mCAAwB,CAAA;CAC5D"}
@@ -21,9 +21,11 @@ export const EngineSettingsSchema = z.object({
21
21
  truncateNotesAtRegionEnd: false
22
22
  }),
23
23
  recording: z.object({
24
- countInBars: z.union(_RecordingCountInBars.map(value => z.literal(value)))
24
+ countInBars: z.union(_RecordingCountInBars.map(value => z.literal(value))),
25
+ allowTakes: z.boolean()
25
26
  }).default({
26
- countInBars: 1
27
+ countInBars: 1,
28
+ allowTakes: true
27
29
  })
28
30
  });
29
31
  export var EngineSettings;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendaw/studio-adapters",
3
- "version": "0.0.73",
3
+ "version": "0.0.75",
4
4
  "license": "LGPL-3.0-or-later",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -23,12 +23,12 @@
23
23
  "test": "echo \"No tests to run\""
24
24
  },
25
25
  "dependencies": {
26
- "@opendaw/lib-box": "^0.0.65",
26
+ "@opendaw/lib-box": "^0.0.66",
27
27
  "@opendaw/lib-dsp": "^0.0.64",
28
- "@opendaw/lib-fusion": "^0.0.68",
28
+ "@opendaw/lib-fusion": "^0.0.70",
29
29
  "@opendaw/lib-runtime": "^0.0.64",
30
30
  "@opendaw/lib-std": "^0.0.64",
31
- "@opendaw/studio-boxes": "^0.0.66",
31
+ "@opendaw/studio-boxes": "^0.0.67",
32
32
  "@opendaw/studio-enums": "^0.0.56",
33
33
  "soundfont2": "^0.5.0"
34
34
  },
@@ -36,5 +36,5 @@
36
36
  "@opendaw/eslint-config": "^0.0.27",
37
37
  "@opendaw/typescript-config": "^0.0.28"
38
38
  },
39
- "gitHead": "043469788d823f2ae6ca0f5c9f1483c06edf8659"
39
+ "gitHead": "af2cfe60c58630654f16a7dd2c564dd3ee52d185"
40
40
  }