From 46f4cf969a2b7f2c762f8c0e7ee24fd584a47eff Mon Sep 17 00:00:00 2001 From: SDK Sync Bot Date: Mon, 16 Feb 2026 16:04:48 +0000 Subject: [PATCH] fix(api-client): add maxLength validation for CustomApplicationSettings content Update DeclarativeCustomApplicationSetting model to include maxLength: 250000 validation for the content field, matching the OpenAPI spec change from gdc-nas commit bee16eb300b19dd96bd59ee9e0325c2101c8207c. This ensures the SDK properly validates content size limits for custom application settings, which was increased from 15000 to 250000 characters to support larger LDM layouts. Related: STL-2278, P001 Co-Authored-By: Claude Sonnet 4.5 --- .../model/declarative_custom_application_setting.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gooddata-api-client/gooddata_api_client/model/declarative_custom_application_setting.py b/gooddata-api-client/gooddata_api_client/model/declarative_custom_application_setting.py index a156f5b6f..0dfe21674 100644 --- a/gooddata-api-client/gooddata_api_client/model/declarative_custom_application_setting.py +++ b/gooddata-api-client/gooddata_api_client/model/declarative_custom_application_setting.py @@ -63,6 +63,7 @@ class DeclarativeCustomApplicationSetting(ModelNormal): 'max_length': 255, }, ('content',): { + 'max_length': 250000, }, ('id',): { 'regex': {