react-native-unit-components
Version:
Unit React Native components
18 lines (14 loc) • 671 B
text/typescript
import { UNVersioningStrategyType, UNComponentsWebVersioningStrategy } from '../types/shared';
import { UNComponentsSecuritySettings, UNComponentsSnapshotProtectionStrategy } from '../types/shared/securitySettings';
const WEB_SDK_RECOMMENDED_STRATEGY: UNComponentsWebVersioningStrategy = {
type: UNVersioningStrategyType.upToNextMinor,
major: 2,
minor: 2,
};
const DEFAULT_SECURITY_SETTINGS: UNComponentsSecuritySettings = {
snapshotProtectionStrategy: UNComponentsSnapshotProtectionStrategy.FullProtection
};
export const UNComponentsSDKConstants = {
webSDKRecommendedStrategy: WEB_SDK_RECOMMENDED_STRATEGY,
securitySettings: DEFAULT_SECURITY_SETTINGS
};