react-native-unit-components
Version:
Unit React Native components
18 lines (14 loc) • 602 B
text/typescript
import { UNVersioningStrategyType, UNWebVersioningStrategy } from '../types/shared';
import { UNSecuritySettings, UNSnapshotProtectionStrategy } from '../types/shared/securitySettings';
const WEB_SDK_RECOMMENDED_STRATEGY: UNWebVersioningStrategy = {
type: UNVersioningStrategyType.upToNextMinor,
major: 1,
minor: 10,
};
const DEFAULT_SECURITY_SETTINGS: UNSecuritySettings = {
snapshotProtectionStrategy: UNSnapshotProtectionStrategy.FullProtection
};
export const UNSDKConstants = {
webSDKRecommendedStrategy: WEB_SDK_RECOMMENDED_STRATEGY,
securitySettings: DEFAULT_SECURITY_SETTINGS
};