@lingk/sync 1.1.60 → 1.1.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/credentialSections.js +17 -8
- package/build/credentialSections.js.map +1 -1
- package/build/lightning.js.map +1 -1
- package/build/lightningStyles.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/lingkStyles.js.map +1 -1
- package/build/loadData.js.map +1 -1
- package/build/main.js +17 -8
- package/build/main.js.map +1 -1
- package/build/metadataDropdown.js.map +1 -1
- package/build/metadataFunctions.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/build/saveData.js.map +1 -1
- package/package.json +1 -1
|
@@ -4620,6 +4620,7 @@ module.exports =
|
|
|
4620
4620
|
var Name = creds && creds.name;
|
|
4621
4621
|
var Account = creds && creds.accountId;
|
|
4622
4622
|
var isSanbox = creds && creds.isSandbox;
|
|
4623
|
+
var AcountName = creds && creds.accountName;
|
|
4623
4624
|
return _react2.default.createElement(
|
|
4624
4625
|
"div",
|
|
4625
4626
|
null,
|
|
@@ -4643,21 +4644,28 @@ module.exports =
|
|
|
4643
4644
|
),
|
|
4644
4645
|
"environment",
|
|
4645
4646
|
_react2.default.createElement("br", null),
|
|
4646
|
-
"
|
|
4647
|
+
"Username \xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0",
|
|
4648
|
+
_react2.default.createElement(
|
|
4649
|
+
"strong",
|
|
4650
|
+
null,
|
|
4651
|
+
Name
|
|
4652
|
+
),
|
|
4653
|
+
_react2.default.createElement("br", null),
|
|
4654
|
+
"API Username ID \xA0\xA0",
|
|
4647
4655
|
_react2.default.createElement(
|
|
4648
4656
|
"strong",
|
|
4649
4657
|
null,
|
|
4650
4658
|
userName
|
|
4651
4659
|
),
|
|
4652
|
-
"
|
|
4653
|
-
" ",
|
|
4660
|
+
_react2.default.createElement("br", null),
|
|
4661
|
+
"AcountName \xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0",
|
|
4654
4662
|
_react2.default.createElement(
|
|
4655
4663
|
"strong",
|
|
4656
4664
|
null,
|
|
4657
|
-
|
|
4665
|
+
AcountName
|
|
4658
4666
|
),
|
|
4659
|
-
"
|
|
4660
|
-
" ",
|
|
4667
|
+
_react2.default.createElement("br", null),
|
|
4668
|
+
"Account ID \xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0\xA0",
|
|
4661
4669
|
_react2.default.createElement(
|
|
4662
4670
|
"strong",
|
|
4663
4671
|
null,
|
|
@@ -5701,13 +5709,14 @@ module.exports =
|
|
|
5701
5709
|
var actualCreds = this.state.actualCreds;
|
|
5702
5710
|
|
|
5703
5711
|
|
|
5704
|
-
if (!newProps.creds.credentialType) {
|
|
5712
|
+
if (!newProps.creds.credentialType && newProps.config.type === "SFTP") {
|
|
5705
5713
|
// prevent sftp default credentialType removal
|
|
5706
5714
|
if (actualCreds.credentialType) {
|
|
5707
5715
|
newProps.creds.credentialType = actualCreds.credentialType;
|
|
5716
|
+
} else {
|
|
5717
|
+
newProps.creds.credentialType = "password";
|
|
5708
5718
|
}
|
|
5709
5719
|
}
|
|
5710
|
-
|
|
5711
5720
|
if (JSON.stringify(this.state.actualCreds) !== JSON.stringify(newProps.creds)) {
|
|
5712
5721
|
this.setState({ actualCreds: newProps.creds });
|
|
5713
5722
|
}
|