@norskvideo/norsk-studio-alpha 1.27.0-2025-08-16-52ba5063 → 1.27.0-2025-08-18-b2748092

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/client/info.js +8 -1
  2. package/package.json +4 -4
package/client/info.js CHANGED
@@ -22150,7 +22150,14 @@ var require_util = __commonJS({
22150
22150
  }
22151
22151
  }
22152
22152
  function toPascalCaseWithSpaces(str) {
22153
- return str.replace(/([A-Z])/g, " $1").replace(/^./, (str2) => str2.toUpperCase()).trim();
22153
+ let result = str.replace(/([A-Z])/g, " $1").replace(/^./, (str2) => str2.toUpperCase()).trim();
22154
+ const replacements = {
22155
+ "Drm ": "DRM "
22156
+ };
22157
+ for (const [key, value] of Object.entries(replacements)) {
22158
+ result = result.replace(key, value);
22159
+ }
22160
+ return result;
22154
22161
  }
22155
22162
  }
22156
22163
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norskvideo/norsk-studio-alpha",
3
- "version": "1.27.0-2025-08-16-52ba5063",
3
+ "version": "1.27.0-2025-08-18-b2748092",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "clean": "rm -rf lib client build && make clean",
@@ -23,9 +23,9 @@
23
23
  "license": "MIT",
24
24
  "dependencies": {
25
25
  "@apidevtools/json-schema-ref-parser": "^12.0.1",
26
- "@norskvideo/norsk-sdk": "^1.0.402-2025-08-16-76a3eae8",
27
- "@norskvideo/norsk-studio": "1.27.0-2025-08-16-52ba5063",
28
- "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-08-16-52ba5063",
26
+ "@norskvideo/norsk-sdk": "^1.0.402-2025-08-18-3a096f9e",
27
+ "@norskvideo/norsk-studio": "1.27.0-2025-08-18-b2748092",
28
+ "@norskvideo/norsk-studio-built-ins": "1.27.0-2025-08-18-b2748092",
29
29
  "json-refs": "^3.0.15",
30
30
  "JSX": "^1.1.0",
31
31
  "node-fetch": "^2.7.0",