diff --git a/CHANGELOG.md b/CHANGELOG.md index bee8eed0db..9686a8ac77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,13 +12,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Updates - Added `isGetLocalizedSchema` parameter after `archived` to `cms.hubdb.tablesApi.getAllDraftTables()` and `cms.hubdb.tablesApi.getAllTables()`. -- Added new method `cms.hubdb.tablesApi.removeTableVersion()` +- Added new method `cms.hubdb.tablesApi.removeTableVersion()`. - Added properties `maxNumberOfCharacters` and `maxNumberOfOptions` to `cms/hubdb/models/FileUpdateInput`. - Added `discriminator` and `mapping` to `cms/hubdb/models/UnifiedCollectionResponseWithTotalBaseHubDbTableRowV3`. - Added new methods `cancelConversion()`, `getConversionDetails()` and `scheduleOrUpdateConversion()` to `crm.lists.listsApi`. - Added properties `membershipSettings` and `listPermissions` to `crm/lists/models/ListCreateRequest` and `crm/lists/models/PublicObjectList`. Added `discriminator` and `mapping` to `crm/lists/models/PublicPropertyAssociationFilterBranchFilterBranchesInner`, `crm/lists/models/PublicPropertyAssociationFilterBranchFiltersInner`, `crm/lists/models/PublicSurveyMonkeyValueFilterValueComparison` and `crm/lists/models/PublicTimePointOperationTimePoint`. -- Added property `isPublicList` to `crm/lists/models/RecordListMembership` +- Added property `isPublicList` to `crm/lists/models/RecordListMembership`. +- Added `discriminator` and `mapping` to `crm/extensions/cards/models/IntegratorObjectResultActionsInner` ## [13.3.0] - 2025-09-18 diff --git a/codegen/crm/extensions/cards/models/IntegratorObjectResultActionsInner.ts b/codegen/crm/extensions/cards/models/IntegratorObjectResultActionsInner.ts index dd7571ee33..9bb3ca4cef 100644 --- a/codegen/crm/extensions/cards/models/IntegratorObjectResultActionsInner.ts +++ b/codegen/crm/extensions/cards/models/IntegratorObjectResultActionsInner.ts @@ -25,8 +25,11 @@ export type IntegratorObjectResultActionsInner = ActionHookActionBody | IFrameAc * @export */ export class IntegratorObjectResultActionsInnerClass { - static readonly discriminator: string | undefined = undefined; + static readonly discriminator: string | undefined = "type"; - static readonly mapping: {[index: string]: string} | undefined = undefined; + static readonly mapping: {[index: string]: string} | undefined = { + "ACTION_HOOK": "ActionHookActionBody", + "IFRAME": "IFrameActionBody", + }; }