diff --git a/types/api/xverse/appFeatures.ts b/types/api/xverse/appFeatures.ts index 2cc83daa..8fdec3b4 100644 --- a/types/api/xverse/appFeatures.ts +++ b/types/api/xverse/appFeatures.ts @@ -1,7 +1,11 @@ import { NetworkType } from '../../network'; -export type FeatureId = 'RUNES_SUPPORT' | 'SWAPS' | 'RUNES_LISTING'; - +export enum FeatureId { + RUNES_SUPPORT = 'RUNES_SUPPORT', + RUNES_LISTING = 'RUNES_LISTING', + SWAPS = 'SWAPS', + PAYPAL = 'PAYPAL', +} export type AppFeaturesContext = { network: NetworkType; paymentAddress: string;