@nxtedition/types 23.0.61 → 23.0.63

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/rpc.d.ts CHANGED
@@ -1,16 +1,17 @@
1
1
  import typia from 'typia';
2
2
  import type { SerializedEditorState } from 'lexical';
3
- import type { CloneSource, CloneTarget, CloneRule } from './common/index.ts';
3
+ import type { CloneSource, CloneTarget, CloneRule, ApplySubtitleSource } from './common/index.ts';
4
4
  export interface RpcMethods extends Record<string, [
5
5
  unknown,
6
6
  unknown
7
7
  ]> {
8
8
  "media/applySubtitles": [
9
9
  {
10
- source: CloneSource;
10
+ source: ApplySubtitleSource;
11
11
  target: CloneTarget;
12
12
  lang?: string | null;
13
13
  templateId?: string;
14
+ behavior: "replace" | "merge";
14
15
  },
15
16
  void
16
17
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/types",
3
- "version": "23.0.61",
3
+ "version": "23.0.63",
4
4
  "description": "TypeScript types to be shared between nxtedition packages.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,10 +30,10 @@
30
30
  "build": "tspc --project tsconfig.transform.json",
31
31
  "postbuild": "yarn bundle-for-nxtpressions",
32
32
  "bundle-for-nxtpressions": "yarn api-extractor run --local",
33
- "lint": "npx eslint ./src",
33
+ "lint": "npx oxlint ./src",
34
34
  "prepare": "ts-patch install",
35
35
  "prepublishOnly": "yarn lint && yarn test",
36
- "test": "yarn build && node --test",
36
+ "test": "yarn build && node --test && tsd --typings dist/index.d.ts --files src/**/*.tds.ts ",
37
37
  "watch": "nodemon --watch src --ext ts --exec 'yarn build'"
38
38
  },
39
39
  "dependencies": {
@@ -42,7 +42,7 @@
42
42
  "rfc6902": "^5.1.1",
43
43
  "rxjs": "^7.8.1",
44
44
  "type-fest": "^5.0.1",
45
- "typia": "^9.7.2"
45
+ "typia": "^11.0.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@microsoft/api-extractor": "7.52.13",