@nxtedition/types 23.0.38 → 23.0.39

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.
@@ -1991,11 +1991,16 @@ declare interface Settings {
1991
1991
  subtitles: {
1992
1992
  spacing: number;
1993
1993
  maxCharactersPerLine: number;
1994
- aspectRatios?: Array<{
1994
+ suggestions?: Array<{
1995
1995
  /** aspect ratio in the form of "width:height" */
1996
- aspectRatio?: string;
1997
- style?: string;
1998
- maxCharactersPerLine?: number;
1996
+ ifAspectRatio?: string;
1997
+ ifLang?: string;
1998
+ thenStyle?: string;
1999
+ thenMaxCharactersPerLine?: number;
2000
+ }>;
2001
+ colors?: Array<{
2002
+ label?: string | null;
2003
+ color?: string | null;
1999
2004
  }>;
2000
2005
  };
2001
2006
  subtitleTemplateId?: string;
package/dist/schema.json CHANGED
@@ -7655,18 +7655,14 @@
7655
7655
  "subtitles": {
7656
7656
  "additionalProperties": false,
7657
7657
  "properties": {
7658
- "aspectRatios": {
7658
+ "colors": {
7659
7659
  "items": {
7660
7660
  "additionalProperties": false,
7661
7661
  "properties": {
7662
- "aspectRatio": {
7663
- "description": "aspect ratio in the form of \"width:height\"",
7662
+ "color": {
7664
7663
  "type": "string"
7665
7664
  },
7666
- "maxCharactersPerLine": {
7667
- "type": "number"
7668
- },
7669
- "style": {
7665
+ "label": {
7670
7666
  "type": "string"
7671
7667
  }
7672
7668
  },
@@ -7679,6 +7675,28 @@
7679
7675
  },
7680
7676
  "spacing": {
7681
7677
  "type": "number"
7678
+ },
7679
+ "suggestions": {
7680
+ "items": {
7681
+ "additionalProperties": false,
7682
+ "properties": {
7683
+ "ifAspectRatio": {
7684
+ "description": "aspect ratio in the form of \"width:height\"",
7685
+ "type": "string"
7686
+ },
7687
+ "ifLang": {
7688
+ "type": "string"
7689
+ },
7690
+ "thenMaxCharactersPerLine": {
7691
+ "type": "number"
7692
+ },
7693
+ "thenStyle": {
7694
+ "type": "string"
7695
+ }
7696
+ },
7697
+ "type": "object"
7698
+ },
7699
+ "type": "array"
7682
7700
  }
7683
7701
  },
7684
7702
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/types",
3
- "version": "23.0.38",
3
+ "version": "23.0.39",
4
4
  "description": "TypeScript types to be shared between nxtedition packages.",
5
5
  "license": "MIT",
6
6
  "type": "module",