Skip to content

Commit

Permalink
#782: add fields isInherited and restriction to templating
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Apr 11, 2023
1 parent 3f51cfd commit 2267ada
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/metadataTypes/definitions/MobileKeyword.definition.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module.exports = {
isCreateable: false,
isUpdateable: true,
retrieving: true,
template: false,
template: true,
},
decodedId: {
// GUID format (4b5dece6-c042-45a4-b7c2-d67e032ff3cb). unsure what this is used for
Expand All @@ -99,7 +99,7 @@ module.exports = {
isCreateable: true,
isUpdateable: true,
retrieving: true,
template: false,
template: true,
},
keywordType: {
isCreateable: true,
Expand Down
4 changes: 3 additions & 1 deletion test/resources/9999999/mobileKeyword/build-expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"code": "4912312345678"
},
"keyword": "testExisting_keyword",
"keywordType": "NORMAL"
"keywordType": "NORMAL",
"isInherited": false,
"restriction": "NONE"
}
4 changes: 3 additions & 1 deletion test/resources/9999999/mobileKeyword/template-expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
"code": "4912312345678"
},
"keyword": "testExisting_keyword",
"keywordType": "NORMAL"
"keywordType": "NORMAL",
"isInherited": false,
"restriction": "NONE"
}

0 comments on commit 2267ada

Please sign in to comment.