Skip to content

Commit 272d773

Browse files
Codegen: CRM Extensions Cards and changelog
1 parent 5b03e20 commit 272d773

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
## Updates
1313

1414
- Added `isGetLocalizedSchema` parameter after `archived` to `cms.hubdb.tablesApi.getAllDraftTables()` and `cms.hubdb.tablesApi.getAllTables()`.
15-
- Added new method `cms.hubdb.tablesApi.removeTableVersion()`
15+
- Added new method `cms.hubdb.tablesApi.removeTableVersion()`.
1616
- Added properties `maxNumberOfCharacters` and `maxNumberOfOptions` to `cms/hubdb/models/FileUpdateInput`.
1717
- Added `discriminator` and `mapping` to `cms/hubdb/models/UnifiedCollectionResponseWithTotalBaseHubDbTableRowV3`.
1818
- Added new methods `cancelConversion()`, `getConversionDetails()` and `scheduleOrUpdateConversion()` to `crm.lists.listsApi`.
1919
- Added properties `membershipSettings` and `listPermissions` to `crm/lists/models/ListCreateRequest` and `crm/lists/models/PublicObjectList`.
2020
Added `discriminator` and `mapping` to `crm/lists/models/PublicPropertyAssociationFilterBranchFilterBranchesInner`, `crm/lists/models/PublicPropertyAssociationFilterBranchFiltersInner`, `crm/lists/models/PublicSurveyMonkeyValueFilterValueComparison` and `crm/lists/models/PublicTimePointOperationTimePoint`.
21-
- Added property `isPublicList` to `crm/lists/models/RecordListMembership`
21+
- Added property `isPublicList` to `crm/lists/models/RecordListMembership`.
22+
- Added `discriminator` and `mapping` to `crm/extensions/cards/models/IntegratorObjectResultActionsInner`
2223

2324
## [13.3.0] - 2025-09-18
2425

codegen/crm/extensions/cards/models/IntegratorObjectResultActionsInner.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ export type IntegratorObjectResultActionsInner = ActionHookActionBody | IFrameAc
2525
* @export
2626
*/
2727
export class IntegratorObjectResultActionsInnerClass {
28-
static readonly discriminator: string | undefined = undefined;
28+
static readonly discriminator: string | undefined = "type";
2929

30-
static readonly mapping: {[index: string]: string} | undefined = undefined;
30+
static readonly mapping: {[index: string]: string} | undefined = {
31+
"ACTION_HOOK": "ActionHookActionBody",
32+
"IFRAME": "IFrameActionBody",
33+
};
3134
}
3235

0 commit comments

Comments
 (0)