SDK(when using with service account) and Connect have a mismatch in returned response.
For example, there is an item with no default values set (aka password, username notes), but has a custom field with any value.
In this case SDK doesn't return fields with empty values at all.
// fields response
[
{
Title: "custom field"
Value: some_value
}
]
In a contrast Connect does return all the fields.
// fields response
[
{
Title: "username"
},
{
Title: "password"
},
{
Title: "custom field"
Value: some_value
}
]
Future SDK releases should have a fix for that, and SDK version used by the operator should be upgraded.
SDK(when using with service account) and Connect have a mismatch in returned response.
For example, there is an item with no default values set (aka password, username notes), but has a custom field with any value.
In this case SDK doesn't return fields with empty values at all.
In a contrast Connect does return all the fields.
Future SDK releases should have a fix for that, and SDK version used by the operator should be upgraded.