Skip to content

Commit

Permalink
Release: 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Teamcity committed Jun 28, 2024
1 parent 9249b72 commit 20d1640
Show file tree
Hide file tree
Showing 6 changed files with 87 additions and 4 deletions.
77 changes: 77 additions & 0 deletions adapter/0.2.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/**
* Copyright © 2016-2022 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
*
* {
* "add": {
* "entity": [<names of new property>],
* "container": [<names of new property>],
* "model": [<names of new property>],
* "view": [<names of new property>],
* "field": {
* "<type>": [<names of new property>]
* }
* },
* "delete": {
* "entity": [<names of new property>],
* "container": [<names of new property>],
* "model": [<names of new property>],
* "view": [<names of new property>],
* "field": {
* "<type>": [<names of new property>]
* }
* },
* "modify": {
* "entity": [
* {
* "from": { <properties that identify record> },
* "to": { <properties that need to be changed> }
* }
* ],
* "container": [],
* "model": [],
* "view": [],
* "field": []
* },
* }
*/
{
"modify": {
"container": [
{
"from": {
"<key>Name": { "type": "RegExp", "value": ".*" }
},
"to": {
"keyName": { "type": "Source", "path": "<key>Name" }
}
},
{
"from": {
"<key>Type": { "type": "RegExp", "value": ".*" }
},
"to": {
"keyType": { "type": "Source", "path": "<key>Type" }
}
}
],
"field": [
{
"from": {
"<key>": { "type": "RegExp", "value": "true|false" }
},
"to": {
"key": { "type": "Source", "path": "<key>" }
}
}
]
},
"delete": {
"container": ["<key>Name", "<key>Type"],
"field": ["<key>"]
}
}
Loading

0 comments on commit 20d1640

Please sign in to comment.