Skip to content

Commit 338c05b

Browse files
committed
Merge commit 'refs/pull/27/head' of https://github.com/hackolade/Synapse
# Conflicts: # package.json
2 parents e051d0e + a724bd4 commit 338c05b

File tree

7 files changed

+76
-10
lines changed

7 files changed

+76
-10
lines changed

adapter/0.1.17.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright © 2016-2018 by IntegrIT S.A. dba Hackolade. All rights reserved.
2+
* Copyright © 2016-2021 by IntegrIT S.A. dba Hackolade. All rights reserved.
33
*
44
* The copyright to the computer software herein is the property of IntegrIT S.A.
55
* The software may be used and/or copied only with the written permission of
@@ -16,7 +16,7 @@
1616
* "<type>": [<names of new property>]
1717
* }
1818
* },
19-
* "remove": {
19+
* "delete": {
2020
* "entity": [<names of new property>],
2121
* "container": [<names of new property>],
2222
* "model": [<names of new property>],

adapter/0.1.22.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/**
2+
* Copyright © 2016-2018 by IntegrIT S.A. dba Hackolade. All rights reserved.
3+
*
4+
* The copyright to the computer software herein is the property of IntegrIT S.A.
5+
* The software may be used and/or copied only with the written permission of
6+
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7+
* the agreement/contract under which the software has been supplied.
8+
*
9+
* {
10+
* "add": {
11+
* "entity": [<names of new property>],
12+
* "container": [<names of new property>],
13+
* "model": [<names of new property>],
14+
* "view": [<names of new property>],
15+
* "field": {
16+
* "<type>": [<names of new property>]
17+
* }
18+
* },
19+
* "delete": {
20+
* "entity": [<names of new property>],
21+
* "container": [<names of new property>],
22+
* "model": [<names of new property>],
23+
* "view": [<names of new property>],
24+
* "field": {
25+
* "<type>": [<names of new property>]
26+
* }
27+
* },
28+
* "modify": {
29+
* "entity": [
30+
* {
31+
* "from": { <properties that identify record> },
32+
* "to": { <properties that need to be changed> }
33+
* }
34+
* ],
35+
* "container": [],
36+
* "model": [],
37+
* "view": [],
38+
* "field": []
39+
* },
40+
* }
41+
*/
42+
{
43+
"modify": {
44+
"field": [
45+
{
46+
"from": {
47+
"type": "char",
48+
"maxLength": {
49+
"type": "Condition",
50+
"value": "maxLength,length,>"
51+
}
52+
},
53+
"to": {
54+
"length": {
55+
"type": "Source",
56+
"path": "maxLength"
57+
}
58+
}
59+
}
60+
]
61+
},
62+
"delete": {
63+
"field": {
64+
"char": ["maxLength"]
65+
}
66+
}
67+
}

adapter/0.1.4.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright © 2016-2020 by IntegrIT S.A. dba Hackolade. All rights reserved.
2+
* Copyright © 2016-2021 by IntegrIT S.A. dba Hackolade. All rights reserved.
33
*
44
* The copyright to the computer software herein is the property of IntegrIT S.A.
55
* The software may be used and/or copied only with the written permission of

adapter/0.1.5.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright © 2016-2020 by IntegrIT S.A. dba Hackolade. All rights reserved.
2+
* Copyright © 2016-2021 by IntegrIT S.A. dba Hackolade. All rights reserved.
33
*
44
* The copyright to the computer software herein is the property of IntegrIT S.A.
55
* The software may be used and/or copied only with the written permission of

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "Synapse",
3-
"version": "0.1.22",
4-
"versionDate": "2021-08-27",
3+
"version": "0.1.23",
4+
"versionDate": "2021-09-04",
55
"author": "hackolade",
66
"engines": {
7-
"hackolade": "5.1.6",
7+
"hackolade": "5.1.7",
88
"hackoladePlugin": "1.2.0"
99
},
1010
"contributes": {

properties_pane/field_level/fieldLevelConfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,6 @@ making sure that you maintain a proper JSON format.
634634
"foreignField",
635635
"relationshipType",
636636
"minLength",
637-
"maxLength",
638637
"pattern",
639638
"format",
640639
"enum",

reverse_engineering/connection_settings_modal/connectionSettingsModalConfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@
6969
}
7070
},
7171
{
72-
"inputLabel": "Directory (tenant) ID",
72+
"inputLabel": "Tenant ID",
7373
"inputKeyword": "connectionTenantId",
7474
"inputType": "text",
75-
"inputTooltip": "Specify the Directory (tenant) ID from the Overview screen of the App registration",
75+
"inputTooltip": "Specify the Tenant ID from the Overview screen of your Azure AD tenant",
7676
"dependency": {
7777
"key": "authMethod",
7878
"value": ["Azure Active Directory (Username / Password)", "Azure Active Directory (MFA)"]

0 commit comments

Comments
 (0)