@nxtedition/types 23.0.60 → 23.0.62

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 (37) hide show
  1. package/dist/common/asset-indexer.d.ts +98 -0
  2. package/dist/common/asset-indexer.js +1 -0
  3. package/dist/common/index.d.ts +4 -0
  4. package/dist/common/index.js +4 -0
  5. package/dist/common/panel-property.d.ts +29 -0
  6. package/dist/common/panel-property.js +1 -0
  7. package/dist/common/schema-property.d.ts +12 -0
  8. package/dist/common/schema-property.js +1 -0
  9. package/dist/common/settings.d.ts +16 -0
  10. package/dist/common/subtitle.d.ts +4 -0
  11. package/dist/common/subtitle.js +1 -0
  12. package/dist/nxtpression.d.ts +295 -6
  13. package/dist/records/domains/asset.d.ts +11 -2
  14. package/dist/records/domains/device.d.ts +16 -0
  15. package/dist/records/domains/device.js +1 -0
  16. package/dist/records/domains/folder.d.ts +6 -0
  17. package/dist/records/domains/folder.js +1 -0
  18. package/dist/records/domains/index.d.ts +9 -1
  19. package/dist/records/domains/index.js +4 -0
  20. package/dist/records/domains/ingestschedule.d.ts +45 -0
  21. package/dist/records/domains/ingestschedule.js +1 -0
  22. package/dist/records/domains/note.d.ts +6 -0
  23. package/dist/records/domains/note.js +1 -0
  24. package/dist/records/domains/panel.d.ts +1 -28
  25. package/dist/records/domains/settings.d.ts +5 -0
  26. package/dist/records/exact/asset.d.ts +18 -1
  27. package/dist/records/exact/media.d.ts +40 -1
  28. package/dist/records/validate/assert-guard.js +3018 -1066
  29. package/dist/records/validate/assert.js +3030 -1068
  30. package/dist/records/validate/is.js +89 -8
  31. package/dist/records/validate/schemas.js +1932 -530
  32. package/dist/records/validate/stringify.js +252 -13
  33. package/dist/records/validate/utils.js +2 -2
  34. package/dist/records/validate/validate-equals.js +4737 -1738
  35. package/dist/records/validate/validate.js +1968 -230
  36. package/dist/rpc.d.ts +3 -2
  37. package/package.json +1 -1
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.60",
3
+ "version": "23.0.62",
4
4
  "description": "TypeScript types to be shared between nxtedition packages.",
5
5
  "license": "MIT",
6
6
  "type": "module",