75 lines
2.6 KiB
JavaScript
75 lines
2.6 KiB
JavaScript
var Connection;
|
|
(function (Connection) {
|
|
Connection["Wifi"] = "wifi";
|
|
Connection["Cellular"] = "cellular";
|
|
Connection["Offline"] = "offline";
|
|
})(Connection || (Connection = {}));
|
|
var ContentType;
|
|
(function (ContentType) {
|
|
ContentType["Dice"] = "Dice";
|
|
ContentType["Source"] = "Source";
|
|
ContentType["Compendium"] = "Compendium";
|
|
ContentType["Single"] = "Single";
|
|
ContentType["Bundle"] = "Bundle";
|
|
})(ContentType || (ContentType = {}));
|
|
var Device;
|
|
(function (Device) {
|
|
Device["Tablet"] = "tablet";
|
|
Device["Smartphone"] = "smartphone";
|
|
Device["Unknown"] = "unknown";
|
|
})(Device || (Device = {}));
|
|
var Orientation;
|
|
(function (Orientation) {
|
|
Orientation["Portrait"] = "portrait";
|
|
Orientation["Landscape"] = "landscape";
|
|
Orientation["Unknown"] = "unknown";
|
|
})(Orientation || (Orientation = {}));
|
|
var Platform;
|
|
(function (Platform) {
|
|
Platform["Sigil"] = "Sigil";
|
|
Platform["Web"] = "Web";
|
|
Platform["MobileAndroid"] = "MobileAndroid";
|
|
Platform["MobileIos"] = "MobileIOS";
|
|
Platform["MobileWeb"] = "MobileWeb";
|
|
})(Platform || (Platform = {}));
|
|
var Region;
|
|
(function (Region) {
|
|
Region["UsEast1"] = "us-east-1";
|
|
Region["UsEast2"] = "us-east-2";
|
|
})(Region || (Region = {}));
|
|
var Source;
|
|
(function (Source) {
|
|
Source["Web"] = "ddb.web";
|
|
Source["Mobile"] = "ddb.mobile";
|
|
})(Source || (Source = {}));
|
|
var SubContentType;
|
|
(function (SubContentType) {
|
|
SubContentType["Family"] = "Family";
|
|
SubContentType["Set"] = "Set";
|
|
SubContentType["Rule"] = "Rule";
|
|
SubContentType["Adventure"] = "Adventure";
|
|
SubContentType["Map"] = "Map";
|
|
SubContentType["Legendary"] = "Legendary";
|
|
SubContentType["Source"] = "Source";
|
|
SubContentType["MagicItem"] = "MagicItem";
|
|
SubContentType["Monster"] = "Monster";
|
|
SubContentType["Feat"] = "Feat";
|
|
SubContentType["Background"] = "Background";
|
|
SubContentType["Subrace"] = "Subrace";
|
|
SubContentType["Class"] = "Class";
|
|
SubContentType["Subclass"] = "Subclass";
|
|
SubContentType["Spell"] = "Spell";
|
|
SubContentType["Vehicle"] = "Vehicle";
|
|
SubContentType["Race"] = "Race";
|
|
})(SubContentType || (SubContentType = {}));
|
|
var SubscriptionLevel;
|
|
(function (SubscriptionLevel) {
|
|
SubscriptionLevel["Visitor"] = "Visitor";
|
|
SubscriptionLevel["RegisteredUser"] = "Registered User";
|
|
SubscriptionLevel["Hero"] = "Hero";
|
|
SubscriptionLevel["Master"] = "Master";
|
|
SubscriptionLevel["Legendary"] = "Legendary";
|
|
})(SubscriptionLevel || (SubscriptionLevel = {}));
|
|
|
|
export { Connection, ContentType, Device, Orientation, Platform, Region, Source, SubContentType, SubscriptionLevel };
|