@gooddata/sdk-code-convertors 11.53.0-alpha.6 → 11.53.0-alpha.7

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.
@@ -339,9 +339,9 @@ function declarativeTimezoneConfigToYaml(config) {
339
339
  ...(config.showTimezoneInfo
340
340
  ? { show_timezone_info: config.showTimezoneInfo }
341
341
  : { show_timezone_info: false }),
342
- ...(config.allowUserOverrideInViewMode
342
+ ...(typeof config.allowUserOverrideInViewMode === "boolean"
343
343
  ? { allow_user_override_in_view_mode: config.allowUserOverrideInViewMode }
344
- : { allow_user_override_in_view_mode: false }),
344
+ : {}),
345
345
  };
346
346
  }
347
347
  export function declarativeVisualizationSwitcherWidgetToYaml(widget, size, entities, errorContext) {
@@ -613,7 +613,7 @@ function yamlTimezoneConfigToDeclarative(input) {
613
613
  return {
614
614
  ...(input.timezone_id ? { timezoneId: input.timezone_id } : {}),
615
615
  ...(input.show_timezone_info ? { showTimezoneInfo: input.show_timezone_info } : {}),
616
- ...(input.allow_user_override_in_view_mode
616
+ ...(typeof input.allow_user_override_in_view_mode === "boolean"
617
617
  ? { allowUserOverrideInViewMode: input.allow_user_override_in_view_mode }
618
618
  : {}),
619
619
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-code-convertors",
3
- "version": "11.53.0-alpha.6",
3
+ "version": "11.53.0-alpha.7",
4
4
  "description": "GoodData AAC declarative converters",
5
5
  "license": "MIT",
6
6
  "author": "GoodData",
@@ -26,9 +26,9 @@
26
26
  "dependencies": {
27
27
  "uuid": "11.1.1",
28
28
  "yaml": "2.8.3",
29
- "@gooddata/api-client-tiger": "11.53.0-alpha.6",
30
- "@gooddata/sdk-model": "11.53.0-alpha.6",
31
- "@gooddata/sdk-code-schemas": "11.53.0-alpha.6"
29
+ "@gooddata/sdk-code-schemas": "11.53.0-alpha.7",
30
+ "@gooddata/sdk-model": "11.53.0-alpha.7",
31
+ "@gooddata/api-client-tiger": "11.53.0-alpha.7"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-extractor": "^7.55.2",
@@ -50,8 +50,8 @@
50
50
  "oxlint-tsgolint": "0.15.0",
51
51
  "typescript": "5.9.3",
52
52
  "vitest": "4.1.8",
53
- "@gooddata/oxlint-config": "11.53.0-alpha.6",
54
- "@gooddata/eslint-config": "11.53.0-alpha.6"
53
+ "@gooddata/eslint-config": "11.53.0-alpha.7",
54
+ "@gooddata/oxlint-config": "11.53.0-alpha.7"
55
55
  },
56
56
  "scripts": {
57
57
  "_phase:build": "npm run build",