mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
19 lines
576 B
JavaScript
19 lines
576 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
authentication_method: PropTypes.string,
|
|
authentication_type: PropTypes.string,
|
|
configured: PropTypes.bool,
|
|
domain: PropTypes.string,
|
|
enable_ssl_tls: PropTypes.bool,
|
|
enable_start_tls: PropTypes.bool,
|
|
kolide_server_url: PropTypes.string,
|
|
org_logo_url: PropTypes.string,
|
|
org_name: PropTypes.string,
|
|
password: PropTypes.string,
|
|
port: PropTypes.number,
|
|
sender_address: PropTypes.string,
|
|
server: PropTypes.string,
|
|
user_name: PropTypes.string,
|
|
verify_sll_certs: PropTypes.bool,
|
|
});
|